Lines Matching refs:roots_
1076 Object* root(RootListIndex index) { return roots_[index]; }
1078 return Handle<Object>(&roots_[index]); in root_handle()
1083 if (handle_location >= &roots_[kRootListLength]) return false; in IsRootHandle()
1084 if (handle_location < &roots_[0]) return false; in IsRootHandle()
1085 *index = static_cast<RootListIndex>(handle_location - &roots_[0]); in IsRootHandle()
1090 Object** roots_array_start() { return roots_; } in roots_array_start()
1094 roots_[kCodeStubsRootIndex] = value; in SetRootCodeStubs()
1098 roots_[kMaterializedObjectsRootIndex] = objects; in SetRootMaterializedObjects()
1102 roots_[kScriptListRootIndex] = value; in SetRootScriptList()
1106 roots_[kStringTableRootIndex] = value; in SetRootStringTable()
1110 roots_[kNoScriptSharedFunctionInfosRootIndex] = value; in SetRootNoScriptSharedFunctionInfos()
1114 roots_[kMessageListenersRootIndex] = value; in SetMessageListeners()
2151 Object* roots_[kRootListLength]; variable