Home
last modified time | relevance | path

Searched defs:Profile (Results 1 – 25 of 99) sorted by relevance

1234

/freebsd-src/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DEnvironment.h44 static void Profile(llvm::FoldingSetNodeID &ID, in Profile() function
50 void Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function
80 static void Profile(llvm::FoldingSetNodeID& ID, const Environment* env) { in Profile() function
86 void Profile(llvm::FoldingSetNodeID& ID) const { in Profile() function
H A DSymbolManager.h55 static void Profile(llvm::FoldingSetNodeID& profile, const TypedValueRegion* R) { in Profile() function
60 void Profile(llvm::FoldingSetNodeID& profile) override { in Profile() function
112 static void Profile(llvm::FoldingSetNodeID& profile, const Stmt *S, in Profile() function
123 void Profile(llvm::FoldingSetNodeID& profile) override { in Profile() function
159 static void Profile(llvm::FoldingSetNodeID& profile, SymbolRef parent, in Profile() function
166 void Profile(llvm::FoldingSetNodeID& profile) override { in Profile() function
197 static void Profile(llvm::FoldingSetNodeID& profile, const SubRegion *R) { in Profile() function
202 void Profile(llvm::FoldingSetNodeID& profile) override { in Profile() function
256 static void Profile(llvm::FoldingSetNodeID &profile, const MemRegion *R, in Profile() function
268 void Profile(llvm::FoldingSetNodeID& profile) override { in Profile() function
[all …]
H A DRangedConstraintManager.h46 void Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function
98 void Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function
321 static void Profile(llvm::FoldingSetNodeID &ID, const RangeSet &RS) { in Profile() function
327 void Profile(llvm::FoldingSetNodeID &ID) const { Profile(ID, *this); } in Profile() function
H A DDynamicTypeInfo.h42 void Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function
H A DBasicValueFactory.h59 void Profile(llvm::FoldingSetNodeID& ID) { Profile(ID, T, L); } in Profile() function
83 void Profile(llvm::FoldingSetNodeID& ID) { Profile(ID, store, region); } in Profile() function
103 void Profile(llvm::FoldingSetNodeID &ID) { Profile(ID, D, L); } in Profile() function
H A DDynamicCastInfo.h41 void Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function
/freebsd-src/contrib/llvm-project/llvm/lib/IR/
H A DAttributeImpl.h94 Profile(ID, getKindAsEnum()); in Profile() function
78 void Profile(FoldingSetNodeID &ID) const { Profile() function
89 static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind) { Profile() function
101 static void Profile(FoldingSetNodeID &ID, StringRef Kind, StringRef Values) { Profile() function
106 static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind, Profile() function
278 void Profile(FoldingSetNodeID &ID) const { Profile() function
282 static void Profile(FoldingSetNodeID &ID, ArrayRef<Attribute> AttrList) { Profile() function
[all...]
/freebsd-src/contrib/llvm-project/clang/lib/AST/
H A DTemplateName.cpp56 void SubstTemplateTemplateParmStorage::Profile(llvm::FoldingSetNodeID &ID) { in Profile() function in SubstTemplateTemplateParmStorage
60 void SubstTemplateTemplateParmStorage::Profile( in Profile() function in SubstTemplateTemplateParmStorage
78 void SubstTemplateTemplateParmPackStorage::Profile(llvm::FoldingSetNodeID &ID, in Profile() function in SubstTemplateTemplateParmPackStorage
92 void SubstTemplateTemplateParmPackStorage::Profile( in Profile() function in SubstTemplateTemplateParmPackStorage
284 void TemplateName::Profile(llvm::FoldingSetNodeID &ID) { Profile() function in TemplateName
H A DType.cpp214 void ConstantArrayType::Profile(llvm::FoldingSetNodeID &ID, Profile() function in ConstantArrayType
235 void DependentSizedArrayType::Profile(llvm::FoldingSetNodeID &ID, Profile() function in DependentSizedArrayType
259 void DependentVectorType::Profile(llvm::FoldingSetNodeID &ID, Profile() function in DependentVectorType
280 DependentSizedExtVectorType::Profile(llvm::FoldingSetNodeID &ID, Profile() function in DependentSizedExtVectorType
298 void DependentAddressSpaceType::Profile(llvm::FoldingSetNodeID &ID, Profile() function in DependentAddressSpaceType
344 void DependentSizedMatrixType::Profile(llvm::FoldingSetNodeID &ID, Profile() function in DependentSizedMatrixType
381 void DependentBitIntType::Profile(llvm::FoldingSetNodeID &ID, Profile() function in DependentBitIntType
3180 DependentTemplateSpecializationType::Profile(llvm::FoldingSetNodeID &ID, Profile() function in DependentTemplateSpecializationType
3647 void FunctionProtoType::Profile(llvm::FoldingSetNodeID &ID, QualType Result, Profile() function in FunctionProtoType
3703 void FunctionProtoType::Profile(llvm::FoldingSetNodeID &ID, Profile() function in FunctionProtoType
3780 void DependentTypeOfExprType::Profile(llvm::FoldingSetNodeID &ID, Profile() function in DependentTypeOfExprType
3811 void DependentDecltypeType::Profile(llvm::FoldingSetNodeID &ID, Profile() function in DependentDecltypeType
4012 void SubstTemplateTypeParmPackType::Profile(llvm::FoldingSetNodeID &ID) { Profile() function in SubstTemplateTypeParmPackType
4016 void SubstTemplateTypeParmPackType::Profile(llvm::FoldingSetNodeID &ID, Profile() function in SubstTemplateTypeParmPackType
4101 void TemplateSpecializationType::Profile(llvm::FoldingSetNodeID &ID, Profile() function in TemplateSpecializationType
4109 TemplateSpecializationType::Profile(llvm::FoldingSetNodeID &ID, Profile() function in TemplateSpecializationType
4134 void ObjCObjectTypeImpl::Profile(llvm::FoldingSetNodeID &ID, Profile() function in ObjCObjectTypeImpl
4149 void ObjCObjectTypeImpl::Profile(llvm::FoldingSetNodeID &ID) { Profile() function in ObjCObjectTypeImpl
4155 void ObjCTypeParamType::Profile(llvm::FoldingSetNodeID &ID, Profile() function in ObjCTypeParamType
4166 void ObjCTypeParamType::Profile(llvm::FoldingSetNodeID &ID) { Profile() function in ObjCTypeParamType
4837 void AutoType::Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context, Profile() function in AutoType
4849 void AutoType::Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context) { Profile() function in AutoType
[all...]
/freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp32 void CompoundValData::Profile(llvm::FoldingSetNodeID& ID, QualType T, in Profile() function in CompoundValData
38 void LazyCompoundValData::Profile(llvm::FoldingSetNodeID& ID, in Profile() function in LazyCompoundValData
45 void PointerToMemberData::Profile( in Profile() function in PointerToMemberData
58 static inline void Profile(const SValData& X, llvm::FoldingSetNodeID& ID) { in Profile() function
65 static inline void Profile(const SValPair& X, llvm::FoldingSetNodeID& ID) { in Profile() function
H A DMemRegion.cpp224 void MemSpaceRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in MemSpaceRegion
228 void StackSpaceRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in StackSpaceRegion
233 void StaticGlobalSpaceRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in StaticGlobalSpaceRegion
263 void AllocaRegion::Profile(llvm::FoldingSetNodeID& ID) const { in Profile() function in AllocaRegion
267 void CompoundLiteralRegion::Profile(llvm::FoldingSetNodeID& ID) const { in Profile() function in CompoundLiteralRegion
287 void CXXThisRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in CXXThisRegion
291 void FieldRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in FieldRegion
303 void ObjCIvarRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in ObjCIvarRegion
315 void NonParamVarRegion::Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in NonParamVarRegion
327 void ParamVarRegion::Profile(llv function in ParamVarRegion
338 void SymbolicRegion::Profile(llvm::FoldingSetNodeID& ID) const { Profile() function in SymbolicRegion
351 void ElementRegion::Profile(llvm::FoldingSetNodeID& ID) const { Profile() function in ElementRegion
362 void FunctionCodeRegion::Profile(llvm::FoldingSetNodeID& ID) const { Profile() function in FunctionCodeRegion
374 void BlockCodeRegion::Profile(llvm::FoldingSetNodeID& ID) const { Profile() function in BlockCodeRegion
390 void BlockDataRegion::Profile(llvm::FoldingSetNodeID& ID) const { Profile() function in BlockDataRegion
401 void CXXTempObjectRegion::Profile(llvm::FoldingSetNodeID &ID) const { Profile() function in CXXTempObjectRegion
414 void CXXLifetimeExtendedObjectRegion::Profile( Profile() function in CXXLifetimeExtendedObjectRegion
428 void CXXBaseObjectRegion::Profile(llvm::FoldingSetNodeID &ID) const { Profile() function in CXXBaseObjectRegion
439 void CXXDerivedObjectRegion::Profile(llvm::FoldingSetNodeID &ID) const { Profile() function in CXXDerivedObjectRegion
[all...]
H A DBlockCounter.cpp39 void Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in __anon9324964c0111::CountKey
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/
H A DImmutableMap.h55 static inline void Profile(FoldingSetNodeID& ID, value_type_ref V) { in Profile() function
191 static inline void Profile(FoldingSetNodeID& ID, const ImmutableMap& M) { in Profile() function
195 inline void Profile(FoldingSetNodeID& ID) const { in Profile() function
321 static inline void Profile(FoldingSetNodeID &ID, const ImmutableMapRef &M) { in Profile() function
325 inline void Profile(FoldingSetNodeID &ID) const { return Profile(ID, *this); } in Profile() function
H A DImmutableList.h45 static inline void Profile(FoldingSetNodeID& ID, const T& H, in Profile() function
51 void Profile(FoldingSetNodeID& ID) { in Profile() function
144 void Profile(FoldingSetNodeID& ID) const { in Profile() function
H A DFoldingSet.h233 static void Profile(const T &X, FoldingSetNodeID &ID) { Profile() function
236 static void Profile(T &X, FoldingSetNodeID &ID) { Profile() function
268 static void Profile(T &X, FoldingSetNodeID &ID, Ctx Context) { Profile() function
791 void Profile(FoldingSetNodeID &ID) { FoldingSetTrait<T>::Profile(data, ID); } Profile() function
813 void Profile(FoldingSetNodeID &ID) const { ID.AddNodeID(FastID); } Profile() function
[all...]
/freebsd-src/contrib/llvm-project/clang/include/clang/AST/
H A DTemplateName.h468 void Profile(llvm::FoldingSetNodeID &ID) { Profile() function
472 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, Profile() function
566 void Profile(llvm::FoldingSetNodeID &ID) { Profile() function
573 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, Profile() function
580 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, Profile() function
[all...]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/XRay/
H A DProfile.h27 class Profile; variable
88 Profile(Profile &&O) noexcept in Profile() function
/freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIterator.h68 void Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function
104 void Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function
H A DTestAfterDivZeroChecker.cpp51 void Profile(llvm::FoldingSetNodeID &ID) const { in Profile() function in __anond723086a0111::ZeroState
68 void Profile(llvm::FoldingSetNodeID &ID) const override { in Profile() function in __anond723086a0111::DivisionBRVisitor
/freebsd-src/contrib/llvm-project/clang/lib/Analysis/
H A DPathDiagnostic.cpp1084 void PathDiagnosticLocation::Profile(llvm::FoldingSetNodeID &ID) const { Profile() function in PathDiagnosticLocation
1090 void PathDiagnosticPiece::Profile(llvm::FoldingSetNodeID &ID) const { Profile() function in PathDiagnosticPiece
1102 void PathDiagnosticCallPiece::Profile(llvm::FoldingSetNodeID &ID) const { Profile() function in PathDiagnosticCallPiece
1108 void PathDiagnosticSpotPiece::Profile(llvm::FoldingSetNodeID &ID) const { Profile() function in PathDiagnosticSpotPiece
1113 void PathDiagnosticControlFlowPiece::Profile(llvm::FoldingSetNodeID &ID) const { Profile() function in PathDiagnosticControlFlowPiece
1119 void PathDiagnosticMacroPiece::Profile(llvm::FoldingSetNodeID &ID) const { Profile() function in PathDiagnosticMacroPiece
1125 void PathDiagnosticNotePiece::Profile(llvm::FoldingSetNodeID &ID) const { Profile() function in PathDiagnosticNotePiece
1129 void PathDiagnosticPopUpPiece::Profile(llvm::FoldingSetNodeID &ID) const { Profile() function in PathDiagnosticPopUpPiece
1133 void PathDiagnostic::Profile(llvm::FoldingSetNodeID &ID) const { Profile() function in PathDiagnostic
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/Support/
H A DAPSInt.cpp40 void APSInt::Profile(FoldingSetNodeID& ID) const { in Profile() function in APSInt
/freebsd-src/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitors.h431 void Profile(llvm::FoldingSetNodeID &ID) const override { Profile() function
454 void Profile(llvm::FoldingSetNodeID &ID) const override { Profile() function
534 void Profile(llvm::FoldingSetNodeID &ID) const override { Profile() function
559 void Profile(llvm::FoldingSetNodeID &ID) const override { Profile() function
/freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
H A DMPITypes.h33 void Profile(llvm::FoldingSetNodeID &Id) const { in Profile() function
H A DMPIBugReporter.h83 void Profile(llvm::FoldingSetNodeID &ID) const override { in Profile() function
/freebsd-src/contrib/llvm-project/llvm/include/llvm/IR/
H A DLegacyPassManagers.h251 void Profile(FoldingSetNodeID &ID) const { in Profile() function
254 static void Profile(FoldingSetNodeID &ID, const AnalysisUsage &AU) { in Profile() function

1234