Searched refs:root_index (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/v8/src/
H A Dserialize.cc1351 int root_index; local
1352 if ((root_index = RootIndex(heap_object, how_to_code)) != kInvalidRootIndex) {
1353 PutRoot(root_index, heap_object, how_to_code, where_to_point, skip);
1390 void Serializer::PutRoot(int root_index, argument
1397 root_index < kRootArrayNumberOfConstantEncodings &&
1400 sink_->Put(kRootArrayConstants + kNoSkipDistance + root_index,
1403 sink_->Put(kRootArrayConstants + kHasSkipDistance + root_index,
1413 sink_->PutInt(root_index, "root_index");
1433 int root_index; local
1520 int root_index = serializer_->RootIndex(current_contents, kPlain); local
1825 int root_index; local
[all...]
/external/chromium_org/components/policy/core/common/
H A Dschema.cc303 int root_index = kInvalid; local
306 if (!storage->Parse(schema, &root_index, &id_map, &reference_list, error))
309 if (root_index == kInvalid) {
317 if (root_index != 0 ||
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/
H A DHeapSnapshot.js833 if (profile.snapshot.root_index)
834 this._rootNodeIndex = profile.snapshot.root_index;
/external/chromium_org/v8/src/heap/
H A Dheap.cc2907 bool Heap::RootCanBeWrittenAfterInitialization(Heap::RootListIndex root_index) { argument
2929 if (root_index == writable_roots[i]) return true;
2935 bool Heap::RootCanBeTreatedAsConstant(RootListIndex root_index) { argument
2936 return !RootCanBeWrittenAfterInitialization(root_index) &&
2937 !InNewSpace(roots_array_start()[root_index]);
H A Dheap.h1086 static bool RootCanBeWrittenAfterInitialization(RootListIndex root_index);
1088 bool RootCanBeTreatedAsConstant(RootListIndex root_index);
/external/chromium_org/v8/include/
H A Dv8.h6223 int root_index; local
6225 root_index = I::kTrueValueRootIndex;
6227 root_index = I::kFalseValueRootIndex;
6229 *value_ = *I::GetRoot(GetIsolate(), root_index);

Completed in 790 milliseconds