Searched refs:hasName (Results 1 - 25 of 105) sorted by relevance

12345

/freebsd-13-stable/contrib/llvm-project/clang/lib/ASTMatchers/
H A DGtestMatchers.cpp27 return cxxMethodDecl(hasName("Compare"),
29 hasName("::testing::internal::EqHelper")))));
31 return functionDecl(hasName("::testing::internal::CmpHelperNE"));
33 return functionDecl(hasName("::testing::internal::CmpHelperGE"));
35 return functionDecl(hasName("::testing::internal::CmpHelperGT"));
37 return functionDecl(hasName("::testing::internal::CmpHelperLE"));
39 return functionDecl(hasName("::testing::internal::CmpHelperLT"));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DInstructionNamer.cpp36 if (!Arg.hasName())
40 if (!BB.hasName())
44 if (!I.hasName() && !I.getType()->isVoidTy())
H A DNameAnonGlobals.cpp41 if (F.isDeclaration() || F.hasLocalLinkage() || !F.hasName())
47 if (GV.isDeclaration() || GV.hasLocalLinkage() || !GV.hasName())
70 if (GV.hasName())
H A DSplitModule.cpp112 if (!GV.hasName())
223 if (!GV->hasName())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DSymbolTableListTraitsImpl.h54 if (I->hasName())
61 if (I->hasName())
73 if (V->hasName())
82 if (V->hasName())
107 bool HasName = V.hasName();
H A DValueSymbolTable.cpp73 assert(V->hasName() && "Can't insert nameless Value into symbol table");
H A DTypeFinder.cpp104 if (!OnlyNamed || STy->hasName())
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-diff/
H A DDiffConsumer.cpp26 if (!AI->hasName())
31 if (!FI->hasName())
37 if (!BI->hasName() && !BI->getType()->isVoidTy())
48 if (V->hasName()) {
112 if (L->hasName() && R->hasName() && L->getName() == R->getName())
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNumberObjectConversionChecker.cpp203 typedefDecl(hasName("CFNumberRef")),
204 typedefDecl(hasName("CFBooleanRef")))))))
214 cxxRecordDecl(hasName("OSBoolean")),
215 cxxRecordDecl(hasName("OSNumber"))
226 objcInterfaceDecl(hasName("NSNumber")))))))))))
244 typedefDecl(hasName("BOOL"))))).bind("objc_bool_type");
H A DOSObjectCStyleCast.cpp67 auto DynamicCastM = callExpr(callee(functionDecl(hasName("safeMetaCast"))));
H A DPointerIterationChecker.cpp69 recordDecl(hasName("std::unordered_set")
H A DPointerSortingChecker.cpp58 return callee(functionDecl(hasName(FunctionName)));
H A DGCDAntipatternChecker.cpp56 return callee(functionDecl(hasName(FunctionName)));
H A DRunLoopAutoreleaseLeakChecker.cpp143 callExpr(callee(functionDecl(hasName("xpc_main")))).bind(RunLoopRunBind);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DBasicGOTAndStubsBuilder.h55 assert(Target.hasName() && "GOT edge cannot point to anonymous target");
77 assert(Target.hasName() &&
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageSummaryInfo.cpp53 if (Group.hasName()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DProvenanceAnalysisEvaluator.cpp49 if (!V->hasName())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DObjectLinkingLayer.cpp108 if (Sym->hasName() && Sym->getScope() != Scope::Local) {
127 if (Sym->hasName()) {
247 if (Sym->hasName() && Sym->getLinkage() == Linkage::Weak) {
253 if (Sym->hasName() && Sym->getLinkage() == Linkage::Weak) {
264 if (Sym->hasName() && MR.getSymbols().count(ES.intern(Sym->getName())))
279 assert(Sym->hasName() &&
H A DCompileOnDemandLayer.cpp40 assert(A.hasName() && "Anonymous alias?");
41 assert(Aliasee->hasName() && "Anonymous aliasee");
329 assert(GV->hasName() && "All GVs to extract should be named by now");
H A DMangling.cpp43 if (!G->hasName() || G->isDeclaration() || G->hasLocalLinkage() ||
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.cpp228 assert(val.hasName() && "Found texture variable with no name");
233 assert(val.hasName() && "Found surface variable with no name");
238 assert(val.hasName() && "Found sampler variable with no name");
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrumentation.cpp79 assert(F.hasName());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DDomTreeUpdater.cpp470 if (!From->hasName())
479 if (!To->hasName())
513 if (BB->hasName())
525 if (BB->hasName())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUOpenCLEnqueuedBlockLowering.cpp112 if (!F.hasName()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DJITSymbol.cpp23 assert(GV.hasName() && "Can't get flags for anonymous symbol");

Completed in 120 milliseconds

12345