OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScriptProfileNode
(Results
1 - 10
of
10
) sorted by null
/external/webkit/Source/WebCore/bindings/v8/
ScriptProfileNode.h
42
class
ScriptProfileNode
;
44
typedef Vector<RefPtr<
ScriptProfileNode
> > ProfileNodesList;
46
class
ScriptProfileNode
: public RefCounted<
ScriptProfileNode
> {
48
static PassRefPtr<
ScriptProfileNode
> create(const v8::CpuProfileNode* profileNode)
50
return adoptRef(new
ScriptProfileNode
(profileNode));
52
virtual ~
ScriptProfileNode
() {}
65
ScriptProfileNode
(const v8::CpuProfileNode* profileNode)
ScriptProfileNode.cpp
41
String
ScriptProfileNode
::functionName() const
46
String
ScriptProfileNode
::url() const
51
unsigned long
ScriptProfileNode
::lineNumber() const
56
double
ScriptProfileNode
::totalTime() const
61
double
ScriptProfileNode
::selfTime() const
66
unsigned long
ScriptProfileNode
::numberOfCalls() const
71
ProfileNodesList
ScriptProfileNode
::children() const
76
result[i] =
ScriptProfileNode
::create(m_profileNode->GetChild(i));
80
bool
ScriptProfileNode
::visible() const
85
unsigned long
ScriptProfileNode
::callUID() cons
[
all
...]
ScriptProfile.h
35
#include "
ScriptProfileNode
.h"
55
PassRefPtr<
ScriptProfileNode
> head() const;
ScriptProfile.cpp
58
PassRefPtr<
ScriptProfileNode
> ScriptProfile::head() const
60
return
ScriptProfileNode
::create(m_profile->GetTopDownRoot());
/external/webkit/Source/WebCore/bindings/js/
ScriptProfileNode.h
35
typedef JSC::ProfileNode
ScriptProfileNode
;
ScriptProfile.h
31
#include "
ScriptProfileNode
.h"
52
ScriptProfileNode
* head() const;
ScriptProfile.cpp
64
ScriptProfileNode
* ScriptProfile::head() const
/external/webkit/Source/WebCore/inspector/
ScriptProfile.idl
32
readonly attribute
ScriptProfileNode
head;
ScriptProfileNode.idl
29
interface [Conditional=JAVASCRIPT_DEBUGGER, OmitConstructor]
ScriptProfileNode
{
/external/webkit/Source/WebCore/bindings/v8/custom/
V8ScriptProfileNodeCustom.cpp
34
#include "
ScriptProfileNode
.h"
44
INC_STATS("DOM.
ScriptProfileNode
.childrenAccessorGetter");
45
ScriptProfileNode
* imp = V8ScriptProfileNode::toNative(info.Holder());
57
INC_STATS("DOM.
ScriptProfileNode
.callUIDAccessorGetter");
58
ScriptProfileNode
* imp = V8ScriptProfileNode::toNative(info.Holder());
62
v8::Handle<v8::Value> toV8(
ScriptProfileNode
* impl)
Completed in 69 milliseconds