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

12

/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DDictionary.cpp137 v8::Local<v8::Value> v8Value; local
138 if (!getKey(key, v8Value))
141 v8::Local<v8::Boolean> v8Bool = v8Value->ToBoolean();
157 v8::Local<v8::Value> v8Value; local
158 if (!getKey(key, v8Value))
161 v8::Local<v8::Int32> v8Int32 = v8Value->ToInt32();
170 v8::Local<v8::Value> v8Value; local
171 if (!getKey(key, v8Value)) {
177 V8TRYCATCH_RETURN(v8::Local<v8::Number>, v8Number, v8Value->ToNumber(), false);
204 v8::Local<v8::Value> v8Value; local
217 v8::Local<v8::Value> v8Value; local
228 v8::Local<v8::Value> v8Value; local
246 v8::Local<v8::Value> v8Value; local
259 v8::Local<v8::Value> v8Value; local
272 v8::Local<v8::Value> v8Value; local
285 v8::Local<v8::Value> v8Value; local
298 v8::Local<v8::Value> v8Value; local
312 v8::Local<v8::Value> v8Value; local
330 v8::Local<v8::Value> v8Value; local
342 v8::Local<v8::Value> v8Value; local
355 v8::Local<v8::Value> v8Value; local
364 v8::Local<v8::Value> v8Value; local
388 v8::Local<v8::Value> v8Value; local
405 v8::Local<v8::Value> v8Value; local
416 v8::Local<v8::Value> v8Value; local
428 v8::Local<v8::Value> v8Value; local
440 v8::Local<v8::Value> v8Value; local
452 v8::Local<v8::Value> v8Value; local
464 v8::Local<v8::Value> v8Value; local
484 v8::Local<v8::Value> v8Value; local
496 v8::Local<v8::Value> v8Value; local
508 v8::Local<v8::Value> v8Value; local
520 v8::Local<v8::Value> v8Value; local
532 v8::Local<v8::Value> v8Value; local
557 v8::Local<v8::Value> v8Value; local
574 v8::Local<v8::Value> v8Value; local
590 v8::Local<v8::Value> v8Value; local
611 v8::Local<v8::Value> v8Value; local
628 v8::Local<v8::Value> v8Value; local
645 v8::Local<v8::Value> v8Value; local
662 v8::Local<v8::Value> v8Value; local
679 v8::Local<v8::Value> v8Value; local
[all...]
H A DScriptObject.cpp57 ASSERT(v8Value()->IsObject());
58 return v8::Handle<v8::Object>::Cast(v8Value());
71 v8::Local<v8::Value> v8Value = scope.global()->Get(v8AtomicString(scriptState->isolate(), name)); local
72 if (v8Value.IsEmpty())
75 if (!v8Value->IsObject())
78 value = ScriptObject(scriptState, v8::Handle<v8::Object>::Cast(v8Value));
H A DScriptPromiseResolver.cpp76 v8::Local<v8::Object> promise = m_promise.v8Value().As<v8::Object>();
87 V8PromiseCustom::resolve(m_promise.v8Value().As<v8::Object>(), value, m_isolate);
96 V8PromiseCustom::reject(m_promise.v8Value().As<v8::Object>(), value, m_isolate);
103 resolve(value.v8Value());
109 reject(value.v8Value());
H A DScriptPromise.h83 v8::Handle<v8::Value> v8Value() const function in class:WebCore::ScriptPromise
85 return m_promise.v8Value();
H A DScriptString.cpp43 v8::Handle<v8::String> a = v8::Handle<v8::String>::Cast(v8Value());
52 v8::Handle<v8::String> value = v8::Handle<v8::String>::Cast(v8Value());
H A DScriptValue.h116 v8::Handle<v8::Value> value = v8Value();
130 v8::Handle<v8::Value> value = v8Value();
139 v8::Handle<v8::Value> value = v8Value();
148 v8::Handle<v8::Value> value = v8Value();
162 v8::Handle<v8::Value> v8Value() const function in class:WebCore::ScriptValue
H A DIDBBindingUtilities.cpp200 static bool getValueFrom(T indexOrName, v8::Handle<v8::Value>& v8Value) argument
202 v8::Local<v8::Object> object = v8Value->ToObject();
205 v8Value = object->Get(indexOrName);
210 static bool setValue(v8::Handle<v8::Value>& v8Object, T indexOrName, const v8::Handle<v8::Value>& v8Value) argument
213 return object->Set(indexOrName, v8Value);
231 static bool set(v8::Handle<v8::Value>& object, const String& keyPathElement, const v8::Handle<v8::Value>& v8Value, v8::Isolate* isolate) argument
233 return canSet(object, keyPathElement) && setValue(object, v8String(isolate, keyPathElement), v8Value);
295 v8::Handle<v8::Value> v8Value(value.v8Value());
296 v8::Handle<v8::Value> v8Key(getNthValueOnKeyPath(v8Value, keyPathElement
[all...]
H A DDictionary.h290 v8::Local<v8::Value> v8Value; local
291 if (!getKey(key, v8Value))
295 value = IntegralTypeTraits<T>::toIntegral(v8Value, NormalConversion, ok);
299 V8TRYCATCH_RETURN(v8::Local<v8::Number>, v8Number, v8Value->ToNumber(), false);
315 v8::Local<v8::Value> v8Value;
316 getKey(key, v8Value);
317 if (context.isNullable() && WebCore::isUndefinedOrNull(v8Value))
H A DScriptFunctionCall.cpp139 info[i] = m_arguments[i].v8Value();
174 info[i] = m_arguments[i].v8Value();
196 ASSERT(m_function.v8Value()->IsFunction());
201 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(m_function.v8Value());
205 info[i] = m_arguments[i].v8Value();
H A DScriptValue.cpp51 v8::Handle<v8::Value> string = v8Value();
61 v8::Handle<v8::String> string = v8Value()->ToString();
126 return v8ToJSONValue(v8Value(), JSONValue::maxDepth, scriptState->isolate());
H A DV8Binding.h435 Vector<RefPtr<T> > toRefPtrNativeArrayUnchecked(v8::Local<v8::Value> v8Value, uint32_t length, v8::Isolate* isolate, bool* success = 0) argument
439 v8::Local<v8::Object> object = v8::Local<v8::Object>::Cast(v8Value);
462 v8::Local<v8::Value> v8Value(v8::Local<v8::Value>::New(isolate, value));
465 length = v8::Local<v8::Array>::Cast(v8Value)->Length();
471 return toRefPtrNativeArrayUnchecked<T, V8T>(v8Value, length, isolate, success);
480 v8::Local<v8::Value> v8Value(v8::Local<v8::Value>::New(isolate, value));
483 length = v8::Local<v8::Array>::Cast(v8Value)->Length();
489 return toRefPtrNativeArrayUnchecked<T, V8T>(v8Value, length, isolate, success);
497 v8::Local<v8::Value> v8Value(v8::Local<v8::Value>::New(isolate, value));
500 length = v8::Local<v8::Array>::Cast(v8Value)
[all...]
H A DPageScriptDebugServer.cpp223 v8::Handle<v8::Value> v8Value = callDebuggerMethod("isEvalCompilation", WTF_ARRAY_LENGTH(argvEventData), argvEventData); local
224 if (v8Value.IsEmpty() || !v8Value->ToBoolean()->Value())
H A DScriptPreprocessor.cpp69 m_preprocessorFunction.set(m_isolate, v8::Handle<v8::Function>::Cast(preprocessorFunction.v8Value()));
H A DIDBBindingUtilitiesTest.cpp60 return injectV8KeyIntoV8Value(keyValue.v8Value(), value.v8Value(), idbKeyPath, v8::Isolate::GetCurrent());
H A DScriptPromiseResolverTest.cpp85 return m_promise.v8Value().As<v8::Object>();
H A DWorkerScriptController.cpp202 V8ErrorHandler::storeExceptionOnErrorEventWrapper(errorEvent->get(), state.exception.v8Value(), isolate());
H A DCustomElementConstructorBuilder.cpp83 m_prototype = prototypeScriptValue.v8Value().As<v8::Object>();
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Dcallback_interface.cpp72 v8::Handle<v8::Value> thisHandle = thisValue.v8Value();
H A Dattributes.cpp64 info.Holder()->SetHiddenValue(propertyName, {{attribute.cpp_value}}.v8Value());
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8XMLHttpRequestCustom.cpp83 v8SetReturnValue(info, text.v8Value());
101 if (jsonSource.hasNoValue() || !jsonSource.v8Value()->IsString()) {
109 v8::Handle<v8::Value> json = v8::JSON::Parse(jsonSource.v8Value().As<v8::String>());
H A DV8HTMLCanvasElementCustom.cpp108 v8SetReturnValue(info, wrapped.v8Value());
122 v8SetReturnValue(info, wrapped.v8Value());
H A DV8InjectedScriptHostCustom.cpp70 return V8Node::toNative(v8::Handle<v8::Object>::Cast(value.v8Value()));
98 v8SetReturnValue(info, object->get(ScriptState::current()).v8Value());
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
H A DV8TestCallbackInterface.cpp231 v8::Handle<v8::Value> thisHandle = thisValue.v8Value();
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DJavaScriptCallFrame.cpp176 newValue.v8Value()
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDocument.cpp305 return constructor.v8Value();

Completed in 267 milliseconds

12