HomeSort by relevance Sort by last modified time
    Searched refs:append (Results 326 - 350 of 8643) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/platform/text/
QuotedPrintable.cpp 83 out.append(crlfLineEnding, strlen(crlfLineEnding));
98 out.append('=');
99 out.append(crlfLineEnding, strlen(crlfLineEnding));
105 out.append('=');
106 out.append(upperNibbleToASCIIHexDigit(currentCharacter));
107 out.append(lowerNibbleToASCIIHexDigit(currentCharacter));
110 out.append(currentCharacter);
130 out.append(currentCharacter);
135 // Unfinished = sequence, append as is.
136 out.append(currentCharacter)
    [all...]
  /external/oauth/core/src/main/java/net/oauth/client/
URLConnectionClient.java 59 headers.append(" ").append(url.getPath());
62 headers.append("?").append(query);
64 headers.append(EOL);
69 headers.append(key).append(": ").append(value).append(EOL);
82 headers.append(key).append(": ").append(header.getValue()).append(EOL)
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
HexDump.java 35 result.append("\n0x");
36 result.append(toHexString(offset));
42 result.append(" ");
48 result.append(new String(line, j, 1));
52 result.append(".");
56 result.append("\n0x");
57 result.append(toHexString(i));
62 result.append(" ");
63 result.append(HEX_DIGITS[(b >>> 4) & 0x0F]);
64 result.append(HEX_DIGITS[b & 0x0F])
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
FormatterBenchmark.java 38 sb.append("this is a reasonably short string that doesn't actually need any formatting");
62 sb.append("this is a reasonably short string that has an int ");
63 sb.append(1024);
64 sb.append(" in it");
79 sb.append("this is a reasonably short string that has an int ");
80 sb.append(Integer.toHexString(1024));
81 sb.append(" in it");
112 sb.append("this is a reasonably short string that has a float ");
113 sb.append(10.24f);
114 sb.append(" in it")
    [all...]
  /libcore/luni/src/main/java/javax/xml/parsers/
FilePathToURI.java 65 buffer.append("file://");
70 buffer.append('/');
82 buffer.append('%');
83 buffer.append(gAfterEscaping1[ch]);
84 buffer.append(gAfterEscaping2[ch]);
88 buffer.append((char)ch);
111 buffer.append('%');
112 buffer.append(gHexChs[ch >> 4]);
113 buffer.append(gHexChs[ch & 0xf]);
116 buffer.append('%')
    [all...]
  /libcore/luni/src/main/java/javax/xml/transform/
TransformerException.java 213 sbuffer.append(message);
222 sbuffer.append("; SystemID: ");
223 sbuffer.append(systemID);
227 sbuffer.append("; Line#: ");
228 sbuffer.append(line);
232 sbuffer.append("; Column#: ");
233 sbuffer.append(column);
255 sbuffer.append("; SystemID: ");
256 sbuffer.append(systemID);
260 sbuffer.append("; Line#: ")
    [all...]
  /libcore/luni/src/main/java/javax/xml/transform/stream/
FilePathToURI.java 65 buffer.append("file://");
70 buffer.append('/');
82 buffer.append('%');
83 buffer.append(gAfterEscaping1[ch]);
84 buffer.append(gAfterEscaping2[ch]);
88 buffer.append((char)ch);
111 buffer.append('%');
112 buffer.append(gHexChs[ch >> 4]);
113 buffer.append(gHexChs[ch & 0xf]);
116 buffer.append('%')
    [all...]
  /external/chromium_org/ppapi/tests/
testing_instance.cc 73 errors_.append(std::string("Unknown test case ") + argv[i]);
75 errors_.append(" Test case could not initialize.");
140 html.append("<div class=\"test_line\"><span class=\"test_name\">");
141 html.append(test_name);
142 html.append("</span> ");
144 html.append("<span class=\"pass\">PASS</span>");
146 html.append("<span class=\"fail\">FAIL</span>: <span class=\"err_msg\">");
147 html.append(error_message);
148 html.append("</span>");
151 errors_.append(", "); // Separator for different error messages
    [all...]
  /external/chromium_org/third_party/icu/source/common/
util.cpp 37 return result.append((UChar)63/*?*/);
42 result.append((UChar)45/*-*/);
54 result.append(DIGITS[0]);
58 result.append(DIGITS[digit]);
76 * append the escaped notation and return TRUE.
80 result.append(BACKSLASH);
82 result.append(UPPER_U);
83 result.append(DIGITS[0xF&(c>>28)]);
84 result.append(DIGITS[0xF&(c>>24)]);
85 result.append(DIGITS[0xF&(c>>20)])
    [all...]
  /external/icu4c/common/
util.cpp 38 return result.append((UChar)63/*?*/);
43 result.append((UChar)45/*-*/);
55 result.append(DIGITS[0]);
59 result.append(DIGITS[digit]);
77 * append the escaped notation and return TRUE.
81 result.append(BACKSLASH);
83 result.append(UPPER_U);
84 result.append(DIGITS[0xF&(c>>28)]);
85 result.append(DIGITS[0xF&(c>>24)]);
86 result.append(DIGITS[0xF&(c>>20)])
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
FormField.java 271 buf.append("<field");
274 buf.append(" label=\"").append(getLabel()).append("\"");
277 buf.append(" var=\"").append(getVariable()).append("\"");
280 buf.append(" type=\"").append(getType()).append("\"");
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bookmark/
Bookmarks.java 170 buf.append("<storage xmlns=\"storage:bookmarks\">");
178 buf.append("<url name=\"").append(urlStorage.getName()).
179 append("\" url=\"").append(urlStorage.getURL()).append("\"");
181 buf.append(" rss=\"").append(true).append("\"");
183 buf.append(" />");
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
X509CRLObject.java 393 buf.append(" Version: ").append(this.getVersion()).append(
395 buf.append(" IssuerDN: ").append(this.getIssuerDN())
396 .append(nl);
397 buf.append(" This update: ").append(this.getThisUpdate())
398 .append(nl);
399 buf.append(" Next update: ").append(this.getNextUpdate()
    [all...]
X509CRLEntryObject.java 247 buf.append(" userCertificate: ").append(this.getSerialNumber()).append(nl);
248 buf.append(" revocationDate: ").append(this.getRevocationDate()).append(nl);
249 buf.append(" certificateIssuer: ").append(this.getCertificateIssuer()).append(nl);
258 buf.append(" crlEntryExtensions:").append(nl)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
X509CRLObject.java 391 buf.append(" Version: ").append(this.getVersion()).append(
393 buf.append(" IssuerDN: ").append(this.getIssuerDN())
394 .append(nl);
395 buf.append(" This update: ").append(this.getThisUpdate())
396 .append(nl);
397 buf.append(" Next update: ").append(this.getNextUpdate()
    [all...]
X509CRLEntryObject.java 247 buf.append(" userCertificate: ").append(this.getSerialNumber()).append(nl);
248 buf.append(" revocationDate: ").append(this.getRevocationDate()).append(nl);
249 buf.append(" certificateIssuer: ").append(this.getCertificateIssuer()).append(nl);
258 buf.append(" crlEntryExtensions:").append(nl)
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicClientCookie.java 325 buffer.append("[version: ");
326 buffer.append(Integer.toString(this.cookieVersion));
327 buffer.append("]");
328 buffer.append("[name: ");
329 buffer.append(this.name);
330 buffer.append("]");
331 buffer.append("[value: ");
332 buffer.append(this.value);
333 buffer.append("]");
334 buffer.append("[domain: ")
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
ScanResult.java 126 sb.append("SSID: ").
127 append(wifiSsid == null ? WifiSsid.NONE : wifiSsid).
128 append(", BSSID: ").
129 append(BSSID == null ? none : BSSID).
130 append(", capabilities: ").
131 append(capabilities == null ? none : capabilities).
132 append(", level: ").
133 append(level).
134 append(", frequency: ").
135 append(frequency)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
IssuingDistributionPoint.java 111 sb.append(prefix).append("Issuing Distribution Point: [\n");
115 sb.append(prefix).append(" onlyContainsUserCerts: ").append(onlyContainsUserCerts).append('\n');
116 sb.append(prefix).append(" onlyContainsCACerts: ").append(onlyContainsCACerts).append('\n')
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
Perl5Target.java 50 buf.append("\\x{0000}");
53 buf.append(targetCharValueEscape[c]);
58 buf.append((char) c);
64 buf.append("\\x{");
65 buf.append(hex);
66 buf.append("}");
72 buf.append('\'');
76 buf.append('\"');
  /external/apache-http/src/org/apache/http/cookie/
CookieOrigin.java 96 buffer.append('[');
98 buffer.append("(secure)");
100 buffer.append(this.host);
101 buffer.append(':');
102 buffer.append(Integer.toString(this.port));
103 buffer.append(this.path);
104 buffer.append(']');
  /external/chromium/base/json/
string_escape.cc 25 dst->append("\\b");
28 dst->append("\\f");
31 dst->append("\\n");
34 dst->append("\\r");
37 dst->append("\\t");
40 dst->append("\\\\");
43 dst->append("\\\"");
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGRect.h 62 builder.append(String::number(type.x()));
63 builder.append(' ');
64 builder.append(String::number(type.y()));
65 builder.append(' ');
66 builder.append(String::number(type.width()));
67 builder.append(' ');
68 builder.append(String::number(type.height()));
  /external/jmonkeyengine/engine/src/core/com/jme3/util/blockparser/
Statement.java 42 sb.append(getIndent(indent));
43 sb.append(line);
45 sb.append(" {\n");
47 sb.append(statement.toString(indent+4));
48 sb.append("\n");
50 sb.append(getIndent(indent));
51 sb.append("}");
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
PrimitiveGroup.java 86 sb.append("Strip:").append(numIndices).append("\n");
89 sb.append(i).append("->").append(stripLengths[i]).append("\n");

Completed in 799 milliseconds

<<11121314151617181920>>