/external/lz4/contrib/gen_manual/ |
D | gen_manual.cpp | 54 /* trim C++ style comments */ 89 /* print line with LZ4LIB_API removed and C++ comments not bold */ 109 vector<string> input, lines, comments, chapters; in main() local 153 …/* comments of type /**< and /*!< are detected and only function declaration is highlighted (bold)… in main() 161 …/* comments of type /*= and /**= mean: use a <H3> header and show also all functions until first e… in main() 184 comments = get_lines(input, linenum, "*/"); in main() 185 if (!comments.empty()) comments[0] = line.substr(spos+3); in main() 186 …if (!comments.empty()) comments[comments.size()-1] = comments[comments.size()-1].substr(0, comment… in main() 187 for (l=0; l<comments.size(); l++) { in main() 188 if (comments[l].find(" *")==0) comments[l] = comments[l].substr(2); in main() [all …]
|
/external/clang/test/Index/ |
D | annotate-comments.cpp | 85 * but we need more multi-line comments. */ 86 /// This comment comes before my other comments 267 // RUN: c-index-test -test-load-source all -comments-xml-schema=%S/../../bindings/xml/comment-xml-s… 273 // Declarations without Doxygen comments should not pick up some Doxygen comments. 277 // Non-Doxygen comments should not be attached to anything. 280 // Some Doxygen comments are not attached to anything. 283 // Ensure we don't pick up extra comments. 294 // checks that documentation comments are attached to declarations correctly. 296 // documentation comments will only test a single code path. 298 // CHECK: annotate-comments.cpp:16:6: FunctionDecl=isdoxy4:{{.*}} isdoxy4 IS_DOXYGEN_SINGLE [all …]
|
D | parse-all-comments.c | 76 // RUN: c-index-test -write-pch %t/out.pch -fparse-all-comments -x c++ -std=c++11 %s 78 …est -test-load-source all -comments-xml-schema=%S/../../bindings/xml/comment-xml-schema.rng %s -st… 90 // CHECK: parse-all-comments.c:7:6: FunctionDecl=notdoxy1:{{.*}} notdoxy1 NOT_DOXYGEN 91 // CHECK: parse-all-comments.c:10:6: FunctionDecl=notdoxy2:{{.*}} notdoxy2 NOT_DOXYGEN 92 // CHECK: parse-all-comments.c:13:6: FunctionDecl=notdoxy3:{{.*}} notdoxy3 NOT_DOXYGEN 93 // CHECK: parse-all-comments.c:16:6: FunctionDecl=isdoxy4:{{.*}} isdoxy4 IS_DOXYGEN_SINGLE 94 // CHECK: parse-all-comments.c:19:6: FunctionDecl=isdoxy5:{{.*}} isdoxy5 IS_DOXYGEN_SINGLE 95 // CHECK: parse-all-comments.c:22:6: FunctionDecl=isdoxy6:{{.*}} isdoxy6 IS_DOXYGEN_SINGLE 96 // CHECK: parse-all-comments.c:29:6: FunctionDecl=multi_line_comment_plus_ordinary:{{.*}} BLOCK_ORD… 97 // CHECK: parse-all-comments.c:34:6: FunctionDecl=multi_line_comment_empty_line:{{.*}} MULTILINE CO… [all …]
|
D | annotate-comments-objc.m | 16 // Check that we attach comments to properties correctly. 37 // Check that we attach comments to enums declared using the NS_ENUM macro. 45 // In the implementation of attaching comments to enums declared using the 48 // attach unrelated comments in the following cases where tag decls are 73 // RUN: c-index-test -test-load-source all -comments-xml-schema=%S/../../bindings/xml/comment-xml-s… 74 // RUN: c-index-test -test-load-source all -comments-xml-schema=%S/../../bindings/xml/comment-xml-s… 81 // Declarations without Doxygen comments should not pick up some Doxygen comments. 85 // Non-Doxygen comments should not be attached to anything. 88 // Some Doxygen comments are not attached to anything. 91 // Ensure we don't pick up extra comments. [all …]
|
D | retain-comments-from-system-headers.c | 3 #include "retain-comments-from-system-headers.h" 13 // RUN: c-index-test -test-load-source all %s -fretain-comments-from-system-headers -I %S/Inputs | … 16 …odules -fmodules-cache-path=%t/cache -fmodule-map-file=%S/Inputs/retain-comments-from-system-heade… 17 …l %s -fretain-comments-from-system-headers -I %S/Inputs -fmodules -fmodules-cache-path=%t/cache -f… 19 // CHECK: retain-comments-from-system-headers.h:7:5: FunctionDecl=system_function:7:5 Extent=[7:1 -… 20 // CHECK: retain-comments-from-system-headers.c:9:5: FunctionDecl=user_function:9:5 RawComment=[/**… 22 // CHECK-RETAIN: retain-comments-from-system-headers.h:7:5: FunctionDecl=system_function:7:5 RawCom… 23 // CHECK-RETAIN: retain-comments-from-system-headers.c:9:5: FunctionDecl=user_function:9:5 RawComme…
|
/external/pcre/pcrecpp/ |
D | pcre_scanner_unittest.cc | 76 vector<StringPiece> comments; in TestScanner() local 82 s.GetNextComments(&comments); in TestScanner() 83 CHECK_EQ(comments.size(), 1); in TestScanner() 84 CHECK_EQ(comments[0].as_string(), " // this sets alpha\n"); in TestScanner() 85 comments.resize(0); in TestScanner() 90 s.GetNextComments(&comments); in TestScanner() 91 CHECK_EQ(comments.size(), 1); in TestScanner() 92 CHECK_EQ(comments[0].as_string(), " // bravo is set here\n"); in TestScanner() 93 comments.resize(0); in TestScanner() 98 s.GetNextComments(&comments); in TestScanner() [all …]
|
/external/jdiff/src/jdiff/ |
D | Comments.java | 16 * Creates a Comments from an XML file. The Comments object is the internal 17 * representation of the comments for the changes. 18 * All methods in this class for populating a Comments object are static. 23 public class Comments { class 26 * All the possible comments known about, accessible by the commentID. 30 /** The old Comments object which is populated from the file read in. */ 31 private static Comments oldComments_ = null; 34 public Comments() { in Comments() method in Comments 38 // The list of comments elements associated with this objects 42 * Read the file where the XML for comments about the changes between [all …]
|
D | CommentsHandler.java | 14 * Handle the parsing of an XML file and the generation of a Comments object. 16 * All HTML written for the comments sections in the report must 28 /** The Comments object which is populated from the XML file. */ 29 public Comments comments_ = null; 44 public CommentsHandler(Comments comments) { in CommentsHandler() argument 45 comments_ = comments; in CommentsHandler() 62 if (localName.compareTo("comments") == 0) { in startElement() 66 System.out.println("Error: no identifier found in the comments XML file."); in startElement() 75 …System.out.println("Warning: API identifier in the comments XML file (" + filename2 + ") differs f… in startElement() 125 * the comments which are waiting for it. [all …]
|
/external/libxml2/result/ |
D | slashdot16.xml | 10 <comments>20</comments> 21 <comments>12</comments> 32 <comments>10</comments> 43 <comments>385</comments> 54 <comments>20</comments> 65 <comments>12</comments> 76 <comments>10</comments> 87 <comments>385</comments> 98 <comments>164</comments> 109 <comments>48</comments> [all …]
|
D | slashdot.xml | 10 <comments>20</comments> 21 <comments>12</comments> 32 <comments>10</comments> 43 <comments>385</comments> 54 <comments>164</comments> 65 <comments>48</comments> 76 <comments>66</comments> 87 <comments>217</comments> 98 <comments>16</comments> 109 <comments>155</comments>
|
D | slashdot16.xml.rde | 37 2 1 comments 0 0 39 2 15 comments 0 0 88 2 1 comments 0 0 90 2 15 comments 0 0 139 2 1 comments 0 0 141 2 15 comments 0 0 190 2 1 comments 0 0 192 2 15 comments 0 0 241 2 1 comments 0 0 243 2 15 comments 0 0 [all …]
|
D | slashdot16.xml.rdr | 37 2 1 comments 0 0 39 2 15 comments 0 0 88 2 1 comments 0 0 90 2 15 comments 0 0 139 2 1 comments 0 0 141 2 15 comments 0 0 190 2 1 comments 0 0 192 2 15 comments 0 0 241 2 1 comments 0 0 243 2 15 comments 0 0 [all …]
|
D | slashdot16.xml.sax | 39 SAX.startElement(comments) 41 SAX.endElement(comments) 90 SAX.startElement(comments) 92 SAX.endElement(comments) 141 SAX.startElement(comments) 143 SAX.endElement(comments) 192 SAX.startElement(comments) 194 SAX.endElement(comments) 243 SAX.startElement(comments) 245 SAX.endElement(comments) [all …]
|
D | slashdot.xml.rde | 37 2 1 comments 0 0 39 2 15 comments 0 0 88 2 1 comments 0 0 90 2 15 comments 0 0 139 2 1 comments 0 0 141 2 15 comments 0 0 190 2 1 comments 0 0 192 2 15 comments 0 0 241 2 1 comments 0 0 243 2 15 comments 0 0 [all …]
|
D | slashdot.xml.rdr | 37 2 1 comments 0 0 39 2 15 comments 0 0 88 2 1 comments 0 0 90 2 15 comments 0 0 139 2 1 comments 0 0 141 2 15 comments 0 0 190 2 1 comments 0 0 192 2 15 comments 0 0 241 2 1 comments 0 0 243 2 15 comments 0 0 [all …]
|
D | slashdot.xml.sax | 39 SAX.startElement(comments) 41 SAX.endElement(comments) 90 SAX.startElement(comments) 92 SAX.endElement(comments) 141 SAX.startElement(comments) 143 SAX.endElement(comments) 192 SAX.startElement(comments) 194 SAX.endElement(comments) 243 SAX.startElement(comments) 245 SAX.endElement(comments) [all …]
|
/external/libxml2/test/ |
D | slashdot16.xml | 10 <comments>20</comments> 21 <comments>12</comments> 32 <comments>10</comments> 43 <comments>385</comments> 54 <comments>20</comments> 65 <comments>12</comments> 76 <comments>10</comments> 87 <comments>385</comments> 98 <comments>164</comments> 109 <comments>48</comments> [all …]
|
D | slashdot.xml | 9 <comments>20</comments> 20 <comments>12</comments> 31 <comments>10</comments> 42 <comments>385</comments> 53 <comments>164</comments> 64 <comments>48</comments> 75 <comments>66</comments> 86 <comments>217</comments> 97 <comments>16</comments> 108 <comments>155</comments>
|
/external/libxml2/result/noent/ |
D | slashdot16.xml | 10 <comments>20</comments> 21 <comments>12</comments> 32 <comments>10</comments> 43 <comments>385</comments> 54 <comments>20</comments> 65 <comments>12</comments> 76 <comments>10</comments> 87 <comments>385</comments> 98 <comments>164</comments> 109 <comments>48</comments> [all …]
|
D | slashdot.xml | 10 <comments>20</comments> 21 <comments>12</comments> 32 <comments>10</comments> 43 <comments>385</comments> 54 <comments>164</comments> 65 <comments>48</comments> 76 <comments>66</comments> 87 <comments>217</comments> 98 <comments>16</comments> 109 <comments>155</comments>
|
/external/icu/icu4c/source/test/testdata/ |
D | ra.txt | 11 * These are top level comments for the bundle. Tag name: ra 13 * @note Comments for tag named ra 17 * Top level comments for the string.Tag name: test1 31 * Top level comments for TestTable. Tag name: TestTable 62 * Top level comments for Tag name: TestArray 68 * comments for un-named string 74 * comments for un-named int 80 * comments for un-named binary 88 * comments for TestInclude 95 * comments for TestImport [all …]
|
/external/clang/lib/AST/ |
D | RawCommentList.cpp | 1 //===--- RawCommentList.cpp - Processing raw comments -----------*- C++ -*-===// 186 comments::Lexer L(Allocator, Context.getDiagnostics(), in extractBriefText() 190 comments::BriefParser P(L, Context.getCommentCommandTraits()); in extractBriefText() 202 comments::FullComment *RawComment::parse(const ASTContext &Context, in parse() 208 comments::Lexer L(Context.getAllocator(), Context.getDiagnostics(), in parse() 212 comments::Sema S(Context.getAllocator(), Context.getSourceManager(), in parse() 217 comments::Parser P(L, S, Context.getAllocator(), Context.getSourceManager(), in parse() 277 // Check if the comments are not in source order. in addComment() 278 while (!Comments.empty() && in addComment() 279 !SourceMgr.isBeforeInTranslationUnit(Comments.back()->getLocStart(), in addComment() [all …]
|
/external/proguard/src/proguard/ |
D | ClassSpecification.java | 35 public final String comments; field in ClassSpecification 49 * comments or class members. 68 this(classSpecification.comments, in ClassSpecification() 84 * @param comments provides optional comments on this 107 public ClassSpecification(String comments, in ClassSpecification() argument 115 this(comments, in ClassSpecification() 131 * @param comments provides optional comments on this 156 public ClassSpecification(String comments, in ClassSpecification() argument 166 this.comments = comments; in ClassSpecification() 223 // (this.comments == null ? other.comments == null : this.com… in equals() [all …]
|
/external/clang/include/clang/AST/ |
D | RawCommentList.h | 1 //===--- RawCommentList.h - Classes for processing raw comments -*- C++ -*-===// 24 namespace comments { 26 } // end namespace comments 32 RCK_OrdinaryBCPL, ///< Any normal BCPL comments 38 RCK_Merged ///< Two or more documentation comments merged together 95 /// Returns whether we are parsing all comments. 122 comments::FullComment *parse(const ASTContext &Context, 142 /// When true, ordinary comments starting with "//" and "/*" will be 143 /// considered as documentation comments. 163 /// \brief Compare comments' source locations. [all …]
|
/external/libxml2/ |
D | testC14N.c | 39 "--with-comments \t XML file canonicalization v1.0 w comments \n"); in usage() 41 "--without-comments \t XML file canonicalization v1.0 w/o comments\n"); in usage() 43 "--1-1-with-comments \t XML file canonicalization v1.1 w comments\n"); in usage() 45 "--1-1-without-comments \t XML file canonicalization v1.1 w/o comments\n"); in usage() 47 "--exc-with-comments \t Exclusive XML file canonicalization v1.0 w comments\n"); in usage() 49 "--exc-without-comments\t Exclusive XML file canonicalization v1.0 w/o comments\n"); in usage() 147 } else if(strcmp(argv[1], "--with-comments") == 0) { in main() 149 } else if(strcmp(argv[1], "--without-comments") == 0) { in main() 151 } else if(strcmp(argv[1], "--1-1-with-comments") == 0) { in main() 153 } else if(strcmp(argv[1], "--1-1-without-comments") == 0) { in main() [all …]
|