Searched defs:comment (Results 1 - 25 of 99) sorted by relevance

1234

/external/clang/test/Preprocessor/
H A Dmacro_paste_msextensions.c12 #define comment /##/ dead tokens live here macro
13 comment This is stupidity
19 #define nested(x) int x comment cute little dead tokens...
/external/iptables/include/linux/netfilter/
H A Dxt_comment.h7 char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
/external/kernel-headers/original/linux/netfilter/
H A Dxt_comment.h7 unsigned char comment[XT_MAX_COMMENT_LEN]; member in struct:xt_comment_info
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DExtendedLexicalHandler.java33 * This method is used to notify of a comment
34 * @param comment the comment, but unlike the SAX comment() method this
38 public void comment(String comment) throws SAXException; argument
/external/bluetooth/bluez/tools/
H A Dkword.h41 char comment[MAXCOMMENTLEN + 1]; member in struct:rfcomm_opts
/external/webkit/LayoutTests/fast/dom/Node/script-tests/
H A Dinitial-values.js53 var comment = document.createComment("foo"); variable
54 shouldBe("comment.nodeName", "'#comment'");
55 shouldBe("comment.localName", "null");
56 shouldBe("comment.namespaceURI", "null");
57 shouldBe("comment.prefix", "null");
58 shouldBe("comment.nodeValue", "'foo'");
59 shouldBe("comment.data", "'foo'");
60 shouldBe("comment.attributes", "null");
/external/doclava/src/com/google/doclava/
H A DKeywordEntry.java22 KeywordEntry(String label, String href, String comment) { argument
25 this.comment = comment;
31 data.setValue(base + ".comment", this.comment);
44 private String comment; field in class:KeywordEntry
H A DAttributeInfo.java45 for (AttrTagInfo comment : attrField.comment().attrTags()) {
46 String n = comment.name();
59 public Comment comment() { method in class:AttributeInfo
61 for (AttrTagInfo attr : attrField.comment().attrTags()) {
89 TagInfo.makeHDF(data, base + ".deprecated", attrField.comment().deprecatedTags());
90 TagInfo.makeHDF(data, base + ".shortDescr", comment().briefTags());
91 TagInfo.makeHDF(data, base + ".descr", comment().tags());
H A DParsedTagInfo.java39 protected void setCommentText(String comment) { argument
40 mCommentText = comment;
H A DDocInfo.java37 return comment().isHidden();
41 return comment().isDocOnly();
58 public Comment comment() { method in class:DocInfo
/external/icu4c/samples/legacy/
H A Dlegacy.cpp39 void printArray(const char* const comment, const UChar UArray[][5], int32_t arraySize) { argument
40 fprintf (stdout, "%s\n", comment);
49 void printKeys(const char *comment, uint8_t keys[][32], int32_t keySize) { argument
52 fprintf(stdout, "%s\n", comment);
/external/apache-http/src/org/apache/http/cookie/
H A DSetCookie.java50 * cookie's purpose will be described using this comment.
52 * @param comment
56 void setComment(String comment); argument
/external/nist-sip/java/javax/sip/header/
H A DRetryAfterHeader.java10 void setComment(String comment) throws ParseException; argument
/external/proguard/src/proguard/io/
H A DJarWriter.java33 * The manifest and comment properties can optionally be set.
41 private final String comment; field in class:JarWriter
53 * Creates a new JarWriter without manifest or comment.
66 String comment)
70 this.comment = comment;
206 // Add a comment, if set.
207 if (comment != null)
209 currentJarOutputStream.setComment(comment);
64 JarWriter(DataEntryWriter dataEntryWriter, Manifest manifest, String comment) argument
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DRetryAfter.java61 /** comment field
63 protected String comment; field in class:RetryAfter
80 if (comment != null)
81 s.append(SP + LPAREN + comment + RPAREN);
91 * @return true if comment exist, false otherwise
94 return comment != null;
97 /** remove comment field
100 comment = null;
139 * Gets the comment of RetryAfterHeader.
141 * @return the comment o
157 setComment(String comment) argument
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dflags.cc44 Flag::Flag(const char* file, const char* name, const char* comment, argument
48 comment_(comment),
/external/icu4c/tools/gennorm2/
H A Dgennorm2.cpp192 char *comment=(char *)strchr(line, '#'); local
193 if(comment!=NULL) {
194 *comment=0;
198 continue; // skip empty and comment-only lines
/external/icu4c/tools/pkgdata/
H A Dpkgtypes.h121 const char *comment; /* comment string */ member in struct:UPKGOptions_
/external/icu4c/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/libvpx/examples/includes/HTML-Toc-0.91/
H A DTocUpdator.pm220 # Arrays containing start, end, comment & text tokens which indicate
227 {} # {'<comment>' => ''}
229 # Arrays containing start, end, comment & text tokens which indicate
236 {} # {'<comment>' => ''}
357 #--- HTML::TocUpdator::comment() ----------------------------------------------
358 # function: Process comment.
359 # args: - $aComment: comment text with '<!--' and '-->' tags stripped off.
361 sub comment { subroutine
371 $self->SUPER::comment($aComment);
375 # Does comment matche
622 sub comment { subroutine
[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/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Doptions.py40 comment = make_option("--comment", action="store", type="string", dest="comment", help="Comment to post to bug.") variable in class:Options
/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/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) {

Completed in 579 milliseconds

1234