Searched refs:FE (Results 26 - 50 of 82) sorted by relevance

1234

/freebsd-13-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransRetainReleaseDealloc.cpp379 if (FullExpr *FE = dyn_cast<FullExpr>(Rec))
380 Rec = FE->getSubExpr()->IgnoreParenImpCasts();
H A DObjCMT.cpp159 bool canModifyFile(const FileEntry *FE) { argument
160 if (!FE)
162 return canModifyFile(FE->getName());
2136 auto FE = FileMgr.getFile(Val); local
2137 if (FE)
2138 Entry.File = *FE;
2164 static std::string applyEditsToTemp(const FileEntry *FE, argument
2171 FileID FID = SM.createFileID(FE, SourceLocation(), SrcMgr::C_User);
2177 assert(Entry.File == FE);
2208 if (fs::createTemporaryFile(path::filename(FE
[all...]
H A DTransforms.cpp77 if (const FullExpr *FE = dyn_cast<FullExpr>(E))
78 E = FE->getSubExpr();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DDelaySlotFiller.cpp56 for (MachineFunction::iterator FI = F.begin(), FE = F.end();
57 FI != FE; ++FI)
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DFrontendAction.cpp608 PrimaryModule, [&](const FileEntry *FE) {
610 std::string(FE->getName()));
693 if (auto FE = CI.getFileManager().getFile(F, /*openFile*/true))
694 CI.getSourceManager().setFileIsTransient(*FE);
H A DInitHeaderSearch.cpp165 if (auto FE = FM.getFile(MappedPathStr)) {
166 if (const HeaderMap *HM = Headers.CreateHeaderMap(*FE)) {
H A DFrontendActions.cpp292 Optional<FileEntryRef> FE = HS.LookupFile( local
295 if (!FE) {
300 Headers.push_back({std::string(Name), &FE->getFileEntry()});
H A DASTUnit.cpp1476 FE = SourceMgr->getFileEntryForID(SourceMgr->getMainFileID()))
1477 return FE->getName();
2372 auto FE = FileMgr.getFile(SD.Filename); local
2373 if (!FE)
2378 FileID FID = SrcMgr.translateFile(*FE);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderInternals.h271 internal_key_type GetInternalKey(const FileEntry *FE);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerTracePC.cpp231 auto FE = NextFE;
232 assert(PcIsFuncEntry(FE) && "Not a function entry point");
236 CB(FE, NextFE, ObservedFuncs[FE->PC]);
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DX86RecognizableInstr.h89 MAP(FE, 126) \
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenAction.cpp603 auto FE = FileMgr.getFile(Filename); local
604 if (!FE)
605 FE = FileMgr.getFile(D.getAbsolutePath());
606 if (FE) {
609 DILoc = SourceMgr.translateFileLineCol(*FE, Line, Column ? Column : 1);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp190 else if (const auto *FE = M->getASTFile())
192 << FE->getName();
H A DSemaStmt.cpp45 StmtResult Sema::ActOnExprStmt(ExprResult FE, bool DiscardedValue) { argument
46 if (FE.isInvalid())
49 FE = ActOnFinishFullExpr(FE.get(), FE.get()->getExprLoc(), DiscardedValue);
50 if (FE.isInvalid())
58 return StmtResult(FE.getAs<Stmt>());
668 if (const auto *FE = dyn_cast<FullExpr>(E))
669 E = FE->getSubExpr();
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
H A DLiveVariables.cpp193 if (const FullExpr *FE = dyn_cast<FullExpr>(S)) {
194 S = FE->getSubExpr();
H A DPathDiagnostic.cpp711 } else if (Optional<FunctionExitPoint> FE = P.getAs<FunctionExitPoint>()) {
712 return PathDiagnosticLocation(FE->getStmt(), SMng,
713 FE->getLocationContext());
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DModule.cpp266 if (auto FE = FileMgr.getFile(*I))
267 TopHeaders.insert(*FE);
H A DSourceManager.cpp394 auto FE = getFileEntryRefForID(MainFileID); local
395 if (!FE)
397 return FE->getUID() == SourceFile.getUID();
766 const FileEntry *FE = &BypassFile->getFileEntry(); local
767 (void)getOrCreateContentCache(FE);
768 return FE;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessor.cpp557 if (const FileEntry *FE = SourceMgr.getFileEntryForID(MainFileID))
558 HeaderInfo.IncrementIncludeCount(FE);
603 bool Preprocessor::isPCHThroughHeader(const FileEntry *FE) { argument
606 return FE == SourceMgr.getFileEntryForID(PCHThroughHeaderFileID);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp717 for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE;) {
1032 for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE;) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp34 const FileEntry *FE = SM.getFileEntryForID(Decomposed.first); local
35 if (FE) {
36 OS << llvm::sys::path::filename(FE->getName());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp483 Function::arg_iterator FI = F.arg_begin(), FE = F.arg_end();
484 for (; I != E && FI != FE; ++I, ++FI)
486 if (I == E && FI == FE)
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DItaniumMangle.cpp4533 auto *FE = cast<CXXFoldExpr>(E); local
4534 if (FE->isLeftFold())
4535 Out << (FE->getInit() ? "fL" : "fl");
4537 Out << (FE->getInit() ? "fR" : "fr");
4539 if (FE->getOperator() == BO_PtrMemD)
4543 BinaryOperator::getOverloadedOperator(FE->getOperator()),
4546 if (FE->getLHS())
4547 mangleExpression(FE->getLHS());
4548 if (FE->getRHS())
4549 mangleExpression(FE
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp1327 auto *FE = cast<RedirectingFileSystem::RedirectingFileEntry>(SrcE); local
1332 Name, FE->getExternalContentsPath(), FE->getUseName()));
1882 auto *FE = dyn_cast<RedirectingFileSystem::RedirectingFileEntry>(SrcE); local
1883 assert(FE && "Must be a file");
1887 Entries.push_back(YAMLVFSEntry(VPath.c_str(), FE->getExternalContentsPath()));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp222 for (MachineFunction::iterator FI = F.begin(), FE = F.end();
223 FI != FE; ++FI)

Completed in 322 milliseconds

1234