Home
last modified time | relevance | path

Searched refs:line (Results 101 – 125 of 182) sorted by relevance

12345678

/art/test/085-old-style-inner-class/jasmin/
DMain$2.j27 .line 28
36 .line 29
DMain$1.j27 .line 23
36 .line 24
/art/test/994-breakpoint-line/
DAndroid.bp3 name: "art-run-test-994-breakpoint-line",
Dinfo.txt4 sets breakpoints on each line in turn of a function with multiple execution
/art/libnativeloader/
Dpublic_libraries.cpp441 for (auto& line : lines) { in ParseConfig() local
442 auto trimmed_line = base::Trim(line); in ParseConfig()
449 return Errorf("Malformed line \"{}\"", line); in ParseConfig()
458 return Errorf("Malformed line \"{}\": bitness can be specified only once", line); in ParseConfig()
463 return Errorf("Malformed line \"{}\"", line); in ParseConfig()
491 for (auto& line : lines) { in ParseJniConfig() local
492 auto trimmed_line = base::Trim(line); in ParseJniConfig()
499 return Errorf( "Malformed line \"{}\"", line); in ParseJniConfig()
/art/tools/checker/common/
Dlogger.py58 def fail(msg, file=None, line=-1, lineText=None, variables=None): argument
66 if line > 0:
67 loc += str(line) + ":"
/art/compiler/debug/dwarf/
Ddwarf_test.cc255 int line = 1; in TEST_F() local
267 line += line_delta; in TEST_F()
268 opcodes.AddRow(pc, line); in TEST_F()
271 ASSERT_EQ(opcodes.CurrentLine(), line); in TEST_F()
273 sprintf(expected, "0x%016x %6i 0 1 0 0", pc, line); in TEST_F()
/art/test/971-iface-super/util-src/
Dgenerate_java.py52 for line in str(self.inner).splitlines(keepends = True):
53 if line.startswith("#"):
54 out += line[1:]
/art/test/968-default-partial-compile-gen/util-src/
Dgenerate_java.py52 for line in str(self.inner).splitlines(keepends = True):
53 if line.startswith("#"):
54 out += line[1:]
/art/compiler/debug/
Delf_debug_line_writer.h235 int line = (--dex2line)->line_; in WriteCompilationUnit() local
247 opcodes.AddRow(method_address + pc, line); in WriteCompilationUnit()
248 } else if (line != opcodes.CurrentLine()) { in WriteCompilationUnit()
250 opcodes.AddRow(method_address + pc, line); in WriteCompilationUnit()
/art/tools/checker/
DREADME14 be listed with the '--list-passes' command-line flag).
19 - CHECK: Must match an output line which appears in the output group
23 - CHECK-DAG: Must match an output line which appears in the output group
27 - CHECK-NOT: Must not match any output line which appears in the output group
32 - CHECK-NEXT: Must match the output line which comes right after the line which
37 Check-line patterns are treated as plain text rather than regular expressions
58 group named on the first line. Together they verify that the CFG after
84 match. An example line looks like:
Dchecker.py60 for line in compiler_pass.body:
61 Logger.log((str(curLineNo) + ":").ljust(lenLineNo) + line)
/art/tools/
Dstream-trace-converter.py167 for line in self._summary.splitlines(True):
168 if line == "*methods\n":
171 header.write(line)
Danalyze-init-failures.py31 def Confused(filename, line_number, line): argument
32 sys.stderr.write('%s:%d: confused by:\n%s\n' % (filename, line_number, line))
/art/test/1947-breakpoint-redefine-deopt/
Dinfo.txt4 sets breakpoints on each line in turn of a function with multiple execution
/art/test/954-invoke-polymorphic-verifier/smali/
DUnresolved.smali23 .line 23
37 .line 37
/art/profman/
Dprofman.cc1045 std::string line = maybe_annotated_line; in ProcessLine() local
1056 line = maybe_annotated_line.substr(end_pos + 1); in ProcessLine()
1069 const size_t method_sep_index = line.find(kMethodSep, 0); in ProcessLine()
1071 klass = line.substr(0); in ProcessLine()
1075 while (start_index < line.size() && line[start_index] != 'L') { in ProcessLine()
1076 const char c = line[start_index]; in ProcessLine()
1089 klass = line.substr(start_index, method_sep_index - start_index); in ProcessLine()
1090 method_str = line.substr(method_sep_index + kMethodSep.size()); in ProcessLine()
1153 LOG(ERROR) << "Invalid method line: " << line; in ProcessLine()
1197 const std::string& line, in ProcessBootLine() argument
[all …]
/art/tools/jvmti-agents/chain-agents/
DREADME.md8 line-by-line loading the agents (with the arguments) listed in the file.
/art/tools/ahat/src/main/com/android/ahat/heapdump/
DSite.java139 private Site(Site parent, String method, String signature, String file, int line) { in Site() argument
144 mLineNumber = line; in Site()
169 if (curr.mLineNumber == frame.line in getSite()
179 frame.filename, frame.line); in getSite()
/art/test/1966-get-set-local-objects-no-table/src/art/
DLocals.java78 Executable e, String name, String sig, int line) throws Exception { in GetVariableAtLine() argument
79 return GetVariableAtLocation(e, name, sig, Breakpoint.lineToLocation(e, line)); in GetVariableAtLine()
/art/test/1967-get-set-local-bad-slot/src/art/
DLocals.java78 Executable e, String name, String sig, int line) throws Exception { in GetVariableAtLine() argument
79 return GetVariableAtLocation(e, name, sig, Breakpoint.lineToLocation(e, line)); in GetVariableAtLine()
/art/test/1923-frame-pop/src/art/
DLocals.java78 Executable e, String name, String sig, int line) throws Exception { in GetVariableAtLine() argument
79 return GetVariableAtLocation(e, name, sig, Breakpoint.lineToLocation(e, line)); in GetVariableAtLine()
/art/test/1916-get-set-current-frame/src/art/
DLocals.java78 Executable e, String name, String sig, int line) throws Exception { in GetVariableAtLine() argument
79 return GetVariableAtLocation(e, name, sig, Breakpoint.lineToLocation(e, line)); in GetVariableAtLine()
/art/test/1939-proxy-frames/src/art/
DLocals.java78 Executable e, String name, String sig, int line) throws Exception { in GetVariableAtLine() argument
79 return GetVariableAtLocation(e, name, sig, Breakpoint.lineToLocation(e, line)); in GetVariableAtLine()
/art/test/1915-get-set-local-current-thread/src/art/
DLocals.java78 Executable e, String name, String sig, int line) throws Exception { in GetVariableAtLine() argument
79 return GetVariableAtLocation(e, name, sig, Breakpoint.lineToLocation(e, line)); in GetVariableAtLine()

12345678