Searched defs:text (Results 1 - 13 of 13) sorted by relevance

/art/tools/ahat/src/main/com/android/ahat/
H A DHtmlEscaper.java23 public static String escape(String text) { argument
28 for (int i = 0; i < text.length(); ++i) {
29 int s = specials.indexOf(text.charAt(i));
34 sb.append(text.substring(low, i));
40 return text;
43 sb.append(text.substring(low));
H A DDocString.java23 * A class representing a small string of document content consisting of text,
34 * Construct a new DocString, initialized with the given text.
36 public static DocString text(String str) { method in class:DocString
42 * Construct a new DocString, initialized with the given formatted text.
65 * Append literal text to the given doc string.
68 public DocString append(String text) { argument
69 mStringBuilder.append(HtmlEscaper.escape(text));
74 * Append formatted text to the given doc string.
104 return added(text(str));
124 return removed(text(st
[all...]
/art/libartbase/base/
H A Dhistogram_test.cc123 std::string text; local
166 std::string text; local
/art/test/094-pattern/src/
H A DMain.java86 static String getStringAsHex(String text) { argument
87 StringBuilder sb = new StringBuilder(text.length() * 4);
89 for (int i = 0; i < text.length(); i++) {
90 sb.append(Integer.toHexString((int) text.charAt(i)));
/art/compiler/debug/
H A Delf_symtab_writer.h39 // one symbol which marks the whole .text section as code.
52 const auto* text = builder->GetText(); local
69 address += info.is_code_address_text_relative ? text->GetAddress() : 0;
78 symtab->Add(strtab->Write("$t"), text, mapping_symbol_address, 0, STB_LOCAL, STT_NOTYPE);
98 address += info.is_code_address_text_relative ? text->GetAddress() : 0;
101 symtab->Add(name_offset, text, address, info.code_size, STB_GLOBAL, STT_FUNC);
/art/test/715-clinit-implicit-parameter-annotations/src/
H A DMain.java38 private final String text; field in class:Main.Inner
41 Inner(@AnnotationA int number, String text) { argument
43 this.text = text;
47 Inner(@AnnotationA int number, String text, @AnnotationB("x") boolean flag) { argument
49 this.text = text;
58 private final String text; field in class:Main.StaticInner
61 StaticInner(@AnnotationA int number, String text) { argument
63 this.text
67 StaticInner(@nnotationB�) int number, String text, @AnnotationA boolean flag) argument
[all...]
/art/runtime/
H A Dindenter.h34 Indenter(std::streambuf* out, char text, size_t count) argument
36 text_{text, text, text, text, text, text, text, text},
106 // Number of times text i
[all...]
H A Dnative_stack_dump.cc412 const char* text = kernel_stack_frames[i].c_str(); local
413 const char* close_bracket = strchr(text, ']');
415 text = close_bracket + 2;
421 os << text << std::endl;
/art/dex2oat/linker/
H A Delf_writer_quick.cc116 void EndText(OutputStream* text) OVERRIDE;
231 auto* text = builder_->GetText(); local
232 text->Start();
233 return text;
237 void ElfWriterQuick<ElfTypes>::EndText(OutputStream* text) { argument
238 CHECK_EQ(builder_->GetText(), text);
H A Dimage_test.h334 OutputStream* text = elf_writer->StartText(); local
335 bool text_ok = oat_writer->WriteCode(text);
337 elf_writer->EndText(text);
H A Doat_writer_test.cc245 OutputStream* text = elf_writer->StartText(); local
246 if (!oat_writer.WriteCode(text)) {
249 elf_writer->EndText(text);
/art/dex2oat/
H A Ddex2oat.cc2154 linker::OutputStream* text = elf_writer->StartText(); local
2155 if (!oat_writer->WriteCode(text)) {
2156 LOG(ERROR) << "Failed to write .text section to the ELF file " << oat_file->GetPath();
2159 elf_writer->EndText(text);
/art/oatdump/
H A Doatdump.cc151 auto* text = builder_->GetText(); local
164 text->Start();
165 text->WriteFully(text_begin, text_size);
166 text->End();
3733 " .rodata and .text sections are omitted in the output file to save space.\n"
3824 // with only debug data. We use it in similar way to exclude .rodata and .text.

Completed in 312 milliseconds