Home
last modified time | relevance | path

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

/frameworks/base/tools/aapt/
DResourceTable.cpp361 ssize_t typeIdx = block.indexOfAttribute(NULL, "format"); in compileAttribute() local
362 if (typeIdx >= 0) { in compileAttribute()
363 String16 typeStr = String16(block.getAttributeStringValue(typeIdx, &len)); in compileAttribute()
946 ssize_t typeIdx = block.indexOfAttribute(NULL, "type"); in compileResourceFile() local
947 if (typeIdx < 0) { in compileResourceFile()
951 type = String16(block.getAttributeStringValue(typeIdx, &len)); in compileResourceFile()
1018 ssize_t typeIdx = block.indexOfAttribute(NULL, "type"); in compileResourceFile() local
1019 if (typeIdx < 0) { in compileResourceFile()
1023 type = String16(block.getAttributeStringValue(typeIdx, &len)); in compileResourceFile()
1158 ssize_t typeIdx = block.indexOfAttribute(NULL, "type"); in compileResourceFile() local
[all …]
/frameworks/rs/script_api/
DSpecification.cpp465 int typeIdx = findCType(cTypeStr); in expandRSTypeInString() local
466 if (typeIdx == -1) { in expandRSTypeInString()
470 return stringReplace(s, pattern, TYPES[typeIdx].rsDataType); in expandRSTypeInString()