HomeSort by relevance Sort by last modified time
    Searched refs:ProfileGenerator (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/JavaScriptCore/profiler/
ProfileGenerator.h 43 class ProfileGenerator : public RefCounted<ProfileGenerator> {
45 static PassRefPtr<ProfileGenerator> create(ExecState*, const UString& title, unsigned uid);
62 typedef void (ProfileGenerator::*ProfileFunction)(ExecState* callerOrHandlerCallFrame, const CallIdentifier& callIdentifier);
65 ProfileGenerator(ExecState*, const UString& title, unsigned uid);
ProfileGenerator.cpp 27 #include "ProfileGenerator.h"
43 PassRefPtr<ProfileGenerator> ProfileGenerator::create(ExecState* exec, const UString& title, unsigned uid)
45 return adoptRef(new ProfileGenerator(exec, title, uid));
48 ProfileGenerator::ProfileGenerator(ExecState* exec, const UString& title, unsigned uid)
58 void ProfileGenerator::addParentForConsoleStart(ExecState* exec)
70 const UString& ProfileGenerator::title() const
75 void ProfileGenerator::willExecute(ExecState* callerCallFrame, const CallIdentifier& callIdentifier)
90 void ProfileGenerator::didExecute(ExecState* callerCallFrame, const CallIdentifier& callIdentifier
    [all...]
Profiler.cpp 40 #include "ProfileGenerator.h"
72 ProfileGenerator* profileGenerator = m_currentProfiles[i].get();
73 if (profileGenerator->origin() == origin && profileGenerator->title() == title)
78 RefPtr<ProfileGenerator> profileGenerator = ProfileGenerator::create(exec, title, ++ProfilesUID);
79 m_currentProfiles.append(profileGenerator);
86 ProfileGenerator* profileGenerator = m_currentProfiles[i].get()
    [all...]
Profiler.h 44 class ProfileGenerator;
70 const Vector<RefPtr<ProfileGenerator> >& currentProfiles() { return m_currentProfiles; };
73 Vector<RefPtr<ProfileGenerator> > m_currentProfiles;
  /external/v8/src/
profile-generator-inl.h 42 return strlen(name) > 0 ? name : ProfileGenerator::kAnonymousFunctionName;
81 CodeEntry* ProfileGenerator::EntryForVMState(StateTag tag) {
cpu-profiler.h 44 class ProfileGenerator;
127 explicit ProfilerEventsProcessor(ProfileGenerator* generator);
179 ProfileGenerator* generator_;
270 ProfileGenerator* generator_;
cpu-profiler.cc 48 ProfilerEventsProcessor::ProfilerEventsProcessor(ProfileGenerator* generator)
492 generator_ = new ProfileGenerator(profiles_);
profile-generator.h 393 class ProfileGenerator {
395 explicit ProfileGenerator(CpuProfilesCollection* profiles);
446 DISALLOW_COPY_AND_ASSIGN(ProfileGenerator);
    [all...]
profile-generator.cc 863 const char* const ProfileGenerator::kAnonymousFunctionName =
865 const char* const ProfileGenerator::kProgramEntryName =
867 const char* const ProfileGenerator::kGarbageCollectorEntryName =
871 ProfileGenerator::ProfileGenerator(CpuProfilesCollection* profiles)
881 void ProfileGenerator::RecordTickSample(const TickSample& sample) {
    [all...]
  /external/v8/test/cctest/
test-cpu-profiler.cc 14 using i::ProfileGenerator;
22 ProfileGenerator generator(&profiles);
83 ProfileGenerator generator(&profiles);
144 ProfileGenerator generator(&profiles);
234 ProfileGenerator generator(&profiles);
test-profile-generator.cc 17 using i::ProfileGenerator;
586 ProfileGenerator generator(&profiles);

Completed in 325 milliseconds