OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ProfilerExtension
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/v8/test/cctest/
test-profile-generator.cc
541
class
ProfilerExtension
: public v8::Extension {
543
ProfilerExtension
() : v8::Extension("v8/profiler", kSource) { }
554
const char*
ProfilerExtension
::kSource =
558
v8::Handle<v8::FunctionTemplate>
ProfilerExtension
::GetNativeFunctionTemplate(
561
return v8::FunctionTemplate::New(
ProfilerExtension
::StartProfiling);
563
return v8::FunctionTemplate::New(
ProfilerExtension
::StopProfiling);
571
void
ProfilerExtension
::StartProfiling(
582
void
ProfilerExtension
::StopProfiling(
593
static
ProfilerExtension
kProfilerExtension;
/external/v8/test/cctest/
test-profile-generator.cc
693
class
ProfilerExtension
: public v8::Extension {
695
ProfilerExtension
() : v8::Extension("v8/profiler", kSource) { }
705
const char*
ProfilerExtension
::kSource =
709
v8::Handle<v8::FunctionTemplate>
ProfilerExtension
::GetNativeFunction(
712
return v8::FunctionTemplate::New(
ProfilerExtension
::StartProfiling);
714
return v8::FunctionTemplate::New(
ProfilerExtension
::StopProfiling);
722
v8::Handle<v8::Value>
ProfilerExtension
::StartProfiling(
732
v8::Handle<v8::Value>
ProfilerExtension
::StopProfiling(
742
static
ProfilerExtension
kProfilerExtension;
Completed in 626 milliseconds