HomeSort by relevance Sort by last modified time
    Searched refs:v8Value (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/WebCore/bindings/v8/
OptionsObject.cpp 68 v8::Local<v8::Value> v8Value;
69 if (!getKey(key, v8Value))
72 v8::Local<v8::Boolean> v8Bool = v8Value->ToBoolean();
81 v8::Local<v8::Value> v8Value;
82 if (!getKey(key, v8Value))
85 v8::Local<v8::Int32> v8Int32 = v8Value->ToInt32();
94 v8::Local<v8::Value> v8Value;
95 if (!getKey(key, v8Value))
102 value = v8ValueToWebCoreString(v8Value);
108 v8::Local<v8::Value> v8Value;
    [all...]
ScriptObject.cpp 56 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));
87 if (v8Value.IsEmpty())
90 if (!v8Value->IsObject())
93 value = ScriptObject(scriptState, v8::Handle<v8::Object>(v8::Object::Cast(*v8Value)));
IDBBindingUtilities.cpp 58 bool getValueFrom(T indexOrName, v8::Handle<v8::Value>& v8Value)
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)
72 return object->Set(indexOrName, v8Value);
88 bool set(v8::Handle<v8::Value>& object, const IDBKeyPathElement& keyPathElement, const v8::Handle<v8::Value>& v8Value)
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, keyPath, keyPath.size()))
    [all...]
ScriptFunctionCall.cpp 131 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();
WorkerScriptController.cpp 105 throwError(*exception.v8Value());
ScriptValue.h 155 v8::Handle<v8::Value> v8Value() const { return m_value; }
ScriptValue.cpp 44 return SerializedScriptValue::create(v8Value());
V8Binding.cpp 591 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/
V8StorageCustom.cpp 95 static v8::Handle<v8::Value> storageSetter(v8::Local<v8::String> v8Name, v8::Local<v8::Value> v8Value, const v8::AccessorInfo& info)
99 String value = toWebCoreString(v8Value);
103 return v8Value;
114 return v8Value;
V8InjectedScriptHostCustom.cpp 56 return V8Node::toNative(v8::Handle<v8::Object>::Cast(value.v8Value()));
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.cpp 840 ScriptSourceCode(source.code, source.url, position)).v8Value();
    [all...]

Completed in 300 milliseconds