/external/icu4c/test/testdata/ |
D | ra.txt | 9 * These are top level comments for the bundle. Tag name: ra 15 * Top level comments for the string.Tag name: test1 29 * Top level comments for TestTable. Tag name: TestTable 60 * Top level comments for Tag name: TestArray 66 * comments for un-named string 72 * comments for un-named int 78 * comments for un-named binary 86 * comments for TestInclude 93 * comments for TestImport 100 * comments for TestIntVector [all …]
|
/external/clang/tools/libclang/ |
D | CXComment.h | 25 namespace comments { 31 inline CXComment createCXComment(const comments::Comment *C, in createCXComment() 39 inline const comments::Comment *getASTNode(CXComment CXC) { in getASTNode() 40 return static_cast<const comments::Comment *>(CXC.ASTNode); in getASTNode() 45 const comments::Comment *C = getASTNode(CXC); in getASTNodeAs() 56 inline comments::CommandTraits &getCommandTraits(CXComment CXC) { in getCommandTraits()
|
/external/proguard/src/proguard/ |
D | ClassSpecification.java | 35 public final String comments; field in ClassSpecification 68 this(classSpecification.comments, in ClassSpecification() 107 public ClassSpecification(String comments, in ClassSpecification() argument 115 this(comments, in ClassSpecification() 156 public ClassSpecification(String comments, in ClassSpecification() argument 166 this.comments = comments; in ClassSpecification()
|
D | ConfigurationWriter.java | 396 writeComments(classSpecification.comments); in writeOption() 474 private void writeComments(String comments) in writeComments() argument 476 if (comments != null) in writeComments() 479 while (index < comments.length()) in writeComments() 481 int breakIndex = comments.indexOf('\n', index); in writeComments() 484 breakIndex = comments.length(); in writeComments() 489 if (comments.charAt(index) != ' ') in writeComments() 494 writer.println(comments.substring(index, breakIndex)); in writeComments()
|
D | WordReader.java | 245 String comments = currentComments; in lastComments() local 247 return comments; in lastComments()
|
/external/llvm/test/YAMLParser/ |
D | spec-09-23.data | 7 # comments: 10 # comments: 13 # comments.
|
/external/libvorbis/lib/ |
D | info.c | 67 (vc->comments+2)*sizeof(*vc->user_comments)); in vorbis_comment_add() 69 (vc->comments+2)*sizeof(*vc->comment_lengths)); in vorbis_comment_add() 70 vc->comment_lengths[vc->comments]=strlen(comment); in vorbis_comment_add() 71 vc->user_comments[vc->comments]=_ogg_malloc(vc->comment_lengths[vc->comments]+1); in vorbis_comment_add() 72 strcpy(vc->user_comments[vc->comments], comment); in vorbis_comment_add() 73 vc->comments++; in vorbis_comment_add() 74 vc->user_comments[vc->comments]=NULL; in vorbis_comment_add() 106 for(i=0;i<vc->comments;i++){ in vorbis_comment_query() 125 for(i=0;i<vc->comments;i++){ in vorbis_comment_query_count() 137 for(i=0;i<vc->comments;i++) in vorbis_comment_clear() [all …]
|
/external/flac/libFLAC/ |
D | metadata_object.c | 201 object->length += object->data.vorbis_comment.comments[i].length; in vorbiscomment_calculate_length_() 304 …if(FLAC__metadata_object_vorbiscomment_entry_matches(object->data.vorbis_comment.comments[i], fiel… in vorbiscomment_find_entry_from_() 572 FLAC__ASSERT(0 == object->data.vorbis_comment.comments); in FLAC__metadata_object_clone() 573 to->data.vorbis_comment.comments = 0; in FLAC__metadata_object_clone() 576 FLAC__ASSERT(0 != object->data.vorbis_comment.comments); in FLAC__metadata_object_clone() 577 …to->data.vorbis_comment.comments = vorbiscomment_entry_array_copy_(object->data.vorbis_comment.com… in FLAC__metadata_object_clone() 578 if(0 == to->data.vorbis_comment.comments) { in FLAC__metadata_object_clone() 656 if(0 != object->data.vorbis_comment.comments) { in FLAC__metadata_object_delete_data() 658 …vorbiscomment_entry_array_delete_(object->data.vorbis_comment.comments, object->data.vorbis_commen… in FLAC__metadata_object_delete_data() 776 if(0 != block1->comments[i].entry && 0 != block2->comments[i].entry) { in compare_block_data_vorbiscomment_() [all …]
|
/external/tremolo/Tremolo/ |
D | treminfo.c | 83 for(i=0;i<vc->comments;i++){ in vorbis_comment_query() 102 for(i=0;i<vc->comments;i++){ in vorbis_comment_query_count() 113 for(i=0;i<vc->comments;i++) in vorbis_comment_clear() 222 vc->comments=oggpack_read(opb,32); in _vorbis_unpack_comment() 223 if(vc->comments<0)goto err_out; in _vorbis_unpack_comment() 224 vc->user_comments=(char **)_ogg_calloc(vc->comments+1,sizeof(*vc->user_comments)); in _vorbis_unpack_comment() 225 vc->comment_lengths=(int *)_ogg_calloc(vc->comments+1, sizeof(*vc->comment_lengths)); in _vorbis_unpack_comment() 227 for(i=0;i<vc->comments;i++){ in _vorbis_unpack_comment()
|
/external/clang/lib/AST/ |
D | RawCommentList.cpp | 146 comments::Lexer L(Allocator, Context.getCommentCommandTraits(), in extractBriefText() 149 comments::BriefParser P(L, Context.getCommentCommandTraits()); in extractBriefText() 161 comments::FullComment *RawComment::parse(const ASTContext &Context, in parse() 166 comments::Lexer L(Context.getAllocator(), Context.getCommentCommandTraits(), in parse() 169 comments::Sema S(Context.getAllocator(), Context.getSourceManager(), in parse() 173 comments::Parser P(L, S, Context.getAllocator(), Context.getSourceManager(), in parse()
|
/external/proguard/src/proguard/gui/ |
D | ClassSpecificationsPanel.java | 208 String comments = classSpecification.comments; in getListCellRendererComponent() local 210 …label.setText(comments != null ? comments.trim() … in getListCellRendererComponent()
|
D | ClassSpecificationDialog.java | 381 String comments = classSpecification.comments; in setClassSpecification() local 390 commentsTextArea.setText(comments == null ? "" : comments); in setClassSpecification() 436 String comments = commentsTextArea.getText(); in getClassSpecification() local 443 new ClassSpecification(comments.equals("") ? null : comments, in getClassSpecification()
|
/external/clang/test/Parser/ |
D | ms-inline-asm.c | 12 int 0x2c ; } asm comments are fun! }{ in t5() 17 …__asm int 3 ; } comments for single-line asm // expected-warning {{MS-style inline assembly is not…
|
/external/markdown/tests/misc/ |
D | benchmark.dat | 16 comments:0.040000:0.000000 42 multiline-comments:0.090000:0.000000
|
/external/clang/test/CodeGen/ |
D | ms-inline-asm.c | 52 int 0x2c ; } asm comments are fun! }{ in t7() 60 __asm int 3 ; } comments for single-line asm
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
D | regress-31255.js | 68 --> HTML comment end is JS comments until end-of-line 70 --> so in the following --> should not be treated as comments
|
/external/libvpx/examples/includes/geshi/contrib/ |
D | cssgen.php | 409 $comments = get_var('comments'); variable 411 if ( $comments != '' ) 413 $stylesheet .= "\n$comment_selector {{$comments}}";
|
/external/apache-harmony/auth/src/test/resources/ |
D | auth.conf | 10 /*some comments*/ 42 //some comments
|
/external/jdiff/src/jdiff/ |
D | Comments.java | 195 public static String getComment(Comments comments, String id) { in getComment() argument 196 if (comments == null) in getComment() 199 int idx = Collections.binarySearch(comments.commentsList_, key); in getComment() 203 int startIdx = comments.commentsList_.indexOf(key); in getComment() 204 int endIdx = comments.commentsList_.indexOf(key); in getComment() 209 SingleComment singleComment = (SingleComment)(comments.commentsList_.get(idx)); in getComment()
|
/external/v8/src/ |
D | disassembler.cc | 169 List<const char*> comments(4); in DecodeIt() local 177 comments.Add(reinterpret_cast<const char*>(it->rinfo()->data())); in DecodeIt() 189 for (int i = 0; i < comments.length(); i++) { in DecodeIt() 190 out.AddFormatted(" %s", comments[i]); in DecodeIt()
|
/external/oprofile/doc/ |
D | CodingStyle | 33 Use Doxygen comments judiciously. Actual source code should generally 36 function comments go in the header (except for static functions obviously). 38 Do not use trailing comments, unless they are used for an enum or struct 116 Use the standard comments + include guards for headers.
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
D | DB_Results.java | 960 String[] comments = null; 967 if (comments == null) { 968 comments = new String[commentID+10]; 969 } else if (commentID >= comments.length) { 970 int length = comments.length; 971 System.arraycopy(comments, 0, comments = new String[commentID+10], 0, length); 973 comments[commentID] = comment; 975 COMMENTS = comments;
|
/external/mesa3d/src/glsl/glcpp/tests/ |
D | 063-comments.c | 18 are not treated like comments.
|
D | 063-comments.c.expected | 11 are not treated like comments.
|
/external/clang/include/clang/AST/ |
D | RawCommentList.h | 22 namespace comments { 117 comments::FullComment *parse(const ASTContext &Context, const Decl *D) const;
|