Searched refs:FunctionName (Results 1 - 25 of 78) sorted by relevance

1234

/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DPtrTypesSemantics.cpp83 const auto &FunctionName = safeGetName(F); local
85 return FunctionName == "Ref" || FunctionName == "makeRef"
87 || FunctionName == "RefPtr" || FunctionName == "makeRefPtr"
89 || FunctionName == "UniqueRef" || FunctionName == "makeUniqueRef" ||
90 FunctionName == "makeUniqueRefWithoutFastMallocCheck"
92 || FunctionName == "String" || FunctionName
162 const auto FunctionName = safeGetName(F); local
[all...]
/freebsd-13-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutdebug.c227 * PARAMETERS: FunctionName - Ascii string containing a procedure name
239 const char *FunctionName)
244 if (*(ACPI_CAST_PTR (UINT32, FunctionName)) == ACPI_PREFIX_MIXED)
248 return (FunctionName + 4);
251 if (*(ACPI_CAST_PTR (UINT32, FunctionName)) == ACPI_PREFIX_LOWER)
255 return (FunctionName + 5);
258 return (FunctionName);
268 * FunctionName - Caller's procedure name
285 const char *FunctionName,
340 strlen (AcpiUtTrimFunctionName (FunctionName));
238 AcpiUtTrimFunctionName( const char *FunctionName) argument
282 AcpiDebugPrint( UINT32 RequestedDebugLevel, UINT32 LineNumber, const char *FunctionName, const char *ModuleName, UINT32 ComponentId, const char *Format, ...) argument
508 AcpiUtTraceStr( UINT32 LineNumber, const char *FunctionName, const char *ModuleName, UINT32 ComponentId, const char *String) argument
548 AcpiUtTraceU32( UINT32 LineNumber, const char *FunctionName, const char *ModuleName, UINT32 ComponentId, UINT32 Integer) argument
587 AcpiUtExit( UINT32 LineNumber, const char *FunctionName, const char *ModuleName, UINT32 ComponentId) argument
772 AcpiUtStrExit( UINT32 LineNumber, const char *FunctionName, const char *ModuleName, UINT32 ComponentId, const char *String) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DXRayLists.cpp35 XRayFunctionFilter::shouldImbueFunction(StringRef FunctionName) const {
39 if (AlwaysInstrument->inSection("xray_always_instrument", "fun", FunctionName,
41 AttrList->inSection("always", "fun", FunctionName, "arg1"))
44 FunctionName) ||
45 AttrList->inSection("always", "fun", FunctionName))
49 FunctionName) ||
50 AttrList->inSection("never", "fun", FunctionName))
H A DSanitizerBlacklist.cpp43 StringRef FunctionName) const {
44 return SSCL->inSection(Mask, "fun", FunctionName);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DSymbolRemappingReader.h112 Key insert(StringRef FunctionName) { argument
113 return Canonicalizer.canonicalize(FunctionName);
122 Key lookup(StringRef FunctionName) { argument
123 return Canonicalizer.lookup(FunctionName);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp65 std::string FunctionName = Info.FunctionName; local
66 if (FunctionName == DILineInfo::BadString)
67 FunctionName = DILineInfo::Addr2LineBadString;
71 OS << Prefix << FunctionName << Delimiter;
121 if (Local.FunctionName.empty())
124 OS << Local.FunctionName << '\n';
H A DSymbolizableObjectFile.cpp260 std::string FunctionName; local
263 FunctionName, Start, Size)) {
264 LineInfo.FunctionName = FunctionName;
285 std::string FunctionName; local
288 FunctionName, Start, Size)) {
290 ->FunctionName = FunctionName;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/
H A DDIContext.h37 std::string FunctionName; member in struct:llvm::DILineInfo
46 DILineInfo() : FileName(BadString), FunctionName(BadString) {}
50 FileName == RHS.FileName && FunctionName == RHS.FunctionName &&
59 return std::tie(FileName, FunctionName, Line, Column, StartLine,
61 std::tie(RHS.FileName, RHS.FunctionName, RHS.Line, RHS.Column,
71 if (FunctionName != BadString)
72 OS << "function '" << FunctionName << "', "; local
121 std::string FunctionName;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Remarks/
H A DRemark.h80 StringRef FunctionName; member in struct:llvm::remarks::Type::Remark
159 LHS.FunctionName == RHS.FunctionName && LHS.Loc == RHS.Loc &&
169 LHS.FunctionName, LHS.Loc, LHS.Hotness, LHS.Args) <
171 RHS.FunctionName, RHS.Loc, RHS.Hotness, RHS.Args);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DExpression.h50 virtual const char *FunctionName() = 0;
H A DUtilityFunction.h86 const char *FunctionName() override { return m_function_name.c_str(); }
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSanitizerBlacklist.h40 bool isBlacklistedFunction(SanitizerMask Mask, StringRef FunctionName) const;
H A DXRayLists.h48 ImbueAttribute shouldImbueFunction(StringRef FunctionName) const;
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DPointerSortingChecker.cpp57 decltype(auto) callsName(const char *FunctionName) { argument
58 return callee(functionDecl(hasName(FunctionName)));
H A DGCDAntipatternChecker.cpp55 decltype(auto) callsName(const char *FunctionName) { argument
56 return callee(functionDecl(hasName(FunctionName)));
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dfunc-id-helper.cpp39 if (DI.FunctionName == DILineInfo::BadString)
42 F << DI.FunctionName;
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageView.h56 StringRef FunctionName; member in struct:llvm::InstantiationView
60 InstantiationView(StringRef FunctionName, unsigned Line, argument
62 : FunctionName(FunctionName), Line(Line), View(std::move(View)) {}
255 void addInstantiation(StringRef FunctionName, unsigned Line,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMappingReader.h36 StringRef FunctionName; member in struct:llvm::coverage::CoverageMappingRecord
163 StringRef FunctionName; member in struct:llvm::coverage::BinaryCoverageReader::ProfileMappingRecord
169 ProfileMappingRecord(CovMapVersion Version, StringRef FunctionName, argument
172 : Version(Version), FunctionName(FunctionName),
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/XRay/
H A DInstrumentationMap.h63 std::string FunctionName; member in struct:llvm::xray::YAMLXRaySledEntry
125 IO.mapOptional("function-name", Entry.FunctionName);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRPrintingPasses.h50 extern bool isFunctionInPrintList(StringRef FunctionName);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Remarks/
H A DRemarkStringTable.cpp45 Impl(R.FunctionName);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DSignals.cpp199 StringRef FunctionName = *CurLine++;
200 if (FunctionName.empty())
203 if (!FunctionName.startswith("??"))
204 OS << FunctionName << ' '; local
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchersMacros.h362 #define AST_TYPE_TRAVERSE_MATCHER_DECL(MatcherName, FunctionName, \
366 static QualType (T::*value())() const { return &T::FunctionName; } \
383 /// AST_TYPE_TRAVERSE_MATCHER(MatcherName, FunctionName) defines
388 /// \c SpecificType::FunctionName. The existence of such a function determines
390 #define AST_TYPE_TRAVERSE_MATCHER(MatcherName, FunctionName, ReturnTypesF) \
393 static QualType (T::*value())() const { return &T::FunctionName; } \
402 #define AST_TYPELOC_TRAVERSE_MATCHER_DECL(MatcherName, FunctionName, \
406 static TypeLoc (T::*value())() const { return &T::FunctionName##Loc; } \
416 AST_TYPE_TRAVERSE_MATCHER_DECL(MatcherName, FunctionName##Type, ReturnTypesF)
426 /// AST_TYPELOC_TRAVERSE_MATCHER(MatcherName, FunctionName) work
[all...]
/freebsd-13-stable/sys/contrib/dev/acpica/include/
H A Dacutils.h535 const char *FunctionName,
542 const char *FunctionName,
550 const char *FunctionName,
558 const char *FunctionName,
566 const char *FunctionName,
573 const char *FunctionName,
581 const char *FunctionName,
589 const char *FunctionName,
597 const char *FunctionName,
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCoverageMappingGen.h78 void addFunctionMappingRecord(llvm::GlobalVariable *FunctionName,

Completed in 221 milliseconds

1234