Searched refs:attrIndex (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/tools/aapt/ |
D | AaptXml.cpp | 26 static String8 getStringAttributeAtIndex(const ResXMLTree& tree, ssize_t attrIndex, in getStringAttributeAtIndex() argument 29 if (tree.getAttributeValue(attrIndex, &value) < 0) { in getStringAttributeAtIndex() 44 const uint16_t* str = tree.getAttributeStringValue(attrIndex, &len); in getStringAttributeAtIndex() 48 static int32_t getIntegerAttributeAtIndex(const ResXMLTree& tree, ssize_t attrIndex, in getIntegerAttributeAtIndex() argument 51 if (tree.getAttributeValue(attrIndex, &value) < 0) { in getIntegerAttributeAtIndex()
|
D | Resource.cpp | 2875 ssize_t attrIndex = tree.indexOfAttribute(nsAttr.ns, nsAttr.attr); in writeProguardForXml() local 2876 if (attrIndex < 0) { in writeProguardForXml() 2883 … String8(tree.getAttributeStringValue(attrIndex, &len)), NULL, in writeProguardForXml() 2889 ssize_t attrIndex = tree.indexOfAttribute(RESOURCES_ANDROID_NAMESPACE, "onClick"); in writeProguardForXml() local 2890 if (attrIndex >= 0) { in writeProguardForXml() 2893 String8(tree.getAttributeStringValue(attrIndex, &len)), NULL, in writeProguardForXml()
|
D | ResourceTable.cpp | 4474 size_t attrIndex = attrsToRemove[i].value; in modifyForCompat() local 4475 const XMLNode::attribute_entry& ae = node->getAttributes()[attrIndex]; in modifyForCompat() 4484 node->removeAttribute(attrIndex); in modifyForCompat()
|
/frameworks/native/opengl/libagl/ |
D | egl.cpp | 1208 int attrIndex; in getConfigAttrib() local 1209 attrIndex = binarySearch<config_pair_t>( in getConfigAttrib() 1213 if (attrIndex>=0) { in getConfigAttrib() 1214 *value = gConfigs[index].array[attrIndex].value; in getConfigAttrib() 1218 attrIndex = binarySearch<config_pair_t>( in getConfigAttrib() 1222 if (attrIndex>=0) { in getConfigAttrib() 1223 *value = config_base_attribute_list[attrIndex].value; in getConfigAttrib()
|