Searched defs:comment (Results 26 - 50 of 195) sorted by relevance

12345678

/external/chromium_org/third_party/icu/source/tools/gennorm2/
H A Dgennorm2.cpp193 char *comment=(char *)strchr(line, '#'); local
194 if(comment!=NULL) {
195 *comment=0;
199 continue; // skip empty and comment-only lines
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dunewdata.c36 const char *comment,
109 if(comment!=NULL && *comment!=0) {
110 commentLength=(uint16_t)(uprv_strlen(comment)+1);
125 /* write the comment */
127 T_FileStream_write(pData->file, comment, commentLength);
34 udata_create(const char *dir, const char *type, const char *name, const UDataInfo *pInfo, const char *comment, UErrorCode *pErrorCode) argument
/external/chromium_org/third_party/zlib/contrib/minizip/
H A Dmztools.c140 char* comment = ""; local
141 int comsize = (int) strlen(comment);
188 if ((int)fwrite(comment, 1, comsize, fpOutCD) == comsize) {
215 char* comment = ""; // "ZIP File recovered by zlib/minizip/mztools"; local
216 int comsize = (int) strlen(comment);
227 WRITE_16(header + 20, comsize); /* comment */
234 if ((int)fwrite(comment, 1, comsize, fpOutCD) != comsize) {
/external/chromium_org/tools/gn/
H A Dcommand_args.cc66 // normal comment that has a space after the # will be indented 4 spaces
67 // (which makes our formatting come out nicely). If the comment is indented
72 // Tries to find the comment before the setting of the given value.
75 std::string* comment) {
97 comment->insert(0, StripHashFromLine(line) + "\n");
107 std::string location, comment; local
108 GetContextForValue(value, &location, &comment);
109 OutputString(" " + location + "\n" + comment);
303 " comment preceeding the declaration. If --short is specified,\n"
73 GetContextForValue(const Value& value, std::string* location_str, std::string* comment) argument
/external/doclava/src/com/google/doclava/
H A DDocInfo.java40 return comment().isHidden();
47 return comment().isRemoved();
60 return comment().isDocOnly();
77 public Comment comment() { method in class:DocInfo
/external/fonttools/Lib/fontTools/misc/
H A DxmlWriter.py75 def comment(self, data): member in class:XMLWriter
/external/fonttools/Tools/fontTools/misc/
H A DxmlWriter.py75 def comment(self, data): member in class:XMLWriter
/external/icu/icu4c/source/tools/gennorm2/
H A Dgennorm2.cpp193 char *comment=(char *)strchr(line, '#'); local
194 if(comment!=NULL) {
195 *comment=0;
199 continue; // skip empty and comment-only lines
/external/icu/icu4c/source/tools/toolutil/
H A Dunewdata.c36 const char *comment,
109 if(comment!=NULL && *comment!=0) {
110 commentLength=(uint16_t)(uprv_strlen(comment)+1);
125 /* write the comment */
127 T_FileStream_write(pData->file, comment, commentLength);
34 udata_create(const char *dir, const char *type, const char *name, const UDataInfo *pInfo, const char *comment, UErrorCode *pErrorCode) argument
/external/jdiff/src/jdiff/
H A DComments.java142 xsdFile.println(" <xsd:element name=\"comment\" type=\"commentType\" minOccurs='0' maxOccurs='unbounded'/>");
177 public void addComment(SingleComment comment) { argument
178 commentsList_.add(comment);
186 * The text placed into XML comments file where there is no comment yet.
192 * Return the comment associated with the given id in the Comment object.
193 * If there is no such comment, return the placeHolderText.
406 outputFile.println("<!-- This comment is no longer used ");
407 outputFile.println("<comment>");
412 outputFile.println("</comment>");
443 // See which comment id
[all...]
/external/protobuf/gtest/test/
H A Dgtest-unittest-api_test.cc108 Message comment; local
109 comment << "TypeParam = " << GetTypeName<int>().c_str();
110 return comment.GetString();
151 EXPECT_STREQ("", test_case->comment());
161 EXPECT_STREQ("", tests[0]->comment());
167 EXPECT_STREQ("", tests[1]->comment());
173 EXPECT_STREQ("", tests[2]->comment());
179 EXPECT_STREQ("", tests[3]->comment());
191 EXPECT_STREQ(GetExpectedTestCaseComment().c_str(), test_case->comment());
201 EXPECT_STREQ("", tests[0]->comment());
[all...]
/external/xmlwriter/src/org/jheer/
H A DXMLWriter.java138 * Write a comment in the XML document. The comment will be written
140 * @param comment the comment text
142 public void comment(String comment) throws IOException { argument
145 m_out.write(comment);
/external/zlib/src/contrib/minizip/
H A Dmztools.c150 char* comment = ""; local
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"; local
226 int comsize = (int) strlen(comment);
237 WRITE_16(header + 20, comsize); /* comment */
244 if ((int)fwrite(comment, 1, comsize, fpOutCD) != comsize) {
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicClientCookie.java111 * Returns the comment describing the purpose of this cookie, or
112 * <tt>null</tt> if no such comment has been defined.
114 * @return comment
124 * cookie's purpose will be described using this comment.
126 * @param comment
130 public void setComment(String comment) { argument
131 cookieComment = comment;
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DToSAXHandler.java132 * Receive notification of a comment.
134 * @see ExtendedLexicalHandler#comment(String)
136 public void comment(String comment) throws SAXException argument
143 final int len = comment.length();
148 comment.getChars(0,len, m_charsBuff, 0);
149 m_lexHandler.comment(m_charsBuff, 0, len);
150 // time to fire off comment event
H A DToTextStream.java466 * @param data The comment data.
470 public void comment(String data) throws org.xml.sax.SAXException method in class:ToTextStream
478 comment(m_charsBuff, 0, length);
482 * Report an XML comment anywhere in the document.
488 * @param ch An array holding the characters in the comment.
493 public void comment(char ch[], int start, int length) method in class:ToTextStream
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDOMBuilder.java621 * Report an XML comment anywhere in the document.
627 * @param ch An array holding the characters in the comment.
631 public void comment(char ch[], int start, int length) throws org.xml.sax.SAXException method in class:DOMBuilder
/external/chromium_org/chrome/browser/search/
H A Dsearch_unittest.cc110 const char* comment; member in struct:chrome::SearchTestCase
134 << test.url << " " << test.comment;
160 << test.url << " " << test.comment;
189 << test.url << " " << test.comment;
343 << test.url << " " << test.comment;
368 << test.url << " " << test.comment;
708 const char* comment; member in struct:chrome::ExtractSearchTermsTestCase
726 << test.url << " " << test.comment;
733 const char* comment; member in struct:chrome::QueryExtractionAllowedTestCase
751 << test.url << " " << test.comment;
[all...]
/external/chromium_org/media/base/
H A Daudio_video_metadata_extractor.cc172 const std::string& AudioVideoMetadataExtractor::comment() const { function in class:media::AudioVideoMetadataExtractor
248 if (ExtractString(tag, "comment", &comment_)) continue;
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dspreptst.c107 const char *comment; member in struct:ConformanceTestCases
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Dread.c67 struct UString *comment,
77 c = getNextChar(buf, TRUE, comment, status);
114 non comment, non whitespace item is a string, it reads it in as
359 /* parse multi-line comment and store it in token*/
429 error(line, "unterminated comment detected");
64 getNextToken(UCHARBUF* buf, struct UString *token, uint32_t *linenumber, struct UString *comment, UErrorCode *status) argument
/external/chromium_org/third_party/icu/source/tools/pkgdata/
H A Dpkgtypes.h121 const char *comment; /* comment string */ member in struct:UPKGOptions_
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/svgadump/
H A Dsvga_shader_dump.c703 struct sh_comment comment = *(struct sh_comment *)assem; local
705 /* Ignore comment contents. */
706 assem += sizeof(struct sh_comment) / sizeof(unsigned) + comment.size;
/external/chromium_org/third_party/skia/src/utils/
H A DSkParseColor.cpp182 SkString comment; local
212 comment.append(start, name - start);
216 SkDebugf("// %s\n", comment.c_str());
217 comment.reset();
/external/chromium_org/third_party/webrtc/base/
H A Dflags.cc27 Flag::Flag(const char* file, const char* name, const char* comment, argument
31 comment_(comment),

Completed in 2160 milliseconds

12345678