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

/frameworks/base/core/java/android/content/pm/
H A DApplicationInfo.java359 * android:requiresSmallestWidthDp} attribute of the <supports-screens> tag.
361 public int requiresSmallestWidthDp = 0; field in class:ApplicationInfo
466 pw.println(prefix + "requiresSmallestWidthDp=" + requiresSmallestWidthDp
540 requiresSmallestWidthDp = orig.requiresSmallestWidthDp;
579 dest.writeInt(requiresSmallestWidthDp);
617 requiresSmallestWidthDp = source.readInt();
H A DPackageParser.java1178 pkg.applicationInfo.requiresSmallestWidthDp = sa.getInteger(
/frameworks/base/tools/aapt/
H A DCommand.cpp700 int requiresSmallestWidthDp = 0; local
919 requiresSmallestWidthDp = getIntegerAttribute(tree,
1390 && requiresSmallestWidthDp > 0) {
1392 if (compatWidth <= 0) compatWidth = requiresSmallestWidthDp;
1393 if (requiresSmallestWidthDp <= 240 && compatWidth >= 240) {
1398 if (requiresSmallestWidthDp <= 320 && compatWidth >= 320) {
1403 if (requiresSmallestWidthDp <= 480 && compatWidth >= 480) {
1408 if (requiresSmallestWidthDp <= 720 && compatWidth >= 720) {
1433 anyDensity = (targetSdk >= 4 || requiresSmallestWidthDp > 0
1443 if (requiresSmallestWidthDp >
[all...]
/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

Completed in 92 milliseconds