Searched refs:line (Results 26 - 50 of 3111) sorted by relevance

1234567891011>>

/external/chromium-trace/catapult/tracing/tracing/ui/base/
H A Dline_chart.css6 * /deep/ .line-chart .line {
11 * /deep/ .line-chart #brushes > rect {
/external/elfutils/libdw/
H A Ddwarf_linesrc.c1 /* Find line information for address.
38 dwarf_linesrc (Dwarf_Line *line, Dwarf_Word *mtime, Dwarf_Word *length) argument
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
[all...]
/external/valgrind/helgrind/tests/
H A Dfilter_xml6 # The script works line-by-line and is generally unaware of XML structure
13 # TOOL_FILES or in the list of files given on the command line
15 # a line <frame>...</frame> will be inserted.
72 line: label
74 my $line = $_;
75 chomp($line);
80 if ($line =~ $ignore_sections{$tag}) {
83 next line;
88 if ($line
[all...]
/external/valgrind/tests/
H A Dfilter_xml_frames18 my $has_source_info = 0; # <dir>, <file>, <line>
22 while (my $line = <>)
25 if ($line =~ /<frame>/) {
26 $frame = $line;
30 print $line;
36 $frame .= $line;
37 if ($line =~ /<\/frame>/) {
46 $has_source_info = 1 if ($line =~ /<(dir|file|line)>/);
47 $has_function_name = 1 if ($line
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_aalinetemp.h27 * 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) argument
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
106 NAME(line)(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1) function
114 struct LineInfo line; local
[all...]
/external/toybox/toys/posix/
H A Dcomm.c28 static void writeline(const char *line, int col) argument
39 puts(line);
45 char *line[2]; local
53 line[i] = get_line(file[i]);
56 while (line[0] && line[1]) {
57 int order = strcmp(line[0], line[1]);
60 writeline(line[0], 2);
62 free(line[
[all...]
/external/clang/test/CodeGen/
H A Dcompound-assign-overflow.c16 #line 100
23 #line 200
32 #line 300
H A Ddebug-info-line.c1 // 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/elfutils/libdwfl/
H A Ddwfl_linecu.c1 /* Fetch the module containing a source line record returned by libdwfl.
34 dwfl_linecu (Dwfl_Line *line) argument
36 if (line == NULL)
39 struct dwfl_cu *cu = dwfl_linecu_inline (line);
H A Ddwfl_dwarf_line.c1 /* Get information from a source line record returned by libdwfl.
33 dwfl_dwarf_line (Dwfl_Line *line, Dwarf_Addr *bias) argument
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/clang/test/
H A Dmake_test_dirs.pl9 while ($line = <STDIN>) {
10 $line =~ /^\s*/;
12 if ($line =~ /\[([^\]]*)\]/) {
/external/llvm/tools/llvm-c-test/
H A Dhelpers.c22 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/
H A DPRESUBMIT.py35 # - 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/
H A DPemReader.java28 String line = readLine();
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;
[all...]
/external/valgrind/gdbserver_tests/
H A Dfilter_helgrind_monitor_solaris17 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";
/external/clang/utils/analyzer/
H A DSumTimerInfo.py35 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) an
[all...]
/external/boringssl/src/crypto/perlasm/
H A Darm-xlate.pl80 my $line = join(",",@_);
81 if ($line =~ /^"(.*)"$/)
94 my $line = shift;
97 pos($line)=0;
99 while ($line =~ m/\G[^@\/\{\"]*/g) {
100 if ($line =~ m/\G(@|\/\/|$)/gc) {
103 elsif ($line =~ m/\G\{/gc) {
104 my $saved_pos = pos($line);
105 $line =~ s/\G([rdqv])([0-9]+)([^\-]*)\-\1([0-9]+)\3/range($1,$3,$2,$4)/e;
106 pos($line)
[all...]
/external/skia/tests/
H A DPathOpsDLineTest.cpp24 const SkDLine& line = tests[index]; local
25 SkASSERT(ValidLine(line));
27 SkPoint pts[2] = {line[0].asSkPoint(), line[1].asSkPoint()};
29 REPORTER_ASSERT(reporter, line[0] == line2[0] && line[1] == line2[1]);
30 SkDPoint mid = line.ptAtT(.5);
31 REPORTER_ASSERT(reporter, approximately_equal((line[0].fX + line[1].fX) / 2, mid.fX));
32 REPORTER_ASSERT(reporter, approximately_equal((line[
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DgUnitTestInput.java34 public int line; // line number in the script field in class:gUnitTestInput
36 public gUnitTestInput(String input, boolean isFile, int line) { argument
39 this.line = line;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DCharStreamState.cs43 /// need to record the state of the input stream (char index, line,
51 /// <summary>What line number is the scanner at before processing buffer[p]? </summary>
52 internal int line; field in class:Antlr.Runtime.CharStreamState
54 /// <summary>What char position 0..n-1 in line is scanner before processing buffer[p]? </summary>
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DCharStreamState.cs39 * line, etc...) so that we can rewind the state after scanning ahead.
50 /** <summary>What line number is the scanner at before processing buffer[p]?</summary> */
51 public int line; field in class:Antlr.Runtime.CharStreamState
53 /** <summary>What char position 0..n-1 in line is scanner before processing buffer[p]?</summary> */
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DCharStreamState.java32 * 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/
H A Dlist_telemetry_unittests10 def _ExtractQueuedTestName(line):
11 _, test_name, _ = line.split(' ')
15 def _ExtractPassedTestName(line):
16 _, test_name, _, _ = line.split(' ')
20 def _IsQueued(line):
21 return line.endswith(' queued')
24 def _IsPassed(line):
25 return 'passed' in line.split(' ')
32 for line in f:
33 line
[all...]
/external/clang/test/CodeGenCXX/
H A Ddebug-info-line-if.cpp6 #line 100
14 // should be attributed to the loop header line.
20 #line 200
30 #line 300
40 #line 400
51 // CHECK: [[DBG1]] = !DILocation(line: 100, scope: !{{.*}})
52 // CHECK: [[DBG2]] = !DILocation(line: 200, scope: !{{.*}})
53 // CHECK: [[DBG3]] = !DILocation(line: 300, scope: !{{.*}})
54 // CHECK: [[DBG4]] = !DILocation(line: 401, scope: !{{.*}})
/external/iproute2/include/iptables/
H A Dinternal.h11 extern int line;

Completed in 979 milliseconds

1234567891011>>