Searched defs:entryId (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/tools/aapt2/
H A DSdkConstants.cpp48 static bool lessEntryId(const std::pair<uint16_t, size_t>& p, uint16_t entryId) { argument
49 return p.first < entryId;
56 auto iter = std::lower_bound(sAttrIdMap.begin(), sAttrIdMap.end(), id.entryId(), lessEntryId);
H A DResource.h133 uint16_t entryId() const;
213 inline uint16_t ResourceId::entryId() const { function in class:aapt::ResourceId
/frameworks/base/tools/aapt/
H A DResourceTable.cpp4461 const size_t entryId = Res_GETENTRY(attrId); local
4462 if (entryId <= 0x021c) {
4464 } else if (entryId <= 0x021d) {
4466 } else if (entryId <= 0x0269) {
4468 } else if (entryId <= 0x028d) {
4470 } else if (entryId <= 0x02ad) {
4472 } else if (entryId <= 0x02b3) {
4474 } else if (entryId <= 0x02b5) {
4476 } else if (entryId <= 0x02bd) {
4478 } else if (entryId <
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp322 status_t lookup(uint16_t entryId, uint16_t* outEntryId) const { argument
326 if (entryId < offset) {
331 entryId -= offset;
333 if (entryId >= entryCount) {
341 uint32_t mappedEntry = dtohl(entries[entryId]);

Completed in 92 milliseconds