Home
last modified time | relevance | path

Searched refs:roots_ (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/mojo/services/view_manager/
Dview_manager_service_impl.cc34 roots_.insert(ViewIdToTransportId(root_id)); in ViewManagerServiceImpl()
61 return roots_.find(ViewIdToTransportId(id)) != roots_.end(); in HasRoot()
149 roots_.erase(ViewIdToTransportId(view)); in ProcessViewDeleted()
259 CHECK(roots_.count(transport_view_id) > 0); in RemoveRoot()
261 roots_.erase(transport_view_id); in RemoveRoot()
334 for (ViewIdSet::iterator i = roots_.begin(); i != roots_.end(); ++i) { in NotifyDrawnStateChanged()
537 for (ViewIdSet::const_iterator i = roots_.begin(); i != roots_.end(); ++i) in OnConnectionEstablished()
548 return roots_; in GetRootsForAccessPolicy()
Dview_manager_service_impl.h223 ViewIdSet roots_; variable
/external/chromium_org/mojo/services/public/cpp/view_manager/lib/
Dview_manager_client_impl.cc245 return roots_; in GetRoots()
281 roots_.push_back(root); in OnEmbed()
401 std::find(roots_.begin(), roots_.end(), root); in RemoveRoot()
402 if (it != roots_.end()) in RemoveRoot()
403 roots_.erase(it); in RemoveRoot()
Dview_manager_client_impl.h150 std::vector<View*> roots_; variable
/external/chromium_org/v8/src/heap/
Dheap.h768 type* name() { return type::cast(roots_[k##camel_name##RootIndex]); } \
770 return reinterpret_cast<type*>(roots_[k##camel_name##RootIndex]); \
777 Map* name##_map() { return Map::cast(roots_[k##Name##MapRootIndex]); }
782 String* name() { return String::cast(roots_[k##name##RootIndex]); } in STRUCT_LIST()
868 roots_[kCodeStubsRootIndex] = value; in public_set_code_stubs()
880 roots_[kNonMonomorphicCacheRootIndex] = value; in public_set_non_monomorphic_cache()
884 roots_[kEmptyScriptRootIndex] = script; in public_set_empty_script()
888 roots_[kStoreBufferTopRootIndex] = reinterpret_cast<Smi*>(top); in public_set_store_buffer_top()
892 roots_[kMaterializedObjectsRootIndex] = objects; in public_set_materialized_objects()
896 Object** roots_array_start() { return roots_; } in roots_array_start()
[all …]
Dheap.cc147 memset(roots_, 0, sizeof(roots_[0]) * kRootListLength); in Heap()
2517 roots_[entry.index] = map; in CreateInitialMaps()
2557 roots_[entry.index] = map; in CreateInitialMaps()
2801 roots_[constant_string_table[i].index] = *str; in CreateInitialObjects()
3097 return Map::cast(roots_[RootIndexForExternalArrayType(array_type)]); in MapForExternalArrayType()
3119 return Map::cast(roots_[RootIndexForFixedTypedArray(array_type)]); in MapForFixedTypedArray()
3175 roots_[RootIndexForEmptyExternalArray(map->elements_kind())]); in EmptyExternalArrayForMap()
3181 roots_[RootIndexForEmptyFixedTypedArray(map->elements_kind())]); in EmptyFixedTypedArrayForMap()
4729 v->VisitPointer(reinterpret_cast<Object**>(&roots_[kStringTableRootIndex])); in IterateWeakRoots()
4742 v->VisitPointers(&roots_[kSmiRootsStart], &roots_[kRootListLength]); in IterateSmiRoots()
[all …]
/external/chromium_org/v8/src/
Dfactory.h570 &isolate()->heap()->roots_[Heap::k##camel_name##RootIndex])); \
578 &isolate()->heap()->roots_[Heap::k##Name##MapRootIndex])); \
586 &isolate()->heap()->roots_[Heap::k##name##RootIndex])); \ in STRUCT_LIST()
Disolate.cc1999 CHECK_EQ(static_cast<int>(OFFSET_OF(Isolate, heap_.roots_)), in Init()