Searched defs:line (Results 1 - 25 of 1454) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DCharStreamState.as32 * 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 public var line:int; variable
43 /** What char position 0..n-1 in line is scanner before processing buffer[p]? */
/external/elfutils/0.153/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;
H A Ddwfl_line_comp_dir.c1 /* Get information from a source line record returned by libdwfl.
54 dwfl_line_comp_dir (Dwfl_Line *line) argument
56 if (line == NULL)
59 struct dwfl_cu *cu = dwfl_linecu (line);
H A Ddwfl_linecu.c1 /* Fetch the module containing a source line record returned by libdwfl.
55 dwfl_linecu (Dwfl_Line *line) argument
57 if (line == NULL)
60 struct dwfl_cu *cu = dwfl_linecu_inline (line);
/external/valgrind/main/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.
71 line: label
73 my $line = $_;
74 chomp($line);
79 if ($line =~ $ignore_sections{$tag}) {
82 next line;
87 if ($line
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRCharStreamState.h37 NSInteger line; variable
42 @property (getter=getLine,setter=setLine:) NSInteger line; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRCharStreamState.h37 NSInteger line; variable
42 @property (getter=getLine,setter=setLine:) NSInteger line; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRCharStreamState.h37 NSInteger line; variable
42 @property (getter=getLine,setter=setLine:) NSInteger line; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRCharStreamState.h37 NSUInteger line; variable
42 @property (assign) NSUInteger line; variable
H A DANTLRStringStreamState.h36 NSUInteger line; variable
55 @property (assign) NSUInteger line; variable
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/memory_manager/
H A Dhmm_dflt_abort.c30 /* Print abort message, file and line. Terminate execution.
32 void hmm_dflt_abort(const char *file, const char *line) { argument
47 fputs(line, stderr);
/external/compiler-rt/lib/builtins/
H A Dint_util.c30 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
31 panic("%s:%d: abort in %s", file, line, function);
38 int line, const char * message) __attribute__((noreturn));
44 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
45 __assert_rtn(function, file, line, "libcompiler_rt abort");
57 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
/external/elfutils/0.153/libdw/
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_linediscriminator.c1 /* Return code path discriminator in line record.
58 dwarf_linediscriminator (Dwarf_Line *line, unsigned int *discp) argument
60 if (line == NULL)
63 *discp = line->discriminator;
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_lineisa.c1 /* Return ISA in line.
58 dwarf_lineisa (Dwarf_Line *line, unsigned int *isap) argument
60 if (line == NULL)
63 *isap = line->isa;
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_lineop_index.c1 /* Return line VLIW operation index.
58 dwarf_lineop_index (Dwarf_Line *line, unsigned int *idxp) argument
60 if (line == NULL)
63 *idxp = line->op_index;
H A Ddwarf_lineprologueend.c59 dwarf_lineprologueend (Dwarf_Line *line, bool *flagp) argument
61 if (line == NULL)
64 *flagp = line->prologue_end;
H A Ddwarf_linesrc.c1 /* Find line information for address.
59 dwarf_linesrc (Dwarf_Line *line, Dwarf_Word *mtime, Dwarf_Word *length) argument
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
[all...]
/external/libvpx/libvpx/vpx_mem/memory_manager/
H A Dhmm_dflt_abort.c30 /* Print abort message, file and line. Terminate execution.
32 void hmm_dflt_abort(const char *file, const char *line) { argument
47 fputs(line, stderr);

Completed in 446 milliseconds

1234567891011>>