Searched refs:maybe_index (Results 1 – 5 of 5) sorted by relevance
35 Maybe<uint32_t> maybe_index = map_->Get(address); in Encode() local36 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() local51 if (maybe_index.IsNothing()) return "<unknown>"; in NameOfAddress()53 maybe_index.FromJust()); in NameOfAddress()
40 Maybe<uint32_t> maybe_index = map_.Get(obj); in LookupOrInsert() local41 if (maybe_index.IsJust()) { in LookupOrInsert()42 *index_out = maybe_index.FromJust(); in LookupOrInsert()
54 Maybe<uint32_t> maybe_index = map_->Get(obj); in Lookup() local55 return maybe_index.IsJust() ? maybe_index.FromJust() : kInvalidRootIndex; in Lookup()197 Maybe<uint32_t> maybe_index = map_.Get(obj); in Lookup() local198 return maybe_index.IsJust() ? SerializerReference(maybe_index.FromJust()) in Lookup()
25 Maybe<uint32_t> maybe_index = map_->Get(heap_object); in RootIndexMap() local26 if (maybe_index.IsJust()) { in RootIndexMap()28 DCHECK_LT(maybe_index.FromJust(), i); in RootIndexMap()
12773 Handle<Object> maybe_index = JSReceiver::GetDataProperty( in GetDerivedMap() local12775 int index = maybe_index->IsSmi() ? Smi::cast(*maybe_index)->value() in GetDerivedMap()