/art/test/1959-redefine-object-instrument/src/art/ |
Breakpoint.java | 58 LineNumber[] lines = getLineNumberTable(method); local 60 for (LineNumber l : lines) { 158 int[] lines = (int[])(nativeTable[1]); local 159 if (lines.length != location.length) { 160 throw new Error("Lines and locations have different lengths!"); 162 LineNumber[] out = new LineNumber[lines.length]; 163 for (int i = 0; i < lines.length; i++) { 164 out[i] = new LineNumber(location[i], lines[i]); 173 Breakpoint.LineNumber[] lines = Breakpoint.getLineNumberTable(m); local 175 for (Breakpoint.LineNumber l : lines) { 190 Breakpoint.LineNumber[] lines = Breakpoint.getLineNumberTable(m); local [all...] |
/art/test/993-breakpoints/src/art/ |
Breakpoint.java | 58 LineNumber[] lines = getLineNumberTable(method); local 60 for (LineNumber l : lines) { 158 int[] lines = (int[])(nativeTable[1]); local 159 if (lines.length != location.length) { 160 throw new Error("Lines and locations have different lengths!"); 162 LineNumber[] out = new LineNumber[lines.length]; 163 for (int i = 0; i < lines.length; i++) { 164 out[i] = new LineNumber(location[i], lines[i]); 173 Breakpoint.LineNumber[] lines = Breakpoint.getLineNumberTable(m); local 175 for (Breakpoint.LineNumber l : lines) { 190 Breakpoint.LineNumber[] lines = Breakpoint.getLineNumberTable(m); local [all...] |
/art/test/994-breakpoint-line/src/art/ |
Breakpoint.java | 58 LineNumber[] lines = getLineNumberTable(method); local 60 for (LineNumber l : lines) { 158 int[] lines = (int[])(nativeTable[1]); local 159 if (lines.length != location.length) { 160 throw new Error("Lines and locations have different lengths!"); 162 LineNumber[] out = new LineNumber[lines.length]; 163 for (int i = 0; i < lines.length; i++) { 164 out[i] = new LineNumber(location[i], lines[i]); 173 Breakpoint.LineNumber[] lines = Breakpoint.getLineNumberTable(m); local 175 for (Breakpoint.LineNumber l : lines) { 190 Breakpoint.LineNumber[] lines = Breakpoint.getLineNumberTable(m); local [all...] |
/art/test/995-breakpoints-throw/src/art/ |
Breakpoint.java | 58 LineNumber[] lines = getLineNumberTable(method); local 60 for (LineNumber l : lines) { 158 int[] lines = (int[])(nativeTable[1]); local 159 if (lines.length != location.length) { 160 throw new Error("Lines and locations have different lengths!"); 162 LineNumber[] out = new LineNumber[lines.length]; 163 for (int i = 0; i < lines.length; i++) { 164 out[i] = new LineNumber(location[i], lines[i]); 173 Breakpoint.LineNumber[] lines = Breakpoint.getLineNumberTable(m); local 175 for (Breakpoint.LineNumber l : lines) { 190 Breakpoint.LineNumber[] lines = Breakpoint.getLineNumberTable(m); local [all...] |
/art/test/996-breakpoint-obsolete/src/art/ |
Breakpoint.java | 58 LineNumber[] lines = getLineNumberTable(method); local 60 for (LineNumber l : lines) { 158 int[] lines = (int[])(nativeTable[1]); local 159 if (lines.length != location.length) { 160 throw new Error("Lines and locations have different lengths!"); 162 LineNumber[] out = new LineNumber[lines.length]; 163 for (int i = 0; i < lines.length; i++) { 164 out[i] = new LineNumber(location[i], lines[i]); 173 Breakpoint.LineNumber[] lines = Breakpoint.getLineNumberTable(m); local 175 for (Breakpoint.LineNumber l : lines) { 190 Breakpoint.LineNumber[] lines = Breakpoint.getLineNumberTable(m); local [all...] |
/art/test/997-single-step/src/art/ |
Breakpoint.java | 58 LineNumber[] lines = getLineNumberTable(method); local 60 for (LineNumber l : lines) { 158 int[] lines = (int[])(nativeTable[1]); local 159 if (lines.length != location.length) { 160 throw new Error("Lines and locations have different lengths!"); 162 LineNumber[] out = new LineNumber[lines.length]; 163 for (int i = 0; i < lines.length; i++) { 164 out[i] = new LineNumber(location[i], lines[i]); 173 Breakpoint.LineNumber[] lines = Breakpoint.getLineNumberTable(m); local 175 for (Breakpoint.LineNumber l : lines) { 190 Breakpoint.LineNumber[] lines = Breakpoint.getLineNumberTable(m); local [all...] |
/external/autotest/server/site_tests/firmware_Mosys/ |
firmware_Mosys.py | 37 lines = self.run_cmd('mosys help') 40 for line in lines: 72 lines = self.run_cmd('fwtool ec version') 74 lines = self.run_cmd('ectool version') 78 for line in lines: 104 lines = self.run_cmd('ectool --dev 1 version') 108 for line in lines: 135 lines = self.run_cmd(lsb_info) 137 for line in lines: 158 lines = self.faft_client.host.run_shell_command_get_output(device_info [all...] |
/external/freetype/src/tools/docmaker/ |
sources.py | 45 ## Later on, paragraphs are converted to long lines, which simplifies the 215 # the prefix, group 2 the identifier -- since we scan lines from left to 252 ## self.lines 253 ## A list of text lines for the corresponding block. 263 def __init__( self, processor, filename, lineno, lines ): 267 self.lines = lines[:] 276 # extract comment lines 277 lines = [] 279 for line0 in self.lines [all...] |
/external/yapf/yapf/ |
__init__.py | 17 Python code. It looks at the program as a series of "unwrappable lines" --- 18 i.e., lines which, if there were no column limit, we would place all tokens on 85 '--lines', 89 help='range of lines to reformat, one-based') 152 if args.lines and len(args.files) > 1: 153 parser.error('cannot use -l/--lines with more than one file') 155 lines = _GetLines(args.lines) if args.lines is not None else None 183 lines=lines [all...] |
/external/tensorflow/tensorflow/python/debug/cli/ |
profile_analyzer_cli_test.py | 51 def _at_least_one_line_matches(pattern, lines): 53 for i, line in enumerate(lines): 59 def _assert_at_least_one_line_matches(pattern, lines): 60 any_match, _ = _at_least_one_line_matches(pattern, lines) 63 "%s does not match any line in %s." % (pattern, str(lines))) 66 def _assert_no_lines_match(pattern, lines): 67 any_match, _ = _at_least_one_line_matches(pattern, lines) 70 "%s matched at least one line in %s." % (pattern, str(lines))) 81 prof_output = prof_analyzer.list_profile([]).lines 114 prof_output = prof_analyzer.list_profile([]).lines [all...] |
/bootable/recovery/otautil/include/otautil/ |
parse_install_logs.h | 28 // Parses the metrics of update applied under recovery mode in |lines|, and returns a map with 30 std::map<std::string, int64_t> ParseRecoveryUpdateMetrics(const std::vector<std::string>& lines);
|
/build/kati/testcase/ |
define.mk | 16 define two-lines 24 echo BEGIN $(two-lines) END
|
/development/tools/bugreport/src/com/android/bugreport/bugreport/ |
MetadataParser.java | 20 import com.android.bugreport.util.Lines; 59 public void parseHeader(Lines<? extends Line> lines) { 63 while (lines.hasNext()) { 64 final Line line = lines.next(); 83 public void parseFooter(Lines<? extends Line> lines, int durationMs) {
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
keyword.py | 64 lines = []
69 lines.append(" '" + match.group(1) + "',\n")
71 lines.sort()
78 # insert the lines of keywords
82 format[start:end] = lines
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
keyword.py | 64 lines = []
69 lines.append(" '" + match.group(1) + "',\n")
71 lines.sort()
78 # insert the lines of keywords
82 format[start:end] = lines
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/framer/ |
struct.py | 28 lines = filter(None, s.split("\n")) # get non-empty lines
29 assert lines[0].strip() == "typedef struct {"
30 pyhead = lines[1].strip()
34 for line in lines[2:]:
|
structparse.py | 22 lines = filter(None, s.split("\n")) # get non-empty lines
23 assert lines[0].strip() == "typedef struct {"
24 pyhead = lines[1].strip()
28 for line in lines[2:]:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
nm2def.py | 45 lines = os.popen(NM % lib).readlines()
46 lines = [s.strip() for s in lines]
48 for line in lines:
|
reindent.py | 14 Also trim excess spaces and tabs from ends of lines, and remove empty lines
33 lines. So long as the input files get a clean bill of health from
159 # Raw file lines.
162 # File lines, rstripped & tab-expanded. Dummy at start is so
165 self.lines = [_rstrip(line).expandtabs() + "\n"
167 self.lines.insert(0, None)
168 self.index = 1 # index into self.lines of next line
171 # comment line. indentlevel is -1 for comment lines, as a
178 # Remove trailing empty lines. [all...] |
/external/autotest/client/profilers/catprofile/ |
catprofile.py | 28 lines = [] 31 lines += '\n----- %s -----\n' % filename 32 lines += input.readlines() 37 output.writelines(lines)
|
/external/autotest/tko/parsers/ |
base.py | 24 def process_lines(self, lines): 25 """ Feed 'lines' into the parser state machine, and return 27 self.line_buffer.put_multiple(lines) 32 "lines after it was end()ed\n" 41 def end(self, lines=[]): 42 """ Feed 'lines' into the parser state machine, signal to the 43 state machine that no more lines are forthcoming, and then 45 self.line_buffer.put_multiple(lines)
|
/external/autotest/utils/ |
reindent.py | 14 Also trim excess spaces and tabs from ends of lines, and remove empty lines 33 lines. So long as the input files get a clean bill of health from 158 # Raw file lines. 161 # File lines, rstripped & tab-expanded. Dummy at start is so 164 self.lines = [_rstrip(line).expandtabs() + "\n" 166 self.lines.insert(0, None) 167 self.index = 1 # index into self.lines of next line 170 # comment line. indentlevel is -1 for comment lines, as a 177 # Remove trailing empty lines [all...] |
/external/elfutils/libdwfl/ |
dwfl_dwarf_line.c | 43 const Dwarf_Line *info = &cu->die.cu->lines->info[line->idx];
|
/external/guava/guava/src/com/google/common/io/ |
LineReader.java | 30 * A class for reading lines of text. Provides the same functionality 44 private final Queue<String> lines = new LinkedList<String>(); field in class:LineReader 47 lines.add(line); 52 * Creates a new instance that will read lines from the given 72 while (lines.peek() == null) { 85 return lines.poll();
|
/external/harfbuzz_ng/src/ |
check-header-guards.sh | 17 lines=`grep -w "$tag" "$x" | wc -l | sed 's/[ ]*//g'` 18 if test "x$lines" != x3; then
|