HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 101 - 125 of 10362) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
CharStreamState.java 32 * line, etc...) so that we can rewind the state after scanning ahead.
40 /** What line number is the scanner at before processing buffer[p]? */
41 int line; field in class:CharStreamState
43 /** What char position 0..n-1 in line is scanner before processing buffer[p]? */
  /external/chromium-trace/catapult/telemetry/
list_telemetry_unittests 10 def _ExtractQueuedTestName(line):
11 _, test_name, _ = line.split(' ')
15 def _ExtractPassedTestNameAndTime(line):
16 _, test_name, _, test_time_string = line.split(' ')
24 def _IsQueued(line):
25 return line.endswith(' queued')
28 def _IsPassed(line):
29 return 'passed' in line.split(' ')
36 for line in f:
37 line = line.strip(
    [all...]
  /external/clang/test/CodeGen/
debug-info-line.c 1 // RUN: %clang_cc1 -w -debug-info-kind=line-tables-only -fexceptions -fcxx-exceptions -S -emit-llvm %s -o - | FileCheck %s
5 #line 100
11 // CHECK: [[DBG_F1]] = !DILocation(line: 100,
  /external/clang/test/CodeGenCXX/
debug-info-line-if.cpp 6 #line 100
14 // should be attributed to the loop header line.
20 #line 200
30 #line 300
40 #line 400
51 // CHECK-DAG: [[DBG1]] = !DILocation(line: 100, scope: !{{.*}})
52 // CHECK-DAG: [[DBG2]] = !DILocation(line: 200, scope: !{{.*}})
53 // CHECK-DAG: [[DBG3]] = !DILocation(line: 300, scope: !{{.*}})
54 // CHECK-DAG: [[DBG4]] = !DILocation(line: 401, scope: !{{.*}})
57 // CHECK-DAG: [[LDBG1]] = !DILocation(line: 100, scope: !{{.*}}
    [all...]
debug-info-line.cpp 1 // RUN: %clang_cc1 -w -debug-info-kind=line-tables-only -std=c++11 -fexceptions -fcxx-exceptions -S -emit-llvm %s -o - -triple %itanium_abi_triple | FileCheck %s
2 // RUN: %clang_cc1 -w -debug-info-kind=line-tables-only -std=c++11 -fexceptions -fcxx-exceptions -S -emit-llvm %s -o - -triple i686-linux-gnu | FileCheck %s
13 #line 100
28 #line 200
41 #line 300
50 #line 400
57 #line 500
64 #line 600
77 #line 700
86 #line 80
    [all...]
  /external/elfutils/libdwfl/
dwfl_dwarf_line.c 1 /* Get information from a source line record returned by libdwfl.
33 dwfl_dwarf_line (Dwfl_Line *line, Dwarf_Addr *bias)
35 if (line == NULL)
38 struct dwfl_cu *cu = dwfl_linecu (line);
39 const Dwarf_Line *info = &cu->die.cu->lines->info[line->idx];
  /external/iproute2/include/iptables/
internal.h 11 extern int line;
  /external/iptables/include/iptables/
internal.h 11 extern int line;
  /external/llvm/test/MC/ARM/
full_line_comment.s 2 # this is a full line comment starting at column 1
8 # .long 1 this line is commented out
  /external/swiftshader/third_party/LLVM/test/MC/ARM/
full_line_comment.s 2 # this is a full line comment starting at column 1
8 # .long 1 this line is commented out
  /external/swiftshader/third_party/LLVM/test/MC/AsmParser/
directive_line.s 4 .line
5 .line 1
  /frameworks/wilhelm/src/
assert.cpp 24 void __assert(const char *file, int line, const char *failedexpr)
26 LOG_ALWAYS_FATAL("assertion \"%s\" failed: file \"%s\", line %d", failedexpr, file, line);
30 void __assert2(const char *file, int line, const char *func, const char *failedexpr)
32 LOG_ALWAYS_FATAL("assertion \"%s\" failed: file \"%s\", line %d, function \"%s\"",
33 failedexpr, file, line, func);
  /hardware/ril/reference-ril/
misc.c 20 /** returns 1 if line starts with prefix, 0 if it does not */
21 int strStartsWith(const char *line, const char *prefix)
23 for ( ; *line != '\0' && *prefix != '\0' ; line++, prefix++) {
24 if (*line != *prefix) {
  /libcore/ojluni/src/main/java/sun/net/ftp/
FtpDirParser.java 40 * Takes one line from a directory listing and returns an FtpDirEntry instance
43 * @param line a <code>String</code>, a line sent by the FTP server as a
48 public FtpDirEntry parseLine(String line);
  /external/mockito/src/main/java/org/mockito/internal/configuration/plugins/
PluginFileReader.java 14 for(String line: IOUtil.readLines(input)) {
15 String stripped = stripCommentAndWhitespace(line);
23 private static String stripCommentAndWhitespace(String line) {
24 int hash = line.indexOf('#');
26 line = line.substring(0, hash);
28 return line.trim();
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-powerpc/
aix-lineno-1.s 7 .line 2
9 .line 3
11 .line 4
13 .line 5
23 .line 2
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
SourceLocation.h 23 SourceLocation() : file(0), line(0) { }
24 SourceLocation(int f, int l) : file(f), line(l) { }
28 return (file == other.file) && (line == other.line);
32 int line; member in struct:pp::SourceLocation
  /frameworks/native/cmds/installd/
file_parsing.h 35 // Read the next line.
36 std::string line; local
37 getline(input_stream, line);
39 // Is the line empty? Simplifies the next check.
40 if (line.empty()) {
45 if (line[0] == '#') {
49 if (!parse(line)) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
conv.py 69 for line in f:
71 mo = re.match(r"^#define\s+(\w+)\s+(\d+)$", line)
72 if not mo and line.strip():
74 line.strip())
121 lineno, line = lineno+1, f.next()
122 assert line == '#include "pgenheaders.h"\n', (lineno, line)
123 lineno, line = lineno+1, f.next()
124 assert line == '#include "grammar.h"\n', (lineno, line)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
conv.py 69 for line in f:
71 mo = re.match(r"^#define\s+(\w+)\s+(\d+)$", line)
72 if not mo and line.strip():
74 line.strip())
121 lineno, line = lineno+1, f.next()
122 assert line == '#include "pgenheaders.h"\n', (lineno, line)
123 lineno, line = lineno+1, f.next()
124 assert line == '#include "grammar.h"\n', (lineno, line)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
conv.py 69 for line in f:
71 mo = re.match(r"^#define\s+(\w+)\s+(\d+)$", line)
72 if not mo and line.strip():
74 line.strip())
121 lineno, line = lineno+1, f.next()
122 assert line == '#include "pgenheaders.h"\n', (lineno, line)
123 lineno, line = lineno+1, f.next()
124 assert line == '#include "grammar.h"\n', (lineno, line)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
conv.py 69 for line in f:
71 mo = re.match(r"^#define\s+(\w+)\s+(\d+)$", line)
72 if not mo and line.strip():
74 line.strip())
121 lineno, line = lineno+1, f.next()
122 assert line == '#include "pgenheaders.h"\n', (lineno, line)
123 lineno, line = lineno+1, f.next()
124 assert line == '#include "grammar.h"\n', (lineno, line)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
conv.py 69 for line in f:
71 mo = re.match(r"^#define\s+(\w+)\s+(\d+)$", line)
72 if not mo and line.strip():
74 line.strip())
121 lineno, line = lineno+1, f.next()
122 assert line == '#include "pgenheaders.h"\n', (lineno, line)
123 lineno, line = lineno+1, f.next()
124 assert line == '#include "grammar.h"\n', (lineno, line)
    [all...]
  /external/squashfs-tools/squashfs-tools/
read_file.c 38 * Read file, passing each line to parse_line() for
48 char *def, *err, *line = NULL; local
65 line = realloc(line, size += (MAX_LINE + 1));
66 if(line == NULL)
70 err = fgets(line + total, MAX_LINE + 1, fd);
74 len = strlen(line + total);
77 if(len == MAX_LINE && line[total - 1] != '\n') {
78 /* line too large */
79 ERROR("Line too long when reading
    [all...]
  /frameworks/base/tools/aapt2/
Source.h 35 Maybe<size_t> line; member in struct:aapt::Source
42 inline Source(const android::StringPiece& path, size_t line)
43 : path(path.to_string()), line(line) {}
45 inline Source WithLine(size_t line) const { return Source(path, line); }
54 if (source.line) {
55 out << ":" << source.line.value();
61 return lhs.path == rhs.path && lhs.line == rhs.line;
    [all...]

Completed in 1482 milliseconds

1 2 3 45 6 7 8 91011>>