Home | History | Annotate | Download | only in res

Lines Matching refs:smallestScreenWidthDp

519      * Default value for {@link #smallestScreenWidthDp} indicating that no width
533 public int smallestScreenWidthDp;
641 smallestScreenWidthDp = o.smallestScreenWidthDp;
680 if (smallestScreenWidthDp != SMALLEST_SCREEN_WIDTH_DP_UNDEFINED) {
681 sb.append(" sw"); sb.append(smallestScreenWidthDp); sb.append("dp");
806 smallestScreenWidthDp = compatSmallestScreenWidthDp = SMALLEST_SCREEN_WIDTH_DP_UNDEFINED;
929 if (delta.smallestScreenWidthDp != SMALLEST_SCREEN_WIDTH_DP_UNDEFINED
930 && smallestScreenWidthDp != delta.smallestScreenWidthDp) {
932 smallestScreenWidthDp = delta.smallestScreenWidthDp;
1053 if (delta.smallestScreenWidthDp != SMALLEST_SCREEN_WIDTH_DP_UNDEFINED
1054 && smallestScreenWidthDp != delta.smallestScreenWidthDp) {
1144 dest.writeInt(smallestScreenWidthDp);
1172 smallestScreenWidthDp = source.readInt();
1242 n = this.smallestScreenWidthDp - that.smallestScreenWidthDp;
1280 result = 31 * result + smallestScreenWidthDp;
1389 if (config.smallestScreenWidthDp != 0) {
1390 parts.add("sw" + config.smallestScreenWidthDp + "dp");
1660 if (base.smallestScreenWidthDp != change.smallestScreenWidthDp) {
1661 delta.smallestScreenWidthDp = change.smallestScreenWidthDp;
1730 configOut.smallestScreenWidthDp =
1793 if (config.smallestScreenWidthDp != SMALLEST_SCREEN_WIDTH_DP_UNDEFINED) {
1794 XmlUtils.writeIntAttribute(xml, XML_ATTR_SMALLEST_WIDTH, config.smallestScreenWidthDp);