/external/nist-sip/java/gov/nist/javax/sip/header/ |
RetryAfter.java | 49 * Comment for <code>serialVersionUID</code> 61 /** 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 [all...] |
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
RetryAfterParser.java | 89 String comment = this.lexer.comment(); local 90 retryAfter.setComment(comment);
|
ViaParser.java | 109 // JvB Note: RFC3261 does not allow a comment in Via headers anymore 114 StringBuffer comment = new StringBuffer(); local 123 comment.append(tok.getTokenValue()); 126 comment.append(tok.getTokenValue()); 131 comment.append(ch); 135 v.setComment(comment.toString());
|
/external/protobuf/gtest/test/ |
gtest-unittest-api_test.cc | 108 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...] |
/frameworks/base/core/java/android/text/util/ |
Rfc822Tokenizer.java | 48 StringBuilder comment = new StringBuilder(); local 68 comment.toString())); 72 comment.toString())); 77 comment.setLength(0); 106 comment.append(c); 112 comment.append(c); 117 comment.append(text.charAt(i + 1)); 121 comment.append(c); 153 comment.toString())); 157 comment.toString())) [all...] |
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
importNode03.java | 36 * The importedNode is of type Comment. 38 * Create a comment node with value being the string "this is a comment" in 40 * this document. Method should return a comment node whose value matches 72 Comment comment; local 80 comment = aNewDoc.createComment("this is a comment"); 81 aNode = doc.importNode(comment, false); 88 assertEquals("nodeValue", "this is a comment", value) [all...] |
importNode04.java | 39 * Create a Comment child node for the Document Fragment. 43 * comment value "descendant1". 74 Comment comment; local 82 comment = aNewDoc.createComment("descendant1"); 83 aNode = docFrag.appendChild(comment);
|
/libcore/luni/src/test/java/libcore/xml/ |
SimpleBuilderTest.java | 22 import org.w3c.dom.Comment; 94 String comment = ""; local 101 } else if (node instanceof Comment) { 102 comment = comment + node.getNodeValue(); 107 assertEquals(" Fragile! Handle me with care! ", comment);
|
/libcore/xml/src/main/java/org/xmlpull/v1/ |
XmlSerializer.java | 28 * PROCESSING_INSTRUCTION, COMMENT, and DOCDECL in some implementations 305 void comment (String text) method in interface:XmlSerializer
|
/system/core/libzipfile/ |
private.h | 34 const unsigned char* comment; //mComment;
member in struct:Zipfile
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
ToSAXHandler.java | 132 * Receive notification of a comment. 134 * @see ExtendedLexicalHandler#comment(String) 136 public void comment(String comment) throws SAXException method in class:ToSAXHandler 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
|
/cts/tests/tests/text/src/android/text/util/cts/ |
Rfc822TokenTest.java | 30 final String comment = "work"; local 31 Rfc822Token rfc822Token1 = new Rfc822Token(name, address, comment); 34 assertEquals(comment, rfc822Token1.getComment()); 36 Rfc822Token rfc822Token2 = new Rfc822Token(null, address, comment); 39 assertEquals(comment, rfc822Token2.getComment()); 41 Rfc822Token rfc822Token3 = new Rfc822Token(name, null, comment); 44 assertEquals(comment, rfc822Token3.getComment()); 55 final String comment = "work"; local 56 Rfc822Token rfc822Token = new Rfc822Token(name, address, comment); 80 // issue 1695243, not clear what is supposed to happen if comment is null 87 String comment = "work"; local 106 final String comment = "work"; local [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
XStringForChars.java | 148 * comment method on the passed LexicalHandler for the 158 lh.comment((char[])m_obj, m_start, m_length);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/ |
options.py | 40 comment = make_option("--comment", action="store", type="string", dest="comment", help="Comment to post to bug.") variable in class:Options
|
/external/chromium_org/third_party/icu/source/tools/pkgdata/ |
pkgtypes.h | 121 const char *comment; /* comment string */ member in struct:UPKGOptions_
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/svgadump/ |
svga_shader_dump.c | 703 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/zlib/contrib/minizip/ |
mztools.c | 140 char* comment = ""; local 141 int comsize = (int) strlen(comment); 186 /* Comment field */ 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 */ 232 /* Comment field */ 234 if ((int)fwrite(comment, 1, comsize, fpOutCD) != comsize) {
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/ |
ScenarioResultsElement.java | 141 String comment = preferences.get(getId(), null); local 142 if (comment != null) { 148 buffer.append(comment);
|
/external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/ |
TocUpdator.pm | 220 # 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 matches update end token 622 sub comment { subroutine [all...] |
/external/mesa3d/src/gallium/drivers/svga/svgadump/ |
svga_shader_dump.c | 703 struct sh_comment comment = *(struct sh_comment *)assem; local 705 /* Ignore comment contents. */ 706 assem += sizeof(struct sh_comment) / sizeof(unsigned) + comment.size;
|
/external/openssh/ |
sshconnect1.c | 66 char *comment; local 81 for (key = ssh_get_first_identity(auth, &comment, 1); 83 key = ssh_get_next_identity(auth, &comment, 1)) { 86 debug("Trying RSA authentication via agent with '%.100s'", comment); 87 xfree(comment); 210 char buf[300], *passphrase, *comment, *authfile; local 215 comment = xstrdup(authfile); 217 debug("Trying RSA authentication with key '%.100s'", comment); 234 xfree(comment); 261 "Enter passphrase for RSA key '%.100s': ", comment); [all...] |
/external/proguard/src/proguard/ |
WordReader.java | 156 String comment = currentLine.substring(comments_start + 1); local 158 comment : 159 currentComments + '\n' + comment;
|
/external/proguard/src/proguard/io/ |
JarWriter.java | 33 * 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);
|
/external/xmlwriter/src/org/jheer/ |
XMLWriter.java | 138 * 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 { method in class:XMLWriter 145 m_out.write(comment);
|
/external/zlib/src/contrib/minizip/ |
mztools.c | 150 char* comment = ""; local 151 int comsize = (int) strlen(comment); 196 /* Comment field */ 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 */ 242 /* Comment field */ 244 if ((int)fwrite(comment, 1, comsize, fpOutCD) != comsize) {
|