/frameworks/native/opengl/tests/hwc/ |
D | hwcRects.cpp | 405 string attrName; in parseRect() local 407 in >> attrName; in parseRect() 416 if (attrName == "transform:") { // Transform in parseRect() 437 } else if (attrName == "blend:") { // Blend in parseRect() 452 } else if (attrName == "color:") { // Color in parseRect() 458 } else if (attrName == "alpha:") { // Alpha in parseRect() 465 } else if (attrName == "sourceDim:") { // Source Dimension in parseRect() 472 } else if (attrName == "sourceCrop:") { // Source Crop in parseRect() 480 testPrintE("Unknown attribute of \"%s\" in: %s", attrName.c_str(), in parseRect()
|
/frameworks/layoutlib/bridge/tests/src/android/util/ |
D | BridgeXmlPullAttributesTest.java | 64 attrName -> { in testGetAttributeIntValueForEnums() 65 if ("layout_width".equals(attrName)) { in testGetAttributeIntValueForEnums() 71 (ns, attrName) -> { in testGetAttributeIntValueForEnums() 72 if ("my_custom_attr".equals(attrName)) { in testGetAttributeIntValueForEnums()
|
/frameworks/layoutlib/bridge/src/android/util/ |
D | BridgeXmlPullAttributes.java | 47 @NonNull ResourceNamespace namespace, @NonNull String attrName); in getEnumValues() argument 77 this(parser, context, xmlFileResourceNamespace, Bridge::getEnumValues, (ns, attrName) -> { in BridgeXmlPullAttributes() 80 ResourceReference.attr(ns, attrName)); in BridgeXmlPullAttributes()
|
/frameworks/rs/driver/ |
D | rsdShaderCache.cpp | 236 int32_t RsdShaderCache::vtxAttribSlot(const std::string &attrName) const { in vtxAttribSlot() 238 if (attrName == mCurrent->vtxAttrs[ct].name) { in vtxAttribSlot()
|
D | rsdShaderCache.h | 58 int32_t vtxAttribSlot(const std::string &attrName) const;
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
D | BridgeContext.java | 868 String attrName = attributeHolder.getName(); in internalObtainStyledAttributes() local 872 attributeHolder.getNamespace().getXmlNamespaceUri(), attrName); in internalObtainStyledAttributes() 877 value = set.getAttributeValue(BridgeConstants.NS_APP_RES_AUTO, attrName); in internalObtainStyledAttributes() 927 ResourceValue patchedValue = FRAMEWORK_PATCHED_VALUES.get(attrName); in internalObtainStyledAttributes() 945 defaultValue = FRAMEWORK_REPLACE_VALUES.get(attrName); in internalObtainStyledAttributes() 951 !attrName.equals(RTL_ATTRS.get(val)))) { in internalObtainStyledAttributes() 964 attrName, attributeHolder.getNamespace(), in internalObtainStyledAttributes() 972 attrName, attributeHolder.getNamespace(), in internalObtainStyledAttributes()
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/ |
D | Bridge.java | 328 String attrName = name.substring(arrayName.length() + 1); in parseStyleable() local 331 sRMap.put(attrValue, Pair.of(ResourceType.ATTR, attrName)); in parseStyleable() 332 revRAttrMap.put(attrName, attrValue); in parseStyleable()
|
/frameworks/base/core/java/android/animation/ |
D | AnimatorInflater.java | 226 int attrName = attributeSet.getAttributeNameResource(i); in createStateListAnimatorFromXml() local 227 if (attrName == R.attr.animation) { in createStateListAnimatorFromXml() 233 attrName : -attrName; in createStateListAnimatorFromXml()
|
/frameworks/base/apex/jobscheduler/service/java/com/android/server/usage/ |
D | AppIdleHistory.java | 672 private long getLongValue(XmlPullParser parser, String attrName, long defValue) { in getLongValue() argument 673 String value = parser.getAttributeValue(null, attrName); in getLongValue()
|
/frameworks/base/core/java/android/content/ |
D | Intent.java | 11021 final String attrName = in.getAttributeName(attrNdx); in restoreFromXml() local 11023 if (ATTR_ACTION.equals(attrName)) { in restoreFromXml() 11025 } else if (ATTR_DATA.equals(attrName)) { in restoreFromXml() 11027 } else if (ATTR_TYPE.equals(attrName)) { in restoreFromXml() 11029 } else if (ATTR_IDENTIFIER.equals(attrName)) { in restoreFromXml() 11031 } else if (ATTR_COMPONENT.equals(attrName)) { in restoreFromXml() 11033 } else if (ATTR_FLAGS.equals(attrName)) { in restoreFromXml() 11036 Log.e(TAG, "restoreFromXml: unknown attribute=" + attrName); in restoreFromXml()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | ActivityRecord.java | 7377 final String attrName = in.getAttributeName(attrNdx); in restoreFromXml() local 7380 "ActivityRecord: attribute name=" + attrName + " value=" + attrValue); in restoreFromXml() 7381 if (ATTR_ID.equals(attrName)) { in restoreFromXml() 7383 } else if (ATTR_LAUNCHEDFROMUID.equals(attrName)) { in restoreFromXml() 7385 } else if (ATTR_LAUNCHEDFROMPACKAGE.equals(attrName)) { in restoreFromXml() 7387 } else if (ATTR_LAUNCHEDFROMFEATURE.equals(attrName)) { in restoreFromXml() 7389 } else if (ATTR_RESOLVEDTYPE.equals(attrName)) { in restoreFromXml() 7391 } else if (ATTR_COMPONENTSPECIFIED.equals(attrName)) { in restoreFromXml() 7393 } else if (ATTR_USERID.equals(attrName)) { in restoreFromXml() 7395 } else if (!attrName.startsWith(ATTR_TASKDESCRIPTION_PREFIX)) { in restoreFromXml() [all …]
|
D | Task.java | 4097 final String attrName = in.getAttributeName(attrNdx); 4100 Slog.d(TaskPersister.TAG, "Task: attribute name=" + attrName + " value=" 4103 switch (attrName) { 4196 if (!attrName.startsWith(TaskDescription.ATTR_TASKDESCRIPTION_PREFIX)) { 4197 Slog.w(TAG, "Task: Unknown attribute=" + attrName);
|
/frameworks/base/tools/aapt/ |
D | ResourceTable.cpp | 5141 String16 attrPackage, attrType, attrName; in processBundleFormatImpl() local 5144 &attrPackage, &attrType, &attrName, in processBundleFormatImpl() 5209 if (parent->getAttribute(attrNs, attrName) != NULL) { in processBundleFormatImpl() 5212 String8(attrPackage).string(), String8(attrName).string()); in processBundleFormatImpl() 5217 parent->addAttribute(attrNs, attrName, nestedResourceRef); in processBundleFormatImpl()
|
D | Resource.cpp | 756 const String16& attrName) { in fullyQualifyClassName() argument 758 String16("http://schemas.android.com/apk/res/android"), attrName); in fullyQualifyClassName()
|
/frameworks/opt/setupwizard/tools/docs/ |
D | doclava.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/ccil/
org/ ... |