Searched defs:lines (Results 1 - 8 of 8) sorted by relevance

/art/compiler/
H A Dcfi_test.h42 std::vector<std::string> lines; local
58 ReformatCfi(Objdump(false, "-W"), &lines); local
73 ReformatAsm(&stream, &lines);
75 std::stable_sort(lines.begin(), lines.end(), CompareByAddress);
76 for (const std::string& line : lines) {
90 // Spit to lines and remove raw instruction bytes.
108 // Find interesting parts of objdump output and prefix the lines with address.
109 static void ReformatCfi(const std::vector<std::string>& lines, argument
112 for (const std::string& line : lines) {
[all...]
/art/compiler/debug/dwarf/
H A Ddwarf_test.h54 // If next is true, it must be the next line. Otherwise lines are skipped.
88 std::vector<std::string> lines; local
105 lines.push_back(str);
109 return lines;
/art/test/ti-agent/
H A Dbreakpoint_helper.cc70 jvmtiLineNumberEntry* lines = nullptr; local
72 jvmti_env->GetLineNumberTable(method, &nlines, &lines))) {
77 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(lines));
82 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(lines));
87 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(lines));
92 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(lines));
98 temp_lines[i] = lines[i].line_number;
99 temp_locs[i] = lines[i].start_location;
105 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(lines));
/art/test/913-heaps/src/art/
H A DTest913.java399 String[] lines =
402 v.process(lines, additionalEnabled, heapFilter != 0 || klass != null);
584 public void process(String[] lines, String additionalEnabledReferrer, boolean filtered) { argument
596 for (String l : lines) {
602 print(lines);
620 print(lines);
649 // If we aren't tracking dependencies, just sort the lines and print.
650 // TODO: As the verifier is currently using the output lines to track dependencies, we
663 // Iterate through the lines, keeping track of which referrers are visited, to ensure the
672 for (String l : lines) {
726 print(String[] lines) argument
[all...]
/art/tools/breakpoint-logger/
H A Dbreakpoint_logger.cc199 jvmtiLineNumberEntry* lines; local
200 jvmtiError err = jvmti_env_->GetLineNumberTable(method_, &nlines, &lines);
203 first_line_ = lines[0].line_number;
205 jvmti_env_->Deallocate(reinterpret_cast<unsigned char*>(lines));
/art/test/913-heaps/
H A Dheaps.cc542 std::vector<std::string> lines = config.GetLines(); local
544 static_cast<jint>(lines.size()),
547 return env->NewStringUTF(lines[i].c_str());
/art/test/ti-stress/
H A Dstress.cc243 jvmtiLineNumberEntry* lines; local
244 jvmtiError err = jvmtienv_->GetLineNumberTable(method_, &nlines, &lines);
247 first_line_ = lines[0].line_number;
249 jvmtienv_->Deallocate(reinterpret_cast<unsigned char*>(lines));
/art/oatdump/
H A Doatdump.cc3208 std::vector<std::string> lines = ReadCommentedInputFromFile(imt_file); local
3211 for (const std::string& line : lines) {
3542 // Read lines from the given stream, dropping comments and empty lines
3556 // Read lines from the given file, dropping comments and empty lines.

Completed in 306 milliseconds