Searched refs:Profile (Results 1 - 25 of 48) sorted by relevance

12

/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DAPSInt.cpp20 void APSInt::Profile(FoldingSetNodeID& ID) const { function in class:APSInt
22 APInt::Profile(ID);
/macosx-10.10.1/llvmCore-3425.0.34/lib/VMCore/
H A DAttributesImpl.h30 void Profile(FoldingSetNodeID &ID) const { function in class:llvm::AttributesImpl
31 Profile(ID, Bits);
33 static void Profile(FoldingSetNodeID &ID, uint64_t Bits) { function in class:llvm::AttributesImpl
H A DAttributes.cpp185 void Profile(FoldingSetNodeID &ID) const { function in class:llvm::AttributeListImpl
186 Profile(ID, Attrs);
188 static void Profile(FoldingSetNodeID &ID, ArrayRef<AttributeWithIndex> Attrs){ function in class:llvm::AttributeListImpl
219 AttributeListImpl::Profile(ID, Attrs);
/macosx-10.10.1/JavaScriptCore-7600.1.17/profiler/
H A DProfile.h36 class JS_EXPORT_PRIVATE Profile : public RefCounted<Profile> { class in namespace:JSC
38 static PassRefPtr<Profile> create(const String& title, unsigned uid);
39 virtual ~Profile();
60 Profile(const String& title, unsigned uid);
H A DProfile.cpp27 #include "Profile.h"
34 PassRefPtr<Profile> Profile::create(const String& title, unsigned uid)
36 return adoptRef(new Profile(title, uid));
39 Profile::Profile(const String& title, unsigned uid) function in class:JSC::Profile
49 Profile::~Profile()
53 void Profile::forEach(void (ProfileNode::*function)())
70 void Profile
[all...]
H A DProfileGenerator.h29 #include "Profile.h"
38 class Profile;
48 PassRefPtr<Profile> profile() const { return m_profile; }
70 RefPtr<Profile> m_profile;
H A DLegacyProfiler.h32 #include "Profile.h"
54 JS_EXPORT_PRIVATE PassRefPtr<Profile> stopProfiling(ExecState*, const WTF::String& title);
H A DLegacyProfiler.cpp40 #include "Profile.h"
66 // Check if we currently have a Profile for this global ExecState and title.
67 // If so return early and don't create a new Profile.
81 PassRefPtr<Profile> LegacyProfiler::stopProfiling(ExecState* exec, const String& title)
91 RefPtr<Profile> returnProfile = profileGenerator->profile();
H A DProfileGenerator.cpp36 #include "Profile.h"
52 m_profile = Profile::create(title, uid);
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DProfile.js26 WebInspector.Profile = function(topDownRootNodes, idleTime)
39 WebInspector.Profile.prototype = {
40 constructor: WebInspector.Profile,
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/agents/
H A DInspectorProfilerAgent.h45 class Profile;
75 static PassRefPtr<TypeBuilder::Profiler::CPUProfile> buildProfileInspectorObject(const JSC::Profile*);
89 PassRefPtr<JSC::Profile> stopProfiling(const String& title = String(), JSC::ExecState* = nullptr);
97 void addProfile(PassRefPtr<JSC::Profile>);
103 PassRefPtr<TypeBuilder::Profiler::ProfileHeader> createProfileHeader(const JSC::Profile&);
107 HashMap<unsigned, RefPtr<JSC::Profile>> m_profiles;
H A DInspectorProfilerAgent.cpp37 #include "Profile.h"
78 void InspectorProfilerAgent::addProfile(PassRefPtr<JSC::Profile> prpProfile)
80 RefPtr<JSC::Profile> profile = prpProfile;
87 PassRefPtr<TypeBuilder::Profiler::ProfileHeader> InspectorProfilerAgent::createProfileHeader(const JSC::Profile& profile)
180 PassRefPtr<TypeBuilder::Profiler::CPUProfile> InspectorProfilerAgent::buildProfileInspectorObject(const JSC::Profile* profile)
200 *errorString = ASCIILiteral("Profile wasn't found");
266 PassRefPtr<JSC::Profile> InspectorProfilerAgent::stopProfiling(const String& title, JSC::ExecState* exec)
277 RefPtr<JSC::Profile> profile = JSC::LegacyProfiler::profiler()->stopProfiling(exec, title);
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DConsoleTypes.h56 Profile, member in class:JSC::MessageType
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/
H A DJSConsoleClient.cpp105 m_consoleAgent->addMessageToConsole(MessageSource::ConsoleAPI, MessageType::Profile, MessageLevel::Debug, resolvedTitle, callStack);
113 RefPtr<JSC::Profile> profile = m_profilerAgent->stopProfiling(title);
119 m_consoleAgent->addMessageToConsole(MessageSource::ConsoleAPI, MessageType::Profile, MessageLevel::Debug, message, callStack);
H A DConsoleMessage.cpp165 case MessageType::Profile: return Inspector::TypeBuilder::Console::ConsoleMessage::Type::Profile;
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ADT/
H A DFoldingSet.h39 /// FoldingSetNode. The node class must also define a Profile method used to
40 /// establish the unique bits of data for the node. The Profile method is
54 /// void Profile(FoldingSetNodeID &ID) const {
211 static void Profile(const T &X, FoldingSetNodeID &ID) { function in struct:llvm::DefaultFoldingSetTrait
212 X.Profile(ID);
214 static void Profile(T &X, FoldingSetNodeID &ID) { function in struct:llvm::DefaultFoldingSetTrait
215 X.Profile(ID);
220 // just calls Profile and does a regular comparison. Implementations
227 // just calls Profile and does a regular hash computation.
235 /// The default behavior is to invoke a 'Profile' metho
248 static void Profile(T &X, FoldingSetNodeID &ID, Ctx Context) { function in struct:llvm::DefaultContextualFoldingSetTrait
759 void Profile(FoldingSetNodeID &ID) { FoldingSetTrait<T>::Profile(data, ID); } function in class:llvm::FoldingSetNodeWrapper
779 void Profile(FoldingSetNodeID &ID) const { function in class:llvm::FastFoldingSetNode
788 static inline void Profile(T *X, FoldingSetNodeID &ID) { function in struct:llvm::FoldingSetTrait
[all...]
H A DImmutableMap.h52 static inline void Profile(FoldingSetNodeID& ID, value_type_ref V) { function in struct:llvm::ImutKeyValueInfo
53 ImutContainerInfo<T>::Profile(ID, V.first);
54 ImutContainerInfo<S>::Profile(ID, V.second);
254 static inline void Profile(FoldingSetNodeID& ID, const ImmutableMap& M) { function in class:llvm::ImmutableMap
258 inline void Profile(FoldingSetNodeID& ID) const { function in class:llvm::ImmutableMap
259 return Profile(ID,*this);
407 static inline void Profile(FoldingSetNodeID& ID, const ImmutableMapRef &M) { function in class:llvm::ImmutableMapRef
411 inline void Profile(FoldingSetNodeID& ID) const { function in class:llvm::ImmutableMapRef
412 return Profile(ID, *this);
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);
H A DImmutableSet.h305 ImutInfo::Profile(ID,V);
811 // Trait classes for Profile information.
822 static inline void Profile(FoldingSetNodeID& ID, value_type_ref X) { function in struct:llvm::ImutProfileInfo
823 FoldingSetTrait<T>::Profile(X,ID);
827 /// Profile traits for integers.
833 static inline void Profile(FoldingSetNodeID& ID, value_type_ref X) { function in struct:llvm::ImutProfileInteger
861 static inline void Profile(FoldingSetNodeID &ID, value_type_ref X) { function in struct:llvm::ImutProfileInfo
1080 static inline void Profile(FoldingSetNodeID& ID, const ImmutableSet& S) { function in class:llvm::ImmutableSet
1084 inline void Profile(FoldingSetNodeID& ID) const { function in class:llvm::ImmutableSet
1085 return Profile(I
1206 static inline void Profile(FoldingSetNodeID& ID, const ImmutableSetRef& S) { function in class:llvm::ImmutableSetRef
1210 inline void Profile(FoldingSetNodeID& ID) const { function in class:llvm::ImmutableSetRef
[all...]
H A DImmutableIntervalMap.h79 static void Profile(FoldingSetNodeID &ID, value_type_ref V) { function in struct:llvm::ImutIntervalInfo
82 ImutProfileInfo<T>::Profile(ID, V.second);
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DTimelineIcons.css71 content: -webkit-image-set(url(../Images/Profile.png) 1x, url(../Images/Profile@2x.png) 2x);
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DMachineMemOperand.h174 /// Profile - Gather unique data for the object.
176 void Profile(FoldingSetNodeID &ID) const;
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/AsmPrinter/
H A DDIE.cpp32 /// Profile - Used to gather unique data for the abbreviation folding set.
34 void DIEAbbrevData::Profile(FoldingSetNodeID &ID) const { function in class:DIEAbbrevData
43 /// Profile - Used to gather unique data for the abbreviation folding set.
45 void DIEAbbrev::Profile(FoldingSetNodeID &ID) const { function in class:DIEAbbrev
51 Data[i].Profile(ID);
H A DDIE.h46 /// Profile - Used to gather unique data for the abbreviation folding set.
48 void Profile(FoldingSetNodeID &ID) const;
95 /// Profile - Used to gather unique data for the abbreviation folding set.
97 void Profile(FoldingSetNodeID &ID) const;
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/
H A DMetadata.h159 /// Profile - calculate a unique identifier for this MDNode to collapse
161 void Profile(FoldingSetNodeID &ID) const;

Completed in 202 milliseconds

12