Home
last modified time | relevance | path

Searched refs:attributeName (Results 1 – 11 of 11) 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(TypedXmlPullParser 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(TypedXmlPullParser 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/base/services/core/java/com/android/server/tv/tunerresourcemanager/
DUseCasePriorityHints.java195 private int readAttributeToInt(String attributeName, TypedXmlPullParser parser) in readAttributeToInt() argument
197 return parser.getAttributeInt(null, attributeName); in readAttributeToInt()
206 private static int formatTypeToNum(String attributeName, TypedXmlPullParser parser) { in formatTypeToNum() argument
207 String useCaseName = parser.getAttributeValue(null, attributeName); in formatTypeToNum()
/frameworks/base/tools/xmlpersistence/src/main/kotlin/
DGenerator.kt223 stringVariableName, field.attributeName in generateParseClassMethod()
255 variableName, field.attributeName in generateParseClassMethod()
460 "serializer.attribute(null, \$1S, \$2L)", field.attributeName, in generateSerializeClassMethod()
474 "serializer.attribute(null, \$1S, \$2L)", field.attributeName, in generateSerializeClassMethod()
545 private val FieldInfo.attributeName: String constant
/frameworks/base/services/core/java/com/android/server/pm/
DUserTypeFactory.java413 private static void setIntAttribute(XmlResourceParser parser, String attributeName, in setIntAttribute() argument
415 final String intValue = parser.getAttributeValue(null, attributeName); in setIntAttribute()
422 Slog.e(LOG_TAG, "Cannot parse value of '" + intValue + "' for " + attributeName in setIntAttribute()
436 private static void setResAttribute(XmlResourceParser parser, String attributeName, in setResAttribute() argument
438 if (parser.getAttributeValue(null, attributeName) == null) { in setResAttribute()
442 final int resId = parser.getAttributeResourceValue(null, attributeName, Resources.ID_NULL); in setResAttribute()
/frameworks/av/media/libstagefright/xmlparser/test/
DXMLParserTest.cpp298 string attributeName = itr_attributeMap->first; in checkRoleMap() local
302 ASSERT_EQ(attributeName, attributeNameDB) in checkRoleMap()
303 << "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/com/android/layoutlib/bridge/
DBridge.java564 public static Map<String, Integer> getEnumValues(String attributeName) { in getEnumValues() argument
566 return sEnumValueMap.get(attributeName); in getEnumValues()
/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/base/core/java/android/content/pm/
DRegisteredServicesCache.java151 String attributeName, XmlSerializerAndParser<V> serializerAndParser) { in RegisteredServicesCache() argument
155 mAttributesName = attributeName; in RegisteredServicesCache()