Searched defs:append (Results 1 - 3 of 3) sorted by relevance

/art/tools/ahat/src/
H A DDocString.java39 return doc.append(str);
70 public DocString append(String text) { method in class:DocString
71 mStringBuilder.append(HtmlEscapers.htmlEscaper().escape(text));
80 append(String.format(format, args));
84 public DocString append(DocString str) { method in class:DocString
85 mStringBuilder.append(str.html());
90 mStringBuilder.append("<a href=\"");
91 mStringBuilder.append(uri.toASCIIString());
92 mStringBuilder.append("\">");
93 mStringBuilder.append(conten
[all...]
/art/runtime/native/
H A Dlibcore_util_CharsetUtils.cc38 * Because a call to append might require an allocation, it might fail. Callers should always
39 * check the return value of append.
54 bool append(jbyte b) { function in class:art::NativeUnsafeByteSequence
210 if (!out.append(ch)) {
215 if (!out.append((ch >> 6) | 0xc0) || !out.append((ch & 0x3f) | 0x80)) {
223 if (!out.append('?')) {
236 if (!out.append(b1) || !out.append(b2) || !out.append(b
[all...]
/art/runtime/verifier/
H A Dmethod_verifier.cc942 void MethodVerifier::AppendToLastFailMessage(std::string append) { argument
946 (*last_fail_message) << append;
3748 std::string append(" in attempt to access method ");
3749 append += dex_file_->GetMethodName(method_id);
3750 AppendToLastFailMessage(append);

Completed in 227 milliseconds