HomeSort by relevance Sort by last modified time
    Searched refs:Line (Results 26 - 50 of 170) sorted by null

12 3 4 5 6 7

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
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> */
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...]
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 + "]";
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
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> */
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/skia/src/svg/
SkSVGLine.cpp 20 DEFINE_SVG_INFO(Line)
23 parser._startElement("line");
  /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
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
QuicktimeTextTrackImpl.java 43 List<Line> subs = new LinkedList<Line>();
45 public List<Line> getSubs() {
67 for (Line sub : subs) {
96 for (Line sub : subs) {
130 public static class Line {
136 public Line(long from, long to, String text) {
TextTrackImpl.java 39 List<Line> subs = new LinkedList<Line>();
41 public List<Line> getSubs() {
70 for (Line sub : subs) {
99 for (Line sub : subs) {
133 public static class Line {
139 public Line(long from, long to, String text) {
  /external/clang/lib/Format/
TokenAnnotator.cpp 91 AnnotatingParser(SourceManager &SourceMgr, Lexer &Lex, AnnotatedLine &Line,
93 : SourceMgr(SourceMgr), Lex(Lex), Line(Line), CurrentToken(&Line.First),
316 // At the start of the line, +/- specific ObjectiveC method
328 Line.First.Type == TT_ObjCMethodSpecifier) {
362 if (Line.MustBeDeclaration)
363 Line.MightBeFunctionDecl = true;
409 if (Line.First.is(tok::kw_for) &&
433 // they are not split or line-wrapped
    [all...]
  /external/v8/test/mjsunit/harmony/
debug-evaluate-blockscopes.js 40 { // Line 1.
41 let i = 1; // Line 2.
42 try { // Line 3.
43 throw 'stuff'; // Line 4.
44 } catch (e) { // Line 5.
45 x = 2; // Line 6.
52 // Set breakpoint on line 6.
  /external/v8/test/mjsunit/regress/
regress-1586.js 34 var i = 1; // Line 1.
35 { // Line 2.
36 try { // Line 3.
37 throw 'stuff'; // Line 4.
38 } catch (e) { // Line 5.
39 x = 2; // Line 6.
46 // Set breakpoint on line 6.
  /external/icu4c/test/perf/collationperf/
collperf.cpp 20 // A file of names is required as input, one per line. It must be in utf-8 or utf-16 format,
102 // Command line option variables
104 // on the command line by the user.
138 // Definitions for the command line options
187 // struct Line
189 // Each line from the source file (containing a name, presumably) gets
192 struct Line {
203 Line *gFileLines; // Ptr to array of Line structs, one per line in the file
370 int line; local
467 int line; local
1160 int line; local
1611 int line; local
    [all...]
  /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/icu4c/samples/layout/
paragraph.h 49 void addLine(const ParagraphLayout::Line *line);
61 const ParagraphLayout::Line **fLines;
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Line.java 47 * A simple line implementation with a start and an end.
51 public class Line extends Mesh {
56 public Line() {
59 public Line(Vector3f start, Vector3f end) {
83 * Update the start and end points of the line.
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimToken.cs 78 int IToken.Line
  /external/clang/unittests/AST/
MatchVerifier.h 120 void expectLocation(unsigned Line, unsigned Column) {
121 ExpectLine = Line;
128 unsigned Line = Result.SourceManager->getSpellingLineNumber(Loc);
130 if (Line != ExpectLine || Column != ExpectColumn) {
  /external/clang/unittests/Tooling/
TestVisitor.h 102 /// \brief Expect 'Match' *not* to occur at the given 'Line' and 'Column'.
105 void DisallowMatch(Twine Match, unsigned Line, unsigned Column) {
106 DisallowedMatches.push_back(MatchCandidate(Match, Line, Column));
109 /// \brief Expect 'Match' to occur at the given 'Line' and 'Column'.
113 void ExpectMatch(Twine Match, unsigned Line, unsigned Column) {
114 ExpectedMatches.push_back(ExpectedMatch(Match, Line, Column));

Completed in 469 milliseconds

12 3 4 5 6 7