Searched defs:requiresSmallestWidthDp (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DApplicationInfo.java334 * android:requiresSmallestWidthDp} attribute of the <supports-screens> tag.
336 public int requiresSmallestWidthDp = 0; field in class:ApplicationInfo
441 pw.println(prefix + "requiresSmallestWidthDp=" + requiresSmallestWidthDp
506 requiresSmallestWidthDp = orig.requiresSmallestWidthDp;
544 dest.writeInt(requiresSmallestWidthDp);
582 requiresSmallestWidthDp = source.readInt();
/frameworks/base/tools/aapt/
H A DCommand.cpp679 int requiresSmallestWidthDp = 0; local
889 requiresSmallestWidthDp = getIntegerAttribute(tree,
1272 && requiresSmallestWidthDp > 0) {
1274 if (compatWidth <= 0) compatWidth = requiresSmallestWidthDp;
1275 if (requiresSmallestWidthDp <= 240 && compatWidth >= 240) {
1280 if (requiresSmallestWidthDp <= 320 && compatWidth >= 320) {
1285 if (requiresSmallestWidthDp <= 480 && compatWidth >= 480) {
1290 if (requiresSmallestWidthDp <= 720 && compatWidth >= 720) {
1315 anyDensity = (targetSdk >= 4 || requiresSmallestWidthDp > 0
1325 if (requiresSmallestWidthDp >
[all...]

Completed in 119 milliseconds