Searched refs:NewForeign (Results 1 – 13 of 13) sorted by relevance
/external/v8/src/ |
D | bootstrapper.cc | 394 Handle<Foreign> f(factory()->NewForeign(&Accessors::FunctionLength)); in ComputeFunctionInstanceDescriptor() 399 Handle<Foreign> f(factory()->NewForeign(&Accessors::FunctionName)); in ComputeFunctionInstanceDescriptor() 404 Handle<Foreign> f(factory()->NewForeign(&Accessors::FunctionArguments)); in ComputeFunctionInstanceDescriptor() 409 Handle<Foreign> f(factory()->NewForeign(&Accessors::FunctionCaller)); in ComputeFunctionInstanceDescriptor() 418 Handle<Foreign> f(factory()->NewForeign(&Accessors::FunctionPrototype)); in ComputeFunctionInstanceDescriptor() 539 Handle<Foreign> f(factory()->NewForeign(&Accessors::FunctionLength)); in ComputeStrictFunctionInstanceDescriptor() 544 Handle<Foreign> f(factory()->NewForeign(&Accessors::FunctionName)); in ComputeStrictFunctionInstanceDescriptor() 564 Handle<Foreign> f(factory()->NewForeign(&Accessors::FunctionPrototype)); in ComputeStrictFunctionInstanceDescriptor() 877 factory->NewForeign(&Accessors::ArrayLength), in InitializeGlobal() 917 factory->NewForeign(&Accessors::StringLength), in InitializeGlobal() [all …]
|
D | factory.h | 197 Handle<Foreign> NewForeign(Address addr, 202 Handle<Foreign> NewForeign(const AccessorDescriptor* foreign);
|
D | factory.cc | 374 Handle<Foreign> wrapper = NewForeign(0, TENURED); in NewScript() 396 Handle<Foreign> Factory::NewForeign(Address addr, PretenureFlag pretenure) { in NewForeign() function in v8::internal::Factory 403 Handle<Foreign> Factory::NewForeign(const AccessorDescriptor* desc) { in NewForeign() function in v8::internal::Factory 404 return NewForeign((Address) desc, TENURED); in NewForeign()
|
D | api.h | 130 return FACTORY->NewForeign( in FromCData()
|
D | api.cc | 4160 isolate->factory()->NewForeign( in SetPointerInInternalField() 4543 return Utils::ToLocal(FACTORY->NewForeign(static_cast<i::Address>(data))); in ExternalNewImpl() 5104 obj.set(0, *isolate->factory()->NewForeign(FUNCTION_ADDR(that))); in AddMessageListener() 5564 isolate->factory()->NewForeign(FUNCTION_ADDR(EventCallbackWrapper)); in SetDebugEventListener() 5579 foreign = isolate->factory()->NewForeign(FUNCTION_ADDR(that)); in SetDebugEventListener2()
|
/external/chromium_org/v8/src/ |
D | bootstrapper.cc | 389 Handle<Foreign> length(factory()->NewForeign(&Accessors::FunctionLength)); in SetFunctionInstanceDescriptor() 390 Handle<Foreign> name(factory()->NewForeign(&Accessors::FunctionName)); in SetFunctionInstanceDescriptor() 391 Handle<Foreign> args(factory()->NewForeign(&Accessors::FunctionArguments)); in SetFunctionInstanceDescriptor() 392 Handle<Foreign> caller(factory()->NewForeign(&Accessors::FunctionCaller)); in SetFunctionInstanceDescriptor() 395 prototype = factory()->NewForeign(&Accessors::FunctionPrototype); in SetFunctionInstanceDescriptor() 527 Handle<Foreign> length(factory()->NewForeign(&Accessors::FunctionLength)); in SetStrictFunctionInstanceDescriptor() 528 Handle<Foreign> name(factory()->NewForeign(&Accessors::FunctionName)); in SetStrictFunctionInstanceDescriptor() 533 prototype = factory()->NewForeign(&Accessors::FunctionPrototype); in SetStrictFunctionInstanceDescriptor() 872 Handle<Foreign> array_length(factory->NewForeign(&Accessors::ArrayLength)); in InitializeGlobal() 927 factory->NewForeign(&Accessors::StringLength)); in InitializeGlobal() [all …]
|
D | factory.h | 239 Handle<Foreign> NewForeign(Address addr, 244 Handle<Foreign> NewForeign(const AccessorDescriptor* foreign);
|
D | factory.cc | 495 Handle<Foreign> wrapper = NewForeign(0, TENURED); in NewScript() 515 Handle<Foreign> Factory::NewForeign(Address addr, PretenureFlag pretenure) { in NewForeign() function in v8::internal::Factory 522 Handle<Foreign> Factory::NewForeign(const AccessorDescriptor* desc) { in NewForeign() function in v8::internal::Factory 523 return NewForeign((Address) desc, TENURED); in NewForeign()
|
D | compiler.h | 299 isolate()->factory()->NewForeign(reinterpret_cast<Address>(this)); in object_wrapper()
|
D | api.h | 131 return isolate->factory()->NewForeign( in FromCData()
|
D | api.cc | 6443 obj.set(0, *isolate->factory()->NewForeign(FUNCTION_ADDR(that))); in AddMessageListener() 6936 foreign = isolate->factory()->NewForeign(FUNCTION_ADDR(that)); in SetDebugEventListener2()
|
/external/chromium_org/v8/test/cctest/ |
D | test-alloc.cc | 135 Handle<Foreign> foreign = factory->NewForeign(&kDescriptor); in TEST()
|
/external/v8/test/cctest/ |
D | test-alloc.cc | 160 Handle<Foreign> foreign = FACTORY->NewForeign(&kDescriptor); in TEST()
|