Searched defs:line (Results 1 - 25 of 1420) 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/libdwfl/
H A Ddwfl_linemodule.c1 /* Fetch the module containing a source line record returned by libdwfl.
32 dwfl_linemodule (Dwfl_Line *line) argument
34 if (line == NULL)
37 return dwfl_linecu (line)->mod;
H A Ddwfl_line_comp_dir.c1 /* Get information from a source line record returned by libdwfl.
33 dwfl_line_comp_dir (Dwfl_Line *line) argument
35 if (line == NULL)
38 struct dwfl_cu *cu = dwfl_linecu (line);
H A Ddwfl_linecu.c1 /* Fetch the module containing a source line record returned by libdwfl.
34 dwfl_linecu (Dwfl_Line *line) argument
36 if (line == NULL)
39 struct dwfl_cu *cu = dwfl_linecu_inline (line);
/external/valgrind/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.
72 line: label
74 my $line = $_;
75 chomp($line);
80 if ($line =~ $ignore_sections{$tag}) {
83 next line;
88 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/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);
37 NORETURN extern void __assert_rtn(const char *func, const char *file, int line,
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
H A Deprintf.c30 const char* line, const char* file)
32 fprintf(stderr, format, assertion_expression, line, file);
29 __eprintf(const char* format, const char* assertion_expression, const char* line, const char* file) argument
/external/elfutils/libdw/
H A Ddwarf_lineaddr.c1 /* Return line address.
38 dwarf_lineaddr (Dwarf_Line *line, Dwarf_Addr *addrp) argument
40 if (line == NULL)
43 *addrp = line->addr;
H A Ddwarf_linebeginstatement.c38 dwarf_linebeginstatement (Dwarf_Line *line, bool *flagp) argument
40 if (line == NULL)
43 *flagp = line->is_stmt;
H A Ddwarf_lineblock.c38 dwarf_lineblock (Dwarf_Line *line, bool *flagp) argument
40 if (line == NULL)
43 *flagp = line->basic_block;
H A Ddwarf_linecol.c1 /* Return column in line.
38 dwarf_linecol (Dwarf_Line *line, int *colp) argument
40 if (line == NULL)
43 *colp = line->column;
H A Ddwarf_linediscriminator.c1 /* Return code path discriminator in line record.
37 dwarf_linediscriminator (Dwarf_Line *line, unsigned int *discp) argument
39 if (line == NULL)
42 *discp = line->discriminator;
H A Ddwarf_lineendsequence.c38 dwarf_lineendsequence (Dwarf_Line *line, bool *flagp) argument
40 if (line == NULL)
43 *flagp = line->end_sequence;
H A Ddwarf_lineepiloguebegin.c38 dwarf_lineepiloguebegin (Dwarf_Line *line, bool *flagp) argument
40 if (line == NULL)
43 *flagp = line->epilogue_begin;
H A Ddwarf_lineisa.c1 /* Return ISA in line.
37 dwarf_lineisa (Dwarf_Line *line, unsigned int *isap) argument
39 if (line == NULL)
42 *isap = line->isa;
H A Ddwarf_lineno.c1 /* Return line number.
38 dwarf_lineno (Dwarf_Line *line, int *linep) argument
40 if (line == NULL)
43 *linep = line->line;
H A Ddwarf_lineop_index.c1 /* Return line VLIW operation index.
37 dwarf_lineop_index (Dwarf_Line *line, unsigned int *idxp) argument
39 if (line == NULL)
42 *idxp = line->op_index;
H A Ddwarf_lineprologueend.c38 dwarf_lineprologueend (Dwarf_Line *line, bool *flagp) argument
40 if (line == NULL)
43 *flagp = line->prologue_end;
H A Ddwarf_linesrc.c1 /* Find line information for address.
38 dwarf_linesrc (Dwarf_Line *line, Dwarf_Word *mtime, Dwarf_Word *length) argument
40 if (line == NULL)
43 if (line->file >= line->files->nfiles)
50 *mtime = line->files->info[line->file].mtime;
53 *length = line->files->info[line->file].length;
55 return line
[all...]
/external/hyphenation-patterns/de/
H A Dcreate_chr.py24 for line in pat_file:
25 line = line.strip() variable
26 all_chars |= set(line)

Completed in 1254 milliseconds

1234567891011>>