HomeSort by relevance Sort by last modified time
    Searched refs:comment (Results 226 - 250 of 498) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/gtest/src/
gtest-internal-inl.h 602 const char* comment, TypeId fixture_class_id,
624 // Returns the test case comment.
627 // Returns the test comment.
628 const char* comment() const { return comment_.c_str(); } function in class:testing::internal::TestInfoImpl
659 const String test_case_comment_; // Test case comment
660 const String comment_; // Test comment
691 TestCase(const char* name, const char* comment,
701 // Returns the test case comment.
702 const char* comment() const { return comment_.c_str(); } function in class:testing::TestCase
789 // Comment on the test case
    [all...]
gtest.cc 2177 const char* TestInfo::comment() const { function in class:testing::TestInfo
    [all...]
  /frameworks/base/tools/aapt/
ResourceTable.cpp 248 String16 comment;
289 outTable->appendComment(myPackage, attr16, ident, comment, appendComment);
290 //printf("Attribute %s comment: %s\n", String8(ident).string(),
291 // String8(comment).string());
327 attr.comment = String16(
757 const String16 eat_comment16("eat-comment");
912 symbols->appendComment(String8(name), comment, srcPos); local
1022 symbols->appendComment(String8(curName), comment, srcPos); local
1117 styleSymbols->appendComment(String8(ident), comment, srcPos); local
1162 symbols->appendComment(String8(itemIdent), comment, srcPos); local
    [all...]
ZipEntry.cpp 108 * Initialize a new entry. Pass in the file name and an optional comment.
112 void ZipEntry::initNew(const char* fileName, const char* comment)
121 if (comment != NULL)
122 mCDE.mFileCommentLength = strlen(comment);
132 strcpy((char*) mCDE.mFileComment, comment);
605 /* grab comment, if any */
664 /* write comment */
694 LOGD(" comment: '%s'\n", mFileComment);
ZipEntry.h 165 * and comment so that we can properly size the LFH area. The
166 * filename is mandatory, the comment is optional.
168 void initNew(const char* fileName, const char* comment);
  /system/core/libpixelflinger/codeflinger/
texturing.cpp 55 comment("compute initial iterated color (smooth and/or dither case)");
133 comment("load initial iterated color (8888 packed)");
138 comment("load initial iterated color (dest format packed)");
336 comment("compute texture coordinates");
452 comment("fetch texel");
460 comment("reload s/t (multitexture or linear filtering)");
467 comment("compute repeat/clamp");
507 comment("compute linear filtering offsets");
593 comment("iterate s,t");
610 comment("merge base & offset")
    [all...]
  /external/zlib/contrib/minizip/
zip.c 476 the global comment)
485 ZPOS64_T uMaxBack=0xffff; /* maximum size of global comment */
538 the global comment)
547 ZPOS64_T uMaxBack=0xffff; /* maximum size of global comment */
731 // read the comment from the standard central header.
784 /* zipfile global comment length */
1058 const char* comment, int method, int level, int raw,
    [all...]
  /build/tools/droiddoc/src/
ClassInfo.java 348 return comment().tags();
353 return comment().briefTags();
359 boolean commentDeprecated = (comment().deprecatedTags().length > 0);
371 + ": @Deprecated annotation and @deprecated comment do not match");
383 return comment().deprecatedTags();
572 // the ones in the class comment won't have any methods
573 for (AttrTagInfo tag: comment().attrTags()) {
587 for (AttrTagInfo tag: m.comment().attrTags()) {
603 for (AttrTagInfo tag: m.comment().attrTags()) {
941 TagInfo.makeHDF(data, "class.seeAlso", comment().seeTags())
    [all...]
  /build/core/
armelf.x 165 .comment 0 : { *(.comment) }
  /build/tools/zipalign/
ZipEntry.cpp 108 * Initialize a new entry. Pass in the file name and an optional comment.
112 void ZipEntry::initNew(const char* fileName, const char* comment)
121 if (comment != NULL)
122 mCDE.mFileCommentLength = strlen(comment);
132 strcpy((char*) mCDE.mFileComment, comment);
605 /* grab comment, if any */
664 /* write comment */
694 LOGD(" comment: '%s'\n", mFileComment);
ZipEntry.h 160 * and comment so that we can properly size the LFH area. The
161 * filename is mandatory, the comment is optional.
163 void initNew(const char* fileName, const char* comment);
  /device/samsung/crespo/alsa-lib/include/
conf.h 185 char *comment; /**< Comments */ member in struct:snd_devname
  /external/grub/stage2/
stage2.c 767 int pos = 0, literal = 0, comment = 0; local
811 if (comment)
814 comment = 0;
819 comment = 1;
  /external/libpcap/
pcap1.h 117 PCAP_COMMENT, /* comment */
159 unsigned char comment[0]; member in struct:pcap1_info_comment
  /external/libxml2/include/libxml/
SAX.h 146 comment (void *ctx,
  /external/openssl/crypto/perlasm/
x86nasm.pl 119 # comment out OPENSSL_ia32cap_P declarations
126 sub ::comment { foreach (@_) { push(@out,"\t; $_\n"); } }
  /external/qemu/
ia64.ld 182 .comment 0 : { *(.comment) }
ppc.ld 198 .comment 0 : { *(.comment) }
  /external/webkit/WebCore/platform/graphics/win/
WKCACFLayer.cpp 46 #pragma comment(lib, "QuartzCore_debug")
47 #pragma comment(lib, "QuartzCoreInterface_debug")
49 #pragma comment(lib, "QuartzCore")
50 #pragma comment(lib, "QuartzCoreInterface")
  /libcore/luni/src/main/java/java/io/
StreamTokenizer.java 23 * and different comment styles. The class can be used for limited processing
136 * '/' is a comment character. Single quote '\'' and double quote '"'
180 * be white space. '/' is a comment character.</li>
201 * Specifies that the character {@code ch} shall be treated as a comment
205 * the character to be considered a comment character.
464 // Check for comment character
482 * comment character, word component, white space, string delimiter or
497 * they have no special meaning as a comment character, word component,
568 * This kind of comment ends at the end of the line.
572 * of a comment, {@code false} otherwise
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/ext/
DefaultHandler2Test.java 124 method = "comment",
129 h.comment("<!-- Comment -->".toCharArray(), 0, 15);
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockHandler.java 119 public void comment(char[] ch, int start, int length) throws SAXException { method in class:MockHandler
120 logger.add("comment", ch, start, length);
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.2.1/arm-eabi/lib/ldscripts/
armelf.x 168 .comment 0 : { *(.comment) }
armelf.xbn 168 .comment 0 : { *(.comment) }
armelf.xc 173 .comment 0 : { *(.comment) }

Completed in 610 milliseconds

1 2 3 4 5 6 7 8 91011>>