Searched refs:current_line (Results 1 - 4 of 4) sorted by relevance
/external/e2fsprogs/ext2ed/ |
H A D | init.c | 109 char current_line [500],current_word [50],*ch; local 119 fgets (current_line,500,fp); 121 ch=parse_word (current_line,current_word); 126 while (strchr (current_line,'{')==NULL) { 127 fgets (current_line,500,fp); 132 fgets (current_line,500,fp); 134 while (strchr (current_line,'}')==NULL) { 135 while (strchr (current_line,';')==NULL) { 136 fgets (current_line,500,fp); 137 if (strchr (current_line,'}')! 618 char current_line [500],current_word [200]; local [all...] |
/external/webkit/Tools/Scripts/webkitpy/style/checkers/ |
H A D | cpp.py | 209 current_line = lines[start_position.row][:start_position.column] 211 found_match = match(last_in_line_regex, current_line) 219 current_line = lines[current_row] 1954 for current_line in clean_lines.elided[line_number + 1:]: 1956 if not current_line.strip(): 1960 if not match(r'\S', current_line) and not file_state.did_inside_namespace_indent_warning(): 1964 if in_preprocessor_directive or (current_line.strip()[0] == '#'): # This takes care of preprocessor directive syntax. 1965 in_preprocessor_directive = current_line[-1] == '\\' 1967 looking_for_semicolon = ((current_line.find(';') == -1) and (current_line [all...] |
/external/compiler-rt/lib/asan/scripts/ |
H A D | asan_symbolize.py | 326 print self.current_line 335 self.current_line = line.rstrip() 341 print self.current_line
|
/external/v8/src/ |
H A 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 + ': ';
|
Completed in 105 milliseconds