Searched defs:Line (Results 1 - 25 of 113) sorted by relevance

12345

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DICharStream.cs57 int Line { property in interface:Antlr.Runtime.ICharStream
H A DIToken.cs48 int Line { property in interface:Antlr.Runtime.IToken
H A DClassicToken.cs61 line = oldToken.Line;
96 public int Line { property in class:Antlr.Runtime.ClassicToken
H A DCommonToken.cs88 line = oldToken.Line;
133 public int Line { property in class:Antlr.Runtime.CommonToken
H A DRecognitionException.cs150 this._line = _token.Line;
157 this._line = ((ICharStream)input).Line;
172 _line = info.GetInt32("Line");
248 public int Line { property in class:Antlr.Runtime.RecognitionException
273 info.AddValue("Line", _line);
285 this._line = lastRealToken.Line;
296 if (payload.Line <= 0) {
302 if (priorPayload != null && priorPayload.Line > 0) {
304 this._line = priorPayload.Line;
313 this._line = payload.Line;
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DICharStream.cs59 int Line property in interface:Antlr.Runtime.ICharStream
H A DIToken.cs52 int Line property in interface:Antlr.Runtime.IToken
H A DClassicToken.cs65 line = oldToken.Line;
108 public int Line property in class:Antlr.Runtime.ClassicToken
H A DCommonToken.cs95 line = oldToken.Line;
146 public int Line property in class:Antlr.Runtime.CommonToken
H A DLexer.cs82 public int Line property in class:Antlr.Runtime.Lexer
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;
H A DRecognitionException.cs160 this._line = _token.Line;
175 this._line = ((ICharStream)input).Line;
194 _line = info.GetInt32("Line");
292 public int Line property in class:Antlr.Runtime.RecognitionException
324 info.AddValue("Line", _line);
340 this._line = lastRealToken.Line;
352 if (payload.Line <= 0)
360 if (priorPayload != null && priorPayload.Line > 0)
363 this._line = priorPayload.Line;
382 this._line = payload.Line;
[all...]
/external/bison/doc/
H A Drefcard.tex315 \section{Command Line Options}
/external/chromium_org/tools/json_schema_compiler/
H A Dcode.py26 self._code.append(Line(((' ' * indent_level) + line).rstrip(),
137 class Line(object): class in inherits:object
/external/llvm/include/llvm/DebugInfo/
H A DDIContext.h35 uint32_t Line; member in struct:llvm::DILineInfo
39 : FileName("<invalid>"), FunctionName("<invalid>"), Line(0), Column(0) {}
42 return Line == RHS.Line && Column == RHS.Column &&
/external/llvm/lib/Support/
H A DFormattedStream.cpp25 unsigned &Line = Position.second; local
33 Line += 1;
/external/clang/include/clang/Frontend/
H A DCommandLineSourceLoc.h27 unsigned Line; member in struct:clang::ParsedSourceLocation
41 !LineSplit.second.getAsInteger(10, PSL.Line)) {
H A DLogDiagnosticPrinter.h31 unsigned Line; member in struct:clang::LogDiagnosticPrinter::DiagEntry
/external/clang/lib/Frontend/
H A DLayoutOverrideSource.cpp41 std::string Line; local
42 getline(Input, Line);
44 StringRef LineStr(Line);
/external/chromium_org/ui/keyboard/resources/
H A Dtouch_fuzzing.js117 return Math.abs(this.intersect(new Line(x))) +
118 Math.abs(this.intersect(new Line(y, true)));
123 * @param {!Line} line The line.
154 var Line = function(c, orientation) { class
159 Line.prototype = {
181 * @param {Line} line The line to split the space with.
191 * @type {Line}
327 * @return {Array.<Line>} The optimum split points.
414 splits.push(new Line(mid, orientation));
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonTree.cs110 public override int Line { property in class:Antlr.Runtime.Tree.CommonTree
112 if (token == null || token.Line == 0) {
114 return Children[0].Line;
118 return token.Line;
121 base.Line = value;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonTree.cs128 public override int Line property in class:Antlr.Runtime.Tree.CommonTree
132 if ( Token == null || Token.Line == 0 )
135 return Children[0].Line;
140 return Token.Line;
145 base.Line = value;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimToken.cs78 int IToken.Line
/external/clang/test/SemaCXX/
H A Dimplicit-member-functions.cpp96 template<typename K> struct Line;
99 Vector(const Line<K> &l);
106 template<typename K> struct Line { struct in namespace:Recursion
110 // Trigger declaration of Line copy ctor, which causes substitution into
113 // on Vector's constructors, which requires declaring all of Line's
117 Line<void> L1;
118 Line<void> L2(L1);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DQuicktimeTextTrackImpl.java43 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 { class in class:QuicktimeTextTrackImpl
136 public Line(long from, long to, String text) { method in class:QuicktimeTextTrackImpl.Line
H A DTextTrackImpl.java39 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 { class in class:TextTrackImpl
139 public Line(long from, long to, String text) { method in class:TextTrackImpl.Line

Completed in 1933 milliseconds

12345