Searched refs:text (Results 1 - 10 of 10) sorted by relevance

/art/runtime/arch/arm/
H A Dinstruction_set_features_assembly_tests.S19 .section .text
/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/test/701-easy-div-rem/
H A DgenMain.py26 def subst_vars(variables, text):
27 '''Substitute variables in text.'''
29 text = text.replace(str(key), str(value))
30 return text
/art/runtime/
H A Dindenter.h29 Indenter(std::streambuf* out, char text, size_t count) argument
30 : indent_next_(true), out_sbuf_(out), text_(text), count_(count) {}
70 // Number of times text is output.
H A Dutils.cc1197 const char* text = kernel_stack_frames[i].c_str(); local
1198 const char* close_bracket = strchr(text, ']');
1200 text = close_bracket + 2;
1206 os << text << "\n"; local
/art/test/092-locale/src/
H A DMain.java17 import java.text.DateFormat;
18 import java.text.DateFormatSymbols;
19 import java.text.Normalizer;
/art/compiler/
H A Delf_writer_quick.cc55 // one symbol which marks the whole .text section as code.
117 // (which generally means method's low_pc relative to the start of .text)
148 // Setup the builder with the main OAT sections (.rodata .text .bss).
161 const auto* text = builder->GetText(); local
168 text));
171 Patch<Elf_Addr, uint32_t, kSectionRelativeAddress>, text));
176 text));
181 Patch<Elf_Addr, uint32_t, kAbsoluteAddress>, text));
190 Patch<Elf_Addr, uint32_t, kAbsoluteAddress>, text));
238 // Add relocation section for .text
[all...]
/art/tools/
H A Dchecker.py49 # Check-line patterns are treated as plain text rather than regular expressions
108 def log(text, level=Level.Info, color=Color.Default, newLine=True, out=sys.stdout):
110 text = Logger.Color.terminalCode(color, out) + text + \
113 print(text, file=out)
115 print(text, end="", file=out)
194 def parseText(text):
195 return CheckElement(CheckElement.Variant.Text, None, re.escape(text))
282 # text match all the way until the first special marker (or the end
285 text
[all...]
H A Dcpplint.py369 raw_line: str, the line of input text, with comments.
816 """File base name - text after the final slash, before the final period."""
820 """File extension - text following the final period."""
1020 We nix strings first so we're not fooled by text like '"http://"'
1373 """Run checks that applies to text up to the opening brace.
1375 This is mostly for checking the text after the class identifier
1388 """Run checks that applies to text after the closing brace.
1768 - text after #endif is not allowed.
1817 'Uncommented text after #endif is non-standard. Use a comment.')
1869 line: The text o
[all...]
/art/runtime/base/
H A Dhistogram_test.cc123 std::string text; local
166 std::string text; local

Completed in 1127 milliseconds