OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:type_ids_
(Results
1 - 4
of
4
) sorted by null
/external/libchrome/base/trace_event/
heap_profiler_type_name_deduplicator.cc
21
type_ids_
.insert(std::make_pair(nullptr, 0));
27
auto result =
type_ids_
.insert(std::make_pair(type_name, 0));
34
elem->second = static_cast<int>(
type_ids_
.size() - 1);
43
auto it =
type_ids_
.begin();
51
for (; it !=
type_ids_
.end(); it++) {
69
size_t map_size =
type_ids_
.size() * sizeof(std::pair<const char*, int>);
heap_profiler_type_name_deduplicator.h
38
std::map<const char*, int>
type_ids_
;
member in class:base::trace_event::TypeNameDeduplicator
/art/runtime/
dex_file.h
180
uint16_t class_idx_; // index into
type_ids_
array for defining class
181
uint16_t type_idx_; // index into
type_ids_
array for field type
190
uint16_t class_idx_; // index into
type_ids_
array for defining class
211
uint16_t class_idx_; // index into
type_ids_
array for this class
214
uint16_t superclass_idx_; // index into
type_ids_
array for superclass
562
return
type_ids_
[idx];
566
CHECK_GE(&type_id,
type_ids_
) << GetLocation();
567
CHECK_LT(&type_id,
type_ids_
+ header_->type_ids_size_) << GetLocation();
568
size_t result = &type_id -
type_ids_
;
1258
const TypeId* const
type_ids_
;
member in class:art::DexFile
[
all
...]
dex_file.cc
437
type_ids_
(reinterpret_cast<const TypeId*>(base + header_->type_ids_off_)),
[
all
...]
Completed in 221 milliseconds