HomeSort by relevance Sort by last modified time
    Searched refs:getComment (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /external/apache-http/src/org/apache/http/cookie/
Cookie.java 72 String getComment();
  /external/nist-sip/java/javax/sip/header/
RetryAfterHeader.java 9 String getComment();
  /cts/tests/tests/text/src/android/text/util/cts/
Rfc822TokenTest.java 34 assertEquals(comment, rfc822Token1.getComment());
39 assertEquals(comment, rfc822Token2.getComment());
44 assertEquals(comment, rfc822Token3.getComment());
49 assertNull(rfc822Token4.getComment());
89 assertEquals(comment, rfc822Token.getComment());
93 assertEquals(comment, rfc822Token.getComment());
97 assertEquals(comment, rfc822Token.getComment());
100 assertNull(rfc822Token.getComment());
Rfc822TokenizerTest.java 148 assertEquals(comment, token.getComment());
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
ContinuingHttpServletRequestTest.java 98 assertEquals(one.getComment(), two.getComment());
  /external/nist-sip/java/gov/nist/javax/sip/header/
RetryAfter.java 145 public String getComment() {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
ZipEntryTest.java 75 * java.util.zip.ZipEntry#getComment()
78 // Test for method java.lang.String java.util.zip.ZipEntry.getComment()
80 assertNull("Incorrect Comment Returned.", zipEntry.getComment());
83 "This Is A Comment", zipEntry.getComment());
178 "Set comment using api", zentry.getComment());
181 assertNull("Comment not correctly set", zentry.getComment());
390 .getComment());
  /external/jetty/src/java/org/eclipse/jetty/http/
HttpCookie.java 131 public String getComment()
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ACommentCommand.java 67 public TComment getComment()
  /libcore/luni/src/test/java/libcore/java/util/zip/
ZipEntryTest.java 195 assertEquals(maxLengthComment, zipFile.getEntry("x").getComment());
225 assertEquals(comment, zipFile.getEntry("x").getComment());
228 assertEquals(comment, zipFile.getEntry("y").getComment());
AbstractZipFileTest.java 416 assertEquals(expectedFileComment, zipFile.getComment());
417 assertEquals(expectedEntryComment, zipFile.getEntry("a").getComment());
430 assertEquals(null, zipFile.getComment());
  /frameworks/base/tools/aapt2/java/
JavaClassGenerator.cpp 170 << "<td>" << util::trimWhitespace(symbol.symbol.getComment()) << "</td></tr>";
263 if (!styleable->getComment().empty()) {
264 styleableComment << styleable->getComment() << "\n";
287 StringPiece16 attrCommentLine = entry.symbol->attribute->getComment();
357 StringPiece16 comment = styleableAttr.attrRef->getComment();
359 comment = styleableAttr.symbol->attribute->getComment();
467 processor->appendComment(configValue->value->getComment());
JavaClassGenerator_test.cpp 288 EXPECT_NE(std::string::npos, actual.find(util::utf16ToUtf8(attr.getComment())));
289 EXPECT_NE(std::string::npos, actual.find(util::utf16ToUtf8(styleable.getComment())));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
HttpCookieTest.java 345 * java.net.HttpCookie#getComment(), setComment(String)
351 assertNull(cookie.getComment());
354 assertEquals("", cookie.getComment());
358 assertEquals("cookie''s @#$!&*()", cookie.getComment());
472 assertEquals("test comment", cloneCookie.getComment());
650 assertNull(cookie.getComment());
685 assertEquals("version1-cookie", cookie.getComment());
702 assertNull(cookie.getComment());
707 assertEquals("sentence", cookie.getComment());
803 assertEquals("c234", cookie.getComment());
    [all...]
  /external/jsoncpp/src/lib_json/
json_writer.cpp 419 std::string normalizedComment = normalizeEOL(root.getComment(commentBefore));
434 document_ += " " + normalizeEOL(root.getComment(commentAfterOnSameLine));
438 document_ += normalizeEOL(root.getComment(commentAfter));
644 *document_ << normalizeEOL(root.getComment(commentBefore));
650 *document_ << " " + normalizeEOL(root.getComment(commentAfterOnSameLine));
654 *document_ << normalizeEOL(root.getComment(commentAfter));
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
ContinuingHttpServletRequest.java 105 super.setComment(original.getComment());
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
CookiesTest.java 81 assertEquals(null, cookie.getComment());
111 assertEquals("this cookie is delicious", cookie.getComment());
144 assertEquals("this cookie is delicious", cookie.getComment());
178 assertEquals("this cookie is delicious", cookie.getComment());
  /frameworks/base/tools/aapt2/link/
AutoVersioner.cpp 118 newStyle->setComment(style->getComment());
  /frameworks/base/tools/aapt2/proto/
TableProtoSerializer.cpp 173 if (!item.getComment().empty()) {
174 pbItem->set_comment(util::utf16ToUtf8(item.getComment()));
256 if (!configValue->value->getComment().empty()) {
257 pbValue->set_comment(util::utf16ToUtf8(configValue->value->getComment()));
  /frameworks/multidex/library/test/src/android/support/multidex/
ZipUtilTest.java 100 Assert.assertEquals(refEntry.getComment(), checkEntry.getComment());
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicClientCookie.java 118 public String getComment() {
128 * @see #getComment()
  /frameworks/base/core/java/android/text/util/
Rfc822Token.java 59 public String getComment() {
  /libcore/ojluni/src/main/java/java/util/zip/
ZipEntry.java 278 * @see #getComment()
301 public String getComment() {
  /external/jsoncpp/src/jsontestrunner/
main.cpp 65 fprintf(fout, "%s\n", value.getComment(Json::commentBefore).c_str());
125 fprintf(fout, "%s\n", value.getComment(Json::commentAfter).c_str());
  /frameworks/base/tools/aapt2/
ResourceParser_test.cpp 469 EXPECT_EQ(value->getComment(), u"This is a comment");
481 EXPECT_EQ(value->getComment(), u"Two");
495 EXPECT_EQ(value->getComment(), u"One");
517 EXPECT_EQ(StringPiece16(u"The name of the bar"), styleable->entries.front().getComment());
523 EXPECT_EQ(StringPiece16(u"The very first"), attr->symbols.front().symbol.getComment());

Completed in 864 milliseconds

1 2 3 4 5 6 7 8