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

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CharStreamState.as 32 * 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]? */
RecognitionException.as 56 * knows its state (such as current input symbol and line info) that
59 * perhaps print an entire line of input not just a single token, for example.
84 /** Track the line at which the error occurred in case this is
86 * unexpected char doesn't carry the line info.
88 public var line:int; variable
93 * imaginary nodes w/o line/col info. We now search backwards looking
94 * for most recent token with line/col info, but notify getErrorHeader()
107 this.line = token.line;
115 this.line = CharStream(input).line
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCharStreamState.h 37 NSInteger line; variable
42 @property (getter=getLine,setter=setLine:) NSInteger line; variable
ANTLRRecognitionException.h 40 NSInteger line; variable
47 @property (getter=getLine, setter=setLine:) NSInteger line; variable
ANTLRStringStream.h 37 NSInteger line; variable
49 @property (getter=getLine,setter=setLine:) NSInteger line; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCharStreamState.h 37 NSInteger line; variable
42 @property (getter=getLine,setter=setLine:) NSInteger line; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCharStreamState.h 37 NSInteger line; variable
42 @property (getter=getLine,setter=setLine:) NSInteger line; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCharStreamState.h 37 NSUInteger line; variable
42 @property (assign) NSUInteger line; variable
ANTLRStringStreamState.h 36 NSUInteger line; variable
55 @property (assign) NSUInteger line; variable
  /frameworks/base/tools/aapt/
SourcePos.h 13 int line; member in class:SourcePos
  /external/elfutils/libdw/
dwarf_decl_line.c 1 /* Get line number of beginning of given function.
72 Dwarf_Sword line; local
75 &attr_mem), &line);
78 assert (line >= 0 && line <= INT_MAX);
79 *linep = line;
  /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/guava/guava/src/com/google/common/io/
LineBuffer.java 22 * Package-protected abstract class that implements the line reading
23 * algorithm used by {@link LineReader}. Line separators are per {@link
24 * java.io.BufferedReader}: line feed, carriage return, or carriage
34 /** Holds partial line contents. */
35 private StringBuilder line = new StringBuilder(); field in class:LineBuffer
36 /** Whether a line ending with a CR is pending processing. */
40 * Process additional characters from the stream. When a line separator
41 * is found the contents of the line and the line separator itself
53 // Last call to add ended with a CR; we can handle the line now
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
CharStreamState.cs 43 /// 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/
CharStreamState.cs 39 * 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> */
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
CharStreamState.java 32 * 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 int line; field in class:CharStreamState
43 /** What char position 0..n-1 in line is scanner before processing buffer[p]? */
  /external/chromium/third_party/libjingle/source/talk/examples/login/
login_main.cc 57 std::string line; local
58 while (std::getline(std::cin, line)) {
59 if (line == "quit")
  /external/icu4c/common/unicode/
parseerr.h 34 * <p>The line, offset, and context fields are optional; parsing
59 * The line on which the error occured. If the parser uses this
60 * field, it sets it to the line number of the source text line on
62 * parse does not support line numbers, the value will be <= 0.
65 int32_t line; member in struct:UParseError
68 * The character offset to the error. If the line field is >= 1,
69 * then this is the offset from the start of the line. Otherwise,
  /external/srec/config/en.us/dictionary/
cmu2nuance.cpp 42 char line[200]; local
46 for (int lineno = 1; NULL != fgets(line, sizeof(line), stdin); lineno++)
48 if (line[0] == '#') continue;
49 if (line[0] == 0) continue;
50 if (!isalnum(line[0])) {
51 fprintf(stderr, "warning: ignoring line %d - %s", lineno, line);
55 const char* p = line;
60 fprintf(stderr, "can't read name at line %d\n", lineno)
    [all...]
  /external/webkit/Source/JavaScriptCore/icu/unicode/
parseerr.h 30 * <p>The line, offset, and context fields are optional; parsing
55 * The line on which the error occured. If the parser uses this
56 * field, it sets it to the line number of the source text line on
58 * parse does not support line numbers, the value will be <= 0.
61 int32_t line; member in struct:UParseError
64 * The character offset to the error. If the line field is >= 1,
65 * then this is the offset from the start of the line. Otherwise,
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
InfoSink.cpp 35 int string = 0, line = 0; local
36 DecodeSourceLoc(loc, &string, &line);
39 if (line)
40 stream << string << ":" << line; local
  /external/webkit/Source/WebCore/icu/unicode/
parseerr.h 30 * <p>The line, offset, and context fields are optional; parsing
55 * The line on which the error occured. If the parser uses this
56 * field, it sets it to the line number of the source text line on
58 * parse does not support line numbers, the value will be <= 0.
61 int32_t line; member in struct:UParseError
64 * The character offset to the error. If the line field is >= 1,
65 * then this is the offset from the start of the line. Otherwise,
  /external/webkit/Source/WebKit/mac/icu/unicode/
parseerr.h 30 * <p>The line, offset, and context fields are optional; parsing
55 * The line on which the error occured. If the parser uses this
56 * field, it sets it to the line number of the source text line on
58 * parse does not support line numbers, the value will be <= 0.
61 int32_t line; member in struct:UParseError
64 * The character offset to the error. If the line field is >= 1,
65 * then this is the offset from the start of the line. Otherwise,
  /build/tools/
check_radio_versions.py 30 for line in f:
31 line = line.strip() variable
32 if line.startswith("require"):
33 key, value = line.split()[1].split("=", 1)
59 for line in f:
60 line = line.strip() variable
61 if not line or line.startswith("#"): continu
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitTestInput.java 34 public int line; // line number in the script field in class:gUnitTestInput
36 public gUnitTestInput(String input, boolean isFile, int line) {
39 this.line = line;

Completed in 2168 milliseconds

1 2 3 4 5 6 7 8 91011>>