HomeSort by relevance Sort by last modified time
    Searched refs:toV8Value (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8BindingTest.cpp 35 template <typename T> v8::Local<v8::Value> toV8Value(const T& value)
37 return V8ValueTraits<T>::toV8Value(value, m_scope.scriptState()->context()->Global(), m_scope.isolate());
43 v8::Local<v8::Value> actual = toV8Value(value);
45 ADD_FAILURE_AT(path, lineNumber) << "toV8Value returns an empty value.";
50 ADD_FAILURE_AT(path, lineNumber) << "toV8Value returns an incorrect value.\n Actual: " << actualString.utf8().data() << "\nExpected: " << expected;
305 v8StringArray->Set(toV8Value(0), toV8Value("Hello, World!"));
306 v8StringArray->Set(toV8Value(1), toV8Value("Hi, Mom!"));
316 v8UnsignedArray->Set(toV8Value(0), toV8Value(42))
    [all...]
ScriptPromiseResolver.h 48 // Anything that can be passed to toV8Value can be passed to this function.
55 // Anything that can be passed to toV8Value can be passed to this function.
107 v8::Handle<v8::Value> toV8Value(const T& value)
109 return V8ValueTraits<T>::toV8Value(value, m_scriptState->context()->Global(), m_scriptState->isolate());
124 m_value.set(m_scriptState->isolate(), toV8Value(value));
V8Binding.h 216 // - Use V8ValueTraits<T>::toV8Value if you cannot include V8X.h.
219 // Note: toV8NoInline is a non-inline toV8 and V8ValueTraits::toV8Value offers
226 static v8::Handle<v8::Value> toV8Value(const T& value, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
236 static inline v8::Handle<v8::Value> toV8Value(const String& value, v8::Handle<v8::Object>, v8::Isolate* isolate)
244 static inline v8::Handle<v8::Value> toV8Value(const AtomicString& value, v8::Handle<v8::Object>, v8::Isolate* isolate)
252 static inline v8::Handle<v8::Value> toV8Value(char const (&value)[n], v8::Handle<v8::Object>, v8::Isolate* isolate)
260 static inline v8::Handle<v8::Value> toV8Value(char const (&value)[n], v8::Handle<v8::Object>, v8::Isolate* isolate)
268 static inline v8::Handle<v8::Value> toV8Value(const char* const& value, v8::Handle<v8::Object>, v8::Isolate* isolate)
281 static inline v8::Handle<v8::Value> toV8Value(char* const& value, v8::Handle<v8::Object> object, v8::Isolate* isolate)
283 return V8ValueTraits<const char*>::toV8Value(value, object, isolate)
    [all...]
ScriptPromiseProperty.h 122 v8::Handle<v8::Value> value = V8ValueTraits<HolderType>::toV8Value(m_holder, creationContext, isolate);
130 return V8ValueTraits<ResolvedType>::toV8Value(m_resolved, creationContext, isolate);
137 return V8ValueTraits<RejectedType>::toV8Value(m_rejected, creationContext, isolate);
ScriptPromise.cpp 47 // Used by ToV8Value<WithScriptState, ScriptState*>.
165 return reject(scriptState, V8ValueTraits<PassRefPtrWillBeRawPtr<DOMException> >::toV8Value(exception, scriptState->context()->Global(), scriptState->isolate()));
  /external/chromium_org/third_party/WebKit/public/web/
WebArrayBufferConverter.h 47 BLINK_EXPORT static v8::Handle<v8::Value> toV8Value(WebArrayBuffer*, v8::Handle<v8::Object>, v8::Isolate*);
WebBlob.h 77 BLINK_EXPORT v8::Handle<v8::Value> toV8Value(v8::Handle<v8::Object> creationContext, v8::Isolate*);
WebDOMError.h 69 BLINK_EXPORT v8::Handle<v8::Value> toV8Value(v8::Handle<v8::Object> creationContext, v8::Isolate*);
WebDOMFileSystem.h 96 BLINK_EXPORT v8::Handle<v8::Value> toV8Value(v8::Handle<v8::Object> creationContext, v8::Isolate*);
WebBindings.h 189 BLINK_EXPORT static v8::Handle<v8::Value> toV8Value(const NPVariant*);
  /external/chromium_org/third_party/WebKit/Source/web/
WebArrayBufferConverter.cpp 40 v8::Handle<v8::Value> WebArrayBufferConverter::toV8Value(WebArrayBuffer* buffer, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
WebDOMError.cpp 70 v8::Handle<v8::Value> WebDOMError::toV8Value(v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
WebBlob.cpp 84 v8::Handle<v8::Value> WebBlob::toV8Value(v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
WebDOMFileSystem.cpp 119 v8::Handle<v8::Value> WebDOMFileSystem::toV8Value(v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
  /external/chromium_org/chrome/renderer/extensions/
file_manager_private_custom_bindings.cc 44 .toV8Value(args.Holder(), args.GetIsolate()));
sync_file_system_custom_bindings.cc 59 .toV8Value(args.Holder(), args.GetIsolate()));
media_galleries_custom_bindings.cc 43 .toV8Value(args.Holder(), args.GetIsolate()));
page_capture_custom_bindings.cc 35 args.GetReturnValue().Set(blob.toV8Value(args.Holder(), args.GetIsolate()));
  /external/chromium_org/extensions/renderer/
blob_native_handler.cc 37 args.GetReturnValue().Set(blob.toV8Value(args.Holder(), args.GetIsolate()));
app_runtime_custom_bindings.cc 53 web_blob.toV8Value(args.Holder(), args.GetIsolate()));
file_system_natives.cc 68 .toV8Value(args.Holder(), args.GetIsolate()));
153 dom_error.toV8Value(args.Holder(), args.GetIsolate()));
set_icon_natives.cc 99 *image_data_bitmap = blink::WebArrayBufferConverter::toV8Value(
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIPortMap.h 53 entry.append(ScriptValue(scriptState, V8ValueTraits<T*>::toV8Value(i->value, scriptState->context()->Global(), scriptState->isolate())));
  /external/chromium_org/content/renderer/pepper/
resource_converter.cc 145 web_dom_file_system.toV8Value(context->Global(), context->GetIsolate());
155 // *dom_video_track = track.toV8Value();
287 bool ResourceConverterImpl::ToV8Value(const PP_Var& var,
  /external/chromium_org/content/renderer/
skia_benchmarking_extension.cc 204 blink::WebArrayBufferConverter::toV8Value(

Completed in 1984 milliseconds

1 2