/external/aac/libMpegTPDec/include/ |
tp_data.h | 128 UCHAR Profile;
|
/external/aac/libMpegTPEnc/include/ |
tp_data.h | 128 UCHAR Profile;
|
/external/clang/include/clang/Analysis/ |
ProgramPoint.h | 162 Profile(ID); 180 void Profile(llvm::FoldingSetNodeID& ID) const {
|
/external/clang/include/clang/CodeGen/ |
CGFunctionInfo.h | 371 /// passing non-trivial types with inalloca. Not part of the profile. 468 void Profile(llvm::FoldingSetNodeID &ID) { 477 getReturnType().Profile(ID); 479 I.type.Profile(ID); 481 static void Profile(llvm::FoldingSetNodeID &ID, 496 resultType.Profile(ID); 499 i->Profile(ID);
|
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
BugReporter.h | 308 /// Profile to identify equivalent bug reports for error report coalescing. 311 virtual void Profile(llvm::FoldingSetNodeID& hash) const; 356 void Profile(llvm::FoldingSetNodeID& ID) const { 358 Reports.front().Profile(ID); 465 /// folded based on the profile value, which is done to coalesce similar
|
PathDiagnostic.h | 70 void Profile(llvm::FoldingSetNodeID &ID) { ID = NodeID; } 296 void Profile(llvm::FoldingSetNodeID &ID) const; 327 void Profile(llvm::FoldingSetNodeID &ID) const { 328 Start.Profile(ID); 329 End.Profile(ID); 407 virtual void Profile(llvm::FoldingSetNodeID &ID) const; 453 void Profile(llvm::FoldingSetNodeID &ID) const override; 615 void Profile(llvm::FoldingSetNodeID &ID) const override; 685 void Profile(llvm::FoldingSetNodeID &ID) const override; 711 void Profile(llvm::FoldingSetNodeID &ID) const override [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
ExplodedGraph.h | 160 static void Profile(llvm::FoldingSetNodeID &ID, 169 void Profile(llvm::FoldingSetNodeID& ID) const { 171 Profile(ID, Location, State, isSink());
|
SymbolManager.h | 69 virtual void Profile(llvm::FoldingSetNodeID& profile) = 0; 133 static void Profile(llvm::FoldingSetNodeID& profile, const TypedValueRegion* R) { 134 profile.AddInteger((unsigned) RegionValueKind); 135 profile.AddPointer(R); 138 void Profile(llvm::FoldingSetNodeID& profile) override { 139 Profile(profile, R) [all...] |
/external/llvm/include/llvm/CodeGen/ |
SelectionDAG.h | 69 static void Profile(const SDVTListNode &X, FoldingSetNodeID& ID) { [all...] |
/external/llvm/include/llvm/IR/ |
Attributes.h | 206 void Profile(FoldingSetNodeID &ID) const {
|
/external/clang/lib/Sema/ |
AnalysisBasedWarnings.cpp | [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
BugReporterVisitors.cpp | 154 void Profile(llvm::FoldingSetNodeID &ID) const override { 409 void FindLastStoreBRVisitor ::Profile(llvm::FoldingSetNodeID &ID) const { 707 void TrackConstraintBRVisitor::Profile(llvm::FoldingSetNodeID &ID) const { 796 void SuppressInlineDefensiveChecksVisitor::Profile(FoldingSetNodeID &ID) const { [all...] |
MemRegion.cpp | 248 void MemSpaceRegion::Profile(llvm::FoldingSetNodeID& ID) const { 252 void StackSpaceRegion::Profile(llvm::FoldingSetNodeID &ID) const { 257 void StaticGlobalSpaceRegion::Profile(llvm::FoldingSetNodeID &ID) const { 287 void AllocaRegion::Profile(llvm::FoldingSetNodeID& ID) const { 291 void CompoundLiteralRegion::Profile(llvm::FoldingSetNodeID& ID) const { 311 void CXXThisRegion::Profile(llvm::FoldingSetNodeID &ID) const { 328 void DeclRegion::Profile(llvm::FoldingSetNodeID& ID) const { 332 void VarRegion::Profile(llvm::FoldingSetNodeID &ID) const { 343 void SymbolicRegion::Profile(llvm::FoldingSetNodeID& ID) const { 353 Idx.Profile(ID) [all...] |
PathDiagnostic.cpp | 259 // Profile the node to see if we already have something matching it 260 llvm::FoldingSetNodeID profile; local 261 D->Profile(profile); 264 if (PathDiagnostic *orig = Diags.FindNodeOrInsertPos(profile, InsertPos)) { [all...] |
RegionStore.cpp | 87 void Profile(llvm::FoldingSetNodeID& ID) const { [all...] |
BugReporter.cpp | [all...] |
/external/llvm/include/llvm/ADT/ |
ImmutableSet.h | 305 ImutInfo::Profile(ID,V); 830 // Trait classes for Profile information. 833 /// Generic profile template. The default behavior is to invoke the 834 /// profile method of an object. Specializations for primitive integers 841 static void Profile(FoldingSetNodeID &ID, value_type_ref X) { 842 FoldingSetTrait<T>::Profile(X,ID); 846 /// Profile traits for integers. 852 static void Profile(FoldingSetNodeID &ID, value_type_ref X) { 873 /// Profile traits for booleans. 879 static void Profile(FoldingSetNodeID &ID, value_type_ref X) [all...] |
/external/llvm/lib/CodeGen/ |
MachineInstr.cpp | 455 /// Profile - Gather unique data for the object. 457 void MachineMemOperand::Profile(FoldingSetNodeID &ID) const { [all...] |
/external/clang/include/clang/AST/ |
DeclTemplate.h | 382 void Profile(llvm::FoldingSetNodeID &ID) { 383 Profile(ID, TemplateArguments->asArray(), 388 Profile(llvm::FoldingSetNodeID &ID, ArrayRef<TemplateArgument> TemplateArgs, 392 TemplateArgs[Arg].Profile(ID, Context); [all...] |
/external/clang/lib/AST/ |
StmtProfile.cpp | 1 //===---- StmtProfile.cpp - Profile implementation for Stmt ASTs ----------===// 10 // This file implements the Stmt::Profile method, which builds a unique bit 549 S->getValue().Profile(ID); 561 S->getValue().Profile(ID); 773 // Normally, we would not profile the source expressions of OVEs. [all...] |
Type.cpp | 135 void DependentSizedArrayType::Profile(llvm::FoldingSetNodeID &ID, 144 E->Profile(ID, Context, true); 164 DependentSizedExtVectorType::Profile(llvm::FoldingSetNodeID &ID, 168 SizeExpr->Profile(ID, Context, true); [all...] |
/external/clang/lib/CodeGen/ |
CodeGenModule.h | 244 /// Record that a function we've visited has no profile data. 250 /// Record that a function we've visited has mismatched profile data. 756 void Profile(llvm::FoldingSetNodeID &id) const { [all...] |
/external/llvm/lib/TableGen/ |
Record.cpp | 488 void BitsInit::Profile(FoldingSetNodeID &ID) const { 654 void ListInit::Profile(FoldingSetNodeID &ID) const { [all...] |
/hardware/ti/omap3/omx/video/src/openmax_il/video_decode/src/ |
OMX_VideoDec_Utils.c | [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
MallocChecker.cpp | 107 void Profile(llvm::FoldingSetNodeID &ID) const { 145 void Profile(llvm::FoldingSetNodeID &ID) const { 419 void Profile(llvm::FoldingSetNodeID &ID) const override { [all...] |