Home
last modified time | relevance | path

Searched refs:getLine (Results 1 – 25 of 234) sorted by relevance

12345678910

/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
DValidateLimitations.cpp167 error(node->getLine(), in validateLoopType()
197 error(node->getLine(), "Missing init declaration", "for"); in validateForLoopInit()
207 error(init->getLine(), "Invalid init declaration", "for"); in validateForLoopInit()
213 error(decl->getLine(), "Invalid init declaration", "for"); in validateForLoopInit()
218 error(decl->getLine(), "Invalid init declaration", "for"); in validateForLoopInit()
223 error(declInit->getLine(), "Invalid init declaration", "for"); in validateForLoopInit()
229 error(symbol->getLine(), in validateForLoopInit()
235 error(declInit->getLine(), in validateForLoopInit()
250 error(node->getLine(), "Missing condition", "for"); in validateForLoopCond()
259 error(node->getLine(), "Invalid condition", "for"); in validateForLoopCond()
[all …]
DIntermediate.cpp203 line = right->getLine(); in addBinaryMath()
240 line = left->getLine(); in addAssign()
266 line = index->getLine(); in addIndex()
351 line = child->getLine(); in addUnaryMath()
394 line = node->getLine(); in setAggregateOperator()
493 … infoSink.info.message(EPrefixInternalError, "Bad promotion node", node->getLine()); in addConversion()
502 … infoSink.info.message(EPrefixInternalError, "Bad promotion node", node->getLine()); in addConversion()
511 … infoSink.info.message(EPrefixInternalError, "Bad promotion node", node->getLine()); in addConversion()
516 infoSink.info.message(EPrefixInternalError, "Bad promotion type", node->getLine()); in addConversion()
522 newNode->setLine(node->getLine()); in addConversion()
[all …]
DparseConst.cpp64 …k.info.message(EPrefixInternalError, "Symbol Node found in constant constructor", node->getLine()); in visitSymbol()
77 infoSink.info.message(EPrefixError, buf.c_str(), node->getLine()); in visitBinary()
82 …k.info.message(EPrefixInternalError, "Binary Node found in constant constructor", node->getLine()); in visitBinary()
92 infoSink.info.message(EPrefixError, buf.c_str(), node->getLine()); in visitUnary()
103 infoSink.info.message(EPrefixError, buf.c_str(), node->getLine()); in visitAggregate()
147 …nfo.message(EPrefixInternalError, "Selection Node found in constant constructor", node->getLine()); in visitSelection()
209 …ink.info.message(EPrefixInternalError, "Loop Node found in constant constructor", node->getLine()); in visitLoop()
216 …k.info.message(EPrefixInternalError, "Branch Node found in constant constructor", node->getLine()); in visitBranch()
DParseHelper.cpp398 error(node->getLine(), "constant expression required", "", ""); in constErrorCheck()
414 error(node->getLine(), "integer expression required", token, ""); in integerErrorCheck()
1113 newNode = constructStruct(node, &elementType, 1, node->getLine(), false); in addConstructor()
1115 newNode = constructStruct(node, (*memberTypes).type, 1, node->getLine(), false); in addConstructor()
1117 newNode = constructBuiltIn(type, op, node, node->getLine(), false); in addConstructor()
1144 newNode = constructStruct(*p, &elementType, paramCount+1, node->getLine(), true); in addConstructor()
1146 …newNode = constructStruct(*p, (memberTypes[paramCount]).type, paramCount+1, node->getLine(), true); in addConstructor()
1148 newNode = constructBuiltIn(type, op, *p, node->getLine(), true); in addConstructor()
1171 …returnVal = intermediate.parseConstTree(aggrNode->getLine(), aggrNode, unionArray, aggrNode->getOp… in foldConstConstructor()
1174 …returnVal = intermediate.parseConstTree(aggrNode->getLine(), aggrNode, unionArray, aggrNode->getOp… in foldConstConstructor()
[all …]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DRecognitionException.java107 this.line = token.getLine(); in RecognitionException()
115 this.line = ((CharStream)input).getLine(); in RecognitionException()
130 if ( payload.getLine()<= 0 ) { in extractInformationFromTreeNodeStream()
136 if ( priorPayload!=null && priorPayload.getLine()>0 ) { in extractInformationFromTreeNodeStream()
138 this.line = priorPayload.getLine(); in extractInformationFromTreeNodeStream()
148 this.line = payload.getLine(); in extractInformationFromTreeNodeStream()
153 this.line = ((Tree)this.node).getLine(); in extractInformationFromTreeNodeStream()
DLexer.java78 state.tokenStartLine = input.getLine(); in nextToken()
84 eof.setLine(getLine()); in nextToken()
223 public int getLine() { in getLine() method in Lexer
224 return input.getLine(); in getLine()
336 String inputSymbol = ((char)input.LT(1))+" line="+getLine()+":"+getCharPositionInLine(); in traceIn()
341 String inputSymbol = ((char)input.LT(1))+" line="+getLine()+":"+getCharPositionInLine(); in traceOut()
DClassicToken.java54 line = oldToken.getLine(); in ClassicToken()
86 public int getLine() { in getLine() method in ClassicToken
DCommonToken.java75 line = oldToken.getLine(); in CommonToken()
119 public int getLine() { in getLine() method in CommonToken
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
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();
DLexer.js43 this.state.tokenStartLine = this.input.getLine();
175 getLine: function() {
176 return this.input.getLine();
276 …var inputSymbol = String.fromCharCode(this.input.LT(1))+" line="+this.getLine()+":"+this.getCharPo…
281 …var inputSymbol = String.fromCharCode(this.input.LT(1))+" line="+this.getLine()+":"+this.getCharPo…
/external/llvm/unittests/ExecutionEngine/JIT/
DJITEventListenerTestCommon.h42 inline unsigned int getLine() { in getLine() function
98 DebugLoc DebugLocation = DebugLoc::get(getLine(), getCol(), in buildFunction()
138 getLine())); in TestSingleLine()
146 EXPECT_EQ(ReportedDebugFuncs.begin()->second.begin()->second, getLine()); in TestSingleLine()
158 DebugLocations.push_back(make_pair(string(getFilename()), getLine() + i)); in TestMultipleLines()
174 EXPECT_EQ(i->second, getLine() + VerifyCount); in TestMultipleLines()
188 getLine())); in TestMultipleFiles()
189 DebugLocations.push_back(std::make_pair(secondFilename, getLine())); in TestMultipleFiles()
201 EXPECT_EQ(FunctionInfo.at(0).second, getLine()); in TestMultipleFiles()
202 EXPECT_EQ(FunctionInfo.at(1).second, getLine()); in TestMultipleFiles()
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/material/plugins/
DJ3MLoader.java287 readParam(statement.getLine()); in readMaterialParams()
293 readValueParam(statement.getLine()); in readExtendingMaterialParams()
299 technique.addWorldParam(statement.getLine()); in readWorldParams()
338 readRenderStateStatement(statement.getLine()); in readAdditionalRenderState()
346 readRenderStateStatement(statement.getLine()); in readRenderState()
367 readDefine(statement.getLine()); in readDefines()
373 String[] split = statement.getLine().split("[ \\{]"); in readTechniqueStatement()
376 readShaderStatement(statement.getLine()); in readTechniqueStatement()
378 readLightMode(statement.getLine()); in readTechniqueStatement()
380 readShadowMode(statement.getLine()); in readTechniqueStatement()
[all …]
/external/doclava/src/com/google/doclava/apicheck/
DApiFile.java78 throw new ApiParseException("expected package got " + token, tokenizer.getLine()); in parseApi()
100 throw new ApiParseException("expected '{' got " + token, tokenizer.getLine()); in parsePackage()
160 throw new ApiParseException("missing class or interface. got: " + token, tokenizer.getLine()); in parseClass()
196 throw new ApiParseException("expected {", tokenizer.getLine()); in parseClass()
215 … throw new ApiParseException("expected ctor, enum_constant, field or method", tokenizer.getLine()); in parseClass()
248 throw new ApiParseException("expected (", tokenizer.getLine()); in parseConstructor()
268 throw new ApiParseException("expected ; found " + token, tokenizer.getLine()); in parseConstructor()
332 throw new ApiParseException("expected (", tokenizer.getLine()); in parseMethod()
341 throw new ApiParseException("expected ; found " + token, tokenizer.getLine()); in parseMethod()
403 throw new ApiParseException("expected ; found " + token, tokenizer.getLine()); in parseField()
[all …]
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
DMaterialLoader.java158 String[] split = statement.getLine().split(" ", 2); in readTextureUnitStatement()
189 String[] split = statement.getLine().split(" ", 2); in readTextureUnit()
211 String[] split = statement.getLine().split(" ", 2); in readPassStatement()
274 String[] split = statement.getLine().split(" ", 2); in readPass()
290 String[] split = statement.getLine().split(" ", 2); in readTechnique()
304 if (statement.getLine().startsWith("technique")){ in readMaterialStatement()
306 }else if (statement.getLine().startsWith("receive_shadows")){ in readMaterialStatement()
307 String isOn = statement.getLine().split("\\s")[1]; in readMaterialStatement()
433 if (statement.getLine().startsWith("import")){ in load()
446 }else if (statement.getLine().startsWith("material")){ in load()
[all …]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
DCommonTree.js61 getLine: function() { method
62 if ( !this.token || this.token.getLine()===0 ) {
64 return this.getChild(0).getLine();
68 return this.token.getLine();
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/matext/
DMaterialExtensionLoader.java69 if (statement.getLine().startsWith("set_texture_alias")){ in readExtendingMaterialStatement()
70 String[] split = statement.getLine().split(" ", 3); in readExtendingMaterialStatement()
94 String[] split = statement.getLine().split(" ", 2); in readExtendingMaterial()
122 if (statement.getLine().startsWith("import")){ in load()
125 }else if (statement.getLine().startsWith("material")){ in load()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DCommonTree.java92 public int getLine() { in getLine() method in CommonTree
93 if ( token==null || token.getLine()==0 ) { in getLine()
95 return getChild(0).getLine(); in getLine()
99 return token.getLine(); in getLine()
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3commontree.c46 static ANTLR3_UINT32 getLine (pANTLR3_BASE_TREE tree);
306 tree->baseTree.getLine = getLine; in antlr3SetCTAPI()
445 static ANTLR3_UINT32 getLine (pANTLR3_BASE_TREE tree) in getLine() function
454 if (token == NULL || token->getLine(token) == 0) in getLine()
461 return child->getLine(child); in getLine()
465 return token->getLine(token); in getLine()
Dantlr3commontoken.c45 static ANTLR3_UINT32 getLine (pANTLR3_COMMON_TOKEN token);
333 token->getLine = getLine; in antlr3SetTokenAPI()
474 static ANTLR3_UINT32 getLine (pANTLR3_COMMON_TOKEN token) in getLine() function
579 outtext->addi (outtext, (ANTLR3_INT32)token->getLine(token)); in toString()
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
DANTLRCharStreamState.h42 @property (getter=getLine,setter=setLine:) NSInteger line;
52 - (NSInteger) getLine;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
DANTLRCharStreamState.h42 @property (getter=getLine,setter=setLine:) NSInteger line;
52 - (NSInteger) getLine;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
DANTLRCharStreamState.h42 @property (getter=getLine,setter=setLine:) NSInteger line;
52 - (NSInteger) getLine;
/external/nist-sip/java/gov/nist/core/
DStringTokenizer.java112 public String getLine() { in getLine() method in StringTokenizer
125 String retval = this.getLine(); in peekLine()
166 String line = getLine(); in getLines()
/external/smali/smali/src/main/java/org/jf/smali/
DSemanticException.java56 this.line = token.getLine(); in SemanticException()
66 this.line = token.getLine(); in SemanticException()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DGrammarUnreachableAltsMessage.java57 line = decisionASTNode.getLine(); in toString()
75 line = ruleStart.associatedASTNode.getLine(); in toString()

12345678910