OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
389
class
ProfileGenerator
{
391
explicit
ProfileGenerator
(CpuProfilesCollection* profiles);
442
DISALLOW_COPY_AND_ASSIGN(
ProfileGenerator
);
[
all
...]
profile-generator.cc
826
const char* const
ProfileGenerator
::kAnonymousFunctionName =
828
const char* const
ProfileGenerator
::kProgramEntryName =
830
const char* const
ProfileGenerator
::kGarbageCollectorEntryName =
834
ProfileGenerator
::
ProfileGenerator
(CpuProfilesCollection* profiles)
844
void
ProfileGenerator
::RecordTickSample(const TickSample& sample) {
[
all
...]
Completed in 1106 milliseconds