HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 1 - 25 of 2234) 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-NEXT: # 50 "{{.*}}line-directive-output.c"
9 #line 50
12 // CHECK: # 13 "{{.*}}line-directive-output.c"
19 #line 1 "A.c"
21 #line 2
24 #line 1 "B.c"
27 #line 1000 "A.c"
line-directive.c 5 #line 'a' // expected-error {{#line directive requires a positive integer argument}}
6 #line 0 // expected-error {{#line directive requires a positive integer argument}}
7 #line 00 // expected-error {{#line directive requires a positive integer argument}}
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...]
  /external/mesa3d/src/glsl/glcpp/tests/
091-hash-line.c 0 #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
  /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/elfutils/libdw/
dwarf_lineno.c 1 /* Return line number.
23 dwarf_lineno (Dwarf_Line *line, int *linep)
25 if (line == NULL)
28 *linep = line->line;
dwarf_lineaddr.c 1 /* Return line address.
23 dwarf_lineaddr (Dwarf_Line *line, Dwarf_Addr *addrp)
25 if (line == NULL)
28 *addrp = line->addr;
dwarf_linebeginstatement.c 23 dwarf_linebeginstatement (Dwarf_Line *line, bool *flagp)
25 if (line == NULL)
28 *flagp = line->is_stmt;
dwarf_lineblock.c 23 dwarf_lineblock (Dwarf_Line *line, bool *flagp)
25 if (line == NULL)
28 *flagp = line->basic_block;
dwarf_linecol.c 1 /* Return column in line.
23 dwarf_linecol (Dwarf_Line *line, int *colp)
25 if (line == NULL)
28 *colp = line->column;
dwarf_lineendsequence.c 23 dwarf_lineendsequence (Dwarf_Line *line, bool *flagp)
25 if (line == NULL)
28 *flagp = line->end_sequence;
dwarf_lineepiloguebegin.c 23 dwarf_lineepiloguebegin (Dwarf_Line *line, bool *flagp)
25 if (line == NULL)
28 *flagp = line->epilogue_begin;
dwarf_lineprologueend.c 23 dwarf_lineprologueend (Dwarf_Line *line, bool *flagp)
25 if (line == NULL)
28 *flagp = line->prologue_end;
dwarf_linesrc.c 1 /* Find line information for address.
23 dwarf_linesrc (Dwarf_Line *line, Dwarf_Word *mtime, Dwarf_Word *length)
25 if (line == NULL)
28 if (line->file >= line->files->nfiles)
35 *mtime = line->files->info[line->file].mtime;
38 *length = line->files->info[line->file].length;
40 return line->files->info[line->file].name
    [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...]
  /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, ...)
  /development/tools/glesv2debugger/
generate_MessageParser_java.py 23 def RemoveAnnotation(line):
24 if line.find(":") >= 0:
25 annotation = line[line.find(":"): line.find(" ", line.find(":"))]
26 return line.replace(annotation, "*")
28 return line
182 for line in lines:
183 if line.find("API_ENTRY(") >= 0: # a function prototyp
    [all...]
  /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
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/
generate_MessageParser_java.py 23 def RemoveAnnotation(line):
24 if line.find(":") >= 0:
25 annotation = line[line.find(":"): line.find(" ", line.find(":"))]
26 return line.replace(annotation, "*")
28 return line
182 for line in lines:
183 if line.find("API_ENTRY(") >= 0: # a function prototyp
    [all...]
  /frameworks/base/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*\(([^\)]+)\);/) {
  /external/chromium/base/third_party/dynamic_annotations/
dynamic_annotations.c 54 const char *file, int line, const volatile void *lock){}
56 const char *file, int line, const volatile void *lock){}
58 const char *file, int line, const volatile void *lock, long is_w){}
60 const char *file, int line, const volatile void *lock, long is_w){}
62 const char *file, int line, const volatile void *barrier, long count,
65 const char *file, int line, const volatile void *barrier) {}
67 const char *file, int line, const volatile void *barrier) {}
69 const char *file, int line, const volatile void *barrier) {}
72 const char *file, int line, const volatile void *cv,
75 const char *file, int line, const volatile void *cv){
    [all...]
  /frameworks/base/opengl/libs/GLES2_dbg/
generate_debug_in.py 25 for line in lines:
26 if line.find("API_ENTRY(") >= 0: # a function prototype
27 returnType = line[0: line.find(" API_ENTRY(")]
28 functionName = line[line.find("(") + 1: line.find(")")] #extract GL function name
29 parameterList = line[line.find(")(") + 2: line.find(") {")
    [all...]

Completed in 255 milliseconds

1 2 3 4 5 6 7 8 91011>>