Home
last modified time | relevance | path

Searched refs:text (Results 1 – 25 of 61) sorted by relevance

123

/art/runtime/
Dindenter.h32 Indenter(std::streambuf* out, char text, size_t count) in Indenter() argument
34 text_{text, text, text, text, text, text, text, text}, // NOLINT(whitespace/braces) in Indenter()
114 explicit VariableIndentationOutputStream(std::ostream* os, char text = kIndentChar)
115 : indenter_(os->rdbuf(), text, 0u),
Dnative_stack_dump.cc392 const char* text = kernel_stack_frames[i].c_str(); in DumpKernelStack() local
393 const char* close_bracket = strchr(text, ']'); in DumpKernelStack()
395 text = close_bracket + 2; in DumpKernelStack()
401 os << text << std::endl; in DumpKernelStack()
/art/tools/ahat/src/
DSummarizer.java121 return DocString.text("null"); in summarize()
126 return DocString.text(value.toString()); in summarize()
133 DocString text = DocString.text(site.getMethodName()); in summarize() local
134 text.append(site.getSignature()); in summarize()
135 text.append(" - "); in summarize()
136 text.append(site.getFilename()); in summarize()
138 text.append(":").append(Integer.toString(site.getLineNumber())); in summarize()
141 return DocString.link(uri, text); in summarize()
DOverviewHandler.java44 DocString.text("ahat version"), in handle()
46 doc.description(DocString.text("hprof file"), DocString.text(mHprof.toString())); in handle()
48 doc.description(DocString.text("baseline hprof file"), DocString.text(mBaseHprof.toString())); in handle()
66 SizeTable.row(doc, DocString.text(heap.getName()), size, base); in printHeapSizes()
71 SizeTable.row(doc, DocString.text("Total"), totalSize, totalBase); in printHeapSizes()
DObjectHandler.java73 doc.description(DocString.text("Class"), Summarizer.summarize(cls)); in handle()
75 doc.description(DocString.text("Heap"), DocString.text(inst.getHeap().getName())); in handle()
86 doc.description(DocString.text("Root Types"), types); in handle()
93 SizeTable.row(doc, DocString.text("Shallow"), inst.getSize(), base.getSize()); in handle()
94 SizeTable.row(doc, DocString.text("Retained"), in handle()
174 DocString was = DocString.text("was "); in printFields()
178 doc.row(DocString.text(field.type), in printFields()
179 DocString.text(field.name), in printFields()
185 doc.row(DocString.text(field.type), in printFields()
186 DocString.text(field.name), in printFields()
[all …]
DMenu.java24 DocString.link(DocString.uri("/"), DocString.text("overview"))
26 .appendLink(DocString.uri("rooted"), DocString.text("rooted"))
28 .appendLink(DocString.uri("sites"), DocString.text("allocations"));
DColumn.java38 this(DocString.text(heading), align, visible); in Column()
49 this(DocString.text(heading), Align.LEFT); in Column()
56 this(DocString.text(heading), align); in Column()
DSubsetSelector.java90 menu.appendLink(mQuery.with(mId, 0), DocString.text("show none")); in render()
92 menu.appendLink(mQuery.with(mId, less), DocString.text("show less")); in render()
99 menu.appendLink(mQuery.with(mId, more), DocString.text("show more")); in render()
101 menu.appendLink(mQuery.with(mId, all), DocString.text("show all")); in render()
DDocString.java37 public static DocString text(String str) { in text() method in DocString
69 public DocString append(String text) { in append() argument
70 mStringBuilder.append(HtmlEscapers.htmlEscaper().escape(text)); in append()
105 return added(text(str)); in added()
125 return removed(text(str)); in removed()
DStaticHandler.java45 HtmlDoc doc = new HtmlDoc(ps, DocString.text("ahat"), DocString.uri("style.css")); in handle()
46 doc.big(DocString.text("Resource not found.")); in handle()
DBitmapHandler.java57 HtmlDoc doc = new HtmlDoc(ps, DocString.text("ahat"), DocString.uri("style.css")); in handle()
58 doc.big(DocString.text("No bitmap found for the given request.")); in handle()
/art/tools/
Dfindbuildbotwarnings.py40 print r.text
42 builders = json.loads(r.text)
55 print r.text
57 builder = json.loads(r.text)
67 print r.text
69 stdio = r.text.splitlines()
/art/test/094-pattern/src/
DMain.java86 static String getStringAsHex(String text) { in getStringAsHex() argument
87 StringBuilder sb = new StringBuilder(text.length() * 4); in getStringAsHex()
89 for (int i = 0; i < text.length(); i++) { in getStringAsHex()
90 sb.append(Integer.toHexString((int) text.charAt(i))); in getStringAsHex()
/art/tools/checker/file_format/checker/
Dstruct.py109 regex = regex + "(" + expression.text + ")"
138 def __init__(self, variant, name, text): argument
141 self.text = text
147 and self.text == other.text
154 def createPlainText(text): argument
155 return TestExpression(TestExpression.Variant.PlainText, None, text)
158 def createPatternFromPlainText(text): argument
159 return TestExpression(TestExpression.Variant.Pattern, None, re.escape(text))
Dtest.py95 def assertEqualsText(self, string, text): argument
96 self.assertEqual(self.parseExpression(string), TestExpression.createPatternFromPlainText(text))
384 def assertParsesToPlainText(self, text): argument
385 testCase = self.parseTestCase("/// CHECK-EVAL: " + text)
389 self.assertEqual(assertion.originalText, text)
393 self.assertEqual(expression.text, text)
Dparser.py159 text = line[0:firstMatch]
162 assertion.addExpression(TestExpression.createPlainText(text))
164 assertion.addExpression(TestExpression.createPatternFromPlainText(text))
/art/compiler/debug/
Delf_symtab_writer.h82 const auto* text = info.is_code_address_text_relative ? builder->GetText() : nullptr; in WriteDebugSymbols() local
83 uint64_t address = info.code_address + (text != nullptr ? text->GetAddress() : 0); in WriteDebugSymbols()
86 symtab->Add(name_offset, text, address, info.code_size, STB_GLOBAL, STT_FUNC); in WriteDebugSymbols()
94 symtab->Add(strtab->Write("$t"), text, address & ~1, 0, STB_LOCAL, STT_NOTYPE); in WriteDebugSymbols()
/art/test/701-easy-div-rem/
DgenMain.py41 def subst_vars(variables, text): argument
44 text = text.replace(str(key), str(value))
45 return text
/art/tools/checker/common/
Dlogger.py47 def log(text, level=Level.Info, color=Color.Default, newLine=True, out=sys.stdout): argument
49 text = Logger.Color.terminalCode(color, out) + text + \
52 print(text, file=out)
54 print(text, end="", file=out)
/art/compiler/
Delf_writer_quick.cc105 void EndText(OutputStream* text) OVERRIDE;
213 auto* text = builder_->GetText(); in StartText() local
214 text->Start(); in StartText()
215 return text; in StartText()
219 void ElfWriterQuick<ElfTypes>::EndText(OutputStream* text) { in EndText() argument
220 CHECK_EQ(builder_->GetText(), text); in EndText()
/art/test/092-locale/src/
DMain.java17 import java.text.DateFormat;
18 import java.text.DateFormatSymbols;
19 import java.text.Normalizer;
/art/runtime/arch/arm/
Dinstruction_set_features_assembly_tests.S19 .section .text
/art/test/utils/python/
Dgenerate_java_main.py288 implements = [a.text for a in iface.find("implements")]
289 methods = [a.text for a in iface.find("methods")]
296 implements = [a.text for a in clazz.find("implements")]
297 methods = [a.text for a in clazz.find("methods")]
/art/tools/ahat/test/
DTestHandler.java37 HtmlDoc doc = new HtmlDoc(ps, DocString.text("noCrash test"), DocString.uri("style.css")); in testNoCrash()
/art/tools/checker/match/
Dline.py55 pattern = expression.text
106 return expression.text

123