Searched refs:attributeName (Results 1 - 7 of 7) sorted by relevance

/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/services/core/java/com/android/server/firewall/
H A DStringFilter.java79 String attributeName = parser.getAttributeName(attributeIndex);
81 switch (attributeName.charAt(0)) {
83 if (!attributeName.equals(ATTR_EQUALS)) {
88 if (!attributeName.equals(ATTR_IS_NULL)) {
93 if (!attributeName.equals(ATTR_STARTS_WITH)) {
99 if (!attributeName.equals(ATTR_CONTAINS)) {
104 if (!attributeName.equals(ATTR_PATTERN)) {
110 if (!attributeName.equals(ATTR_REGEX)) {
/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/android/content/res/
H A DResources_Delegate.java164 String attributeName = resourceInfo.getSecond();
167 renderResources.getFrameworkResource(resourceInfo.getFirst(), attributeName) :
168 renderResources.getProjectResource(resourceInfo.getFirst(), attributeName);
172 value = new ResourceValue(resourceInfo.getFirst(), attributeName, attributeName,
175 return Pair.of(attributeName, value);
/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);
/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

Completed in 16 milliseconds