HomeSort by relevance Sort by last modified time
    Searched refs:current_line (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/google_apis/
google_api_keys.py 31 def ParseLine(current_line):
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/lldb/test/functionalities/thread/exit_during_step/
TestExitDuringStep.py 124 current_line = self.breakpoint
126 self.assertTrue(current_line == stepping_frame.GetLineEntry().GetLine(), "Starting line for stepping doesn't match breakpoint line.")
127 while current_line != self.continuepoint:
135 current_line = frame.GetLineEntry().GetLine()
137 self.assertTrue(current_line >= self.breakpoint, "Stepped to unexpected line, " + str(current_line))
138 self.assertTrue(current_line <= self.continuepoint, "Stepped to unexpected line, " + str(current_line))
  /external/lldb/test/functionalities/thread/create_during_step/
TestCreateDuringStep.py 122 current_line = self.breakpoint
123 while current_line != self.continuepoint:
132 current_line = frame.GetLineEntry().GetLine()
135 self.assertTrue(current_line >= self.breakpoint, "Stepped to unexpected line, " + str(current_line))
136 self.assertTrue(current_line <= self.continuepoint, "Stepped to unexpected line, " + str(current_line))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
text_file.py 107 self.current_line = 0 # assuming that file is at BOF!
121 self.current_line = 0
131 self.current_line = None
137 line = self.current_line
241 if isinstance(self.current_line, list):
242 self.current_line[1] = self.current_line[1] + 1
244 self.current_line = [self.current_line,
245 self.current_line+1
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
text_file.py 107 self.current_line = 0 # assuming that file is at BOF!
121 self.current_line = 0
131 self.current_line = None
137 line = self.current_line
241 if isinstance(self.current_line, list):
242 self.current_line[1] = self.current_line[1] + 1
244 self.current_line = [self.current_line,
245 self.current_line+1
    [all...]
  /external/lldb/source/API/
SBCommandInterpreter.cpp 144 SBCommandInterpreter::HandleCompletion (const char *current_line,
155 // cursor & last_char have to be within the current_line.
156 if (current_line == NULL || cursor == NULL || last_char == NULL)
159 if (cursor < current_line || last_char < current_line)
162 size_t current_line_size = strlen (current_line);
163 if (cursor - current_line > current_line_size || last_char - current_line > current_line_size)
167 log->Printf ("SBCommandInterpreter(%p)::HandleCompletion (current_line=\"%s\", cursor at: %" PRId64 ", last char at: %" PRId64 ", match_start_point: %d, max_return_elements: %d)",
168 m_opaque_ptr, current_line, (uint64_t) (cursor - current_line), (uint64_t) (last_char - current_line), match_start_point, max (…)
    [all...]
  /external/chromium_org/third_party/closure_compiler/
processor.py 84 current_line = self._lines[self._index]
85 match = re.search(self._INCLUDE_REG, current_line[2])
87 file_dir = os.path.dirname(current_line[0])
  /external/e2fsprogs/ext2ed/
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,'}')!=NULL) break
611 char current_line [500],current_word [200]; local
    [all...]
  /external/lldb/include/lldb/API/
SBCommandInterpreter.h 88 // The pointer based interface is not useful in SWIG, since the cursor & last_char arguments are string pointers INTO current_line
101 HandleCompletion (const char *current_line,
109 HandleCompletion (const char *current_line,
  /external/lldb/scripts/Python/interface/
SBCommandInterpreter.i 118 HandleCompletion (const char *current_line,
  /external/chromium_org/tools/findit/
git_repository_parser.py 229 current_line = -1
235 current_line = int(line.split('+')[1].split(',')[0])
238 elif current_line != -1:
241 changed_line_numbers.append(current_line)
246 current_line += 1
  /cts/tools/dasm/src/java_cup/
lexer.java 87 protected static int current_line = 1; field in class:lexer
162 current_line++;
176 System.err.println("Error at " + current_line + "(" + current_position +
190 System.err.println("Warning at " + current_line + "(" + current_position +
  /external/lldb/test/lang/c/stepping/
TestStepAndBreakpoints.py 106 current_line = frame.GetLineEntry().GetLine()
118 self.assertTrue (current_line == frame.GetLineEntry().GetLine(), "The line stayed the same after expression.")
137 self.assertTrue (current_line == frame.GetLineEntry().GetLine(), "The line stayed the same after expression.")
162 current_line = frame.GetLineEntry().GetLine()
183 self.assertTrue (thread.GetFrameAtIndex(0).GetLineEntry().GetLine() == current_line)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
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]
    [all...]
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 357 print self.current_line
369 self.current_line = line.rstrip()
375 print self.current_line
  /external/fio/tools/plot/
fio2gnuplot 171 current_line=[]
184 current_line.append(s);
192 for line in enumerate(current_line):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
autopep8.py     [all...]
  /external/chromium_org/tools/valgrind/asan/third_party/
asan_symbolize.py 370 return [self.current_line]
388 self.current_line = line.rstrip()
394 return [self.current_line]
  /external/lldb/include/lldb/Interpreter/
CommandInterpreter.h 244 HandleCompletion (const char *current_line,
  /external/chromium_org/tools/auto_bisect/
bisect_perf_regression.py 618 for current_line in text_lines:
619 if metric_formatted in current_line:
620 current_line = current_line[len(metric_formatted):]
623 histogram_values = eval(current_line)
666 for current_line in text_lines:
669 single_result_match = single_result_re.search(current_line)
670 multi_results_match = multi_results_re.search(current_line)
671 mean_stddev_match = mean_stddev_re.search(current_line)
    [all...]
  /external/lldb/source/Interpreter/
CommandInterpreter.cpp     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
sdist.py 328 template.current_line,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
sdist.py 328 template.current_line,
  /cts/tools/dasm/etc/
java_cup-new.jar 
java_cup.jar 

Completed in 2040 milliseconds

1 2