OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ScriptValue
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/bindings/js/
ScriptValue.h
47
class
ScriptValue
{
49
ScriptValue
() { }
50
ScriptValue
(JSC::JSGlobalData& globalData, JSC::JSValue value) : m_value(globalData, value) {}
51
virtual ~
ScriptValue
() {}
56
bool isEqual(ScriptState*, const
ScriptValue
&) const;
63
bool operator==(const
ScriptValue
& other) const { return m_value == other.m_value; }
66
static
ScriptValue
deserialize(ScriptState*, SerializedScriptValue*, SerializationErrorMode = Throwing);
68
static
ScriptValue
undefined();
/external/webkit/Source/WebCore/bindings/v8/
ScriptValue.h
49
class
ScriptValue
{
51
ScriptValue
() {}
53
ScriptValue
(v8::Handle<v8::Value> value)
60
V8GCController::registerGlobalHandle(
SCRIPTVALUE
, this, m_value);
64
ScriptValue
(const
ScriptValue
& value)
71
V8GCController::registerGlobalHandle(
SCRIPTVALUE
, this, m_value);
75
ScriptValue
& operator=(const
ScriptValue
& value)
87
V8GCController::registerGlobalHandle(
SCRIPTVALUE
, this, m_value)
[
all
...]
Completed in 36 milliseconds