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.cpp701 int requiresSmallestWidthDp = 0; local
920 requiresSmallestWidthDp = getIntegerAttribute(tree,
1391 && requiresSmallestWidthDp > 0) {
1393 if (compatWidth <= 0) compatWidth = requiresSmallestWidthDp;
1394 if (requiresSmallestWidthDp <= 240 && compatWidth >= 240) {
1399 if (requiresSmallestWidthDp <= 320 && compatWidth >= 320) {
1404 if (requiresSmallestWidthDp <= 480 && compatWidth >= 480) {
1409 if (requiresSmallestWidthDp <= 720 && compatWidth >= 720) {
1434 anyDensity = (targetSdk >= 4 || requiresSmallestWidthDp > 0
1444 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 1487 milliseconds