HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 26 - 50 of 6722) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/v8/tools/clang/plugins/tests/
blacklisted_dirs.cpp 9 #line 1 "/src/chromium/src/myheader.h"
14 #line 123 "/src/chrome-breakpad/src/myheader.h"
19 #line 123 "/src/chrome-breakpad/src/breakpad/myheader.h"
  /external/v8/tools/sanitizers/
sanitize_pcs.py 10 for line in sys.stdin:
11 print '0x%x' % (int(line.strip(), 16) + 4)
  /external/doclava/src/com/google/doclava/apicheck/
ApiParseException.java 21 public int line; field in class:ApiParseException
33 this.line = ((ApiParseException)cause).line;
37 public ApiParseException(String message, int line) {
39 this.line = line;
43 if (line > 0) {
44 return super.getMessage() + " line " + line;
  /external/v8/tools/clang/scripts/
extract_edits.py 53 for line in sys.stdin:
54 line = line.rstrip("\n\r")
55 if line == '==== BEGIN EDITS ====':
58 if line == '==== END EDITS ====':
61 if inside_marker_lines and line not in unique_lines:
62 unique_lines.add(line)
63 print line
  /external/elfutils/libdw/
dwarf_line_file.c 1 /* Find line information for address.
37 dwarf_line_file (Dwarf_Line *line, Dwarf_Files **files, size_t *idx)
39 if (line == NULL)
42 if (line->file >= line->files->nfiles)
48 *files = line->files;
49 *idx = line->file;
dwarf_linesrc.c 1 /* Find line information for address.
38 dwarf_linesrc (Dwarf_Line *line, Dwarf_Word *mtime, Dwarf_Word *length)
40 if (line == NULL)
43 if (line->file >= line->files->nfiles)
50 *mtime = line->files->info[line->file].mtime;
53 *length = line->files->info[line->file].length;
55 return line->files->info[line->file].name
    [all...]
  /external/grpc-grpc/tools/debug/core/
error_ref_leak.py 28 for line in data:
29 # if we care about the line
30 if re.search(r'error.cc', line):
31 # str manip to cut off left part of log line
32 line = line.partition('error.cc:')[-1] variable
33 line = re.sub(r'\d+] ', r'', line) variable
34 line = line.strip().split( variable
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_aalinetemp.h 27 * Antialiased line template.
32 * Function to render each fragment in the AA line.
37 NAME(plot)(struct gl_context *ctx, struct LineInfo *line, int ix, int iy)
42 const GLfloat coverage = compute_coveragef(line, ix, iy);
43 const GLuint i = line->span.end;
50 line->span.end++;
51 line->span.array->coverage[i] = coverage;
52 line->span.array->x[i] = ix;
53 line->span.array->y[i] = iy;
60 line->span.array->z[i] = (GLuint) solve_plane(fx, fy, line->zPlane)
106 NAME(line)(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1) function
114 struct LineInfo line; local
    [all...]
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
TextFormatParseLocation.java 38 * <p>A location is the starting line number and starting column number.
50 * @param line the starting line number
54 static TextFormatParseLocation create(int line, int column) {
55 if (line == -1 && column == -1) {
58 if (line < 0 || column < 0) {
60 String.format("line and column values must be >= 0: line %d, column: %d", line, column));
62 return new TextFormatParseLocation(line, column)
65 private final int line; field in class:TextFormatParseLocation
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
Position.java 32 public final int line; field in class:Position
40 public Position(int line, int column) {
41 if (line < Node.ABSOLUTE_END_LINE) {
42 throw new IllegalArgumentException("Can't position at line " + line);
47 this.line = line;
54 public static Position pos(int line, int column) {
55 return new Position(line, column);
59 return new Position(this.line, column)
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/
Position.java 32 public final int line; field in class:Position
44 public Position(int line, int column) {
45 if (line < Node.ABSOLUTE_END_LINE) {
46 throw new IllegalArgumentException("Can't position at line " + line);
51 this.line = line;
58 public static Position pos(int line, int column) {
59 return new Position(line, column);
63 return new Position(this.line, column)
    [all...]
  /external/toybox/toys/posix/
comm.c 28 static void writeline(const char *line, int col)
39 puts(line);
45 char *line[2]; local
52 line[i] = get_line(file[i]);
55 while (line[0] && line[1]) {
56 int order = strcmp(line[0], line[1]);
59 writeline(line[0], 2);
61 free(line[i])
    [all...]
  /external/clang/test/CodeGen/
compound-assign-overflow.c 16 #line 100
23 #line 200
32 #line 300
  /external/elfutils/libdwfl/
dwfl_linecu.c 1 /* Fetch the module containing a source line record returned by libdwfl.
38 dwfl_linecu (Dwfl_Line *line)
40 if (line == NULL)
43 struct dwfl_cu *cu = dwfl_linecu_inline (line);
  /external/python/cpython3/Lib/test/subprocessdata/
qgrep.py 8 for line in sys.stdin:
9 if pattern in line:
10 sys.stdout.write(line)
  /external/python/cpython3/Python/
dynamic_annotations.c 48 void AnnotateRWLockCreate(const char *file, int line,
50 void AnnotateRWLockDestroy(const char *file, int line,
52 void AnnotateRWLockAcquired(const char *file, int line,
54 void AnnotateRWLockReleased(const char *file, int line,
56 void AnnotateBarrierInit(const char *file, int line,
59 void AnnotateBarrierWaitBefore(const char *file, int line,
61 void AnnotateBarrierWaitAfter(const char *file, int line,
63 void AnnotateBarrierDestroy(const char *file, int line,
66 void AnnotateCondVarWait(const char *file, int line,
69 void AnnotateCondVarSignal(const char *file, int line,
    [all...]
  /external/libyuv/files/tools_libyuv/valgrind/memcheck/
PRESUBMIT.py 35 # - False: don't skip the next line.
36 # - 'skip_suppression_name': the next line is a suppression name, skip.
37 # - 'skip_param': the next line is a system call parameter error, skip.
41 for line, line_num in zip(f.NewContents(),
43 line = line.lstrip()
44 if line.startswith('#') or not line:
49 if 'insert_a_suppression_name_here' in line:
52 if suppressions.has_key(line)
    [all...]
  /external/llvm/tools/llvm-c-test/
helpers.c 22 char line[MAX_LINE_LEN]; local
25 while (fgets(line, sizeof(line), stdin)) {
28 if (line[0] == ';' || line[0] == '\n')
32 tokbuf[c] = strtok(c ? NULL : line, " \n");
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-c-test/
helpers.c 21 char line[MAX_LINE_LEN]; local
24 while (fgets(line, sizeof(line), stdin)) {
27 if (line[0] == ';' || line[0] == '\n')
31 tokbuf[c] = strtok(c ? NULL : line, " \n");
  /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/webrtc/tools/valgrind-webrtc/memcheck/
PRESUBMIT.py 35 # - False: don't skip the next line.
36 # - 'skip_suppression_name': the next line is a suppression name, skip.
37 # - 'skip_param': the next line is a system call parameter error, skip.
41 for line, line_num in zip(f.NewContents(),
43 line = line.lstrip()
44 if line.startswith('#') or not line:
49 if 'insert_a_suppression_name_here' in line:
52 if suppressions.has_key(line)
    [all...]
  /device/generic/goldfish/ril/
misc.h 19 /** returns 1 if line starts with prefix, 0 if it does not */
20 int strStartsWith(const char *line, const char *prefix);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
PemReader.java 34 String line = readLine(); local
36 while (line != null && !line.startsWith(BEGIN))
38 line = readLine();
41 if (line != null)
43 line = line.substring(BEGIN.length());
44 int index = line.indexOf('-');
45 String type = line.substring(0, index);
59 String line; local
    [all...]
  /external/clang/utils/analyzer/
SumTimerInfo.py 35 for line in f:
36 if ("Miscellaneous Ungrouped Timers" in line) :
38 if (("Analyzer Total Time" in line) and (Mode == 1)) :
39 s = line.split()
44 if ((("warning generated." in line) or ("warnings generated" in line)) and Mode == 1) :
45 s = line.split()
47 if (("The # of functions analysed (as top level)" in line) and (Mode == 1)) :
48 s = line.split()
50 if (("The % of reachable basic blocks" in line) and (Mode == 1))
    [all...]
  /external/cldr/tools/scripts/
coll2icu.py 152 for line in src:
153 if "<rules>" in line:
154 indent = GetIndent(line)
155 stripped = line.strip()
170 elif "</rules>" in line:
176 dest.write(GetIndent(line) + "]]></cr>\n")
180 # Find out whether we want to concatenate the current line
183 start_ml_comment = False # Start of a multi-line comment.
184 stop_comment = False # End of a comment, must terminate the line.
185 if ("<reset" in line) or line.lstrip().startswith("<!--")
    [all...]

Completed in 967 milliseconds

12 3 4 5 6 7 8 91011>>