Searched refs:v8Value (Results 1 – 12 of 12) sorted by relevance
/external/webkit/Source/WebCore/bindings/v8/ |
D | OptionsObject.cpp | 68 v8::Local<v8::Value> v8Value; in getKeyBool() local 69 if (!getKey(key, v8Value)) in getKeyBool() 72 v8::Local<v8::Boolean> v8Bool = v8Value->ToBoolean(); in getKeyBool() 81 v8::Local<v8::Value> v8Value; in getKeyInt32() local 82 if (!getKey(key, v8Value)) in getKeyInt32() 85 v8::Local<v8::Int32> v8Int32 = v8Value->ToInt32(); in getKeyInt32() 94 v8::Local<v8::Value> v8Value; in getKeyString() local 95 if (!getKey(key, v8Value)) in getKeyString() 102 value = v8ValueToWebCoreString(v8Value); in getKeyString() 108 v8::Local<v8::Value> v8Value; in getKeyDOMStringList() local [all …]
|
D | IDBBindingUtilities.cpp | 58 bool getValueFrom(T indexOrName, v8::Handle<v8::Value>& v8Value) in getValueFrom() argument 60 v8::Local<v8::Object> object = v8Value->ToObject(); in getValueFrom() 63 v8Value = object->Get(indexOrName); in getValueFrom() 68 bool setValue(v8::Handle<v8::Value>& v8Object, T indexOrName, const v8::Handle<v8::Value>& v8Value) in setValue() argument 72 return object->Set(indexOrName, v8Value); in setValue() 88 …<v8::Value>& object, const IDBKeyPathElement& keyPathElement, const v8::Handle<v8::Value>& v8Value) in set() argument 92 return object->IsArray() && setValue(object, keyPathElement.index, v8Value); in set() 94 return object->IsObject() && setValue(object, v8String(keyPathElement.identifier), v8Value); in set() 138 v8::Handle<v8::Value> v8Value(value->deserialize()); in createIDBKeyFromSerializedValueAndKeyPath() local 139 v8::Handle<v8::Value> v8Key(getNthValueOnKeyPath(v8Value, keyPath, keyPath.size())); in createIDBKeyFromSerializedValueAndKeyPath() [all …]
|
D | ScriptObject.cpp | 56 ASSERT(v8Value()->IsObject()); in v8Object() 57 return v8::Local<v8::Object>(v8::Object::Cast(*v8Value())); in v8Object() 63 scope.global()->Set(v8::String::New(name), value.v8Value()); in set() 86 v8::Local<v8::Value> v8Value = scope.global()->Get(v8::String::New(name)); in get() local 87 if (v8Value.IsEmpty()) in get() 90 if (!v8Value->IsObject()) in get() 93 value = ScriptObject(scriptState, v8::Handle<v8::Object>(v8::Object::Cast(*v8Value))); in get()
|
D | ScriptFunctionCall.cpp | 131 args[i] = m_arguments[i].v8Value(); in call() 164 args[i] = m_arguments[i].v8Value(); in construct() 190 ASSERT(m_function.v8Value()->IsFunction()); in call() 194 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(m_function.v8Value()); in call() 198 args[i] = m_arguments[i].v8Value(); in call()
|
D | WorkerScriptController.cpp | 105 throwError(*exception.v8Value()); in setException()
|
D | ScriptValue.h | 155 v8::Handle<v8::Value> v8Value() const { return m_value; } in v8Value() function
|
D | V8Binding.cpp | 591 v8::Local<v8::Value> v8Value(v8::Local<v8::Value>::New(value)); in v8ValueToWebCoreDOMStringList() local 592 if (!v8Value->IsArray()) in v8ValueToWebCoreDOMStringList() 596 v8::Local<v8::Array> v8Array = v8::Local<v8::Array>::Cast(v8Value); in v8ValueToWebCoreDOMStringList()
|
D | ScriptValue.cpp | 44 return SerializedScriptValue::create(v8Value()); in serialize()
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
D | V8StorageCustom.cpp | 95 …:Value> storageSetter(v8::Local<v8::String> v8Name, v8::Local<v8::Value> v8Value, const v8::Access… in storageSetter() argument 99 String value = toWebCoreString(v8Value); in storageSetter() 103 return v8Value; in storageSetter() 114 return v8Value; in storageSetter()
|
D | V8InjectedScriptHostCustom.cpp | 56 return V8Node::toNative(v8::Handle<v8::Object>::Cast(value.v8Value())); in scriptValueAsNode()
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebFrameImpl.cpp | 840 ScriptSourceCode(source.code, source.url, position)).v8Value(); in executeScriptAndReturnValue()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2009-06-16 | 35920 (WebCore::ScriptValue::v8Value):
|