/netbsd-src/external/bsd/elftosb/dist/elftosb2/ |
H A D | elftosb_parser.y | 171 commandFile->setLocation(@1, @2); 227 $$->setLocation(@1, @3); 259 node->setLocation(node->getLocation(), @3); 269 $$->setLocation(@1, @3); 274 $$->setLocation(@1, @6); 301 $$->setLocation(@1, @3); 326 sectionNode->setLocation(@1, sectionNode->getLocation()); 358 dataSection->setLocation(@1, @3); 365 $$->setLocation(@1, @3); 427 stmt->setLocation(@1, @4); [all …]
|
H A D | elftosb_parser.tab.cpp | 1542 commandFile->setLocation((yylsp[-1]), (yylsp[0])); 1612 (yyval.m_ast)->setLocation((yylsp[-2]), (yylsp[0])); 1645 node->setLocation(node->getLocation(), (yylsp[0])); 1658 (yyval.m_ast)->setLocation((yylsp[-2]), (yylsp[0])); 1665 (yyval.m_ast)->setLocation((yylsp[-5]), (yylsp[0])); 1695 (yyval.m_ast)->setLocation((yylsp[-2]), (yylsp[0])); 1722 sectionNode->setLocation((yylsp[-5]), sectionNode->getLocation()); 1755 dataSection->setLocation((yylsp[-2]), (yylsp[0])); 1764 (yyval.m_ast)->setLocation((yylsp[-2]), (yylsp[0])); 1855 stmt->setLocation((yylsp[-3]), (yylsp[0])); [all …]
|
H A D | ElftosbAST.h | 69 virtual void setLocation(token_loc_t & loc) { m_location = loc; } in setLocation() function 70 virtual void setLocation(token_loc_t & first, token_loc_t & last); 71 virtual void setLocation(ASTNode * loc) { setLocation(loc->getLocation()); } in setLocation() function 72 virtual void setLocation(ASTNode * first, ASTNode * last);
|
H A D | ElftosbAST.cpp | 34 void ASTNode::setLocation(token_loc_t & first, token_loc_t & last) in setLocation() function in ASTNode 40 void ASTNode::setLocation(ASTNode * first, ASTNode * last) in setLocation() function in ASTNode 124 setLocation(current); in updateLocation()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | Comment.h | 181 void setLocation(SourceLocation L) { in setLocation() function 385 setLocation(TagNameBegin); in HTMLTagComment() 565 setLocation(Content.front()->getBeginLoc()); in ParagraphComment() 620 setLocation(getCommandNameBeginLoc()); in BlockCommandComment() 632 setLocation(getCommandNameBeginLoc()); in BlockCommandComment() 1104 setLocation(Blocks.front()->getBeginLoc()); in FullComment()
|
H A D | CommentLexer.h | 81 void setLocation(SourceLocation SL) { Loc = SL; } in setLocation() function
|
H A D | ExprObjC.h | 108 void setLocation(SourceLocation L) { Loc = L; } in setLocation() function 590 void setLocation(SourceLocation L) { Loc = L; } in setLocation() function 826 void setLocation(SourceLocation L) { IdLoc = L; } in setLocation() function
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/ |
H A D | ParsePragma.cpp | 122 Toks[0].setLocation(Tok.getLocation()); in HandlePragma() 1050 Toks[0].setLocation(Tok.getLocation()); in HandlePragmaMSInitSeg() 1779 Toks[0].setLocation(VisLoc); in HandlePragma() 1897 Toks[0].setLocation(PackLoc); in HandlePragma() 1940 Toks[0].setLocation(MSStructTok.getLocation()); in HandlePragma() 2073 Toks[0].setLocation(FirstTok.getLocation()); in ParseAlignPragma() 2167 pragmaUnusedTok.setLocation(UnusedLoc); in HandlePragma() 2216 pragmaUnusedTok.setLocation(WeakLoc); in HandlePragma() 2228 pragmaUnusedTok.setLocation(WeakLoc); in HandlePragma() 2273 pragmaRedefTok.setLocation(RedefLoc); in HandlePragma() [all …]
|
H A D | ParseTemplate.cpp | 464 Tok.setLocation(Tok.getLocation().getLocWithOffset(1)); in ParseTemplateParameters() 1159 Greater.setLocation(RAngleLoc); in ParseGreaterThanInTemplateList() 1177 Tok.setLocation(AfterGreaterLoc); in ParseGreaterThanInTemplateList() 1336 Tok.setLocation(SS.getBeginLoc()); in AnnotateTemplateIdToken() 1338 Tok.setLocation(TemplateKWLoc); in AnnotateTemplateIdToken() 1340 Tok.setLocation(TemplateNameLoc); in AnnotateTemplateIdToken() 1362 Tok.setLocation(TemplateKWLoc); in AnnotateTemplateIdToken() 1364 Tok.setLocation(TemplateNameLoc); in AnnotateTemplateIdToken() 1413 Tok.setLocation(SS.getBeginLoc()); in AnnotateTemplateIdTokenAsType()
|
H A D | ParseCXXInlineMethods.cpp | 216 Eof.setLocation(Tok.getLocation()); in ParseCXXNonStaticMemberInitializer() 355 DefArgEnd.setLocation(LastDefaultArgToken.getEndLoc()); in ParseLexedMethodDeclaration() 435 ExceptionSpecEnd.setLocation(LastExceptionSpecToken.getEndLoc()); in ParseLexedMethodDeclaration() 527 BodyEnd.setLocation(LastBodyToken.getEndLoc()); in ParseLexedMethodDef() 696 AttrEnd.setLocation(Tok.getLocation()); in ParseLexedAttribute()
|
H A D | Parser.cpp | 1729 Tok.setLocation(BeginLoc); in TryAnnotateName() 1739 Tok.setLocation(SS.getBeginLoc()); in TryAnnotateName() 1751 Tok.setLocation(NameLoc); in TryAnnotateName() 1764 Tok.setLocation(NameLoc); in TryAnnotateName() 1941 Tok.setLocation(TypenameLoc); in TryAnnotateTypeOrScopeToken() 1999 Tok.setLocation(BeginLoc); in TryAnnotateTypeOrScopeTokenAfterScopeSpec()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/ |
H A D | Token.h | 134 void setLocation(SourceLocation L) { Loc = L.getRawEncoding(); } in setLocation() function 164 setLocation(R.getBegin()); in setAnnotationRange()
|
H A D | Lexer.h | 590 Result.setLocation(getSourceLocation(BufferPtr, TokLen)); in FormTokenWithChars()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/ |
H A D | TokenLexer.cpp | 686 Tok.setLocation(instLoc); in Lex() 814 Result.setLocation(ResultTokLoc); in pasteTokens() 911 LHSTok.setLocation(SM.createExpansionLoc(LHSTok.getLocation(), StartLoc, EndLoc, in pasteTokens() 1045 Tok.setLocation(Expansion.getLocWithOffset(RelOffs)); in updateConsecutiveMacroArgTokens() 1066 Tok.setLocation(SM.createMacroArgExpansionLoc(Tok.getLocation(), in updateLocForMacroArgTokens()
|
H A D | PPMacroExpansion.cpp | 603 Identifier.setLocation(Loc); in HandleMacroExpandedIdentifier() 724 TempToken.setLocation(ArgStartIterator->getLocation()); in GenerateNewArgTokens() 737 TempToken.setLocation(Loc); in GenerateNewArgTokens() 903 EOFTok.setLocation(Tok.getLocation()); in ReadMacroCallArgumentList() 964 EOFTok.setLocation(Tok.getLocation()); in ReadMacroCallArgumentList() 1013 Tok.setLocation(EndLoc); in ReadMacroCallArgumentList() 1557 Tok.setLocation(SourceMgr.createExpansionLoc(DATELoc, Tok.getLocation(), in ExpandBuiltinMacro() 1567 Tok.setLocation(SourceMgr.createExpansionLoc(TIMELoc, Tok.getLocation(), in ExpandBuiltinMacro()
|
H A D | Preprocessor.cpp | 492 Tok.setLocation(Loc); in CreateString() 1183 ImportTok.setLocation(ModuleImportLoc); in LexAfterModuleImport() 1198 Suffix.back().setLocation(SemiLoc); in LexAfterModuleImport()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
H A D | StatepointLowering.h | 57 void setLocation(SDValue Val, SDValue Location) { in setLocation() function
|
H A D | StatepointLowering.cpp | 306 Builder.StatepointLowering.setLocation(Incoming, Loc); in reservePreviousStackSlotForValue() 404 Builder.StatepointLowering.setLocation(Incoming, Loc); in spillIncomingStatepointValue()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Rewrite/ |
H A D | TokenRewriter.cpp | 91 Tok.setLocation(ScratchBuf->getToken(Val, Len, Spelling)); in AddTokenBefore()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
H A D | ASTReaderStmt.cpp | 589 E->setLocation(readSourceLocation()); in VisitPredefinedExpr() 620 E->setLocation(readSourceLocation()); in VisitDeclRefExpr() 626 E->setLocation(readSourceLocation()); in VisitIntegerLiteral() 632 E->setLocation(readSourceLocation()); in VisitFixedPointLiteral() 643 E->setLocation(readSourceLocation()); in VisitFloatingLiteral() 687 E->setLocation(readSourceLocation()); in VisitCharacterLiteral() 1474 E->setLocation(readSourceLocation()); in VisitObjCIvarRefExpr() 1492 E->setLocation(readSourceLocation()); in VisitObjCPropertyRefExpr() 1620 E->setLocation(readSourceLocation()); in VisitObjCBoolLiteralExpr() 1800 E->setLocation(readSourceLocation()); in VisitCXXBoolLiteralExpr() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Serialization/ |
H A D | ASTBitCodes.h | 253 setLocation(Loc); in DeclOffset() 257 void setLocation(SourceLocation L) { Loc = L.getRawEncoding(); } in setLocation() function
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfExpression.h | 157 void setLocation(const MachineLocation &Loc, const DIExpression *DIExpr);
|
H A D | DwarfExpression.cpp | 380 void DwarfExpression::setLocation(const MachineLocation &Loc, in setLocation() function in DwarfExpression
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
H A D | CommandLine.h | 456 template <class Opt> void apply(Opt &O) const { O.setLocation(O, Loc); } in apply() 1338 bool setLocation(Option &O, DataType &L) { 1535 bool setLocation(Option &O, StorageClass &L) { 1739 bool setLocation(Option &O, unsigned &L) {
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | CommentLexer.cpp | 282 Result.setLocation(getSourceLocation(BufferPtr)); in formTokenWithChars()
|