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

1 2

  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
Lexer.java 61 int start_line = this.line; local
162 start_line + 1,
177 start_line + 1,
191 start_line + 1,
205 start_line + 1,
219 start_line + 1,
233 start_line + 1,
247 start_line + 1,
261 start_line + 1,
276 start_line + 1
    [all...]
  /external/lldb/source/Core/
SourceManager.cpp 99 SourceManager::DisplaySourceLinesWithLineNumbersUsingLastFile (uint32_t start_line,
109 if (start_line == 0)
112 start_line = m_last_line + m_last_count;
114 start_line = 1;
124 m_last_line = start_line;
129 const uint32_t end_line = start_line + count - 1;
130 for (uint32_t line = start_line; line <= end_line; ++line)
180 uint32_t start_line; local
183 start_line = line - context_before;
185 start_line = 1
465 const uint32_t start_line = line <= context_before ? 1 : line - context_before; local
    [all...]
  /external/chromium-trace/trace-viewer/third_party/python_gflags/
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):
234 (start_line, lang_type)
235 start_line Line to start parsing flags on (int)
242 start_line = 0 # ignore the passed-in arg for now (?)
243 for start_line in range(start_line, len(self.output)): # collect top descriptio
    [all...]
  /external/chromium_org/third_party/python_gflags/
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):
234 (start_line, lang_type)
235 start_line Line to start parsing flags on (int)
242 start_line = 0 # ignore the passed-in arg for now (?)
243 for start_line in range(start_line, len(self.output)): # collect top descriptio
    [all...]
  /system/media/camera/docs/
metadata-generate 114 local start_line="$(grep -n -F "${start_delim}" "${dst_file}" | cut -d: -f1)"
118 (( start_line-- ))
123 if [[ -z "$start_line" ]]; then
135 if [[ "$start_line" -ge "$end_line" ]]; then
136 echo "Starting delim later than ending delim: $start_line vs $end_line" >& 2
145 head -n "$start_line" "${dst_file}" > "${tmp_name}"
  /external/lldb/source/Commands/
CommandObjectSource.cpp 65 start_line = Args::StringToUInt32 (option_arg, 0);
66 if (start_line == 0)
87 start_line = 0;
100 uint32_t start_line; member in class:CommandObjectSourceInfo::CommandOptions
173 start_line = Args::StringToUInt32 (option_arg, 0);
174 if (start_line == 0)
223 start_line = 0;
242 uint32_t start_line; member in class:CommandObjectSourceList::CommandOptions
371 uint32_t start_line; local
378 sc.function->GetStartLineSourceInfo (start_file, start_line);
    [all...]
  /external/clang/tools/clang-format/
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)])
git-clang-format 272 The return value is a dictionary mapping filename to a list of (start_line,
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/
SourceManager.h 45 uint32_t start_line,
139 DisplaySourceLinesWithLineNumbersUsingLastFile (uint32_t start_line,
167 uint32_t start_line,
  /external/chromium_org/ppapi/
generate_ppapi_size_checks.py 36 def __init__(self, filename="", start_line=-1, end_line=-1):
38 self.start_line = start_line
66 kind,name,size,arch_dependent,source_file,start_line,end_line
79 start_line, end_line] = info_string.split(',')
84 int(start_line)-1,
102 def Delete(self, start_line, end_line):
103 """Make the patch delete the lines starting with |start_line| up to but not
106 self.linenums_to_delete |= set(range(start_line, end_line))
383 file_patches[sourcefile].Delete(typeinfo.source_location.start_line,
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
common_unittest.cc 122 int start_line = __LINE__; local
130 "2 "__FILE__":" + SimpleItoa(start_line + 1) + ": An error.",
133 "1 "__FILE__":" + SimpleItoa(start_line + 2) + ": A warning.",
  /external/protobuf/src/google/protobuf/stubs/
common_unittest.cc 122 int start_line = __LINE__; local
130 "2 "__FILE__":" + SimpleItoa(start_line + 1) + ": An error.",
133 "1 "__FILE__":" + SimpleItoa(start_line + 2) + ": A warning.",
  /external/protobuf/src/google/protobuf/io/
tokenizer.cc 435 int start_line = line_; local
456 start_line, start_column, " Comment started here.");
  /external/chromium_org/third_party/handlebar/
handlebar.py 310 def __init__(self, start_line, end_line):
311 self._start_line = start_line
445 def __init__(self, string, start_line, end_line):
447 self._start_line = start_line
530 def __init__(self, start_line, end_line):
531 _LeafNode.__init__(self, start_line, end_line)
984 start_line = tokens.next_line
986 return [_StringNode(string, start_line, tokens.next_line)]
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
tokenizer.cc 478 int start_line = line_; local
520 start_line, start_column, " Comment started here.");
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 956 unsigned start_line, start_column, end_line, end_column; local
958 clang_getSpellingLocation(start, &start_file, &start_line,
965 clang_getCString(insertion_text), start_line, start_column);
970 PrintExtent(out, start_line, start_column, end_line, end_column);
977 PrintExtent(out, start_line, start_column, end_line, end_column);
1619 unsigned start_line = 1, start_col = 1; local
3407 unsigned start_line, start_column, end_line, end_column; local
3422 unsigned start_line, start_column, end_line, end_column; local
3432 0, &start_line, &start_column, 0); local
    [all...]
  /external/mksh/src/
syn.c 30 int start_line; /* line nesting began on */ member in struct:nesting_state
840 source->errline = nesting.start_line;
880 nesting.start_line = source->line;
909 nesting.start_line = 0;
  /frameworks/compile/mclinker/lib/Script/
ScriptScanner.ll 292 const int start_line = pLocation.begin.line;
328 << start_line
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
tracer.c 196 static int start_line = 27; variable
268 if (strstr(MyText_AS_STRING(frame->f_code->co_filename), start_file) && frame->f_lineno == start_line) {
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Lexer.pm 41 $self->state->start_line(-1);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
pep8.py 841 start_line, start = token[2]
842 if end_line != start_line: # different row
    [all...]
  /art/tools/
cpplint.py     [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor.h 110 int start_line; member in struct:google::protobuf::SourceLocation
    [all...]
text_format.cc 316 int start_line = tokenizer_.current().line; local
438 ParseLocation(start_line, start_column));
    [all...]
  /external/compiler-rt/lib/sanitizer_common/scripts/
cpplint.py     [all...]

Completed in 1002 milliseconds

1 2