Searched refs:root_index (Results 1 – 6 of 6) sorted by relevance
/external/chromium_org/v8/src/ |
D | serialize.cc | 1351 int root_index; in SerializeObject() local 1352 if ((root_index = RootIndex(heap_object, how_to_code)) != kInvalidRootIndex) { in SerializeObject() 1353 PutRoot(root_index, heap_object, how_to_code, where_to_point, skip); in SerializeObject() 1390 void Serializer::PutRoot(int root_index, in PutRoot() argument 1397 root_index < kRootArrayNumberOfConstantEncodings && in PutRoot() 1400 sink_->Put(kRootArrayConstants + kNoSkipDistance + root_index, in PutRoot() 1403 sink_->Put(kRootArrayConstants + kHasSkipDistance + root_index, in PutRoot() 1413 sink_->PutInt(root_index, "root_index"); in PutRoot() 1433 int root_index; in SerializeObject() local 1434 if ((root_index = RootIndex(heap_object, how_to_code)) != kInvalidRootIndex) { in SerializeObject() [all …]
|
/external/chromium_org/components/policy/core/common/ |
D | schema.cc | 303 int root_index = kInvalid; in ParseSchema() local 306 if (!storage->Parse(schema, &root_index, &id_map, &reference_list, error)) in ParseSchema() 309 if (root_index == kInvalid) { in ParseSchema() 317 if (root_index != 0 || in ParseSchema()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/ |
D | HeapSnapshot.js | 833 if (profile.snapshot.root_index) 834 this._rootNodeIndex = profile.snapshot.root_index;
|
/external/chromium_org/v8/src/heap/ |
D | heap.h | 1086 static bool RootCanBeWrittenAfterInitialization(RootListIndex root_index); 1088 bool RootCanBeTreatedAsConstant(RootListIndex root_index);
|
D | heap.cc | 2907 bool Heap::RootCanBeWrittenAfterInitialization(Heap::RootListIndex root_index) { in RootCanBeWrittenAfterInitialization() argument 2929 if (root_index == writable_roots[i]) return true; in RootCanBeWrittenAfterInitialization() 2935 bool Heap::RootCanBeTreatedAsConstant(RootListIndex root_index) { in RootCanBeTreatedAsConstant() argument 2936 return !RootCanBeWrittenAfterInitialization(root_index) && in RootCanBeTreatedAsConstant() 2937 !InNewSpace(roots_array_start()[root_index]); in RootCanBeTreatedAsConstant()
|
/external/chromium_org/v8/include/ |
D | v8.h | 6223 int root_index; 6225 root_index = I::kTrueValueRootIndex; 6227 root_index = I::kFalseValueRootIndex; 6229 *value_ = *I::GetRoot(GetIsolate(), root_index);
|