Home
last modified time | relevance | path

Searched refs:maybe_index (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/snapshot/
Dserializer-common.cc35 Maybe<uint32_t> maybe_index = map_->Get(address); in Encode() local
36 if (maybe_index.IsNothing()) { in Encode()
43 table_->increment_count(maybe_index.FromJust()); in Encode()
45 return maybe_index.FromJust(); in Encode()
50 Maybe<uint32_t> maybe_index = map_->Get(address); in NameOfAddress() local
51 if (maybe_index.IsNothing()) return "<unknown>"; in NameOfAddress()
53 maybe_index.FromJust()); in NameOfAddress()
Dstartup-serializer.h40 Maybe<uint32_t> maybe_index = map_.Get(obj); in LookupOrInsert() local
41 if (maybe_index.IsJust()) { in LookupOrInsert()
42 *index_out = maybe_index.FromJust(); in LookupOrInsert()
/external/v8/src/
Daddress-map.h54 Maybe<uint32_t> maybe_index = map_->Get(obj); in Lookup() local
55 return maybe_index.IsJust() ? maybe_index.FromJust() : kInvalidRootIndex; in Lookup()
197 Maybe<uint32_t> maybe_index = map_.Get(obj); in Lookup() local
198 return maybe_index.IsJust() ? SerializerReference(maybe_index.FromJust()) in Lookup()
Daddress-map.cc25 Maybe<uint32_t> maybe_index = map_->Get(heap_object); in RootIndexMap() local
26 if (maybe_index.IsJust()) { in RootIndexMap()
28 DCHECK_LT(maybe_index.FromJust(), i); in RootIndexMap()
Dobjects.cc12773 Handle<Object> maybe_index = JSReceiver::GetDataProperty( in GetDerivedMap() local
12775 int index = maybe_index->IsSmi() ? Smi::cast(*maybe_index)->value() in GetDerivedMap()