Searched refs:line (Results 1 - 25 of 3134) sorted by relevance

1234567891011>>

/external/clang/test/PCH/
H A Dline-directive.h0 #line 25 "line-directive.c"
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
H A D091-hash-line.c0 #line 0
2 #error line 0 error
3 #line 25
4 #error line 25 error
5 #line 0 1
6 #error source 1, line 0 error
7 #line 30 2
8 #error source 2, line 30 error
9 #line 45 2 /* A line wit
[all...]
/external/mesa3d/src/glsl/glcpp/tests/
H A D091-hash-line.c0 #line 0
2 #error line 0 error
3 #line 25
4 #error line 25 error
5 #line 0 1
6 #error source 1, line 0 error
7 #line 30 2
8 #error source 2, line 30 error
9 #line 45 2 /* A line wit
[all...]
/external/clang/test/Preprocessor/
H A Dprint_line_empty_file.c3 #line 21 ""
6 #line 4 "bug.c"
H A Dline-directive-output.c4 // CHECK: # 1 "{{.*}}line-directive-output.c"
7 // CHECK-NOT: # 1 "{{.*}}line-directive-output.c" 1
11 // CHECK-NEXT: # 50 "{{.*}}line-directive-output.c"
13 #line 50
16 // CHECK: # 13 "{{.*}}line-directive-output.c"
23 #line 1 "A.c"
25 #line 2
28 #line 1 "B.c"
31 #line 1000 "A.c"
H A Dline-directive.c5 #line 'a' // expected-error {{#line directive requires a positive integer argument}}
6 #line 0 // expected-warning {{#line directive with zero argument is a GNU extension}}
7 #line 00 // expected-warning {{#line directive with zero argument is a GNU extension}}
8 #line 2147483648 // expected-warning {{C requires #line number to be less than 2147483648, allowed as extension}}
9 #line 42 // ok
10 #line 4
[all...]
/external/valgrind/main/helgrind/tests/
H A Dfilter_helgrind14 my ($line, $tool_files, $cmdlin_files) = @_;
17 # If LINE matches any of the file names passed on the command line
22 return $line if ($line =~ /$qstring/);
25 # If LINE matches any of the file names in TOOL_FILES remove the line
26 # number and return the so modified line.
30 return $line if ($line =~ s/$qstring:[0-9]+/$string:.../m);
31 # Special case for functions whose line numbers have been removed in
33 return $line i
[all...]
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.
71 line:
73 my $line = $_;
74 chomp($line);
79 if ($line =~ $ignore_sections{$tag}) {
82 next line;
87 if ($line
[all...]
/external/elfutils/libdwfl/
H A Ddwfl_linemodule.c1 /* Fetch the module containing a source line record returned by libdwfl.
53 dwfl_linemodule (Dwfl_Line *line) argument
55 if (line == NULL)
58 return dwfl_linecu (line)->mod;
/external/elfutils/libdw/
H A Ddwarf_lineno.c1 /* Return line number.
59 dwarf_lineno (Dwarf_Line *line, int *linep) argument
61 if (line == NULL)
64 *linep = line->line;
H A Ddwarf_lineaddr.c1 /* Return line address.
59 dwarf_lineaddr (Dwarf_Line *line, Dwarf_Addr *addrp) argument
61 if (line == NULL)
64 *addrp = line->addr;
H A Ddwarf_linebeginstatement.c59 dwarf_linebeginstatement (Dwarf_Line *line, bool *flagp) argument
61 if (line == NULL)
64 *flagp = line->is_stmt;
H A Ddwarf_lineblock.c59 dwarf_lineblock (Dwarf_Line *line, bool *flagp) argument
61 if (line == NULL)
64 *flagp = line->basic_block;
H A Ddwarf_linecol.c1 /* Return column in line.
59 dwarf_linecol (Dwarf_Line *line, int *colp) argument
61 if (line == NULL)
64 *colp = line->column;
H A Ddwarf_lineendsequence.c59 dwarf_lineendsequence (Dwarf_Line *line, bool *flagp) argument
61 if (line == NULL)
64 *flagp = line->end_sequence;
H A Ddwarf_lineepiloguebegin.c59 dwarf_lineepiloguebegin (Dwarf_Line *line, bool *flagp) argument
61 if (line == NULL)
64 *flagp = line->epilogue_begin;
H A Ddwarf_lineprologueend.c59 dwarf_lineprologueend (Dwarf_Line *line, bool *flagp) argument
61 if (line == NULL)
64 *flagp = line->prologue_end;
/external/valgrind/main/memcheck/tests/
H A Dfilter_memcheck14 my ($line, $tool_files, $cmdlin_files) = @_;
17 # If LINE matches any of the file names passed on the command line
22 return $line if ($line =~ /$qstring/);
25 # If LINE matches any of the file names in TOOL_FILES remove the line
26 # number and return the so modified line.
30 return $line if ($line =~ s/$qstring:[0-9]+/$string:.../m);
31 # Special case for functions whose line numbers have been removed in
33 return $line i
[all...]
/external/oprofile/libutil/
H A Dop_cpufreq.c21 char * line = NULL; local
28 line = op_get_line(fp);
30 if (!line)
33 if (line[0] == '\0') {
34 free(line);
39 if (sscanf(line, "cpu MHz : %lf", &fval) == 1)
42 if (sscanf(line, "clock : %lfMHz", &fval) == 1)
45 if (sscanf(line, "cycle frequency [Hz] : %lu", &uval) == 1) {
50 if (sscanf(line, "Cpu0ClkTck : %lx", &uval) == 1) {
55 if (sscanf(line, "BogoMIP
[all...]
/external/chromium_org/chrome/tools/convert_dict/
H A Dhunspell_reader.cc15 // Shortcut for trimming whitespace from both ends of the line.
16 void TrimLine(std::string* line) { argument
17 if (line->size() > 3 &&
18 static_cast<unsigned char>((*line)[0]) == 0xef &&
19 static_cast<unsigned char>((*line)[1]) == 0xbb &&
20 static_cast<unsigned char>((*line)[2]) == 0xbf)
21 *line = line->substr(3);
26 TrimWhitespace(*line, TRIM_ALL, line);
30 const char* line = fgets(line_buffer, kLineBufferLen - 1, file); local
39 StripComment(std::string* line) argument
[all...]
/external/doclava/src/com/google/doclava/apicheck/
H A DApiParseException.java21 public int line; field in class:ApiParseException
33 this.line = ((ApiParseException)cause).line;
37 public ApiParseException(String message, int line) { argument
39 this.line = line;
43 if (line > 0) {
44 return super.getMessage() + " line " + line;
/external/valgrind/main/drd/tests/
H A Drun_openmp_test30 while read line
32 if [ "${line%: no symbols}" != "${line}" ]; then
35 elif [ "${line% gomp_barrier_init}" != "${line}" ]; then
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
H A Decho_wsh.py43 line = request.ws_stream.receive_message()
44 if line is None:
46 if isinstance(line, unicode):
47 request.ws_stream.send_message(line, binary=False)
48 if line == _GOODBYE_MESSAGE:
51 request.ws_stream.send_message(line, binary=True)
/external/chromium_org/net/data/websocket/
H A Decho-with-no-extension_wsh.py14 line = request.ws_stream.receive_message()
15 if line is None:
17 if isinstance(line, unicode):
18 request.ws_stream.send_message(line, binary=False)
19 if line == _GOODBYE_MESSAGE:
22 request.ws_stream.send_message(line, binary=True)
/external/chromium_org/tools/valgrind/memcheck/
H A DPRESUBMIT.py19 # - False: don't skip the next line.
20 # - 'skip_suppression_name': the next line is a suppression name, skip.
21 # - 'skip_param': the next line is a system call parameter error, skip.
25 for line, line_num in zip(f.NewContents(),
27 line = line.lstrip()
28 if line.startswith('#') or not line:
33 if 'insert_a_suppression_name_here' in line:
36 if suppressions.has_key(line)
[all...]

Completed in 594 milliseconds

1234567891011>>