Home
last modified time | relevance | path

Searched refs:entryId (Results 1 – 6 of 6) sorted by relevance

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