Home
last modified time | relevance | path

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

/frameworks/base/tools/aapt2/
DManifestValidator.cpp104 StringPiece16 attributeName(parser->getAttributeName(idx, &len), len); in validateInlineAttribute() local
111 << attributeName in validateInlineAttribute()
116 return validateAttributeImpl(element, attributeName, result.value(), charSet, in validateInlineAttribute()
124 StringPiece16 attributeName(parser->getAttributeName(idx, &len), len); in validateAttribute() local
131 << attributeName in validateAttribute()
136 return validateAttributeImpl(element, attributeName, result.value(), charSet, in validateAttribute()
141 const StringPiece16& attributeName, in validateAttributeImpl() argument
152 << attributeName in validateAttributeImpl()
167 << attributeName in validateAttributeImpl()
178 << attributeName in validateAttributeImpl()
DResourceParser.cpp647 std::u16string attributeName = attrIter->value; in parseResources() local
663 success &= mTable->addResource(ResourceNameRef{ {}, ResourceType::kId, attributeName }, in parseResources()
668 ResourceNameRef{ {}, ResourceType::kString, attributeName }); in parseResources()
671 ResourceNameRef{ {}, ResourceType::kColor, attributeName }); in parseResources()
674 ResourceNameRef{ {}, ResourceType::kDrawable, attributeName }); in parseResources()
677 ResourceNameRef{ {}, ResourceType::kBool, attributeName }); in parseResources()
681 ResourceNameRef{ {}, ResourceType::kInteger, attributeName }); in parseResources()
684 ResourceNameRef{ {}, ResourceType::kDimen, attributeName }); in parseResources()
691 ResourceNameRef{ {}, ResourceType::kStyle, attributeName }); in parseResources()
694 ResourceNameRef{ {}, ResourceType::kPlurals, attributeName }); in parseResources()
[all …]
DManifestValidator.h46 bool validateAttributeImpl(const StringPiece16& element, const StringPiece16& attributeName,
/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()
289 private native boolean setShaderAttributeValues(String attributeName, in setShaderAttributeValues() argument
293 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/tools/layoutlib/bridge/src/android/content/res/
DBridgeResources.java139 String attributeName = resourceInfo.getSecond(); in getResourceValue() local
141 return Pair.of(attributeName, mContext.getRenderResources().getFrameworkResource( in getResourceValue()
142 resourceInfo.getFirst(), attributeName)); in getResourceValue()
151 String attributeName = resourceInfo.getSecond(); in getResourceValue() local
153 return Pair.of(attributeName, mContext.getRenderResources().getProjectResource( in getResourceValue()
154 resourceInfo.getFirst(), attributeName)); in getResourceValue()
/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/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
DBridge.java620 public static Map<String, Integer> getEnumValues(String attributeName) { in getEnumValues() argument
622 return sEnumValueMap.get(attributeName); in getEnumValues()
/frameworks/base/core/java/android/content/pm/
DRegisteredServicesCache.java143 String attributeName, XmlSerializerAndParser<V> serializerAndParser) { in RegisteredServicesCache() argument
147 mAttributesName = attributeName; in RegisteredServicesCache()