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

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptValue.cpp 44 v8::Handle<v8::Value> ScriptValue::v8Value() const
67 v8::Handle<v8::Value> string = v8Value();
78 return v8ToJSONValue(scriptState->isolate(), v8Value(), JSONValue::maxDepth);
ScriptString.cpp 58 v8::Handle<v8::String> ScriptString::v8Value()
72 return ScriptString(nonNullIsolate, v8::String::Concat(v8Value(), targetString));
80 return v8StringToWebCoreString<String>(v8Value(), Externalize);
ScriptPromise.h 76 v8::Handle<v8::Value> v8Value() const
78 return m_promise.v8Value();
ScriptState.cpp 62 v8::Local<v8::Value> v8Value = context()->Global()->Get(v8AtomicString(isolate(), name));
63 return ScriptValue(this, v8Value);
Dictionary.cpp 136 v8::Local<v8::Value> v8Value;
137 if (!getKey(key, v8Value))
140 v8::Local<v8::Boolean> v8Bool = v8Value->ToBoolean();
156 v8::Local<v8::Value> v8Value;
157 if (!getKey(key, v8Value))
160 v8::Local<v8::Int32> v8Int32 = v8Value->ToInt32();
169 v8::Local<v8::Value> v8Value;
170 if (!getKey(key, v8Value)) {
176 TONATIVE_DEFAULT(v8::Local<v8::Number>, v8Number, v8Value->ToNumber(), false);
204 v8::Local<v8::Value> v8Value;
    [all...]
Dictionary.h 295 v8::Local<v8::Value> v8Value;
296 if (!getKey(key, v8Value))
299 value = IntegralTypeTraits<T>::toIntegral(v8Value, NormalConversion, context.exceptionState());
310 v8::Local<v8::Value> v8Value;
311 if (!getKey(key, v8Value))
314 if (context.isNullable() && WebCore::isUndefinedOrNull(v8Value)) {
319 T converted = IntegralTypeTraits<T>::toIntegral(v8Value, NormalConversion, context.exceptionState());
338 v8::Local<v8::Value> v8Value;
339 getKey(key, v8Value);
340 if (context.isNullable() && WebCore::isUndefinedOrNull(v8Value))
    [all...]
PageScriptDebugServer.cpp 255 v8::Handle<v8::Value> v8Value = callDebuggerMethod("isEvalCompilation", WTF_ARRAY_LENGTH(argvEventData), argvEventData);
256 if (v8Value.IsEmpty() || !v8Value->ToBoolean()->Value())
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
attributes.cpp 30 v8::Handle<v8::Value> v8Value = V8HiddenValue::getHiddenValue(info.GetIsolate(), holder, propertyName);
31 if (!v8Value.IsEmpty()) {
32 v8SetReturnValue(info, v8Value);
123 if (v8Value.isNull()) {
125 v8Value = "{{reflect_missing}}";
129 } else if (v8Value.isEmpty()) {
130 v8Value = "{{reflect_empty}}";
132 if (v8Value.isEmpty()) {
135 v8Value = "{{reflect_missing}}";
141 } else if (equalIgnoringCase(v8Value, "{{value}}"))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestInterfaceEventConstructor.cpp 84 v8SetReturnValue(info, impl->initializedByEventConstructorReadonlyAnyAttribute().v8Value());
183 RefPtr<TestInterfaceEmpty> v8Value = impl->initializedByEventConstructorReadonlyNullableTestInterfaceEmptyAttribute(isNull);
188 RefPtr<TestInterfaceEmpty> result(v8Value);
379 bool V8TestInterfaceEventConstructor::hasInstance(v8::Handle<v8::Value> v8Value, v8::Isolate* isolate)
381 return V8PerIsolateData::from(isolate)->hasInstance(&wrapperTypeInfo, v8Value);
384 v8::Handle<v8::Object> V8TestInterfaceEventConstructor::findInstanceInPrototypeChain(v8::Handle<v8::Value> v8Value, v8::Isolate* isolate)
386 return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrapperTypeInfo, v8Value);
V8TestInterfaceNode.cpp 64 static void stringAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info)
68 TOSTRING_VOID(V8StringResource<>, cppValue, v8Value);
72 static void stringAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info)
75 TestInterfaceNodeV8Internal::stringAttributeAttributeSetter(v8Value, info);
97 EventListener* v8Value = impl->eventHandlerAttribute();
98 v8SetReturnValue(info, v8Value ? v8::Handle<v8::Value>(V8AbstractEventListener::cast(v8Value)->getListenerObject(impl->executionContext())) : v8::Handle<v8::Value>(v8::Null(info.GetIsolate())));
108 static void eventHandlerAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info)
112 impl->setEventHandlerAttribute(V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate));
115 static void eventHandlerAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info
    [all...]
V8TestInterface.cpp 70 static void testInterfaceAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info)
74 if (!V8TestInterface::hasInstance(v8Value, info.GetIsolate())) {
80 TONATIVE_VOID(TestInterfaceImplementation*, cppValue, V8TestInterface::toNativeWithTypeCheck(info.GetIsolate(), v8Value));
84 static void testInterfaceAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info)
87 TestInterfaceImplementationV8Internal::testInterfaceAttributeAttributeSetter(v8Value, info);
105 static void doubleAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info)
110 TONATIVE_VOID(double, cppValue, static_cast<double>(v8Value->NumberValue()));
119 static void doubleAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info)
122 TestInterfaceImplementationV8Internal::doubleAttributeAttributeSetter(v8Value, info);
140 static void floatAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info
    [all...]
V8TestObject.cpp 154 static void dateAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info)
158 TONATIVE_VOID(double, cppValue, toCoreDate(v8Value));
162 static void dateAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info)
165 TestObjectV8Internal::dateAttributeAttributeSetter(v8Value, info);
183 static void stringAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info)
187 TOSTRING_VOID(V8StringResource<>, cppValue, v8Value);
191 static void stringAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info)
194 TestObjectV8Internal::stringAttributeAttributeSetter(v8Value, info);
212 static void byteStringAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info)
217 TONATIVE_VOID_EXCEPTIONSTATE(V8StringResource<>, cppValue, toByteString(v8Value, exceptionState), exceptionState)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp 260 v8::Handle<v8::Value> observedValue = scriptValue.v8Value();
    [all...]

Completed in 151 milliseconds