Home
last modified time | relevance | path

Searched refs:attrRes (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/tools/aapt/
DCommand.cpp229 static ssize_t indexOfAttribute(const ResXMLTree& tree, uint32_t attrRes) in indexOfAttribute() argument
233 if (tree.getAttributeNameResID(i) == attrRes) { in indexOfAttribute()
259 static String8 getAttribute(const ResXMLTree& tree, uint32_t attrRes, String8* outError) in getAttribute() argument
261 ssize_t idx = indexOfAttribute(tree, attrRes); in getAttribute()
277 static int32_t getIntegerAttribute(const ResXMLTree& tree, uint32_t attrRes, in getIntegerAttribute() argument
280 ssize_t idx = indexOfAttribute(tree, attrRes); in getIntegerAttribute()
296 uint32_t attrRes, String8* outError, int32_t defValue = -1) in getResolvedIntegerAttribute() argument
298 ssize_t idx = indexOfAttribute(tree, attrRes); in getResolvedIntegerAttribute()
317 uint32_t attrRes, String8* outError) in getResolvedAttribute() argument
319 ssize_t idx = indexOfAttribute(tree, attrRes); in getResolvedAttribute()
/frameworks/base/libs/androidfw/
DResourceTypes.cpp2466 const uint32_t attrRes = bag->map.name.ident; in applyStyle() local
2467 const uint32_t p = Res_GETPACKAGE(attrRes); in applyStyle()
2468 const uint32_t t = Res_GETTYPE(attrRes); in applyStyle()
2469 const uint32_t e = Res_GETENTRY(attrRes); in applyStyle()
2472 const ssize_t pidx = mTable.getResourcePackageIndex(attrRes); in applyStyle()
2474 ALOGE("Style contains key with bad package: 0x%08x\n", attrRes); in applyStyle()
2494 ALOGE("Style contains key with bad type: 0x%08x\n", attrRes); in applyStyle()
2512 ALOGE("Style contains key with bad entry: 0x%08x\n", attrRes); in applyStyle()
2518 attrRes, bag->map.value.dataType, bag->map.value.data, in applyStyle()