OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:maybe_index
(Results
1 - 5
of
5
) sorted by null
/external/v8/src/
address-map.cc
25
Maybe<uint32_t>
maybe_index
= map_->Get(heap_object);
local
26
if (
maybe_index
.IsJust()) {
28
DCHECK_LT(
maybe_index
.FromJust(), i);
address-map.h
54
Maybe<uint32_t>
maybe_index
= map_->Get(obj);
local
55
return
maybe_index
.IsJust() ?
maybe_index
.FromJust() : kInvalidRootIndex;
197
Maybe<uint32_t>
maybe_index
= map_.Get(obj);
198
return
maybe_index
.IsJust() ? SerializerReference(
maybe_index
.FromJust())
objects.cc
12758
Handle<Object>
maybe_index
= JSReceiver::GetDataProperty(
local
[
all
...]
/external/v8/src/snapshot/
serializer-common.cc
35
Maybe<uint32_t>
maybe_index
= map_->Get(address);
local
36
if (
maybe_index
.IsNothing()) {
43
table_->increment_count(
maybe_index
.FromJust());
45
return
maybe_index
.FromJust();
50
Maybe<uint32_t>
maybe_index
= map_->Get(address);
local
51
if (
maybe_index
.IsNothing()) return "<unknown>";
53
maybe_index
.FromJust());
startup-serializer.h
40
Maybe<uint32_t>
maybe_index
= map_.Get(obj);
local
41
if (
maybe_index
.IsJust()) {
42
*index_out =
maybe_index
.FromJust();
Completed in 221 milliseconds