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

1 2 3

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ICharStream.cs 55 /** <summary>ANTLR tracks the line information automatically</summary> */
56 /** <summary>Because this stream can rewind, we need to be able to reset the line</summary> */
57 int Line {
62 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */
IToken.cs 47 /** <summary>The line number on which this token was matched; line=1..n</summary> */
48 int Line {
53 /** <summary>The index of the first character relative to the beginning of the line 0..n-1</summary> */
ClassicToken.cs 47 int line; field in class:Antlr.Runtime.ClassicToken
61 line = oldToken.Line;
96 public int Line {
98 return line;
101 line = value;
171 return "[@" + TokenIndex + ",'" + txt + "',<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + "]";
ANTLRStringStream.cs 56 /** <summary>line number 1..n within the input</summary> */
57 int line = 1; field in class:Antlr.Runtime.ANTLRStringStream
59 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */
67 * values line, charPositionInLine, and p that can change as you
122 public virtual int Line {
124 return line;
127 line = value;
147 line = 1;
158 System.out.println("newline char found on line: "+line
    [all...]
CommonToken.cs 41 int line; field in class:Antlr.Runtime.CommonToken
88 line = oldToken.Line;
133 public int Line {
135 return line;
138 line = value;
211 return "[@" + TokenIndex + "," + start + ":" + stop + "='" + txt + "',<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + "]";
Lexer.cs 73 public int Line {
75 return input.Line;
78 input.Line = value;
116 state.tokenStartLine = input.Line;
120 eof.Line = Line;
201 t.Line = state.tokenStartLine;
345 string inputSymbol = ((char)input.LT(1)) + " line=" + Line + ":" + CharPositionInLine;
351 string inputSymbol = ((char)input.LT(1)) + " line=" + Line + ":" + CharPositionInLine
    [all...]
RecognitionException.cs 66 * knows its state (such as current input symbol and line info) that
69 * perhaps print an entire line of input not just a single token, for example.
101 * Track the line (1-based) at which the error occurred in case this is
103 * unexpected char doesn't carry the line info.
109 /// The 0-based index into the line where the error occurred.
115 * imaginary nodes w/o line/col info. We now search backwards looking
116 * for most recent token with line/col info, but notify getErrorHeader()
150 this._line = _token.Line;
157 this._line = ((ICharStream)input).Line;
172 _line = info.GetInt32("Line");
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ICharStream.cs 57 /** <summary>ANTLR tracks the line information automatically</summary> */
58 /** <summary>Because this stream can rewind, we need to be able to reset the line</summary> */
59 int Line
65 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */
IToken.cs 51 /** <summary>The line number on which this token was matched; line=1..n</summary> */
52 int Line
58 /** <summary>The index of the first character relative to the beginning of the line 0..n-1</summary> */
ClassicToken.cs 49 int line; field in class:Antlr.Runtime.ClassicToken
65 line = oldToken.Line;
108 public int Line
112 return line;
116 line = value;
209 return "[@" + TokenIndex + ",'" + txt + "',<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + "]";
ANTLRStringStream.cs 58 /** <summary>line number 1..n within the input</summary> */
59 int line = 1; field in class:Antlr.Runtime.ANTLRStringStream
61 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */
69 * values line, charPositionInLine, and p that can change as you
131 public virtual int Line
135 return line;
139 line = value;
163 line = 1;
177 System.out.println("newline char found on line: "+line
    [all...]
CommonToken.cs 43 int line; field in class:Antlr.Runtime.CommonToken
95 line = oldToken.Line;
146 public int Line
150 return line;
154 line = value;
250 return "[@" + TokenIndex + "," + start + ":" + stop + "='" + txt + "',<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + "]";
Lexer.cs 82 public int Line
86 return input.Line;
90 input.Line = value;
136 state.tokenStartLine = input.Line;
141 eof.Line = Line;
243 t.Line = state.tokenStartLine;
419 string inputSymbol = ( (char)input.LT( 1 ) ) + " line=" + Line + ":" + CharPositionInLine;
426 string inputSymbol = ( (char)input.LT( 1 ) ) + " line=" + Line + ":" + CharPositionInLine
    [all...]
RecognitionException.cs 67 * knows its state (such as current input symbol and line info) that
70 * perhaps print an entire line of input not just a single token, for example.
103 * Track the line (1-based) at which the error occurred in case this is
105 * unexpected char doesn't carry the line info.
111 /// The 0-based index into the line where the error occurred.
117 * imaginary nodes w/o line/col info. We now search backwards looking
118 * for most recent token with line/col info, but notify getErrorHeader()
160 this._line = _token.Line;
175 this._line = ((ICharStream)input).Line;
194 _line = info.GetInt32("Line");
    [all...]
  /external/bison/doc/
refcard.tex 16 % comment out this line if you want page numbers to appear.
163 \def\makefootline{\baselineskip10pt\hsize6.5in\line{\the\footline}}
193 \def\makefootline{\vskip 2in \hsize=6.86in\line{\the\footline}}
212 % This next line is useful when designing the layout.
317 \section{Command Line Options}
324 \key{Don't put {\tt \#line} directives in the parser.} {-l}
448 \key{Access data's line location.} {@{\it x}.{\it line\_spec}}
455 number, {\it x} is a number or \$, {\it line\_spec} one of {\tt
  /external/skia/src/text/
SkTextLayout.cpp 65 struct SkTextLayout::Line {
66 Line() {}
67 ~Line();
73 SkTextLayout::Line::~Line() {
  /external/clang/include/clang/Frontend/
CommandLineSourceLoc.h 11 // Command line parsing for source locations.
24 /// \brief A source location that has been parsed on the command line.
27 unsigned Line;
41 !LineSplit.second.getAsInteger(10, PSL.Line)) {
44 // On the command-line, stdin may be specified via "-". Inside the
58 /// \brief Command-line option parser that parses source locations.
60 /// Source locations are of the form filename:line:column.
78 << "source location must be of the form filename:line:column\n";
LogDiagnosticPrinter.h 24 /// The primary message line of the diagnostic.
30 /// The source file line number, if available.
31 unsigned Line;
  /external/clang/lib/Frontend/
LayoutOverrideSource.cpp 39 std::string Line;
40 getline(Input, Line);
42 StringRef LineStr(Line);
44 // Determine whether the following line will start a
  /external/llvm/include/llvm/DebugInfo/
DIContext.h 26 /// DILineInfo - a format-neutral container for source line information.
29 uint32_t Line;
32 DILineInfo() : FileName("<invalid>"), Line(0), Column(0) {}
33 DILineInfo(const char *fileName, uint32_t line, uint32_t column)
34 : FileName(fileName), Line(line), Column(column) {}
37 uint32_t getLine() const { return Line; }
41 return Line == RHS.Line && Column == RHS.Column &&
  /external/bluetooth/glib/tests/
unicode-collate.c 13 } Line;
19 const Line *line_a = a;
20 const Line *line_b = b;
28 const Line *line_a = a;
29 const Line *line_b = b;
38 GArray *line_array = g_array_new (FALSE, FALSE, sizeof(Line));
95 Line line; local
103 line.key = g_utf8_collate_key_for_filename (str, -1);
105 line.key = g_utf8_collate_key (str, -1)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTree.cs 110 public override int Line {
112 if (token == null || token.Line == 0) {
114 return Children[0].Line;
118 return token.Line;
121 base.Line = value;
ITree.cs 148 /** <summary>In case we don't have a token payload, what is the line for errors?</summary> */
149 int Line {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTree.cs 128 public override int Line
132 if ( Token == null || Token.Line == 0 )
135 return Children[0].Line;
140 return Token.Line;
145 base.Line = value;
ITree.cs 158 /** <summary>In case we don't have a token payload, what is the line for errors?</summary> */
159 int Line

Completed in 403 milliseconds

1 2 3