Searched defs:requiresSmallestWidthDp (Results 1 - 2 of 2) 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();
/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...]

Completed in 113 milliseconds