OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:jsValue
(Results
26 - 29
of
29
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestInterfaceEventConstructor.cpp
375
bool V8TestInterfaceEventConstructor::hasInstance(v8::Handle<v8::Value>
jsValue
, v8::Isolate* isolate, WrapperWorldType currentWorldType)
377
return V8PerIsolateData::from(isolate)->hasInstance(&wrapperTypeInfo,
jsValue
, currentWorldType);
380
bool V8TestInterfaceEventConstructor::hasInstanceInAnyWorld(v8::Handle<v8::Value>
jsValue
, v8::Isolate* isolate)
382
return V8PerIsolateData::from(isolate)->hasInstance(&wrapperTypeInfo,
jsValue
, MainWorld)
383
|| V8PerIsolateData::from(isolate)->hasInstance(&wrapperTypeInfo,
jsValue
, IsolatedWorld)
384
|| V8PerIsolateData::from(isolate)->hasInstance(&wrapperTypeInfo,
jsValue
, WorkerWorld);
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
code_generator_v8.pm
[
all
...]
/external/chromium_org/v8/src/
liveedit.cc
626
// Unwraps
JSValue
object, returning its field "value"
627
static Handle<Object> UnwrapJSValue(Handle<
JSValue
>
jsValue
) {
628
return Handle<Object>(
jsValue
->value(),
jsValue
->GetIsolate());
634
static Handle<
JSValue
> WrapInJSValue(Handle<HeapObject> object) {
637
Handle<
JSValue
> result =
638
Handle<
JSValue
>::cast(isolate->factory()->NewJSObject(constructor));
645
Handle<
JSValue
>
jsValue
) {
[
all
...]
/external/v8/src/
liveedit.cc
619
// Unwraps
JSValue
object, returning its field "value"
620
static Handle<Object> UnwrapJSValue(Handle<
JSValue
>
jsValue
) {
621
return Handle<Object>(
jsValue
->value());
627
static Handle<
JSValue
> WrapInJSValue(Handle<Object> object) {
630
Handle<
JSValue
> result =
631
Handle<
JSValue
>::cast(FACTORY->NewJSObject(constructor));
699
Handle<
JSValue
> code_wrapper = WrapInJSValue(function_code);
702
Handle<
JSValue
> scope_wrapper = WrapInJSValue(code_scope_info);
709
Handle<
JSValue
> info_holder = WrapInJSValue(info)
[
all
...]
Completed in 825 milliseconds
1
2