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

  /external/chromium_org/v8/src/
handles-inl.h 19 location_ = HandleScope::CreateHandle(obj->GetIsolate(), obj);
25 location_ = HandleScope::CreateHandle(isolate, obj);
85 HandleScope::HandleScope(Isolate* isolate) {
94 HandleScope::~HandleScope() {
99 void HandleScope::CloseScope(Isolate* isolate,
119 Handle<T> HandleScope::CloseAndEscape(Handle<T> handle_value) {
138 T** HandleScope::CreateHandle(Isolate* isolate, T* value) {
handles.h 79 // Handles are only valid within a HandleScope.
181 class HandleScope {
183 explicit inline HandleScope(Isolate* isolate);
185 inline ~HandleScope();
201 // Closes the HandleScope (invalidating all handles
202 // created in the scope of the HandleScope) and returns
212 HandleScope(const HandleScope&);
213 void operator=(const HandleScope&);
234 friend class v8::HandleScope;
    [all...]
api.cc 546 HandleScope::HandleScope(Isolate* isolate) {
551 void HandleScope::Initialize(Isolate* isolate) {
554 // place, so we do it only here: Without a HandleScope, an embedder can do
558 "HandleScope::HandleScope",
568 HandleScope::~HandleScope() {
569 i::HandleScope::CloseScope(isolate_, prev_next_, prev_limit_);
573 int HandleScope::NumberOfHandles(Isolate* isolate)
    [all...]
  /art/runtime/
handle_scope.h 36 class PACKED(4) HandleScope {
38 ~HandleScope() {}
49 // Returns the size of a HandleScope containing num_references handles.
51 size_t header_size = sizeof(HandleScope);
56 // Returns the size of a HandleScope containing num_references handles.
64 // Link to previous HandleScope or null.
65 HandleScope* GetLink() const {
69 void SetLink(HandleScope* link) {
99 // A HandleScope should always contain something. One created by the
107 // Offset of link within HandleScope, used by generated cod
    [all...]
  /external/chromium_org/v8/include/
v8.h 312 friend class HandleScope;
387 friend class HandleScope;
437 * a Local handle only lives as long as the HandleScope in which it was
802 class V8_EXPORT HandleScope {
804 HandleScope(Isolate* isolate);
806 ~HandleScope();
818 V8_INLINE HandleScope() {}
832 HandleScope(const HandleScope&);
833 void operator=(const HandleScope&)
    [all...]

Completed in 125 milliseconds