HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 1 - 25 of 3459) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
line-directive.h 0 #line 25 "line-directive.c"
  /external/clang/test/Preprocessor/
print_line_empty_file.c 3 #line 21 ""
6 #line 4 "bug.c"
line-directive-output.c 4 // 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"
line-directive.c 5 #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 42 'a' // expected-error {{invalid filename for #line directive}
    [all...]
  /hardware/ril/reference-ril/
misc.c 18 /** returns 1 if line starts with prefix, 0 if it does not */
19 int strStartsWith(const char *line, const char *prefix)
21 for ( ; *line != '\0' && *prefix != '\0' ; line++, prefix++) {
22 if (*line != *prefix) {
misc.h 18 /** returns 1 if line starts with prefix, 0 if it does not */
19 int strStartsWith(const char *line, const char *prefix);
  /external/valgrind/main/helgrind/tests/
filter_helgrind 7 # A list of files specific to the tool at hand. Line numbers in
14 my ($line, $tool_files, $cmdlin_files) = @_;
17 # If LINE matches any of the file names passed on the command line
18 # (i.e. in CMDLIN_FILES) return LINE unmodified.
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
    [all...]
filter_xml 6 # 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.
23 # A list of files specific to the tool at hand. Line numbers in
71 line:
73 my $line = $_;
74 chomp($line);
79 if ($line =~ $ignore_sections{$tag}) {
82 next line;
    [all...]
  /external/elfutils/libdwfl/
dwfl_linemodule.c 1 /* Fetch the module containing a source line record returned by libdwfl.
53 dwfl_linemodule (Dwfl_Line *line)
55 if (line == NULL)
58 return dwfl_linecu (line)->mod;
  /external/elfutils/libdw/
dwarf_lineno.c 1 /* Return line number.
59 dwarf_lineno (Dwarf_Line *line, int *linep)
61 if (line == NULL)
64 *linep = line->line;
dwarf_lineaddr.c 1 /* Return line address.
59 dwarf_lineaddr (Dwarf_Line *line, Dwarf_Addr *addrp)
61 if (line == NULL)
64 *addrp = line->addr;
dwarf_linebeginstatement.c 59 dwarf_linebeginstatement (Dwarf_Line *line, bool *flagp)
61 if (line == NULL)
64 *flagp = line->is_stmt;
dwarf_lineblock.c 59 dwarf_lineblock (Dwarf_Line *line, bool *flagp)
61 if (line == NULL)
64 *flagp = line->basic_block;
dwarf_linecol.c 1 /* Return column in line.
59 dwarf_linecol (Dwarf_Line *line, int *colp)
61 if (line == NULL)
64 *colp = line->column;
dwarf_lineendsequence.c 59 dwarf_lineendsequence (Dwarf_Line *line, bool *flagp)
61 if (line == NULL)
64 *flagp = line->end_sequence;
dwarf_lineepiloguebegin.c 59 dwarf_lineepiloguebegin (Dwarf_Line *line, bool *flagp)
61 if (line == NULL)
64 *flagp = line->epilogue_begin;
dwarf_lineprologueend.c 59 dwarf_lineprologueend (Dwarf_Line *line, bool *flagp)
61 if (line == NULL)
64 *flagp = line->prologue_end;
dwarf_linesrc.c 1 /* Find line information for address.
59 dwarf_linesrc (Dwarf_Line *line, Dwarf_Word *mtime, Dwarf_Word *length)
61 if (line == NULL)
64 if (line->file >= line->files->nfiles)
71 *mtime = line->files->info[line->file].mtime;
74 *length = line->files->info[line->file].length;
76 return line->files->info[line->file].name
    [all...]
  /external/valgrind/main/memcheck/tests/
filter_memcheck 7 # A list of files specific to the tool at hand. Line numbers in
14 my ($line, $tool_files, $cmdlin_files) = @_;
17 # If LINE matches any of the file names passed on the command line
18 # (i.e. in CMDLIN_FILES) return LINE unmodified.
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
    [all...]
  /external/oprofile/libutil/
op_cpufreq.c 21 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, "BogoMIPS : %lu", &uval) == 1)
    [all...]
  /bionic/libc/bionic/
assert.cpp 35 void __assert(const char* file, int line, const char* failed_expression) {
36 __libc_fatal("%s:%d: assertion \"%s\" failed", file, line, failed_expression);
40 void __assert2(const char* file, int line, const char* function, const char* failed_expression) {
41 __libc_fatal("%s:%d: %s: assertion \"%s\" failed", file, line, function, failed_expression);
  /external/webkit/Source/WebKit/mac/Misc/
OldWebAssertions.c 29 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion);
30 void WebReportError(const char *file, int line, const char *function, const char *format, ...);
32 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion)
36 void WebReportError(const char *file, int line, const char *function, const char *format, ...)
  /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/valgrind/main/drd/tests/
run_openmp_test 30 while read line
32 if [ "${line%: no symbols}" != "${line}" ]; then
35 elif [ "${line% gomp_barrier_init}" != "${line}" ]; then
  /frameworks/native/opengl/libs/tools/
glentrygen 26 while (my $line = <>) {
27 next if $line =~ /^\//;
28 next if $line =~ /^#/;
29 next if $line =~ /^\s*$/;
30 if ($line !~ /^GL_API(CALL)?\s+(.+)\s+GL_APIENTRY\s+([\w]+)\s*\(([^\)]+)\);/) {

Completed in 2841 milliseconds

1 2 3 4 5 6 7 8 91011>>