Searched defs:attributeName (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/services/core/java/com/android/server/timezone/
H A DPackageStatusStorage.java361 private static Integer getNullableIntAttribute(XmlPullParser parser, String attributeName) argument
363 String attributeValue = parser.getAttributeValue(null, attributeName);
366 throw new ParseException("Attribute " + attributeName + " missing", 0);
373 "Bad integer for attributeName=" + attributeName + ": " + attributeValue, 0);
377 private static int getIntAttribute(XmlPullParser parser, String attributeName) argument
379 Integer value = getNullableIntAttribute(parser, attributeName);
381 throw new ParseException("Missing attribute " + attributeName, 0);
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridge.java571 public static Map<String, Integer> getEnumValues(String attributeName) { argument
573 return sEnumValueMap.get(attributeName);
/frameworks/base/core/java/android/content/pm/
H A DRegisteredServicesCache.java149 String attributeName, XmlSerializerAndParser<V> serializerAndParser) {
153 mAttributesName = attributeName;
148 RegisteredServicesCache(Context context, String interfaceName, String metaDataName, String attributeName, XmlSerializerAndParser<V> serializerAndParser) argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DShaderProgram.java144 public void setAttributeValues(String attributeName, float[] data, int componentCount) { argument
145 if (!setShaderAttributeValues(attributeName, data, componentCount)) {
147 attributeName + "'!");
151 public void setAttributeValues(String attributeName, argument
158 if (!setShaderAttributeVertexFrame(attributeName,
166 attributeName + "'!");
289 private native boolean setShaderAttributeValues(String attributeName, argument
293 private native boolean setShaderAttributeVertexFrame(String attributeName, argument
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DImageShader.java400 public void setAttributeValues(String attributeName, float[] data, int components) { argument
401 VertexAttribute attr = getProgramAttribute(attributeName, true);
405 public void setAttributeValues(String attributeName, int vbo, int type, int components, argument
407 VertexAttribute attr = getProgramAttribute(attributeName, true);

Completed in 137 milliseconds