Lines Matching refs:header_

211     DCHECK(header_ != nullptr) << GetLocation();  in GetHeader()
212 return *header_; in GetHeader()
238 DCHECK(header_ != nullptr) << GetLocation(); in NumStringIds()
239 return header_->string_ids_size_; in NumStringIds()
250 CHECK_LT(&string_id, string_ids_ + header_->string_ids_size_) << GetLocation(); in GetIndexForStringId()
277 DCHECK(header_ != nullptr) << GetLocation(); in NumTypeIds()
278 return header_->type_ids_size_; in NumTypeIds()
293 CHECK_LT(&type_id, type_ids_ + header_->type_ids_size_) << GetLocation(); in GetIndexForTypeId()
312 DCHECK(header_ != nullptr) << GetLocation(); in NumFieldIds()
313 return header_->field_ids_size_; in NumFieldIds()
324 CHECK_LT(&field_id, field_ids_ + header_->field_ids_size_) << GetLocation(); in GetIndexForFieldId()
352 DCHECK(header_ != nullptr) << GetLocation(); in NumMethodIds()
353 return header_->method_ids_size_; in NumMethodIds()
364 CHECK_LT(&method_id, method_ids_ + header_->method_ids_size_) << GetLocation(); in GetIndexForMethodId()
401 DCHECK(header_ != nullptr) << GetLocation(); in NumClassDefs()
402 return header_->class_defs_size_; in NumClassDefs()
413 CHECK_LT(&class_def, class_defs_ + header_->class_defs_size_) << GetLocation(); in GetIndexForClassDef()
460 DCHECK(header_ != nullptr) << GetLocation(); in NumProtoIds()
461 return header_->proto_ids_size_; in NumProtoIds()
472 CHECK_LT(&proto_id, proto_ids_ + header_->proto_ids_size_) << GetLocation(); in GetIndexForProtoId()
731 return reinterpret_cast<const dex::MapList*>(DataBegin() + header_->map_off_); in GetMapList()
834 const Header* const header_; variable