/external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/ |
D | Lexer.java | 61 int start_line = this.line; in getToken() local 162 start_line + 1, in getToken() 177 start_line + 1, in getToken() 191 start_line + 1, in getToken() 205 start_line + 1, in getToken() 219 start_line + 1, in getToken() 233 start_line + 1, in getToken() 247 start_line + 1, in getToken() 261 start_line + 1, in getToken() 276 start_line + 1, in getToken() [all …]
|
/external/chromium-trace/trace-viewer/third_party/python_gflags/ |
D | gflags2man.py | 218 (start_line, lang) = self.ParseDesc() 219 if start_line < 0: 222 self.ParsePythonFlags(start_line) 224 self.ParseCFlags(start_line) 226 self.ParseJavaFlags(start_line) 228 def ParseDesc(self, start_line=0): argument 242 start_line = 0 # ignore the passed-in arg for now (?) 243 for start_line in range(start_line, len(self.output)): # collect top description 244 line = self.output[start_line].rstrip() 247 and len(self.output) > start_line+1 [all …]
|
/external/chromium_org/third_party/python_gflags/ |
D | gflags2man.py | 218 (start_line, lang) = self.ParseDesc() 219 if start_line < 0: 222 self.ParsePythonFlags(start_line) 224 self.ParseCFlags(start_line) 226 self.ParseJavaFlags(start_line) 228 def ParseDesc(self, start_line=0): argument 242 start_line = 0 # ignore the passed-in arg for now (?) 243 for start_line in range(start_line, len(self.output)): # collect top description 244 line = self.output[start_line].rstrip() 247 and len(self.output) > start_line+1 [all …]
|
/external/lldb/source/Core/ |
D | SourceManager.cpp | 99 SourceManager::DisplaySourceLinesWithLineNumbersUsingLastFile (uint32_t start_line, in DisplaySourceLinesWithLineNumbersUsingLastFile() argument 109 if (start_line == 0) in DisplaySourceLinesWithLineNumbersUsingLastFile() 112 start_line = m_last_line + m_last_count; in DisplaySourceLinesWithLineNumbersUsingLastFile() 114 start_line = 1; in DisplaySourceLinesWithLineNumbersUsingLastFile() 124 m_last_line = start_line; in DisplaySourceLinesWithLineNumbersUsingLastFile() 129 const uint32_t end_line = start_line + count - 1; in DisplaySourceLinesWithLineNumbersUsingLastFile() 130 for (uint32_t line = start_line; line <= end_line; ++line) in DisplaySourceLinesWithLineNumbersUsingLastFile() 180 uint32_t start_line; in DisplaySourceLinesWithLineNumbers() local 183 start_line = line - context_before; in DisplaySourceLinesWithLineNumbers() 185 start_line = 1; in DisplaySourceLinesWithLineNumbers() [all …]
|
/external/lldb/source/Commands/ |
D | CommandObjectSource.cpp | 65 start_line = Args::StringToUInt32 (option_arg, 0); in SetOptionValue() 66 if (start_line == 0) in SetOptionValue() 87 start_line = 0; in OptionParsingStarting() 100 uint32_t start_line; member in CommandObjectSourceInfo::CommandOptions 173 start_line = Args::StringToUInt32 (option_arg, 0); in SetOptionValue() 174 if (start_line == 0) in SetOptionValue() 223 start_line = 0; in OptionParsingStarting() 242 uint32_t start_line; member in CommandObjectSourceList::CommandOptions 371 uint32_t start_line; in DisplayFunctionSource() local 378 sc.function->GetStartLineSourceInfo (start_file, start_line); in DisplayFunctionSource() [all …]
|
/external/chromium_org/ppapi/ |
D | generate_ppapi_size_checks.py | 36 def __init__(self, filename="", start_line=-1, end_line=-1): argument 38 self.start_line = start_line 79 start_line, end_line] = info_string.split(',') 84 int(start_line)-1, 102 def Delete(self, start_line, end_line): argument 106 self.linenums_to_delete |= set(range(start_line, end_line)) 383 file_patches[sourcefile].Delete(typeinfo.source_location.start_line,
|
/external/clang/tools/clang-format/ |
D | clang-format-diff.py | 80 start_line = int(match.group(1)) 86 end_line = start_line + line_count - 1; 88 ['-lines', str(start_line) + ':' + str(end_line)])
|
D | git-clang-format | 285 start_line = int(match.group(1)) 290 matches.setdefault(filename, []).append(Range(start_line, line_count)) 362 '-lines=%s:%s' % (start_line, start_line+line_count-1) 363 for start_line, line_count in line_ranges])
|
/external/lldb/include/lldb/Core/ |
D | SourceManager.h | 45 uint32_t start_line, 139 DisplaySourceLinesWithLineNumbersUsingLastFile (uint32_t start_line, 167 uint32_t start_line,
|
/external/chromium_org/third_party/cython/src/Cython/Plex/ |
D | Scanners.py | 89 self.start_line = 0 136 self.start_line = self.cur_line 300 return (self.name, self.start_line, self.start_col)
|
D | Scanners.pxd | 17 cdef public Py_ssize_t start_line
|
/external/protobuf/src/google/protobuf/stubs/ |
D | common_unittest.cc | 122 int start_line = __LINE__; in TEST() local 130 "2 "__FILE__":" + SimpleItoa(start_line + 1) + ": An error.", in TEST() 133 "1 "__FILE__":" + SimpleItoa(start_line + 2) + ": A warning.", in TEST()
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/ |
D | common_unittest.cc | 122 int start_line = __LINE__; in TEST() local 130 "2 "__FILE__":" + SimpleItoa(start_line + 1) + ": An error.", in TEST() 133 "1 "__FILE__":" + SimpleItoa(start_line + 2) + ": A warning.", in TEST()
|
/external/chromium_org/third_party/motemplate/ |
D | motemplate.py | 309 def __init__(self, start_line, end_line): argument 310 self._start_line = start_line 444 def __init__(self, string, start_line, end_line): argument 446 self._start_line = start_line 529 def __init__(self, start_line, end_line): argument 530 _LeafNode.__init__(self, start_line, end_line) 981 start_line = tokens.next_line 983 return [_StringNode(string, start_line, tokens.next_line)] 1069 start_line = tokens.next_line 1071 return [_CommentNode(start_line, tokens.next_line)]
|
/external/protobuf/src/google/protobuf/io/ |
D | tokenizer.cc | 435 int start_line = line_; in ConsumeBlockComment() local 456 start_line, start_column, " Comment started here."); in ConsumeBlockComment()
|
/external/clang/tools/c-index-test/ |
D | c-index-test.c | 956 unsigned start_line, start_column, end_line, end_column; in PrintDiagnostic() local 958 clang_getSpellingLocation(start, &start_file, &start_line, in PrintDiagnostic() 965 clang_getCString(insertion_text), start_line, start_column); in PrintDiagnostic() 970 PrintExtent(out, start_line, start_column, end_line, end_column); in PrintDiagnostic() 977 PrintExtent(out, start_line, start_column, end_line, end_column); in PrintDiagnostic() 1599 unsigned start_line, unsigned start_col, in print_cursor_file_scan() argument 1605 PrintExtent(stdout, start_line, start_col, end_line, end_col); in print_cursor_file_scan() 1619 unsigned start_line = 1, start_col = 1; in perform_file_scan() local 1652 print_cursor_file_scan(TU, prevCursor, start_line, start_col, in perform_file_scan() 1654 start_line = line; in perform_file_scan() [all …]
|
/external/mksh/src/ |
D | syn.c | 30 int start_line; /* line nesting began on */ member 840 source->errline = nesting.start_line; in syntaxerr() 880 nesting.start_line = source->line; in nesting_push() 909 nesting.start_line = 0; in compile()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
D | tracer.c | 196 static int start_line = 27; variable 268 …trstr(MyText_AS_STRING(frame->f_code->co_filename), start_file) && frame->f_lineno == start_line) { in CTracer_trace()
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/ |
D | tokenizer.cc | 478 int start_line = line_; in ConsumeBlockComment() local 520 start_line, start_column, " Comment started here."); in ConsumeBlockComment()
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
D | Lexer.pm | 41 $self->state->start_line(-1);
|
/external/compiler-rt/lib/sanitizer_common/scripts/ |
D | cpplint.py | 1982 start_line = lines[start_linenum] 1983 joined_line += ' ' + start_line.lstrip() 1984 if Search(r'(;|})', start_line): # Declarations and trivial functions 1987 elif Search(r'{', start_line):
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
D | text_format.cc | 316 int start_line = tokenizer_.current().line; in ConsumeField() local 438 ParseLocation(start_line, start_column)); in ConsumeField()
|
/external/chromium_org/third_party/libvpx/source/libvpx/tools/ |
D | cpplint.py | 2316 start_line = lines[start_linenum] 2317 joined_line += ' ' + start_line.lstrip() 2318 if Search(r'(;|})', start_line): # Declarations and trivial functions 2321 elif Search(r'{', start_line):
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
D | cpp.py | 1605 start_line = clean_lines.elided[start_line_number] 1606 joined_line += ' ' + start_line.lstrip() 1607 body_match = search(r'{|;', start_line) 1636 if start_line[body_start_position.column] == ';':
|
/external/libvpx/libvpx/tools/ |
D | cpplint.py | 2316 start_line = lines[start_linenum] 2317 joined_line += ' ' + start_line.lstrip() 2318 if Search(r'(;|})', start_line): # Declarations and trivial functions 2321 elif Search(r'{', start_line):
|