Searched refs:v8Value (Results 1 - 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/
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 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 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 DScriptFunctionCall.cpp131 args[i] = m_arguments[i].v8Value();
164 args[i] = m_arguments[i].v8Value();
190 ASSERT(m_function.v8Value()->IsFunction());
194 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(m_function.v8Value());
198 args[i] = m_arguments[i].v8Value();
H A DWorkerScriptController.cpp105 throwError(*exception.v8Value());
H A DScriptValue.h155 v8::Handle<v8::Value> v8Value() const { return m_value; } function in class:WebCore::ScriptValue
H A DScriptValue.cpp44 return SerializedScriptValue::create(v8Value());
H A DV8Binding.cpp591 v8::Local<v8::Value> v8Value(v8::Local<v8::Value>::New(value));
592 if (!v8Value->IsArray())
596 v8::Local<v8::Array> v8Array = v8::Local<v8::Array>::Cast(v8Value);
/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;
H A DV8InjectedScriptHostCustom.cpp56 return V8Node::toNative(v8::Handle<v8::Object>::Cast(value.v8Value()));
/external/webkit/Source/WebKit/chromium/src/
H A DWebFrameImpl.cpp840 ScriptSourceCode(source.code, source.url, position)).v8Value();

Completed in 446 milliseconds