/external/swiftshader/src/OpenGL/compiler/ |
D | ValidateLimitations.cpp | 204 error(node->getLine(), in validateLoopType() 234 error(node->getLine(), "Missing init declaration", "for"); in validateForLoopInit() 244 error(init->getLine(), "Invalid init declaration", "for"); in validateForLoopInit() 250 error(decl->getLine(), "Invalid init declaration", "for"); in validateForLoopInit() 255 error(decl->getLine(), "Invalid init declaration", "for"); in validateForLoopInit() 260 error(declInit->getLine(), "Invalid init declaration", "for"); in validateForLoopInit() 266 error(symbol->getLine(), in validateForLoopInit() 272 error(declInit->getLine(), in validateForLoopInit() 287 error(node->getLine(), "Missing condition", "for"); in validateForLoopCond() 296 error(node->getLine(), "Invalid condition", "for"); in validateForLoopCond() [all …]
|
D | Intermediate.cpp | 629 …air.node1 ? setAggregateOperator(nodePair.node1, EOpSequence, nodePair.node1->getLine()) : nullptr; in addSelection() 631 …air.node2 ? setAggregateOperator(nodePair.node2, EOpSequence, nodePair.node2->getLine()) : nullptr; in addSelection() 1050 infoSink.info.message(EPrefixInternalError, "Missing elses", getLine()); in promote() 1087 infoSink.info.message(EPrefixInternalError, "Missing elses", getLine()); in promote() 1459 …fo.message(EPrefixInternalError, "Constant Folding cannot be done for matrix multiply", getLine()); in fold() 1468 …fo.message(EPrefixInternalError, "Constant Folding cannot be done for matrix multiply", getLine()); in fold() 1556 … infoSink.info.message(EPrefixWarning, "Divide by zero error during constant folding", getLine()); in fold() 1566 … infoSink.info.message(EPrefixWarning, "Divide by zero error during constant folding", getLine()); in fold() 1579 … infoSink.info.message(EPrefixWarning, "Divide by zero error during constant folding", getLine()); in fold() 1591 …nfoSink.info.message(EPrefixInternalError, "Constant folding cannot be done for \"/\"", getLine()); in fold() [all …]
|
D | parseConst.cpp | 70 …k.info.message(EPrefixInternalError, "Symbol Node found in constant constructor", node->getLine()); in visitSymbol() 82 infoSink.info.message(EPrefixError, buf.c_str(), node->getLine()); in visitBinary() 87 …k.info.message(EPrefixInternalError, "Binary Node found in constant constructor", node->getLine()); in visitBinary() 97 infoSink.info.message(EPrefixError, buf.c_str(), node->getLine()); in visitUnary() 108 infoSink.info.message(EPrefixError, buf.c_str(), node->getLine()); in visitAggregate() 152 …nfo.message(EPrefixInternalError, "Selection Node found in constant constructor", node->getLine()); in visitSelection() 222 …ink.info.message(EPrefixInternalError, "Loop Node found in constant constructor", node->getLine()); in visitLoop() 229 …k.info.message(EPrefixInternalError, "Branch Node found in constant constructor", node->getLine()); in visitBranch()
|
D | ValidateSwitch.cpp | 100 mContext->error(node->getLine(), "label statement nested inside control flow", nodeStr); in visitCase() 110 mContext->error(node->getLine(), "duplicate default label", nodeStr); in visitCase() 124 mContext->error(condition->getLine(), in visitCase() 134 mContext->error(condition->getLine(), "duplicate case label", nodeStr); in visitCase() 147 mContext->error(condition->getLine(), "duplicate case label", nodeStr); in visitCase()
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/ |
D | SourceNodeImplTest.java | 32 assertEquals(LineImpl.EMPTY, node.getLine(123)); in testInit() 39 assertEquals(LineImpl.EMPTY, node.getLine(5)); in testGetLine() 40 assertEquals(LineImpl.EMPTY, node.getLine(15)); in testGetLine() 41 assertEquals(LineImpl.EMPTY, node.getLine(25)); in testGetLine() 48 assertEquals(LineImpl.EMPTY, node.getLine(10)); in testEnsureCapacityUnknown1() 55 assertEquals(LineImpl.EMPTY, node.getLine(10)); in testEnsureCapacityUnknown2() 77 assertEquals(CounterImpl.getInstance(1, 1), node.getLine(10) in testIncrementLines() 79 assertEquals(CounterImpl.COUNTER_0_0, node.getLine(11) in testIncrementLines() 81 assertEquals(CounterImpl.getInstance(2, 2), node.getLine(12) in testIncrementLines() 175 .getLine(33).getInstructionCounter()); in testIncrementLine()
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/ |
D | RecognitionException.js | 37 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();
|
D | Lexer.js | 43 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/antlr/runtime/Java/src/main/java/org/antlr/runtime/ |
D | RecognitionException.java | 107 this.line = token.getLine(); in RecognitionException() 115 this.line = ((CharStream)input).getLine(); in RecognitionException() 141 if ( payload.getLine()<= 0 ) { in extractInformationFromTreeNodeStream() 147 if ( priorPayload!=null && priorPayload.getLine()>0 ) { in extractInformationFromTreeNodeStream() 149 this.line = priorPayload.getLine(); in extractInformationFromTreeNodeStream() 164 this.line = payload.getLine(); in extractInformationFromTreeNodeStream() 169 this.line = ((Tree)this.node).getLine(); in extractInformationFromTreeNodeStream()
|
D | Lexer.java | 79 state.tokenStartLine = input.getLine(); in nextToken() 116 eof.setLine(getLine()); in getEOFToken() 232 public int getLine() { in getLine() method in Lexer 233 return input.getLine(); in getLine() 347 String inputSymbol = ((char)input.LT(1))+" line="+getLine()+":"+getCharPositionInLine(); in traceIn() 352 String inputSymbol = ((char)input.LT(1))+" line="+getLine()+":"+getCharPositionInLine(); in traceOut()
|
/external/doclava/src/com/google/doclava/apicheck/ |
D | ApiFile.java | 81 throw new ApiParseException("expected package got " + token, tokenizer.getLine()); in parseApi() 103 throw new ApiParseException("expected '{' got " + token, tokenizer.getLine()); in parsePackage() 167 throw new ApiParseException("missing class or interface. got: " + token, tokenizer.getLine()); in parseClass() 206 throw new ApiParseException("expected {", tokenizer.getLine()); in parseClass() 225 … throw new ApiParseException("expected ctor, enum_constant, field or method", tokenizer.getLine()); in parseClass() 262 throw new ApiParseException("expected (", tokenizer.getLine()); in parseConstructor() 282 throw new ApiParseException("expected ; found " + token, tokenizer.getLine()); in parseConstructor() 364 throw new ApiParseException("expected (", tokenizer.getLine()); in parseMethod() 373 throw new ApiParseException("expected ; found " + token, tokenizer.getLine()); in parseMethod() 439 throw new ApiParseException("expected ; found " + token, tokenizer.getLine()); in parseField() [all …]
|
/external/llvm/lib/IR/ |
D | DebugLoc.cpp | 25 unsigned DebugLoc::getLine() const { in getLine() function in DebugLoc 27 return get()->getLine(); in getLine() 74 dbgs() << getLine(); in dump() 92 OS << ':' << getLine(); in print()
|
D | LLVMContextImpl.h | 255 : Line(L->getLine()), Column(L->getColumn()), Scope(L->getRawScope()), 259 return Line == RHS->getLine() && Column == RHS->getColumn() && 365 Line(N->getLine()), Scope(N->getRawScope()), 372 File == RHS->getRawFile() && Line == RHS->getLine() && 454 Line(N->getLine()), Scope(N->getRawScope()), 464 File == RHS->getRawFile() && Line == RHS->getLine() && 557 Line(N->getLine()), Type(N->getRawType()), 569 File == RHS->getRawFile() && Line == RHS->getLine() && 639 : Scope(N->getRawScope()), File(N->getRawFile()), Line(N->getLine()), 644 Line == RHS->getLine() && Column == RHS->getColumn(); [all …]
|
/external/llvm/lib/Transforms/Utils/ |
D | AddDiscriminators.cpp | 192 Location L = std::make_pair(DIL->getFilename(), DIL->getLine()); in addDiscriminators() 207 I.setDebugLoc(DILocation::get(Ctx, DIL->getLine(), DIL->getColumn(), in addDiscriminators() 209 DEBUG(dbgs() << DIL->getFilename() << ":" << DIL->getLine() << ":" in addDiscriminators() 232 std::make_pair(CurrentDIL->getFilename(), CurrentDIL->getLine()); in addDiscriminators() 238 Current->setDebugLoc(DILocation::get(Ctx, CurrentDIL->getLine(), in addDiscriminators()
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/ |
D | SourceTest.java | 54 assertEquals("Hello", s.getLine(1)); in testGetLine() 55 assertEquals("", s.getLine(2)); in testGetLine() 56 assertEquals("World!", s.getLine(3)); in testGetLine() 83 final String l = s.getLine(s.getLineNumber("testGetSourceFor")); in testGetSourceFor()
|
D | ValidationTestBase.java | 119 final ILine line = sourceCoverage.getLine(nr); in assertLine() 121 Integer.valueOf(nr), source.getLine(nr)); in assertLine() 130 final ILine line = sourceCoverage.getLine(nr); in assertLine() 132 Integer.valueOf(nr), source.getLine(nr)); in assertLine()
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/ |
D | CommonTree.js | 61 getLine: function() { method 62 if ( !this.token || this.token.getLine()===0 ) { 64 return this.getChild(0).getLine(); 68 return this.token.getLine();
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | CommonTree.java | 97 public int getLine() { in getLine() method in CommonTree 98 if ( token==null || token.getLine()==0 ) { in getLine() 100 return getChild(0).getLine(); in getLine() 104 return token.getLine(); in getLine()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | DebugLoc.cpp | 26 unsigned DebugLoc::getLine() const { in getLine() function in DebugLoc 28 return get()->getLine(); in getLine() 97 Ctx, MD->getLine(), MD->getColumn(), MD->getScope(), Last); in appendInlinedAt() 113 OS << ':' << getLine(); in print()
|
D | LLVMContextImpl.h | 288 : Line(L->getLine()), Column(L->getColumn()), Scope(L->getRawScope()), 292 return Line == RHS->getLine() && Column == RHS->getColumn() && 425 Line(N->getLine()), Scope(N->getRawScope()), 433 File == RHS->getRawFile() && Line == RHS->getLine() && 522 Line(N->getLine()), Scope(N->getRawScope()), 533 File == RHS->getRawFile() && Line == RHS->getLine() && 644 Line(N->getLine()), Type(N->getRawType()), 657 File == RHS->getRawFile() && Line == RHS->getLine() && 739 : Scope(N->getRawScope()), File(N->getRawFile()), Line(N->getLine()), 744 Line == RHS->getLine() && Column == RHS->getColumn(); [all …]
|
/external/antlr/runtime/C/src/ |
D | antlr3commontree.c | 46 static ANTLR3_UINT32 getLine (pANTLR3_BASE_TREE tree); 325 tree->baseTree.getLine = getLine; in antlr3SetCTAPI() 464 static ANTLR3_UINT32 getLine (pANTLR3_BASE_TREE tree) in getLine() function 473 if (token == NULL || token->getLine(token) == 0) in getLine() 480 return child->getLine(child); in getLine() 484 return token->getLine(token); in getLine()
|
/external/apache-commons-bcel/src/examples/Mini/ |
D | ASTIfExpr.java | 62 MiniC.addError(if_expr.getLine(), if_expr.getColumn(), in closeNode() 97 MiniC.addError(if_expr.getLine(), if_expr.getColumn(), in eval() 105 MiniC.addError(then_expr.getLine(), then_expr.getColumn(), in eval() 114 MiniC.addError(else_expr.getLine(), else_expr.getColumn(), in eval()
|
/external/llvm/lib/Analysis/ |
D | ModuleDebugInfoPrinter.cpp | 87 printFile(O, S->getFilename(), S->getDirectory(), S->getLine()); in print() 95 printFile(O, GV->getFilename(), GV->getDirectory(), GV->getLine()); in print() 105 printFile(O, T->getFilename(), T->getDirectory(), T->getLine()); in print()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | AddDiscriminators.cpp | 202 Location L = std::make_pair(DIL->getFilename(), DIL->getLine()); in addDiscriminators() 213 LLVM_DEBUG(dbgs() << DIL->getFilename() << ":" << DIL->getLine() << ":" in addDiscriminators() 239 std::make_pair(CurrentDIL->getFilename(), CurrentDIL->getLine()); in addDiscriminators()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | ModuleDebugInfoPrinter.cpp | 87 printFile(O, S->getFilename(), S->getDirectory(), S->getLine()); in print() 96 printFile(O, GV->getFilename(), GV->getDirectory(), GV->getLine()); in print() 106 printFile(O, T->getFilename(), T->getDirectory(), T->getLine()); in print()
|
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/ |
D | SourceHighlighterTest.java | 111 sourceHighlighter.highlight(parent, source.getLine(1), 1); in testHighlightNone() 121 sourceHighlighter.highlight(parent.pre(null), source.getLine(1), 1); in testHighlightBranchesFC() 133 sourceHighlighter.highlight(parent.pre(null), source.getLine(1), 1); in testHighlightBranchesPC() 145 sourceHighlighter.highlight(parent.pre(null), source.getLine(1), 1); in testHighlightBranchesNC()
|