Home | History | Annotate | Download | only in res

Lines Matching defs:screenWidthDp

674      * Default value for {@link #screenWidthDp} indicating that no width
686 public int screenWidthDp;
714 * This is the smallest value of both screenWidthDp and screenHeightDp
891 screenWidthDp = o.screenWidthDp;
940 if (screenWidthDp != SCREEN_WIDTH_DP_UNDEFINED) {
941 sb.append(" w"); sb.append(screenWidthDp); sb.append("dp");
1081 screenWidthDp = compatScreenWidthDp = SCREEN_WIDTH_DP_UNDEFINED;
1245 if (delta.screenWidthDp != SCREEN_WIDTH_DP_UNDEFINED
1246 && screenWidthDp != delta.screenWidthDp) {
1248 screenWidthDp = delta.screenWidthDp;
1415 if ((compareUndefined || delta.screenWidthDp != SCREEN_WIDTH_DP_UNDEFINED)
1416 && screenWidthDp != delta.screenWidthDp) {
1533 dest.writeInt(screenWidthDp);
1569 screenWidthDp = source.readInt();
1656 n = this.screenWidthDp - that.screenWidthDp;
1716 result = 31 * result + screenWidthDp;
1954 if (config.screenWidthDp != 0) {
1955 parts.add("w" + config.screenWidthDp + "dp");
2266 if (base.screenWidthDp != change.screenWidthDp) {
2267 delta.screenWidthDp = change.screenWidthDp;
2348 configOut.screenWidthDp = XmlUtils.readIntAttribute(parser, XML_ATTR_SCREEN_WIDTH,
2417 if (config.screenWidthDp != SCREEN_WIDTH_DP_UNDEFINED) {
2418 XmlUtils.writeIntAttribute(xml, XML_ATTR_SCREEN_WIDTH, config.screenWidthDp);