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

  /external/v8/src/
handles-inl.h 17 : location_(HandleScope::GetHandle(isolate, object)) {}
24 reinterpret_cast<T**>(HandleScope::CreateHandle(isolate, object)));
28 HandleScope::HandleScope(Isolate* isolate) {
43 HandleScope::~HandleScope() {
60 void HandleScope::CloseScope(Isolate* isolate,
80 Handle<T> HandleScope::CloseAndEscape(Handle<T> handle_value) {
98 Object** HandleScope::CreateHandle(Isolate* isolate, Object* value) {
114 Object** HandleScope::GetHandle(Isolate* isolate, Object* value)
    [all...]
handles.h 76 // Handles are only valid within a HandleScope. When a handle is created
77 // for an object a cell is allocated in the current HandleScope.
250 class HandleScope {
252 explicit inline HandleScope(Isolate* isolate);
254 inline ~HandleScope();
272 // Closes the HandleScope (invalidating all handles
273 // created in the scope of the HandleScope) and returns
288 HandleScope(const HandleScope&);
289 void operator=(const HandleScope&)
    [all...]
api.cc 115 i::HandleScope, false)
384 HandleScope handle_scope(isolate);
666 HandleScope::HandleScope(Isolate* isolate) {
671 void HandleScope::Initialize(Isolate* isolate) {
674 // place, so we do it only here: Without a HandleScope, an embedder can do
682 "HandleScope::HandleScope",
692 HandleScope::~HandleScope() {
    [all...]
  /art/runtime/
handle_scope.h 38 class PACKED(4) HandleScope {
40 ~HandleScope() {}
51 // Returns the size of a HandleScope containing num_references handles.
54 // Returns the size of a HandleScope containing num_references handles.
57 // Link to previous HandleScope or null.
58 HandleScope* GetLink() const {
75 // Offset of link within HandleScope, used by generated code.
91 static HandleScope* Create(void* storage, HandleScope* link, uint32_t num_references)
93 return new (storage) HandleScope(link, num_references)
    [all...]
  /external/v8/include/
v8.h 326 friend class HandleScope;
484 * a Local handle only lives as long as the HandleScope in which it was
887 class V8_EXPORT HandleScope {
889 HandleScope(Isolate* isolate);
891 ~HandleScope();
903 V8_INLINE HandleScope() {}
917 HandleScope(const HandleScope&);
918 void operator=(const HandleScope&);
937 * A HandleScope which first allocates a handle in the current scop
    [all...]

Completed in 126 milliseconds