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

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptProfile.h 44 static PassRefPtrWillBeRawPtr<ScriptProfile> create(v8::CpuProfile* profile, double idleTime)
62 ScriptProfile(v8::CpuProfile* profile, double idleTime)
68 v8::CpuProfile* m_profile;
  /external/chromium_org/v8/test/cctest/
profiler-extension.h 46 static v8::CpuProfile* last_profile;
profiler-extension.cc 37 v8::CpuProfile* ProfilerExtension::last_profile = NULL;
test-cpu-profiler.cc 40 using i::CpuProfile;
227 CpuProfile* profile = profiles->StopProfiling("");
292 CpuProfile* profile = profiles->StopProfiling("");
337 const v8::CpuProfile* v8profile) {
339 const i::CpuProfile* profile =
340 reinterpret_cast<const i::CpuProfile*>(v8profile);
359 v8::CpuProfile* p1 = cpu_profiler->StopProfiling(name1);
368 v8::CpuProfile* p2 = cpu_profiler->StopProfiling(name2);
374 v8::CpuProfile* p3 = cpu_profiler->StopProfiling(name3);
397 const v8::CpuProfile* profile = cpu_profiler->StopProfiling(profile_name)
    [all...]
test-profile-generator.cc 40 using i::CpuProfile;
440 CpuProfile* profile = profiles.StopProfiling("");
503 CpuProfile* profile = profiles.StopProfiling("");
532 CpuProfile* profile = profiles.StopProfiling("");
569 CpuProfile* profile = profiler->GetProfile(0);
648 const v8::CpuProfile* profile = i::ProfilerExtension::last_profile;
756 const v8::CpuProfile* profile = i::ProfilerExtension::last_profile;
  /external/chromium_org/v8/src/
profile-generator.h 174 class CpuProfile {
176 CpuProfile(const char* title, bool record_samples);
205 DISALLOW_COPY_AND_ASSIGN(CpuProfile);
261 CpuProfile* StopProfiling(const char* title);
262 List<CpuProfile*>* profiles() { return &finished_profiles_; }
276 void RemoveProfile(CpuProfile* profile);
296 List<CpuProfile*> finished_profiles_;
299 List<CpuProfile*> current_profiles_;
cpu-profiler.h 22 class CpuProfile;
206 CpuProfile* StopProfiling(const char* title);
207 CpuProfile* StopProfiling(String* title);
209 CpuProfile* GetProfile(int index);
211 void DeleteProfile(CpuProfile* profile);
profile-generator.cc 332 CpuProfile::CpuProfile(const char* title, bool record_samples)
339 void CpuProfile::AddPath(TimeTicks timestamp, const Vector<CodeEntry*>& path) {
348 void CpuProfile::CalculateTotalTicksAndSamplingRate() {
353 void CpuProfile::Print() {
455 static void DeleteCpuProfile(CpuProfile** profile_ptr) {
481 current_profiles_.Add(new CpuProfile(title, record_samples));
487 CpuProfile* CpuProfilesCollection::StopProfiling(const char* title) {
489 CpuProfile* profile = NULL;
515 void CpuProfilesCollection::RemoveProfile(CpuProfile* profile)
    [all...]
cpu-profiler.cc 152 CpuProfile* CpuProfiler::GetProfile(int index) {
163 void CpuProfiler::DeleteProfile(CpuProfile* profile) {
459 CpuProfile* CpuProfiler::StopProfiling(const char* title) {
462 CpuProfile* result = profiles_->StopProfiling(title);
470 CpuProfile* CpuProfiler::StopProfiling(String* title) {
api.cc     [all...]
  /external/chromium_org/v8/include/
v8-profiler.h 74 * CpuProfile contains a CPU profile in a form of top-down call tree
77 class V8_EXPORT CpuProfile {
160 CpuProfile* StopProfiling(Handle<String> title);
164 const CpuProfile* StopCpuProfiling(Handle<String> title));
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptProfiler.cpp 82 v8::CpuProfile* profile = profiler->StopProfiling(v8String(isolate, title));

Completed in 392 milliseconds