Searched refs:current_line (Results 1 – 8 of 8) sorted by relevance
/external/chromium_org/google_apis/ |
D | google_api_keys.py | 31 def ParseLine(current_line): argument 32 result = line_pattern.match(current_line) 39 current_line = '' 42 current_line += line[:-2] 46 current_line += line 47 token = ParseLine(current_line) 49 if current_line.count('"') != 2: 53 current_line = ''
|
/external/e2fsprogs/ext2ed/ |
D | init.c | 109 char current_line [500],current_word [50],*ch; in set_struct_descriptors() local 119 fgets (current_line,500,fp); in set_struct_descriptors() 121 ch=parse_word (current_line,current_word); in set_struct_descriptors() 126 while (strchr (current_line,'{')==NULL) { in set_struct_descriptors() 127 fgets (current_line,500,fp); in set_struct_descriptors() 132 fgets (current_line,500,fp); in set_struct_descriptors() 134 while (strchr (current_line,'}')==NULL) { in set_struct_descriptors() 135 while (strchr (current_line,';')==NULL) { in set_struct_descriptors() 136 fgets (current_line,500,fp); in set_struct_descriptors() 137 if (strchr (current_line,'}')!=NULL) break; in set_struct_descriptors() [all …]
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
D | cpp.py | 196 current_line = lines[start_position.row][start_position.column:] 199 found_match = search(regex, current_line) 208 current_line = lines[current_row] 222 current_line = lines[start_position.row][:start_position.column] 224 found_match = match(last_in_line_regex, current_line) 232 current_line = lines[current_row] 2117 for current_line in clean_lines.elided[line_number + 1:]: 2119 if not current_line.strip(): 2123 … if not match(r'\S', current_line) and not file_state.did_inside_namespace_indent_warning(): 2127 …if in_preprocessor_directive or (current_line.strip()[0] == '#'): # This takes care of preprocesso… [all …]
|
/external/chromium_org/tools/valgrind/asan/third_party/ |
D | asan_symbolize.py | 323 print self.current_line 335 self.current_line = line.rstrip() 341 print self.current_line
|
/external/compiler-rt/lib/asan/scripts/ |
D | asan_symbolize.py | 348 print self.current_line 360 self.current_line = line.rstrip() 366 print self.current_line
|
/external/chromium_org/tools/ |
D | bisect-perf-regression.py | 1165 for current_line in text_lines: 1166 if metric_formatted in current_line: 1167 current_line = current_line[len(metric_formatted):] 1170 histogram_values = eval(current_line) 1197 for current_line in text_lines: 1203 regex_results = metric_re.search(current_line) 1211 regex_results = metric_re.search(current_line)
|
/external/chromium_org/v8/src/ |
D | d8.js | 1587 var current_line = from_line + num; 1588 var spacer = maxdigits - (1 + Math.floor(log10(current_line))); 1589 if (current_line == Debug.State.currentSourceLine + 1) { 1598 result += current_line + ': ';
|
/external/v8/src/ |
D | d8.js | 2176 var current_line = from_line + num; 2177 spacer = maxdigits - (1 + Math.floor(log10(current_line))); 2178 if (current_line == Debug.State.currentSourceLine + 1) { 2187 result += current_line + ': ';
|