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

1 2 3 4 5 6 7 8 91011>>

  /external/minijail/test/
read_stdin 7 read line
9 if [ "$line" == "test" ]; then
  /external/clang/test/PCH/
line-directive.h 0 #line 25 "line-directive.c"
  /external/mesa3d/src/compiler/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
9 #line 45 2 /* A line with a comment *
    [all...]
104-hash-line-followed-by-code.c 0 #line 2
105-multiline-hash-line.c 2 #line X( \
5 #line 2
  /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...]
  /external/clang/test/CodeGen/
debug-info-typedef.c 3 #line 1 "a.c"
4 #line 2 "b.h"
6 #line 2 "a.c"
10 // CHECK: !DIDerivedType(tag: DW_TAG_typedef, name: "MyType", file: ![[HEADER:[0-9]+]], line: 2,
  /art/test/661-oat-writer-layout/
parse_oatdump_offsets.sh 27 while read -r line; do
29 if [[ $line == *dex_method_idx=* ]]; then
30 found_method=$line
33 if [[ $line == *"code_offset: "* ]]; then
34 echo $line $found_method >> "$tmp_file"
  /external/elfutils/libdw/
dwarf_lineno.c 1 /* Return line number.
38 dwarf_lineno (Dwarf_Line *line, int *linep)
40 if (line == NULL)
43 *linep = line->line;
dwarf_lineaddr.c 1 /* Return line address.
38 dwarf_lineaddr (Dwarf_Line *line, Dwarf_Addr *addrp)
40 if (line == NULL)
43 *addrp = line->addr;
dwarf_linebeginstatement.c 38 dwarf_linebeginstatement (Dwarf_Line *line, bool *flagp)
40 if (line == NULL)
43 *flagp = line->is_stmt;
dwarf_lineblock.c 38 dwarf_lineblock (Dwarf_Line *line, bool *flagp)
40 if (line == NULL)
43 *flagp = line->basic_block;
dwarf_linecol.c 1 /* Return column in line.
38 dwarf_linecol (Dwarf_Line *line, int *colp)
40 if (line == NULL)
43 *colp = line->column;
dwarf_linediscriminator.c 1 /* Return code path discriminator in line record.
37 dwarf_linediscriminator (Dwarf_Line *line, unsigned int *discp)
39 if (line == NULL)
42 *discp = line->discriminator;
dwarf_lineendsequence.c 38 dwarf_lineendsequence (Dwarf_Line *line, bool *flagp)
40 if (line == NULL)
43 *flagp = line->end_sequence;
dwarf_lineepiloguebegin.c 38 dwarf_lineepiloguebegin (Dwarf_Line *line, bool *flagp)
40 if (line == NULL)
43 *flagp = line->epilogue_begin;
dwarf_lineisa.c 1 /* Return ISA in line.
37 dwarf_lineisa (Dwarf_Line *line, unsigned int *isap)
39 if (line == NULL)
42 *isap = line->isa;
dwarf_lineop_index.c 1 /* Return line VLIW operation index.
37 dwarf_lineop_index (Dwarf_Line *line, unsigned int *idxp)
39 if (line == NULL)
42 *idxp = line->op_index;
dwarf_lineprologueend.c 38 dwarf_lineprologueend (Dwarf_Line *line, bool *flagp)
40 if (line == NULL)
43 *flagp = line->prologue_end;
  /external/parameter-framework/upstream/tools/xmlGenerator/analyse/
replaceAmixerByPfwParameters.sh 60 while IFS=''; read -r line
62 if echo "$line" | grep -qP "$regexp" && parameter="$(find_pfw_equivalent "$line" $1)"
64 echo "$parameter ( $line )"
66 echo "$line"
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
from.py 23 line = mail.readline() variable
24 if not line:
26 if line.startswith('From '):
28 print line[:-1],
30 line = mail.readline() variable
31 if not line or line == '\n':
33 if line.startswith('Subject: '):
34 print repr(line[9:-1]),
  /external/python/cpython2/Demo/scripts/
from.py 23 line = mail.readline() variable
24 if not line:
26 if line.startswith('From '):
28 print line[:-1],
30 line = mail.readline() variable
31 if not line or line == '\n':
33 if line.startswith('Subject: '):
34 print repr(line[9:-1]),
  /external/elfutils/libdwfl/
dwfl_linemodule.c 1 /* Fetch the module containing a source line record returned by libdwfl.
36 dwfl_linemodule (Dwfl_Line *line)
38 if (line == NULL)
41 return dwfl_linecu (line)->mod;

Completed in 565 milliseconds

1 2 3 4 5 6 7 8 91011>>