Searched refs:getLine (Results 1 - 25 of 235) sorted by relevance

12345678910

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DCharStream.java48 int getLine(); method in interface:CharStream
H A DRecognitionException.java107 this.line = token.getLine();
115 this.line = ((CharStream)input).getLine();
130 if ( payload.getLine()<= 0 ) {
136 if ( priorPayload!=null && priorPayload.getLine()>0 ) {
138 this.line = priorPayload.getLine();
148 this.line = payload.getLine();
153 this.line = ((Tree)this.node).getLine();
H A DToken.java70 public int getLine(); method in interface:Token
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRCharStreamState.h42 @property (getter=getLine,setter=setLine:) NSInteger line;
52 - (NSInteger) getLine;
H A DANTLRCharStream.h44 - (NSInteger) getLine;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRCharStreamState.h42 @property (getter=getLine,setter=setLine:) NSInteger line;
52 - (NSInteger) getLine;
H A DANTLRCharStream.h44 - (NSInteger) getLine;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRCharStreamState.h42 @property (getter=getLine,setter=setLine:) NSInteger line;
52 - (NSInteger) getLine;
H A DANTLRCharStream.h44 - (NSInteger) getLine;
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DValidateLimitations.cpp167 error(node->getLine(),
197 error(node->getLine(), "Missing init declaration", "for");
207 error(init->getLine(), "Invalid init declaration", "for");
213 error(decl->getLine(), "Invalid init declaration", "for");
218 error(decl->getLine(), "Invalid init declaration", "for");
223 error(declInit->getLine(), "Invalid init declaration", "for");
229 error(symbol->getLine(),
235 error(declInit->getLine(),
250 error(node->getLine(), "Missing condition", "for");
259 error(node->getLine(), "Invali
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DRecognitionException.js37 this.line = this.token.getLine();
47 this.line = input.getLine();
129 if ( payload.getLine()<= 0 ) {
135 if ( priorPayload && priorPayload.getLine()>0 ) {
137 this.line = priorPayload.getLine();
147 this.line = payload.getLine();
152 this.line = this.node.getLine();
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DCommonTree.js61 getLine: function() {
62 if ( !this.token || this.token.getLine()===0 ) {
64 return this.getChild(0).getLine();
68 return this.token.getLine();
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DEOF.java25 return new EOF(getLine(), getPos());
H A DTAlt.java25 return new TAlt(getLine(), getPos());
H A DTAnd.java25 return new TAnd(getLine(), getPos());
H A DTArgWhitespace.java25 return new TArgWhitespace(getText(), getLine(), getPos());
H A DTAssignment.java25 return new TAssignment(getLine(), getPos());
H A DTAutoescape.java25 return new TAutoescape(getLine(), getPos());
H A DTBang.java25 return new TBang(getLine(), getPos());
H A DTBracketClose.java25 return new TBracketClose(getLine(), getPos());
H A DTBracketOpen.java25 return new TBracketOpen(getLine(), getPos());
H A DTCall.java25 return new TCall(getLine(), getPos());
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITEventListenerTestCommon.h42 inline unsigned int getLine() { function
98 DebugLoc DebugLocation = DebugLoc::get(getLine(), getCol(),
138 getLine()));
146 EXPECT_EQ(ReportedDebugFuncs.begin()->second.begin()->second, getLine());
158 DebugLocations.push_back(make_pair(string(getFilename()), getLine() + i));
174 EXPECT_EQ(i->second, getLine() + VerifyCount);
188 getLine()));
189 DebugLocations.push_back(std::make_pair(secondFilename, getLine()));
201 EXPECT_EQ(FunctionInfo.at(0).second, getLine());
202 EXPECT_EQ(FunctionInfo.at(1).second, getLine());
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DCommonTree.java92 public int getLine() { method in class:CommonTree
93 if ( token==null || token.getLine()==0 ) {
95 return getChild(0).getLine();
99 return token.getLine();
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRStringStreamState.h47 - (NSUInteger) getLine;

Completed in 238 milliseconds

12345678910