Searched defs:Profile (Results 1 - 25 of 74) sorted by relevance

123

/external/llvm/lib/Support/
H A DAPSInt.cpp20 void APSInt::Profile(FoldingSetNodeID& ID) const { function in class:APSInt
22 APInt::Profile(ID);
/external/v8/tools/
H A Dprofile.js35 function Profile() { class
48 Profile.prototype.skipThisFunction = function(name) {
59 Profile.Operation = {
71 Profile.CodeState = {
81 * See the Profile.Operation enum for the list of
90 Profile.prototype.handleUnknownCode = function(
102 Profile.prototype.addLibrary = function(
118 Profile.prototype.addStaticCode = function(
135 Profile.prototype.addCode = function(
137 var entry = new Profile
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DProfile.java7 public interface Profile { interface
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DDynamicTypeInfo.h40 void Profile(llvm::FoldingSetNodeID &ID) const { function in class:clang::ento::DynamicTypeInfo
H A DEnvironment.h42 /// Profile an EnvironmentEntry for inclusion in a FoldingSet.
43 static void Profile(llvm::FoldingSetNodeID &ID, function in class:clang::ento::EnvironmentEntry
49 void Profile(llvm::FoldingSetNodeID &ID) const { function in class:clang::ento::EnvironmentEntry
50 Profile(ID, *this);
79 /// Profile - Profile the contents of an Environment object for use
81 static void Profile(llvm::FoldingSetNodeID& ID, const Environment* env) { function in class:clang::ento::Environment
82 env->ExprBindings.Profile(ID);
85 /// Profile - Used to profile the contents of this object for inclusion
87 void Profile(llv function in class:clang::ento::Environment
[all...]
H A DBasicValueFactory.h39 static void Profile(llvm::FoldingSetNodeID& ID, QualType T,
42 void Profile(llvm::FoldingSetNodeID& ID) { Profile(ID, T, L); } function in class:clang::ento::CompoundValData
55 static void Profile(llvm::FoldingSetNodeID& ID,
59 void Profile(llvm::FoldingSetNodeID& ID) { Profile(ID, store, region); } function in class:clang::ento::LazyCompoundValData
/external/llvm/unittests/ProfileData/
H A DInstrProfTest.cpp39 void readProfile(std::unique_ptr<MemoryBuffer> Profile) { argument
40 auto ReaderOrErr = IndexedInstrProfReader::create(std::move(Profile));
47 auto Profile = Writer.writeBuffer(); local
48 readProfile(std::move(Profile));
54 auto Profile = Writer.writeBuffer(); local
55 readProfile(std::move(Profile));
71 auto Profile = Writer.writeBuffer(); local
72 readProfile(std::move(Profile));
92 auto Profile = Writer.writeBuffer(); local
93 readProfile(std::move(Profile));
[all...]
H A DCoverageMappingTest.cpp137 auto Profile = ProfileWriter.writeBuffer(); local
138 auto ReaderOrErr = IndexedInstrProfReader::create(std::move(Profile));
/external/clang/lib/AST/
H A DTemplateName.cpp30 void SubstTemplateTemplateParmStorage::Profile(llvm::FoldingSetNodeID &ID) { function in class:SubstTemplateTemplateParmStorage
31 Profile(ID, Parameter, Replacement);
34 void SubstTemplateTemplateParmStorage::Profile(llvm::FoldingSetNodeID &ID, function in class:SubstTemplateTemplateParmStorage
41 void SubstTemplateTemplateParmPackStorage::Profile(llvm::FoldingSetNodeID &ID, function in class:SubstTemplateTemplateParmPackStorage
43 Profile(ID, Context, Parameter, TemplateArgument(Arguments, size()));
46 void SubstTemplateTemplateParmPackStorage::Profile(llvm::FoldingSetNodeID &ID, function in class:SubstTemplateTemplateParmPackStorage
51 ArgPack.Profile(ID, Context);
H A DTemplateBase.cpp248 void TemplateArgument::Profile(llvm::FoldingSetNodeID &ID, function in class:TemplateArgument
256 getAsType().Profile(ID);
260 getNullPtrType().Profile(ID);
286 getAsIntegral().Profile(ID);
287 getIntegralType().Profile(ID);
291 getAsExpr()->Profile(ID, Context, true);
297 Args.Args[I].Profile(ID, Context);
/external/clang/lib/StaticAnalyzer/Core/
H A DBlockCounter.cpp40 void Profile(llvm::FoldingSetNodeID &ID) const { function in class:__anon1394::CountKey
H A DBasicValueFactory.cpp23 void CompoundValData::Profile(llvm::FoldingSetNodeID& ID, QualType T, function in class:CompoundValData
25 T.Profile(ID);
29 void LazyCompoundValData::Profile(llvm::FoldingSetNodeID& ID, function in class:LazyCompoundValData
41 static inline void Profile(const SValData& X, llvm::FoldingSetNodeID& ID) { function in struct:llvm::FoldingSetTrait
42 X.first.Profile(ID);
48 static inline void Profile(const SValPair& X, llvm::FoldingSetNodeID& ID) { function in struct:llvm::FoldingSetTrait
49 X.first.Profile(ID);
50 X.second.Profile(ID);
77 X.Profile(ID);
112 CompoundValData::Profile(I
[all...]
/external/llvm/include/llvm/ProfileData/
H A DSampleProfWriter.h66 FunctionSamples &Profile = I.second; local
67 if (!write(FName, Profile))
73 /// \brief Profile writer factory. Create a new writer based on the value of
/external/mesa3d/src/egl/main/
H A Deglcontext.h58 EGLint Profile; member in struct:_egl_context
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dprofile.rb36 module Profile module in class:ANTLR3
37 =begin rdoc ANTLR3::Profile::ParserEvents
39 ANTLR3::Profile::ParserEvents expands basic debugging events for use by
95 unless const_defined?( :Profile )
96 Profile = Struct.new(
107 class Profile class in class:ANTLR3.Profile
131 report << '| ' << "ANTLR Rule Profile".center( 76 ) << " |\n"
186 =begin rdoc ANTLR3::Profile::Profiler
229 @profile = Profile.new
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp38 /// Profile - Used to gather unique data for the abbreviation folding set.
40 void DIEAbbrevData::Profile(FoldingSetNodeID &ID) const { function in class:DIEAbbrevData
51 /// Profile - Used to gather unique data for the abbreviation folding set.
53 void DIEAbbrev::Profile(FoldingSetNodeID &ID) const { function in class:DIEAbbrev
59 Data[i].Profile(ID);
/external/clang/include/clang/AST/
H A DNestedNameSpecifier.h213 void Profile(llvm::FoldingSetNodeID &ID) const { function in class:clang::NestedNameSpecifier
H A DCanonicalType.h182 void Profile(llvm::FoldingSetNodeID &ID) const { function in class:clang::CanQual
H A DTemplateName.h140 void Profile(llvm::FoldingSetNodeID &ID, ASTContext &Context);
142 static void Profile(llvm::FoldingSetNodeID &ID,
319 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::TemplateName
355 void Profile(llvm::FoldingSetNodeID &ID);
357 static void Profile(llvm::FoldingSetNodeID &ID,
420 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::QualifiedTemplateName
421 Profile(ID, getQualifier(), hasTemplateKeyword(), getTemplateDecl());
424 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, function in class:clang::QualifiedTemplateName
518 void Profile(llvm::FoldingSetNodeID &ID) { function in class:clang::DependentTemplateName
520 Profile(I
525 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, function in class:clang::DependentTemplateName
532 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, function in class:clang::DependentTemplateName
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DPthreadLockChecker.cpp47 void Profile(llvm::FoldingSetNodeID &ID) const { function in struct:__anon1365::LockState
H A DSimpleStreamChecker.cpp45 void Profile(llvm::FoldingSetNodeID &ID) const { function in struct:__anon1376::StreamState
H A DTestAfterDivZeroChecker.cpp51 void Profile(llvm::FoldingSetNodeID &ID) const { function in class:__anon1381::ZeroState
68 void Profile(llvm::FoldingSetNodeID &ID) const override {
/external/deqp/framework/opengl/
H A DgluRenderContext.hpp47 enum Profile enum in namespace:glu
50 PROFILE_CORE, //!< OpenGL Core Profile
51 PROFILE_COMPATIBILITY, //!< OpenGL Compatibility Profile
74 ApiType (int major, int minor, Profile profile) : m_bits(pack(major, minor, profile)) {}
78 Profile getProfile (void) const { return Profile((m_bits>>PROFILE_SHIFT) & ((1u<<PROFILE_BITS)-1u)); }
94 static deUint32 pack (int major, int minor, Profile profile);
111 inline deUint32 ApiType::pack (int major, int minor, Profile profile)
142 ContextType (int major, int minor, Profile profile, ContextFlags flags = ContextFlags(0));
163 inline ContextType::ContextType (int major, int minor, Profile profil
[all...]
/external/llvm/include/llvm/ADT/
H A DImmutableList.h43 static inline void Profile(FoldingSetNodeID& ID, const T& H, function in class:llvm::ImmutableListImpl
49 void Profile(FoldingSetNodeID& ID) { function in class:llvm::ImmutableListImpl
50 Profile(ID, Head, Tail);
134 void Profile(FoldingSetNodeID& ID) const { function in class:llvm::ImmutableList
167 // Profile the new list to see if it already exists in our cache.
172 ListTy::Profile(ID, Head, TailImpl);
/external/llvm/lib/IR/
H A DAttributeImpl.h67 void Profile(FoldingSetNodeID &ID) const { function in class:llvm::AttributeImpl
69 Profile(ID, getKindAsEnum(), 0);
71 Profile(ID, getKindAsEnum(), getValueAsInt());
73 Profile(ID, getKindAsString(), getValueAsString());
75 static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind, function in class:llvm::AttributeImpl
80 static void Profile(FoldingSetNodeID &ID, StringRef Kind, StringRef Values) { function in class:llvm::AttributeImpl
175 void Profile(FoldingSetNodeID &ID) const { function in class:llvm::AttributeSetNode
176 Profile(ID, makeArrayRef(begin(), end()));
178 static void Profile(FoldingSetNodeID &ID, ArrayRef<Attribute> AttrList) { function in class:llvm::AttributeSetNode
180 AttrList[I].Profile(I
253 void Profile(FoldingSetNodeID &ID) const { function in class:llvm::AttributeSetImpl
256 static void Profile(FoldingSetNodeID &ID, function in class:llvm::AttributeSetImpl
[all...]

Completed in 692 milliseconds

123