Home
last modified time | relevance | path

Searched refs:setLocation (Results 1 – 25 of 50) sorted by relevance

12

/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseTemplate.cpp343 Tok.setLocation(Tok.getLocation().getLocWithOffset(1)); in ParseTemplateParameters()
880 Greater.setLocation(RAngleLoc); in ParseGreaterThanInTemplateList()
898 Tok.setLocation(AfterGreaterLoc); in ParseGreaterThanInTemplateList()
1049 Tok.setLocation(SS.getBeginLoc()); in AnnotateTemplateIdToken()
1051 Tok.setLocation(TemplateKWLoc); in AnnotateTemplateIdToken()
1053 Tok.setLocation(TemplateNameLoc); in AnnotateTemplateIdToken()
1075 Tok.setLocation(TemplateKWLoc); in AnnotateTemplateIdToken()
1077 Tok.setLocation(TemplateNameLoc); in AnnotateTemplateIdToken()
1126 Tok.setLocation(TemplateId->SS.getBeginLoc()); in AnnotateTemplateIdTokenAsType()
H A DParsePragma.cpp117 Toks[0].setLocation(Tok.getLocation()); in HandlePragma()
1624 Toks[0].setLocation(VisLoc); in HandlePragma()
1738 Toks[0].setLocation(PackLoc); in HandlePragma()
2034 pragmaUnusedTok.setLocation(WeakLoc); in HandlePragma()
2045 pragmaUnusedTok.setLocation(WeakLoc); in HandlePragma()
2089 pragmaRedefTok.setLocation(RedefLoc); in HandlePragma()
2172 Toks[0].setLocation(NameLoc); in HandlePragma()
2228 Tok.setLocation(EodLoc); in HandlePragma()
2421 AnnotTok.setLocation(VtorDispLoc); in HandlePragma()
2797 EOFTok.setLocation(Tok.getLocation()); in ParseLoopHintValue()
[all …]
H A DParseCXXInlineMethods.cpp218 Eof.setLocation(Tok.getLocation()); in ParseCXXNonStaticMemberInitializer()
321 DefArgEnd.setLocation(LastDefaultArgToken.getEndLoc()); in ParseLexedMethodDeclaration()
394 ExceptionSpecEnd.setLocation(LastExceptionSpecToken.getEndLoc()); in ParseLexedMethodDeclaration()
501 BodyEnd.setLocation(LastBodyToken.getEndLoc()); in ParseLexedMethodDef()
H A DParser.cpp1576 Tok.setLocation(BeginLoc); in TryAnnotateName()
1586 Tok.setLocation(SS.getBeginLoc()); in TryAnnotateName()
1749 Tok.setLocation(TypenameLoc); in TryAnnotateTypeOrScopeToken()
1805 Tok.setLocation(BeginLoc); in TryAnnotateTypeOrScopeTokenAfterScopeSpec()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DComment.h181 void setLocation(SourceLocation L) { in setLocation() function
386 setLocation(TagNameBegin); in HTMLTagComment()
566 setLocation(Content.front()->getBeginLoc()); in ParagraphComment()
621 setLocation(getCommandNameBeginLoc()); in BlockCommandComment()
633 setLocation(getCommandNameBeginLoc()); in BlockCommandComment()
1105 setLocation(Blocks.front()->getBeginLoc()); in FullComment()
H A DCommentLexer.h82 void setLocation(SourceLocation SL) { Loc = SL; } in setLocation() function
H A DExprObjC.h101 void setLocation(SourceLocation L) { Loc = L; } in setLocation() function
557 void setLocation(SourceLocation L) { Loc = L; }
788 void setLocation(SourceLocation L) { IdLoc = L; }
H A DExpr.h1123 void setLocation(SourceLocation L) { DeclRefExprBits.Loc = L; } in setLocation() function
1336 void setLocation(SourceLocation Location) { Loc = Location; } in setLocation() function
1375 void setLocation(SourceLocation Location) { Loc = Location; } in setLocation() function
1428 void setLocation(SourceLocation Location) { Loc = Location; } in setLocation() function
1494 void setLocation(SourceLocation L) { Loc = L; } in setLocation() function
1811 void setLocation(SourceLocation L) { PredefinedExprBits.Loc = L; } in setLocation() function
H A DExprCXX.h581 void setLocation(SourceLocation L) { CXXBoolLiteralExprBits.Loc = L; } in setLocation() function
611 void setLocation(SourceLocation L) { CXXNullPtrLiteralExprBits.Loc = L; } in setLocation() function
992 void setLocation(SourceLocation L) { CXXThisExprBits.Loc = L; } in setLocation() function
1337 void setLocation(SourceLocation Loc) { CXXConstructExprBits.Loc = Loc; } in setLocation() function
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Lex/
H A DToken.h132 void setLocation(SourceLocation L) { Loc = L.getRawEncoding(); } in setLocation() function
162 setLocation(R.getBegin()); in setAnnotationRange()
H A DLexer.h572 Result.setLocation(getSourceLocation(BufferPtr, TokLen)); in FormTokenWithChars()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/
H A DTokenLexer.cpp647 Tok.setLocation(instLoc); in Lex()
775 Result.setLocation(ResultTokLoc); in pasteTokens()
872 LHSTok.setLocation(SM.createExpansionLoc(LHSTok.getLocation(), StartLoc, EndLoc, in pasteTokens()
1006 Tok.setLocation(Expansion.getLocWithOffset(RelOffs)); in updateConsecutiveMacroArgTokens()
1027 Tok.setLocation(SM.createMacroArgExpansionLoc(Tok.getLocation(), in updateLocForMacroArgTokens()
H A DPPMacroExpansion.cpp591 Identifier.setLocation(Loc); in HandleMacroExpandedIdentifier()
712 TempToken.setLocation(ArgStartIterator->getLocation()); in GenerateNewArgTokens()
725 TempToken.setLocation(Loc); in GenerateNewArgTokens()
883 EOFTok.setLocation(Tok.getLocation()); in ReadMacroCallArgumentList()
944 EOFTok.setLocation(Tok.getLocation()); in ReadMacroCallArgumentList()
993 Tok.setLocation(EndLoc); in ReadMacroCallArgumentList()
1535 Tok.setLocation(SourceMgr.createExpansionLoc(DATELoc, Tok.getLocation(), in ExpandBuiltinMacro()
1545 Tok.setLocation(SourceMgr.createExpansionLoc(TIMELoc, Tok.getLocation(), in ExpandBuiltinMacro()
H A DPPLexerChange.cpp501 Result.setLocation(Result.getLocation().getLocWithOffset(-1)); in HandleEndOfFile()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DStatepointLowering.h60 void setLocation(SDValue Val, SDValue Location) { in setLocation() function
H A DStatepointLowering.cpp269 Builder.StatepointLowering.setLocation(Incoming, Loc); in reservePreviousStackSlotForValue()
389 Builder.StatepointLowering.setLocation(Incoming, Loc); in spillIncomingStatepointValue()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Rewrite/
H A DTokenRewriter.cpp92 Tok.setLocation(ScratchBuf->getToken(Val, Len, Spelling)); in AddTokenBefore()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp537 E->setLocation(ReadSourceLocation()); in VisitPredefinedExpr()
567 E->setLocation(ReadSourceLocation()); in VisitDeclRefExpr()
573 E->setLocation(ReadSourceLocation()); in VisitIntegerLiteral()
579 E->setLocation(ReadSourceLocation()); in VisitFixedPointLiteral()
588 E->setLocation(ReadSourceLocation()); in VisitFloatingLiteral()
632 E->setLocation(ReadSourceLocation()); in VisitCharacterLiteral()
1144 E->setLocation(ReadSourceLocation()); in VisitObjCIvarRefExpr()
1162 E->setLocation(ReadSourceLocation()); in VisitObjCPropertyRefExpr()
1290 E->setLocation(ReadSourceLocation()); in VisitObjCBoolLiteralExpr()
1450 E->setLocation(ReadSourceLocation()); in VisitCXXBoolLiteralExpr()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DCommandLine.h436 template <class Opt> void apply(Opt &O) const { O.setLocation(O, Loc); } in apply()
1216 bool setLocation(Option &O, DataType &L) {
1401 bool setLocation(Option &O, StorageClass &L) {
1589 bool setLocation(Option &O, unsigned &L) {
/freebsd-12.1/contrib/llvm/tools/lld/COFF/
H A DDLL.cpp518 Syms[I]->setLocation(Addresses[Base + I]); in create()
581 Syms[I]->setLocation(Addresses[Base + I]); in create()
H A DSymbols.h307 void setLocation(Chunk *AddressTable) { File->Location = AddressTable; } in setLocation() function
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Serialization/
H A DASTBitCodes.h232 void setLocation(SourceLocation L) { in setLocation() function
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DCommentLexer.cpp283 Result.setLocation(getSourceLocation(BufferPtr)); in formTokenWithChars()
H A DCommentParser.cpp136 Result.setLocation(Loc); in formTokenWithChars()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDebugInfo.h372 void setLocation(SourceLocation Loc);

12