Searched refs:line (Results 26 - 50 of 95) sorted by relevance

1234

/art/test/1947-breakpoint-redefine-deopt/src/art/
H A DBreakpoint.java64 best = l.line;
122 public final int line; field in class:Breakpoint.LineNumber
124 private LineNumber(long loc, int line) { argument
126 this.line = line;
130 return other instanceof LineNumber && ((LineNumber)other).line == line &&
135 int v = Integer.valueOf(line).compareTo(Integer.valueOf(other.line));
179 best = l.line;
188 lineToLocation(Executable m, int line) argument
[all...]
/art/test/993-breakpoints/src/art/
H A DBreakpoint.java64 best = l.line;
122 public final int line; field in class:Breakpoint.LineNumber
124 private LineNumber(long loc, int line) { argument
126 this.line = line;
130 return other instanceof LineNumber && ((LineNumber)other).line == line &&
135 int v = Integer.valueOf(line).compareTo(Integer.valueOf(other.line));
179 best = l.line;
188 lineToLocation(Executable m, int line) argument
[all...]
/art/test/994-breakpoint-line/src/art/
H A DBreakpoint.java64 best = l.line;
122 public final int line; field in class:Breakpoint.LineNumber
124 private LineNumber(long loc, int line) { argument
126 this.line = line;
130 return other instanceof LineNumber && ((LineNumber)other).line == line &&
135 int v = Integer.valueOf(line).compareTo(Integer.valueOf(other.line));
179 best = l.line;
188 lineToLocation(Executable m, int line) argument
[all...]
H A DTest994.java40 "\tBreakpoint reached: " + e + " @ line=" + Breakpoint.locationToLine(e, loc));
61 for (Breakpoint.LineNumber line : lines) {
63 MANAGER.setBreakpoint(multipath_method, line.location);
65 System.out.println("Breaking on line: " + line.line + " calling with arg: " + arg);
/art/test/995-breakpoints-throw/src/art/
H A DBreakpoint.java64 best = l.line;
122 public final int line; field in class:Breakpoint.LineNumber
124 private LineNumber(long loc, int line) { argument
126 this.line = line;
130 return other instanceof LineNumber && ((LineNumber)other).line == line &&
135 int v = Integer.valueOf(line).compareTo(Integer.valueOf(other.line));
179 best = l.line;
188 lineToLocation(Executable m, int line) argument
[all...]
/art/test/996-breakpoint-obsolete/src/art/
H A DBreakpoint.java64 best = l.line;
122 public final int line; field in class:Breakpoint.LineNumber
124 private LineNumber(long loc, int line) { argument
126 this.line = line;
130 return other instanceof LineNumber && ((LineNumber)other).line == line &&
135 int v = Integer.valueOf(line).compareTo(Integer.valueOf(other.line));
179 best = l.line;
188 lineToLocation(Executable m, int line) argument
[all...]
H A DTest996.java24 // The line we are going to break on. This should be the println in the Transform class. We set a
28 // The line we initially set a breakpoint on. This should be the doNothing call. This should be
38 // Make sure we don't change anything above this line to keep all the breakpoint stuff
39 // working. We will be putting a breakpoint before this line in the runnable.
47 // Try to keep all edits to this file below the above line. If edits need to be made above this
48 // line be sure to update the TRANSFORM_BREAKPOINT_REDEFINED_LINE and
54 // instructions as the original. This means that the locations of each line should stay the same
98 int line = Breakpoint.locationToLine(e, loc);
99 if (line == -1 && e.getName().equals("run") && e.getDeclaringClass().equals(Transform.class)) {
100 // RI always reports line
[all...]
/art/test/997-single-step/src/art/
H A DBreakpoint.java64 best = l.line;
122 public final int line; field in class:Breakpoint.LineNumber
124 private LineNumber(long loc, int line) { argument
126 this.line = line;
130 return other instanceof LineNumber && ((LineNumber)other).line == line &&
135 int v = Integer.valueOf(line).compareTo(Integer.valueOf(other.line));
179 best = l.line;
188 lineToLocation(Executable m, int line) argument
[all...]
/art/tools/ahat/src/test/com/android/ahat/
H A DProguardMapTest.java64 assertEquals(123, frame.line);
79 assertEquals(123, frame.line);
104 assertEquals(13, frame.line);
110 assertEquals(42, frame.line);
116 assertEquals(45, frame.line);
122 assertEquals(49, frame.line);
129 assertEquals(52, frame.line);
136 assertEquals(57, frame.line);
142 assertEquals(59, frame.line);
148 assertEquals(64, frame.line);
[all...]
/art/tools/runtime_memusage/
H A Dsymbol_trace_info.py182 def get_dex_offset_data(line, dex_file_item):
183 """ Returns a tuple of dex file offset, item name, and data of a line."""
184 return (int(line[:line.find(":")], 16),
186 line.split("|")[1].strip())
221 # Splits each item by line and creates a list of offsets and a
222 # corresponding list of the data associated with that line
223 offset_list, offset_data = zip(*[get_dex_offset_data(line, item[0])
225 for line in item[1:]
226 if re.search("[0-9a-f]{6}:", line)
[all...]
/art/compiler/debug/dwarf/
H A Ddwarf_test.h54 // If next is true, it must be the next line. Otherwise lines are skipped.
93 const char* line; local
94 while ((line = fgets(buffer, sizeof(buffer), output)) != nullptr) {
96 printf("%s", line);
98 if (line[0] != '\0' && line[0] != '\n') {
99 EXPECT_TRUE(strstr(line, "objdump: Error:") == nullptr) << line;
100 EXPECT_TRUE(strstr(line, "objdump: Warning:") == nullptr) << line;
[all...]
/art/tools/ahat/src/main/com/android/ahat/proguard/
H A DProguardMap.java80 // TODO: Does this properly interpret the meaning of line numbers? Is
82 // name and signature that differ only by line ranges?
106 * line of source code.
109 Frame(String method, String signature, String filename, int line) { argument
113 this.line = line;
129 * The name of the file with containing the line of source that the stack
135 * The line number of the code in the source file that the stack frame
138 public final int line; field in class:ProguardMap.Frame
185 String line
[all...]
/art/test/071-dexfile-map-clean/src/
H A DMain.java59 String line = smapsLines[i];
61 if (line.startsWith("Shared_Dirty") || line.startsWith("Private_Dirty")) {
62 String lineTrimmed = line.trim();
72 System.out.println(line);
79 if (line.startsWith("VmFlags")) {
/art/test/954-invoke-polymorphic-verifier/smali/
H A DUnresolved.smali23 .line 23
37 .line 37
/art/runtime/arch/mips64/
H A Dinstruction_set_features_mips64.cc62 std::string line; local
63 std::getline(in, line);
65 LOG(INFO) << "cpuinfo line: " << line;
66 if (line.find("ASEs") != std::string::npos) {
68 if (line.find("msa") != std::string::npos) {
/art/tools/
H A Dgenerate_operator_out.py33 def Confused(filename, line_number, line):
34 sys.stderr.write('%s:%d: confused by:\n%s\n' % (filename, line_number, line))
116 line = re.sub(r'//.*', '', raw_line)
119 line = line.strip()
122 if len(line) == 0:
126 # or a blank line, this line should be the next enum value...
127 m = _ENUM_VALUE_RE.search(line)
/art/runtime/interpreter/mterp/
H A Dgen_mterp.py258 for line in opcode_fp:
259 match = opcode_re.match(line)
387 for line in fallback_stub_text:
388 asm_fp.write(line)
410 for line in asm_stub_text:
411 templ = Template(line)
415 # Append the file specified by "source" to the open "outfp". Each line will
418 # If the first line of the file starts with "%" it is taken as a directive.
419 # A "%include" line contains a filename and, optionally, a Python-style
423 # If "sister_list" is provided, and we find a line tha
564 line = line.strip() # remove CRLF, leading spaces variable
[all...]
/art/runtime/arch/x86/
H A Dinstruction_set_features_x86.cc176 std::string line; local
177 std::getline(in, line);
179 LOG(INFO) << "cpuinfo line: " << line;
180 if (line.find("flags") != std::string::npos) {
182 if (line.find("ssse3") != std::string::npos) {
185 if (line.find("sse4_1") != std::string::npos) {
188 if (line.find("sse4_2") != std::string::npos) {
191 if (line.find("avx") != std::string::npos) {
194 if (line
[all...]
/art/test/988-method-trace/
H A Dgen_srcs.py231 # parse a line containing ' V(...)' into a MethodInfo
232 def parse_line(line):
233 line = line.strip()
234 if not line.startswith("V("):
237 line = re.sub(r'V[(](.*)[)]', r'\1', line)
238 debug_print(line)
240 items = line.split(",")
248 for line i
[all...]
/art/test/970-iface-super-resolution-gen/util-src/
H A Dgenerate_java.py48 for line in str(self.inner).splitlines(keepends = True):
49 if line.startswith("#"):
50 out += line[1:]
/art/tools/dexfuzz/src/dexfuzz/program/
H A DMutationSerializer.java50 String line = reader.readLine();
52 if (line != null) {
53 fields = line.split(" ");
55 Log.errorAndQuit("Could not read line during mutation loading.");
/art/oatdump/
H A Doatdump_test.h192 char line[kLineMax] = {}; local
199 // Trim spaces at the start of the line.
200 for (; spaces < line_len && isspace(line[spaces]); ++spaces) {}
203 memmove(&line[0], &line[spaces], line_len);
206 TEMP_FAILURE_RETRY(read(pipe_fd, &line[line_len], kLineMax - line_len));
221 memcmp(line, expected.c_str(), expected.length()) == 0) {
225 // Skip to next line.
227 for (; next_line + 1 < line_len && line[next_line] != '\n'; ++next_line) {}
229 memmove(&line[
[all...]
/art/runtime/arch/arm/
H A Dinstruction_set_features_arm.cc152 std::string line; local
153 std::getline(in, line);
155 LOG(INFO) << "cpuinfo line: " << line;
156 if (line.find("Features") != std::string::npos) {
158 if (line.find("idivt") != std::string::npos) {
161 CHECK_NE(line.find("idiva"), std::string::npos);
164 if (line.find("lpae") != std::string::npos) {
168 if (line.find("architecture") != std::string::npos
169 && line
[all...]
/art/compiler/utils/
H A Dassembler_test_base.h156 std::string line = FindTool(assembler_cmd_name_); local
157 if (line.length() == 0) {
158 return line;
161 resolved_assembler_cmd_ = line + assembler_parameters_;
173 std::string line = FindTool(objdump_cmd_name_); local
174 if (line.length() == 0) {
175 return line;
178 resolved_objdump_cmd_ = line + objdump_parameters_;
190 std::string line = FindTool(disassembler_cmd_name_); local
191 if (line
276 std::string line; local
520 std::string line; local
564 std::string line; local
[all...]
/art/test/121-modifiers/smali/
H A DA$B.smali38 .line 19

Completed in 763 milliseconds

1234