Home
last modified time | relevance | path

Searched refs:entry_id (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/tools/aapt2/compile/
DIdAssigner.cpp41 if (!entry->id || entry->id.value() == id.entry_id()) { in AssignId()
42 entry->id = id.entry_id(); in AssignId()
190 const uint16_t entry_id = next_entry_iter->first.entry_id(); in Consume() local
191 if (entry_id > next_expected_entry_id) { in Consume()
200 next_expected_entry_id = entry_id + 1; in Consume()
/frameworks/base/cmds/idmap2/libidmap2/
DBinaryStreamVisitor.cpp74 EntryId entry_id = type_entry.GetEntry(i); in visit() local
75 Write32(entry_id != kNoEntry ? static_cast<uint32_t>(entry_id) : kPadding); in visit()
/frameworks/base/libs/androidfw/include/androidfw/
DResourceUtils.h66 inline uint32_t make_resid(uint8_t package_id, uint8_t type_id, uint16_t entry_id) { in make_resid() argument
68 entry_id; in make_resid()
/frameworks/base/tools/aapt2/
DResourceTable.cpp428 ResourceEntry* entry = type->FindOrCreateEntry(name.entry, use_id ? res_id.entry_id() in AddResourceImpl()
432 if (check_id && entry->id && entry->id.value() != res_id.entry_id()) { in AddResourceImpl()
471 entry->id = res_id.entry_id(); in AddResourceImpl()
534 ResourceEntry* entry = type->FindOrCreateEntry(name.entry, use_id ? res_id.entry_id() in SetVisibilityImpl()
538 if (check_id && entry->id && entry->id.value() != res_id.entry_id()) { in SetVisibilityImpl()
549 entry->id = res_id.entry_id(); in SetVisibilityImpl()
DSdkConstants.cpp70 auto iter = std::lower_bound(sAttrIdMap.begin(), sAttrIdMap.end(), id.entry_id(), less_entry_id); in FindAttributeSdkLevel()
DResource.h157 uint16_t entry_id() const;
252 inline uint16_t ResourceId::entry_id() const { in entry_id() function
DResources.proto200 EntryId entry_id = 1; field
/frameworks/base/tools/aapt2/format/proto/
DProtoDeserialize.cpp446 entry->id = static_cast<uint16_t>(pb_entry.entry_id().id()); in DeserializePackageFromPb()
500 pb_entry.entry_id().id()); in DeserializePackageFromPb()
/frameworks/base/tools/aapt2/java/
DJavaClassGenerator.cpp447 real_id = ResourceId(kAppPackageId, id.package_id(), id.entry_id()); in ProcessResource()
/frameworks/base/tools/aapt2/dump/
DDumpManifest.cpp197 if (entry->id && entry->id.value() == res_id.entry_id()) { in FindValueById()
/frameworks/base/tools/aapt2/cmd/
DLink.cpp187 ResourceId rewritten_id(kAppPackageId, id->package_id(), id->entry_id()); in FindByName()