OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:birth_map
(Results
1 - 2
of
2
) sorted by null
/external/libchrome/base/
tracked_objects_unittest.cc
140
ThreadData::BirthMap
birth_map
;
local
142
data->SnapshotMaps(0, &
birth_map
, &deaths);
143
EXPECT_EQ(0u,
birth_map
.size());
157
birth_map
.clear();
159
data->SnapshotMaps(0, &
birth_map
, &deaths);
160
EXPECT_EQ(0u,
birth_map
.size());
176
ThreadData::BirthMap
birth_map
;
local
178
data->SnapshotMaps(0, &
birth_map
, &deaths);
179
EXPECT_EQ(1u,
birth_map
.size()); // 1 birth location.
180
EXPECT_EQ(1,
birth_map
.begin()->second->birth_count()); // 1 birth
[
all
...]
tracked_objects.cc
614
BirthMap
birth_map
;
local
616
SnapshotMaps(current_profiling_phase, &
birth_map
, &deaths);
618
for (const auto& birth :
birth_map
) {
646
BirthMap*
birth_map
,
651
(*
birth_map
)[birth.first] = birth.second;
[
all
...]
Completed in 46 milliseconds