Home
last modified time | relevance | path

Searched refs:attributeName (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
DShaderProgram.java144 public void setAttributeValues(String attributeName, float[] data, int componentCount) { in setAttributeValues() argument
145 if (!setShaderAttributeValues(attributeName, data, componentCount)) { in setAttributeValues()
147 attributeName + "'!"); in setAttributeValues()
151 public void setAttributeValues(String attributeName, in setAttributeValues() argument
158 if (!setShaderAttributeVertexFrame(attributeName, in setAttributeValues()
166 attributeName + "'!"); in setAttributeValues()
292 private native boolean setShaderAttributeValues(String attributeName, in setShaderAttributeValues() argument
296 private native boolean setShaderAttributeVertexFrame(String attributeName, in setShaderAttributeVertexFrame() argument
/frameworks/base/services/core/java/com/android/server/firewall/
DStringFilter.java79 String attributeName = parser.getAttributeName(attributeIndex); in getFilter() local
81 switch (attributeName.charAt(0)) { in getFilter()
83 if (!attributeName.equals(ATTR_EQUALS)) { in getFilter()
88 if (!attributeName.equals(ATTR_IS_NULL)) { in getFilter()
93 if (!attributeName.equals(ATTR_STARTS_WITH)) { in getFilter()
99 if (!attributeName.equals(ATTR_CONTAINS)) { in getFilter()
104 if (!attributeName.equals(ATTR_PATTERN)) { in getFilter()
110 if (!attributeName.equals(ATTR_REGEX)) { in getFilter()
/frameworks/base/services/core/java/com/android/server/timezone/
DPackageStatusStorage.java361 private static Integer getNullableIntAttribute(XmlPullParser parser, String attributeName) in getNullableIntAttribute() argument
363 String attributeValue = parser.getAttributeValue(null, attributeName); in getNullableIntAttribute()
366 throw new ParseException("Attribute " + attributeName + " missing", 0); in getNullableIntAttribute()
373 "Bad integer for attributeName=" + attributeName + ": " + attributeValue, 0); in getNullableIntAttribute()
377 private static int getIntAttribute(XmlPullParser parser, String attributeName) in getIntAttribute() argument
379 Integer value = getNullableIntAttribute(parser, attributeName); in getIntAttribute()
381 throw new ParseException("Missing attribute " + attributeName, 0); in getIntAttribute()
/frameworks/av/media/libstagefright/xmlparser/test/
DXMLParserTest.cpp269 string attributeName = itr_attributeMap->first; in checkRoleMap() local
273 ASSERT_EQ(attributeName, attributeNameDB) in checkRoleMap()
274 << "Invalid RoleMap data. Attribute name mismatch\t" << attributeName << " != " in checkRoleMap()
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DImageShader.java400 public void setAttributeValues(String attributeName, float[] data, int components) { in setAttributeValues() argument
401 VertexAttribute attr = getProgramAttribute(attributeName, true); in setAttributeValues()
405 public void setAttributeValues(String attributeName, int vbo, int type, int components, in setAttributeValues() argument
407 VertexAttribute attr = getProgramAttribute(attributeName, true); in setAttributeValues()
/frameworks/layoutlib/bridge/src/android/content/res/
DResources_Delegate.java155 String attributeName = resourceInfo.getName(); in getResourceValue() local
161 resourceInfo.getResourceType(), attributeName, attributeName); in getResourceValue()
163 return Pair.of(attributeName, value); in getResourceValue()
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/
DBridge.java582 public static Map<String, Integer> getEnumValues(String attributeName) { in getEnumValues() argument
584 return sEnumValueMap.get(attributeName); in getEnumValues()
/frameworks/base/core/java/android/content/pm/
DRegisteredServicesCache.java151 String attributeName, XmlSerializerAndParser<V> serializerAndParser) { in RegisteredServicesCache() argument
155 mAttributesName = attributeName; in RegisteredServicesCache()