OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:V8ScriptInstance
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/bindings/v8/
ScriptInstance.cpp
41
V8ScriptInstance
::
V8ScriptInstance
()
45
V8ScriptInstance
::
V8ScriptInstance
(v8::Handle<v8::Object> instance)
50
V8ScriptInstance
::~
V8ScriptInstance
()
55
v8::Persistent<v8::Object>
V8ScriptInstance
::instance()
60
void
V8ScriptInstance
::clear()
71
void
V8ScriptInstance
::set(v8::Handle<v8::Object> instance)
ScriptInstance.h
42
class
V8ScriptInstance
: public RefCounted<
V8ScriptInstance
> {
44
static PassRefPtr<
V8ScriptInstance
> create(v8::Handle<v8::Object> instance)
46
return adoptRef(new
V8ScriptInstance
(instance));
48
V8ScriptInstance
();
49
V8ScriptInstance
(v8::Handle<v8::Object>);
50
~
V8ScriptInstance
();
59
typedef RefPtr<
V8ScriptInstance
> ScriptInstance;
60
typedef PassRefPtr<
V8ScriptInstance
> PassScriptInstance;
Completed in 39 milliseconds