HomeSort by relevance Sort by last modified time
    Searched defs:ProfileGenerator (Results 1 - 4 of 4) 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...]
  /external/v8/src/
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...]

Completed in 63 milliseconds