Searched defs:v8Value (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/
H A DScriptObject.cpp56 ASSERT(v8Value()->IsObject());
57 return v8::Local<v8::Object>(v8::Object::Cast(*v8Value()));
63 scope.global()->Set(v8::String::New(name), value.v8Value());
86 v8::Local<v8::Value> v8Value = scope.global()->Get(v8::String::New(name)); local
87 if (v8Value.IsEmpty())
90 if (!v8Value->IsObject())
93 value = ScriptObject(scriptState, v8::Handle<v8::Object>(v8::Object::Cast(*v8Value)));
H A DOptionsObject.cpp68 v8::Local<v8::Value> v8Value; local
69 if (!getKey(key, v8Value))
72 v8::Local<v8::Boolean> v8Bool = v8Value->ToBoolean();
81 v8::Local<v8::Value> v8Value; local
82 if (!getKey(key, v8Value))
85 v8::Local<v8::Int32> v8Int32 = v8Value->ToInt32();
94 v8::Local<v8::Value> v8Value; local
95 if (!getKey(key, v8Value))
102 value = v8ValueToWebCoreString(v8Value);
108 v8::Local<v8::Value> v8Value; local
128 v8::Local<v8::Value> v8Value; local
[all...]
H A DIDBBindingUtilities.cpp58 bool getValueFrom(T indexOrName, v8::Handle<v8::Value>& v8Value) argument
60 v8::Local<v8::Object> object = v8Value->ToObject();
63 v8Value = object->Get(indexOrName);
68 bool setValue(v8::Handle<v8::Value>& v8Object, T indexOrName, const v8::Handle<v8::Value>& v8Value) argument
72 return object->Set(indexOrName, v8Value);
88 bool set(v8::Handle<v8::Value>& object, const IDBKeyPathElement& keyPathElement, const v8::Handle<v8::Value>& v8Value) argument
92 return object->IsArray() && setValue(object, keyPathElement.index, v8Value);
94 return object->IsObject() && setValue(object, v8String(keyPathElement.identifier), v8Value);
138 v8::Handle<v8::Value> v8Value(value->deserialize());
139 v8::Handle<v8::Value> v8Key(getNthValueOnKeyPath(v8Value, keyPat
[all...]
H A DScriptValue.h155 v8::Handle<v8::Value> v8Value() const { return m_value; } function in class:WebCore::ScriptValue
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8StorageCustom.cpp95 static v8::Handle<v8::Value> storageSetter(v8::Local<v8::String> v8Name, v8::Local<v8::Value> v8Value, const v8::AccessorInfo& info) argument
99 String value = toWebCoreString(v8Value);
103 return v8Value;
114 return v8Value;

Completed in 262 milliseconds