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

/frameworks/base/core/java/android/content/pm/
H A DApplicationInfo.java597 * android:requiresSmallestWidthDp} attribute of the <supports-screens> tag.
599 public int requiresSmallestWidthDp = 0; field in class:ApplicationInfo
1029 pw.println(prefix + "requiresSmallestWidthDp=" + requiresSmallestWidthDp
1140 requiresSmallestWidthDp = orig.requiresSmallestWidthDp;
1203 dest.writeInt(requiresSmallestWidthDp);
1271 requiresSmallestWidthDp = source.readInt();
/frameworks/base/tools/aapt/
H A DCommand.cpp1091 int requiresSmallestWidthDp = 0; local
1495 requiresSmallestWidthDp = AaptXml::getIntegerAttribute(tree,
2192 && requiresSmallestWidthDp > 0) {
2195 compatWidth = requiresSmallestWidthDp;
2197 if (requiresSmallestWidthDp <= 240 && compatWidth >= 240) {
2202 if (requiresSmallestWidthDp <= 320 && compatWidth >= 320) {
2207 if (requiresSmallestWidthDp <= 480 && compatWidth >= 480) {
2212 if (requiresSmallestWidthDp <= 720 && compatWidth >= 720) {
2237 anyDensity = (targetSdk >= 4 || requiresSmallestWidthDp > 0
2255 if (requiresSmallestWidthDp >
[all...]

Completed in 191 milliseconds