Lines Matching refs:FID
380 llvm::ArrayRef<syntax::Token> TokenBuffer::spelledTokens(FileID FID) const { in spelledTokens()
381 auto It = Files.find(FID); in spelledTokens()
419 FileID FID = SourceMgr->getFileID(FirstSpelled->location()); in spelledForExpanded() local
421 if (FID != SourceMgr->getFileID(LastSpelled->location())) in spelledForExpanded()
424 const MarkedFile &File = Files.find(FID)->second; in spelledForExpanded()
439 First->location(), Last->location(), Prev, Next, FID, *SourceMgr); in spelledForExpanded()
560 TokenBuffer::macroExpansions(FileID FID) const { in macroExpansions()
561 auto FileIt = Files.find(FID); in macroExpansions()
607 std::vector<syntax::Token> syntax::tokenize(FileID FID, const SourceManager &SM, in tokenize() argument
609 return tokenize(syntax::FileRange(FID, 0, SM.getFileIDSize(FID)), SM, LO); in tokenize()
871 auto FID = SM.getFileID(SM.getExpansionLoc(Tok.location())); in buildSpelledTokens() local
872 auto It = Result.Files.try_emplace(FID); in buildSpelledTokens()
882 File.SpelledTokens = tokenize(FID, SM, LangOpts); in buildSpelledTokens()