Home
last modified time | relevance | path

Searched refs:FunctionNames (Results 1 – 8 of 8) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DObjCAutoreleaseWriteChecker.cpp104 static auto callsNames(std::vector<std::string> FunctionNames) in callsNames() argument
106 return callee(functionDecl(hasAnyName(toRefs(FunctionNames)))); in callsNames()
/freebsd-12.1/contrib/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp108 char const *FunctionNames[4][3] = { in EmitSpecializedLibcall() local
119 DAG.getExternalSymbol(FunctionNames[AEABILibcall][AlignVariant], in EmitSpecializedLibcall()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCoverageMappingGen.h55 std::vector<llvm::Constant *> FunctionNames; variable
H A DCoverageMappingGen.cpp1342 FunctionNames.push_back( in addFunctionMappingRecord()
1442 if (!FunctionNames.empty()) { in emit()
1444 FunctionNames.size()); in emit()
1445 auto NamesArrVal = llvm::ConstantArray::get(NamesArrTy, FunctionNames); in emit()
/freebsd-12.1/contrib/llvm/tools/bugpoint/
H A DCrashDebugger.cpp1120 std::vector<std::string> FunctionNames; in DebugACrash() local
1122 FunctionNames.push_back(F.getName()); in DebugACrash()
1124 if (!FunctionNames.empty() && !BugpointIsInterrupted) { in DebugACrash()
1130 for (std::string &Name : FunctionNames) { in DebugACrash()
/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp958 SmallVector<StringRef, 10> FunctionNames; in printCodeViewSymbolSection() local
1042 FunctionNames.push_back(LinkageName); in printCodeViewSymbolSection()
1103 for (unsigned I = 0, E = FunctionNames.size(); I != E; ++I) { in printCodeViewSymbolSection()
1104 StringRef Name = FunctionNames[I]; in printCodeViewSymbolSection()
/freebsd-12.1/contrib/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h209 std::vector<NameEntry> FunctionNames; member
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp64 IO.mapOptional("FunctionNames", Section.FunctionNames); in sectionMapping()