Searched refs:FromV8 (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/gin/
H A Dconverter.cc27 bool Converter<bool>::FromV8(Isolate* isolate, Handle<Value> val, bool* out) { function in class:gin::Converter
36 bool Converter<int32_t>::FromV8(Isolate* isolate, Handle<Value> val, function in class:gin::Converter
48 bool Converter<uint32_t>::FromV8(Isolate* isolate, Handle<Value> val, function in class:gin::Converter
60 bool Converter<int64_t>::FromV8(Isolate* isolate, Handle<Value> val, function in class:gin::Converter
74 bool Converter<uint64_t>::FromV8(Isolate* isolate, Handle<Value> val, function in class:gin::Converter
86 bool Converter<float>::FromV8(Isolate* isolate, Handle<Value> val, function in class:gin::Converter
98 bool Converter<double>::FromV8(Isolate* isolate, Handle<Value> val, function in class:gin::Converter
117 bool Converter<std::string>::FromV8(Isolate* isolate, Handle<Value> val, function in class:gin::Converter
128 bool Converter<Handle<Function> >::FromV8(Isolate* isolate, Handle<Value> val, function in class:gin::Converter
141 bool Converter<Handle<Object> >::FromV8(Isolat function in class:gin::Converter
154 bool Converter<Handle<ArrayBuffer> >::FromV8(Isolate* isolate, function in class:gin::Converter
168 bool Converter<Handle<External> >::FromV8(Isolate* isolate, function in class:gin::Converter
182 bool Converter<Handle<Value> >::FromV8(Isolate* isolate, Handle<Value> val, function in class:gin::Converter
[all...]
H A Dconverter.h24 static bool FromV8(v8::Isolate* isolate,
33 static bool FromV8(v8::Isolate* isolate,
42 static bool FromV8(v8::Isolate* isolate,
52 static bool FromV8(v8::Isolate* isolate,
62 static bool FromV8(v8::Isolate* isolate,
71 static bool FromV8(v8::Isolate* isolate,
80 static bool FromV8(v8::Isolate* isolate,
96 static bool FromV8(v8::Isolate* isolate,
103 static bool FromV8(v8::Isolate* isolate,
112 static bool FromV8(v
156 static bool FromV8(v8::Isolate* isolate, function in struct:gin::Converter
[all...]
H A Ddictionary.cc33 bool Converter<Dictionary>::FromV8(v8::Isolate* isolate, function in class:gin::Converter
H A Dshell_runner_unittest.cc34 EXPECT_TRUE(Converter<std::string>::FromV8(isolate,
H A Darray_buffer.h48 static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,
74 static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,
H A Dhandle.h48 static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val, function in struct:gin::Converter
51 if (!Converter<T*>::FromV8(isolate, val, &object)) {
H A Dconverter_unittest.cc60 EXPECT_TRUE(Converter<bool>::FromV8(instance_->isolate(),
65 EXPECT_TRUE(Converter<bool>::FromV8(instance_->isolate(),
103 bool success = Converter<int32_t>::FromV8(instance_->isolate(),
129 EXPECT_TRUE(Converter<std::vector<int> >::FromV8(instance_->isolate(),
H A Ddictionary.h49 // TODO(aa): Remove this. Instead, get via FromV8(), Set(), and Get().
58 static bool FromV8(v8::Isolate* isolate,
H A Darray_buffer.cc152 bool Converter<ArrayBuffer>::FromV8(v8::Isolate* isolate, function in class:gin::Converter
188 bool Converter<ArrayBufferView>::FromV8(v8::Isolate* isolate, function in class:gin::Converter
H A Dwrappable.h107 static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val, T** out) { function in struct:gin::Converter
/external/chromium_org/mojo/bindings/js/
H A Dhandle.h52 static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,
65 static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val, function in struct:gin::Converter
73 if (!Converter<gin::HandleWrapper*>::FromV8(isolate, val, &object)) {
H A Dhandle.cc48 bool Converter<mojo::Handle>::FromV8(v8::Isolate* isolate, function in class:gin::Converter
57 if (!Converter<gin::Handle<HandleWrapper> >::FromV8(isolate, val, &handle))
/external/chromium_org/content/renderer/pepper/
H A Dhost_var_tracker_unittest.cc92 ppapi::ScopedPPVar var = try_catch.FromV8(MyObject::Create(test_isolate));
110 ppapi::ScopedPPVar pp_object1 = try_catch.FromV8(v8_object);
111 ppapi::ScopedPPVar pp_object2 = try_catch.FromV8(v8_object);
131 ppapi::ScopedPPVar pp_object3 = try_catch.FromV8(v8_object);
H A Dpepper_try_catch.h36 ppapi::ScopedPPVar FromV8(v8::Handle<v8::Value> v8_value);
48 // Whether To/FromV8 should convert object vars. If set to
H A Dplugin_object.cc78 ScopedPPVar result = try_catch.FromV8(object.ToV8());
110 ScopedPPVar var = try_catch.FromV8(value);
240 argument_vars.Set(i, try_catch.FromV8(arg));
H A Dppb_var_deprecated_impl.cc123 ScopedPPVar result_var = try_catch.FromV8(accessor.GetObject()->Get(v8_name));
148 ScopedPPVar var = try_catch.FromV8(identifiers->Get(i));
257 ScopedPPVar result_var = try_catch.FromV8(result);
H A Dpepper_try_catch.cc45 ppapi::ScopedPPVar PepperTryCatch::FromV8(v8::Handle<v8::Value> v8_value) { function in class:content::PepperTryCatch
H A Dmessage_channel.cc336 ScopedPPVar param = try_catch.FromV8(message_data);
H A Dpepper_plugin_instance_impl.cc2411 try_catch.FromV8(frame->mainWorldScriptContext()->Global());
2420 ScopedPPVar result = try_catch.FromV8(container_->v8ObjectForElement());
2468 ScopedPPVar var_result = try_catch.FromV8(result);
/external/chromium_org/mojo/apps/js/bindings/gl/
H A Dcontext.cc19 static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val, function in struct:gin::Converter
22 if (!Converter<bool>::FromV8(isolate, val, &bool_val))
/external/chromium_org/content/shell/renderer/test_runner/
H A Devent_sender.cc115 gin::Converter<std::vector<std::string> >::FromV8(

Completed in 186 milliseconds