Home
last modified time | relevance | path

Searched refs:getAttributeBooleanValue (Results 1 – 25 of 25) sorted by relevance

/aosp12/frameworks/base/core/java/android/content/pm/parsing/
H A DApkLiteParseUtils.java359 boolean coreApp = parser.getAttributeBooleanValue(null, "coreApp", false); in parseApkLite()
360 boolean isolatedSplits = parser.getAttributeBooleanValue(ANDROID_RES_NAMESPACE, in parseApkLite()
362 boolean isFeatureSplit = parser.getAttributeBooleanValue(ANDROID_RES_NAMESPACE, in parseApkLite()
364 boolean isSplitRequired = parser.getAttributeBooleanValue(ANDROID_RES_NAMESPACE, in parseApkLite()
406 debuggable = parser.getAttributeBooleanValue(ANDROID_RES_NAMESPACE, "debuggable", in parseApkLite()
408 multiArch = parser.getAttributeBooleanValue(ANDROID_RES_NAMESPACE, "multiArch", in parseApkLite()
410 use32bitAbi = parser.getAttributeBooleanValue(ANDROID_RES_NAMESPACE, "use32bitAbi", in parseApkLite()
412 extractNativeLibs = parser.getAttributeBooleanValue(ANDROID_RES_NAMESPACE, in parseApkLite()
414 useEmbeddedDex = parser.getAttributeBooleanValue(ANDROID_RES_NAMESPACE, in parseApkLite()
433 profilableByShell = parser.getAttributeBooleanValue(ANDROID_RES_NAMESPACE, in parseApkLite()
[all …]
H A DParsingPackageUtils.java610 parser.getAttributeBooleanValue(null, "coreApp", false); in parseBaseApk()
/aosp12/frameworks/base/core/java/android/util/
H A DAttributeSet.java173 public boolean getAttributeBooleanValue(String namespace, String attribute, in getAttributeBooleanValue() method
253 public boolean getAttributeBooleanValue(int index, boolean defaultValue); in getAttributeBooleanValue() method
H A DXmlPullAttributes.java68 public boolean getAttributeBooleanValue(String namespace, String attribute, in getAttributeBooleanValue() method in XmlPullAttributes
107 public boolean getAttributeBooleanValue(int index, boolean defaultValue) { in getAttributeBooleanValue() method in XmlPullAttributes
/aosp12/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/role/model/
H A DRoleParser.java289 boolean allowBypassingQualification = getAttributeBooleanValue(parser, in parseRole()
312 boolean visible = getAttributeBooleanValue(parser, ATTRIBUTE_VISIBLE, true); in parseRole()
345 boolean fallBackToDefaultHolder = getAttributeBooleanValue(parser, in parseRole()
351 boolean overrideUserWhenGranting = getAttributeBooleanValue(parser, in parseRole()
354 boolean requestable = getAttributeBooleanValue(parser, ATTRIBUTE_REQUESTABLE, visible); in parseRole()
379 boolean showNone = getAttributeBooleanValue(parser, ATTRIBUTE_SHOW_NONE, false); in parseRole()
386 boolean statik = getAttributeBooleanValue(parser, ATTRIBUTE_STATIC, false); in parseRole()
394 boolean systemOnly = getAttributeBooleanValue(parser, ATTRIBUTE_SYSTEM_ONLY, false); in parseRole()
903 private boolean getAttributeBooleanValue(@NonNull XmlResourceParser parser, in getAttributeBooleanValue() method in RoleParser
905 return parser.getAttributeBooleanValue(null, name, defaultValue); in getAttributeBooleanValue()
[all …]
H A DAssistantRoleBehavior.java221 supportsAssist = attrs.getAttributeBooleanValue(i, false); in isAssistantVoiceInteractionService()
/aosp12/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DNopAttributeSet.java71 public boolean getAttributeBooleanValue(String namespace, String attribute, in getAttributeBooleanValue() method in NopAttributeSet
104 public boolean getAttributeBooleanValue(int index, boolean defaultValue) { in getAttributeBooleanValue() method in NopAttributeSet
H A DBridgeLayoutParamsMapAttributes.java90 public boolean getAttributeBooleanValue(String namespace, String attribute, in getAttributeBooleanValue() method in BridgeLayoutParamsMapAttributes
126 public boolean getAttributeBooleanValue(int index, boolean defaultValue) { in getAttributeBooleanValue() method in BridgeLayoutParamsMapAttributes
H A DBridgeXmlBlockParser.java409 public boolean getAttributeBooleanValue(int index, boolean defaultValue) { in getAttributeBooleanValue() method in BridgeXmlBlockParser
410 return mAttrib.getAttributeBooleanValue(index, defaultValue); in getAttributeBooleanValue()
414 public boolean getAttributeBooleanValue(String namespace, String attribute, in getAttributeBooleanValue() method in BridgeXmlBlockParser
416 return mAttrib.getAttributeBooleanValue(namespace, attribute, defaultValue); in getAttributeBooleanValue()
/aosp12/frameworks/base/core/java/android/security/net/config/
H A DXmlConfigSource.java157 parser.getAttributeBooleanValue(null, "includeSubdomains", false); in parseDomain()
178 parser.getAttributeBooleanValue(null, "overridePins", defaultOverridePins); in parseCertificatesEntry()
240 parser.getAttributeBooleanValue(i, in parseConfigEntry()
244 parser.getAttributeBooleanValue(i, in parseConfigEntry()
/aosp12/frameworks/base/core/java/android/content/res/
H A DXmlBlock.java352 public boolean getAttributeBooleanValue(String namespace, String attribute, in getAttributeBooleanValue() method in XmlBlock.Parser
356 return getAttributeBooleanValue(idx, defaultValue); in getAttributeBooleanValue()
404 public boolean getAttributeBooleanValue(int idx, in getAttributeBooleanValue() method in XmlBlock.Parser
H A DColorStateList.java390 stateSpec[j++] = attrs.getAttributeBooleanValue(i, false) in inflate()
/aosp12/frameworks/layoutlib/bridge/src/android/util/
H A DBridgeXmlPullAttributes.java135 public boolean getAttributeBooleanValue(String namespace, String attribute, in getAttributeBooleanValue() method in BridgeXmlPullAttributes
241 public boolean getAttributeBooleanValue(int index, boolean defaultValue) { in getAttributeBooleanValue() method in BridgeXmlPullAttributes
/aosp12/frameworks/base/graphics/java/android/graphics/drawable/
H A DStateListDrawable.java228 states[j++] = attrs.getAttributeBooleanValue(i, false) in extractStateSet()
/aosp12/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java1635 coreApp = attrs.getAttributeBooleanValue(i, false); in parseApkLite()
1637 isolatedSplits = attrs.getAttributeBooleanValue(i, false); in parseApkLite()
1641 isFeatureSplit = attrs.getAttributeBooleanValue(i, false); in parseApkLite()
1643 isSplitRequired = attrs.getAttributeBooleanValue(i, false); in parseApkLite()
1671 debuggable = attrs.getAttributeBooleanValue(i, false); in parseApkLite()
1674 multiArch = attrs.getAttributeBooleanValue(i, false); in parseApkLite()
1677 use32bitAbi = attrs.getAttributeBooleanValue(i, false); in parseApkLite()
1680 extractNativeLibs = attrs.getAttributeBooleanValue(i, true); in parseApkLite()
1683 useEmbeddedDex = attrs.getAttributeBooleanValue(i, false); in parseApkLite()
1699 overlayIsStatic = attrs.getAttributeBooleanValue(i, false); in parseApkLite()
[all …]
/aosp12/frameworks/base/core/java/android/animation/
H A DAnimatorInflater.java232 attributeSet.getAttributeBooleanValue(i, false) ? in createStateListAnimatorFromXml()
/aosp12/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
H A DZenModeHelperTest.java2034 public boolean getAttributeBooleanValue(String namespace, String attribute, in getAttributeBooleanValue() method in ZenModeHelperTest.XmlResourceParserImpl
2067 public boolean getAttributeBooleanValue(int index, boolean defaultValue) { in getAttributeBooleanValue() method in ZenModeHelperTest.XmlResourceParserImpl
/aosp12/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustManagerService.java818 canUnlockProfile = attrs.getAttributeBooleanValue( in getSettingsAttrs()
/aosp12/packages/apps/Contacts/src/com/android/contacts/model/account/
H A DBaseAccountType.java689 return attrs.getAttributeBooleanValue(null, attribute, defaultValue); in getAttr()
/aosp12/packages/apps/Dialer/java/com/android/contacts/common/model/account/
H A DBaseAccountType.java148 return attrs.getAttributeBooleanValue(null, attribute, defaultValue); in getAttr()
/aosp12/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...
/aosp12/frameworks/base/boot/
H A Dboot-image-profile.txt5697 HSPLandroid/content/res/XmlBlock$Parser;->getAttributeBooleanValue(IZ)Z
5698 HSPLandroid/content/res/XmlBlock$Parser;->getAttributeBooleanValue(Ljava/lang/String;Ljava/lang/Str…
/aosp12/frameworks/base/core/api/
H A Dcurrent.txt46066 method public boolean getAttributeBooleanValue(String, String, boolean);
46067 method public boolean getAttributeBooleanValue(int, boolean);
/aosp12/frameworks/opt/setupwizard/tools/docs/
H A Dandroid-22.txt31367 …method public abstract boolean getAttributeBooleanValue(java.lang.String, java.lang.String, boolea…
31368 method public abstract boolean getAttributeBooleanValue(int, boolean);
/aosp12/frameworks/base/config/
H A Dboot-image-profile.txt5695 HSPLandroid/content/res/XmlBlock$Parser;->getAttributeBooleanValue(IZ)Z
5696 HSPLandroid/content/res/XmlBlock$Parser;->getAttributeBooleanValue(Ljava/lang/String;Ljava/lang/Str…