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

  /external/chromium/base/debug/
profiler.h 21 void StartProfiling(const std::string& name);
profiler.cc 23 void StartProfiling(const std::string& name) {
48 void StartProfiling(const std::string& name) {
  /external/v8/test/cctest/
test-cpu-profiler.cc 89 profiles.StartProfiling("", 1);
153 profiles.StartProfiling("", 1);
233 CpuProfiler::StartProfiling("1");
235 CpuProfiler::StartProfiling("1");
246 profiles.StartProfiling("", 1);
292 CpuProfiler::StartProfiling("1");
297 CpuProfiler::StartProfiling("1");
298 CpuProfiler::StartProfiling("2");
306 CpuProfiler::StartProfiling("1");
307 CpuProfiler::StartProfiling("2")
    [all...]
test-profile-generator.cc 588 profiles.StartProfiling("", 1);
701 static v8::Handle<v8::Value> StartProfiling(const v8::Arguments& args);
709 "native function startProfiling();"
714 if (name->Equals(v8::String::New("startProfiling"))) {
715 return v8::FunctionTemplate::New(ProfilerExtension::StartProfiling);
725 v8::Handle<v8::Value> ProfilerExtension::StartProfiling(
728 v8::CpuProfiler::StartProfiling(args[0].As<v8::String>());
730 v8::CpuProfiler::StartProfiling(v8::String::New(""));
775 "function c() { startProfiling(); }\n"
793 // startProfiling
    [all...]
  /external/chromium/chrome/common/
profiling.cc 78 base::debug::StartProfiling(GetProfileName());
  /external/webkit/Source/WebCore/bindings/v8/
ScriptProfiler.cpp 47 v8::CpuProfiler::StartProfiling(v8String(title));
  /external/v8/src/
cpu-profiler.h 223 static void StartProfiling(const char* title);
224 static void StartProfiling(String* title);
cpu-profiler.cc 278 void CpuProfiler::StartProfiling(const char* title) {
284 void CpuProfiler::StartProfiling(String* title) {
487 if (profiles_->StartProfiling(title, next_profile_uid_++)) {
profile-generator.h 289 bool StartProfiling(const char* title, unsigned uid);
290 bool StartProfiling(String* title, unsigned uid);
    [all...]
profile-generator.cc 568 bool CpuProfilesCollection::StartProfiling(const char* title, unsigned uid) {
588 bool CpuProfilesCollection::StartProfiling(String* title, unsigned uid) {
589 return StartProfiling(GetName(title), uid);
    [all...]
api.cc     [all...]
  /external/v8/include/
v8-profiler.h 185 static void StartProfiling(Handle<String> title);

Completed in 623 milliseconds