HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 126 - 150 of 12217) sorted by null

1 2 3 4 56 7 8 91011>>

  /toolchain/binutils/binutils-2.27/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
  /external/valgrind/memcheck/tests/
gone_abrt_xml.stderr.exp 9 <line>...</line>
10 <line>...</line>
11 <line>...</line>
12 <line>...</line>
46 <line>...</line>
    [all...]
  /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...]
  /external/python/cpython2/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...]
  /external/python/cpython3/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, next(f)
122 assert line == '#include "pgenheaders.h"\n', (lineno, line)
123 lineno, line = lineno+1, next(f)
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 33 Maybe<size_t> line; member in struct:aapt::Source
40 inline Source(const android::StringPiece& path, size_t line)
41 : path(path.to_string()), line(line) {}
43 inline Source WithLine(size_t line) const {
44 return Source(path, line);
48 if (line) {
49 return ::android::base::StringPrintf("%s:%zd", path.c_str(), line.value());
64 return lhs.path == rhs.path && lhs.line == rhs.line;
    [all...]
  /external/clang/test/CodeGenCXX/
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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
gprof2html.py 23 for line in input:
24 yield cgi.escape(line)
34 for line in input:
35 output.write(line)
36 if line.startswith(" time"):
39 for line in input:
40 m = re.match(r"(.* )(\w+)\n", line)
42 output.write(line)
48 for line in input:
49 output.write(line)
    [all...]
  /external/python/cpython2/Tools/scripts/
gprof2html.py 23 for line in input:
24 yield cgi.escape(line)
34 for line in input:
35 output.write(line)
36 if line.startswith(" time"):
39 for line in input:
40 m = re.match(r"(.* )(\w+)\n", line)
42 output.write(line)
48 for line in input:
49 output.write(line)
    [all...]
  /external/python/cpython3/Tools/scripts/
gprof2html.py 28 for line in fp:
29 yield html.escape(line)
40 for line in input:
41 output.write(line)
42 if line.startswith(" time"):
45 for line in input:
46 m = re.match(r"(.* )(\w+)\n", line)
48 output.write(line)
54 for line in input:
55 output.write(line)
    [all...]
  /external/tinyxml2/
setversion.py 17 line = filestream.readline()
18 if not line: break
19 output += lineFunction( line )
29 def echoInput( line ):
30 return line
47 def engineRule( line ):
53 if line[0:len(matchMajor)] == matchMajor:
57 elif line[0:len(matchMinor)] == matchMinor:
61 elif line[0:len(matchBuild)] == matchBuild:
66 return line;
    [all...]
  /external/toybox/toys/other/
pmap.c 32 char *line, *oldline = 0, *name = 0, local
40 line = readfile(toybuf, 0, 0);
41 if (!line) error_msg("No %lu", (long)pid);
42 xprintf("%u: %s\n", (int)pid, line);
43 free(line);
62 line = 0;
63 if (0 >= getline(&line, &len, fp)) break;
64 count = sscanf(line, "%llx-%llx %s %*s %*s %*s %n",
68 name = line[off] ? line+off : " [anon]\n"
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
LineImplTest.java 26 private LineImpl line; field in class:LineImplTest
30 line = LineImpl.EMPTY;
35 assertEquals(CounterImpl.COUNTER_0_0, line.getInstructionCounter());
36 assertEquals(CounterImpl.COUNTER_0_0, line.getBranchCounter());
37 assertEquals(ICounter.EMPTY, line.getStatus());
42 line = line.increment(CounterImpl.getInstance(1, 2),
45 line.getInstructionCounter());
46 assertEquals(CounterImpl.getInstance(3, 4), line.getBranchCounter());
51 line = line.increment(CounterImpl.getInstance(1, 2)
    [all...]
  /external/libchrome/base/third_party/dynamic_annotations/
dynamic_annotations.c 74 const char *file, int line, const volatile void *lock)
78 const char *file, int line, const volatile void *lock)
82 const char *file, int line, const volatile void *lock, long is_w)
86 const char *file, int line, const volatile void *lock, long is_w)
90 const char *file, int line, const volatile void *barrier, long count,
95 const char *file, int line, const volatile void *barrier)
99 const char *file, int line, const volatile void *barrier)
103 const char *file, int line, const volatile void *barrier)
107 const char *file, int line, const volatile void *cv,
112 const char *file, int line, const volatile void *cv
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
mimify.py 59 line = self.file.readline()
60 if not line:
61 return line
63 if line == self.boundary + '\n':
64 self.peek = line
66 if line == self.boundary + '--\n':
67 self.peek = line
69 return line
78 line = self.peek
81 line = self.file.readline()
    [all...]
  /external/python/cpython2/Lib/
mimify.py 59 line = self.file.readline()
60 if not line:
61 return line
63 if line == self.boundary + '\n':
64 self.peek = line
66 if line == self.boundary + '--\n':
67 self.peek = line
69 return line
78 line = self.peek
81 line = self.file.readline(
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
mimify.py 59 line = self.file.readline()
60 if not line:
61 return line
63 if line == self.boundary + '\n':
64 self.peek = line
66 if line == self.boundary + '--\n':
67 self.peek = line
69 return line
78 line = self.peek
81 line = self.file.readline(
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
mimify.py 59 line = self.file.readline()
60 if not line:
61 return line
63 if line == self.boundary + '\n':
64 self.peek = line
66 if line == self.boundary + '--\n':
67 self.peek = line
69 return line
78 line = self.peek
81 line = self.file.readline(
    [all...]

Completed in 940 milliseconds

1 2 3 4 56 7 8 91011>>