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

/frameworks/base/core/java/android/content/pm/
H A DApplicationInfo.java406 * android:requiresSmallestWidthDp} attribute of the <supports-screens> tag.
408 public int requiresSmallestWidthDp = 0; field in class:ApplicationInfo
602 pw.println(prefix + "requiresSmallestWidthDp=" + requiresSmallestWidthDp
683 requiresSmallestWidthDp = orig.requiresSmallestWidthDp;
733 dest.writeInt(requiresSmallestWidthDp);
782 requiresSmallestWidthDp = source.readInt();
/frameworks/base/tools/aapt/
H A DCommand.cpp882 int requiresSmallestWidthDp = 0; local
1264 requiresSmallestWidthDp = AaptXml::getIntegerAttribute(tree,
1911 && requiresSmallestWidthDp > 0) {
1914 compatWidth = requiresSmallestWidthDp;
1916 if (requiresSmallestWidthDp <= 240 && compatWidth >= 240) {
1921 if (requiresSmallestWidthDp <= 320 && compatWidth >= 320) {
1926 if (requiresSmallestWidthDp <= 480 && compatWidth >= 480) {
1931 if (requiresSmallestWidthDp <= 720 && compatWidth >= 720) {
1956 anyDensity = (targetSdk >= 4 || requiresSmallestWidthDp > 0
1974 if (requiresSmallestWidthDp >
[all...]

Completed in 772 milliseconds