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

1 23 4 5 6 7 8 91011>>

  /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.
34 dwfl_linecu (Dwfl_Line *line)
36 if (line == NULL)
39 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/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...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
PemReader.java 28 String line = readLine(); local
30 while (line != null && !line.startsWith(BEGIN))
32 line = readLine();
35 if (line != null)
37 line = line.substring(BEGIN.length());
38 int index = line.indexOf('-');
39 String type = line.substring(0, index);
53 String line; local
    [all...]
  /external/valgrind/gdbserver_tests/
filter_helgrind_monitor_solaris 17 my $line = $_;
18 chomp($line);
19 if ($line =~ /^Lock ga 0x[\.]+\s+{$/) {
20 $lock_start_line = $line;
23 ($line =~ /\s*Address 0x[\.]+ is \d+ bytes inside data symbol "(\S+)"/)) {
26 print "$line\n";
29 } elsif ($line =~ /^}$/) {
31 print "$line\n";
37 print "$line\n";
  /frameworks/native/opengl/libs/tools/
glenumsgen 21 while (my $line = <STDIN>) {
22 next if $line =~ /^\//;
24 next if $line =~ /_BIT(\d+_|\s+)/;
25 if ($line !~ /^#define\s+(\S+)\s+(0x\S+)/) {
  /hardware/ril/reference-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);
  /packages/apps/Messaging/build/
colorize_errors.py 31 for line in fileinput.input():
32 if ERROR.match(line):
33 print RED + line,
34 elif WARNING.match(line):
35 print YELLOW + line,
36 elif STARTS_WITH_WS.match(line):
37 # If the line starts with a space use the same coloring as the previous line
38 print line,
40 print RESET + line,
    [all...]
  /prebuilts/go/darwin-x86/test/dwarf/dwarf.dir/
z1.go 3 //line x1.go:4
z10.go 4 //line x10.go:4
z11.go 2 //line x11.go:4
z12.go 2 //line x12.go:4
z13.go 2 //line x13.go:4
z14.go 2 //line x14.go:4
z15.go 2 //line x15.go:4
z16.go 2 //line x16.go:4
z17.go 2 //line x17.go:4
z18.go 3 //line x18.go:4
z19.go 2 //line x19.go:4

Completed in 801 milliseconds

1 23 4 5 6 7 8 91011>>