Home
last modified time | relevance | path

Searched refs:comment (Results 1 – 25 of 98) sorted by relevance

1234

/AliOS-Things-master/components/jsoncpp/test/data/
A Dlegacy_test_comment_02.json2 /* C-style comment
4 C-style-2 comment */
7 /* Internal comment c-style */
10 // C++-style comment
12 // Multiline comment cpp-style
A Dlegacy_test_comment_02.expected2 /* C-style comment
4 C-style-2 comment */
7 /* Internal comment c-style */
9 // C++-style comment
11 // Multiline comment cpp-style
A Dlegacy_test_preserve_comment_01.json1 /* A comment
5 "first" : 1, // comment after 'first' on the same line
12 /* A comment at
A Dlegacy_test_preserve_comment_01.expected1 /* A comment
9 /* A comment at
A Dlegacy_test_basic_08.json1 // C++ style comment
A Dlegacy_test_basic_09.json1 /* C style comment
A Dlegacy_test_basic_08.expected1 // C++ style comment
A Dlegacy_test_basic_09.expected1 /* C style comment
/AliOS-Things-master/components/jsoncpp/example/readFromStream/
A DwithComment.json1 // comment head
3 // comment before
5 // comment after
6 }// comment tail
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/minizip/
A Dzip.h154 const char* comment,
165 const char* comment,
194 const char* comment,
207 const char* comment,
223 const char* comment,
240 const char* comment,
266 const char* comment,
287 const char* comment,
A Dmztools.c150 char* comment = ""; variable
151 int comsize = (int) strlen(comment);
198 if ((int)fwrite(comment, 1, comsize, fpOutCD) == comsize) {
225 char* comment = ""; // "ZIP File recovered by zlib/minizip/mztools"; variable
226 int comsize = (int) strlen(comment);
244 if ((int)fwrite(comment, 1, comsize, fpOutCD) != comsize) {
A Dzip.c1098 if (comment==NULL) in zipOpenNewFileInZip4_64()
1101 size_comment = (uInt)strlen(comment); in zipOpenNewFileInZip4_64()
1178 size_extrafield_global+i) = *(comment+i); in zipOpenNewFileInZip4_64()
1276 comment, method, level, raw, in zipOpenNewFileInZip4()
1291 comment, method, level, raw, in zipOpenNewFileInZip3()
1306 comment, method, level, raw, in zipOpenNewFileInZip3_64()
1319 comment, method, level, raw, in zipOpenNewFileInZip2()
1332 comment, method, level, raw, in zipOpenNewFileInZip2_64()
1345 comment, method, level, 0, in zipOpenNewFileInZip64()
1353 const char* comment, int method, int level) in zipOpenNewFileInZip() argument
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/scripts/
A Doptions.awk53 comment=start "/*" # Comment start
57 und=comment "#undef PNG_" # Unsupported option
207 print comment $0, cend >out
222 print comment, version, cend >out
232 print comment, $2, cend >out
233 print comment, "Machine generated file: DO NOT EDIT", cend >out
235 print comment, "Derived from:", $3, cend >out
549 print comment, "options", cend >out
805 print comment, "end of options", cend >out
813 print comment, "settings", cend >out
[all …]
/AliOS-Things-master/components/jsoncpp/src/lib_json/
A Djson_writer.cpp617 const String& comment = root.getComment(commentBefore); in writeCommentBeforeValue() local
618 String::const_iterator iter = comment.begin(); in writeCommentBeforeValue()
619 while (iter != comment.end()) { in writeCommentBeforeValue()
621 if (*iter == '\n' && ((iter + 1) != comment.end() && *(iter + 1) == '/')) in writeCommentBeforeValue()
837 const String& comment = root.getComment(commentBefore); in writeCommentBeforeValue() local
838 String::const_iterator iter = comment.begin(); in writeCommentBeforeValue()
839 while (iter != comment.end()) { in writeCommentBeforeValue()
841 if (*iter == '\n' && ((iter + 1) != comment.end() && *(iter + 1) == '/')) in writeCommentBeforeValue()
1123 const String& comment = root.getComment(commentBefore); in writeCommentBeforeValue() local
1124 String::const_iterator iter = comment.begin(); in writeCommentBeforeValue()
[all …]
A Djson_value.cpp1399 void Value::Comments::set(CommentPlacement slot, String comment) { in set() argument
1405 (*ptr_)[slot] = std::move(comment); in set()
1409 void Value::setComment(String comment, CommentPlacement placement) { in setComment() argument
1410 if (!comment.empty() && (comment.back() == '\n')) { in setComment()
1412 comment.pop_back(); in setComment()
1414 JSON_ASSERT(!comment.empty()); in setComment()
1416 comment[0] == '\0' || comment[0] == '/', in setComment()
1418 comments_.set(placement, std::move(comment)); in setComment()
/AliOS-Things-master/components/jsoncpp/include/json/
A Dvalue.h566 void setComment(const char* comment, CommentPlacement placement) { in setComment() argument
567 setComment(String(comment, strlen(comment)), placement); in setComment()
570 void setComment(const char* comment, size_t len, CommentPlacement placement) { in setComment() argument
571 setComment(String(comment, len), placement); in setComment()
574 void setComment(String comment, CommentPlacement placement);
643 void set(CommentPlacement slot, String comment);
/AliOS-Things-master/components/SDL2/src/main/winrt/
A DSDL_winrt_main_NonXAML.cpp48 #pragma comment(lib, "runtimeobject.lib")
/AliOS-Things-master/components/py_engine/engine/tools/
A Duncrustify.cfg45 # The comment should be used alone in one line.
51 # The comment should be used alone in one line.
2137 # comment, as in '// comment\n <here> void foo() {...}'.
2617 # when converting to a c-comment.
2623 # when converting to a c-comment.
2770 # a comment after the close brace, a comment will be added.
2774 # have a comment after the close brace, a comment will be added.
2778 # comment after the close brace, a comment will be added.
2782 # comment after the close brace, a comment will be added.
2786 # a comment after the #endif, a comment will be added.
[all …]
/AliOS-Things-master/components/oss/src/external/tinyxml2/
A Dtinyxml2.cpp1222 …XMLComment* comment = doc->NewComment( Value() ); // fixme: this will always allocate memory. Inte… in ShallowClone() local
1223 return comment; in ShallowClone()
1230 const XMLComment* comment = compare->ToComment(); in ShallowEqual() local
1231 return ( comment && XMLUtil::StringEqual( comment->Value(), Value() )); in ShallowEqual()
2100 XMLComment* comment = CreateUnlinkedNode<XMLComment>( _commentPool ); in NewComment() local
2101 comment->SetValue( str ); in NewComment()
2102 return comment; in NewComment()
2726 void XMLPrinter::PushComment( const char* comment ) in PushComment() argument
2736 Write( comment ); in PushComment()
2811 bool XMLPrinter::Visit( const XMLComment& comment ) in Visit() argument
[all …]
/AliOS-Things-master/components/jsoncpp/doc/
A Djsoncpp.dox30 "c++", // trailing comment
35 // (multi-line comment)
36 "indent" : { /*embedded comment*/ "length" : 3, "use_space": true }
/AliOS-Things-master/components/oss/src/external/json/
A Djsoncpp.cpp2983 for (int comment = 0; comment < numberOfCommentPlacement; ++comment) { in Value() local
2986 comments_[comment].setComment( in Value()
3925 if ((len > 0) && (comment[len-1] == '\n')) { in setComment()
3929 comments_[placement].setComment(comment, len); in setComment()
3933 setComment(comment, strlen(comment), placement); in setComment()
3937 setComment(comment.c_str(), comment.length(), placement); in setComment()
4775 JSONCPP_STRING::const_iterator iter = comment.begin(); in writeCommentBeforeValue()
4776 while (iter != comment.end()) { in writeCommentBeforeValue()
4991 JSONCPP_STRING::const_iterator iter = comment.begin(); in writeCommentBeforeValue()
4992 while (iter != comment.end()) { in writeCommentBeforeValue()
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/
A Dusage.txt602 markers, such as comment blocks:
606 -copy comments Copy only comment markers.
628 The JPEG standard allows "comment" (COM) blocks to occur within a JPEG file.
668 -comment "Comment text" Supply new COM text on command line.
670 (Switch names can be abbreviated.) If you have only one line of comment text
671 to add, you can provide it on the command line with -comment. The comment
675 If you give neither -comment nor -cfile, then wrjpgcom will read the comment
679 (usually control-D or control-Z) to terminate the comment text entry.
681 wrjpgcom will not add a COM block if the provided comment string is empty.
682 Therefore -replace -comment "" can be used to delete all COM blocks from a
/AliOS-Things-master/components/mbedtls/library/
A Dnet_sockets.c69 #pragma comment( lib, "ws2.lib" )
71 #pragma comment( lib, "ws2_32.lib" )
/AliOS-Things-master/components/SDL2/src/video/uikit/
A DSDL_uikitevents.m67 /* See the comment in the function definition. */
/AliOS-Things-master/components/mbedtls/programs/ssl/
A Dssl_mail_client.c87 #pragma comment( lib, "ws2.lib" )
89 #pragma comment( lib, "ws2_32.lib" )

Completed in 44 milliseconds

1234