Searched defs:line (Results 1 - 25 of 882) 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.
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/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/
H A Dint_util.c28 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
29 panic("%s:%d: abort in %s", file, line, function);
36 int line, const char * message) __attribute__((noreturn));
40 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
41 __assert_rtn(function, file, line, "libcompiler_rt abort");
52 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
H A Deprintf.c27 const char* line, const char* file)
29 fprintf(stderr, format, assertion_expression, line, file);
26 __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.
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_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_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_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
48 fputs(line, stderr);
/external/dropbear/libtomcrypt/testprof/
H A Dtest_driver.c3 void run_cmd(int res, int line, char *file, char *cmd) argument
6 fprintf(stderr, "%s (%d)\n%s:%d:%s\n", error_to_string(res), res, file, line, cmd);
/external/oprofile/libutil/
H A Dop_cpufreq.c21 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, "BogoMIP
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DCharStreamState.cs43 /// need to record the state of the input stream (char index, line,
51 /// <summary>What line number is the scanner at before processing buffer[p]? </summary>
52 internal int line; field in class:Antlr.Runtime.CharStreamState
54 /// <summary>What char position 0..n-1 in line is scanner before processing buffer[p]? </summary>
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DCharStreamState.cs39 * line, etc...) so that we can rewind the state after scanning ahead.
50 /** <summary>What line number is the scanner at before processing buffer[p]?</summary> */
51 public int line; field in class:Antlr.Runtime.CharStreamState
53 /** <summary>What char position 0..n-1 in line is scanner before processing buffer[p]?</summary> */

Completed in 2701 milliseconds

1234567891011>>