Searched refs:requiresSmallestWidthDp (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DApplicationInfo.java548 * android:requiresSmallestWidthDp} attribute of the <supports-screens> tag.
550 public int requiresSmallestWidthDp = 0; field in class:ApplicationInfo
794 pw.println(prefix + "requiresSmallestWidthDp=" + requiresSmallestWidthDp
900 requiresSmallestWidthDp = orig.requiresSmallestWidthDp;
956 dest.writeInt(requiresSmallestWidthDp);
1012 requiresSmallestWidthDp = source.readInt();
H A DPackageParser.java1976 pkg.applicationInfo.requiresSmallestWidthDp = sa.getInteger(
/frameworks/base/core/java/android/content/res/
H A DCompatibilityInfo.java99 if (appInfo.requiresSmallestWidthDp != 0 || appInfo.compatibleWidthLimitDp != 0
102 int required = appInfo.requiresSmallestWidthDp != 0
103 ? appInfo.requiresSmallestWidthDp
/frameworks/base/tools/aapt/
H A DCommand.cpp1060 int requiresSmallestWidthDp = 0; local
1457 requiresSmallestWidthDp = AaptXml::getIntegerAttribute(tree,
2130 && requiresSmallestWidthDp > 0) {
2133 compatWidth = requiresSmallestWidthDp;
2135 if (requiresSmallestWidthDp <= 240 && compatWidth >= 240) {
2140 if (requiresSmallestWidthDp <= 320 && compatWidth >= 320) {
2145 if (requiresSmallestWidthDp <= 480 && compatWidth >= 480) {
2150 if (requiresSmallestWidthDp <= 720 && compatWidth >= 720) {
2175 anyDensity = (targetSdk >= 4 || requiresSmallestWidthDp > 0
2193 if (requiresSmallestWidthDp >
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java3183 && r.appInfo.requiresSmallestWidthDp > mConfiguration.smallestScreenWidthDp) {

Completed in 559 milliseconds