Lines Matching refs:dstr
23623 var dstr = [], zstr = [];
23632 dstr.push(dd + (dstyle == 2 ? " week" + (dd == 1 ? "" : "s") : dstyle == 1 ? "w" : ""));
23641 dstr.push(dd + (dstyle == 2 ? " day" + (dd == 1 ? "" : "s") : dstyle == 1 ? "d" : ""));
23650 dstr.push(dd + (dstyle == 2 ? " hour" + (dd == 1 ? "" : "s") : dstyle == 1 ? "h" : ""));
23660 dstr.push((dmin == 8 && dmax == 8 || dd >= 10 ? "" : "0") + dd);
23662 dstr.push(dd + (dstyle == 2 ? " minute" + (dd == 1 ? "" : "s") : dstyle == 1 ? "m" : ""));
23672 dstr.push((dmax == 16 && dmin == 16 || dd >= 10 ? "" : "0") + dd);
23674 dstr.push(dd + (dstyle == 2 ? " second" + (dd == 1 ? "" : "s") : dstyle == 1 ? "s" : ""));
23681 dstr.push((dd >= 100 ? "" : dd >= 10 ? "0" : "00") + dd);
23683 … dstr.push(dd + (dstyle == 2 ? " millisecond" + (dd == 1 ? "" : "s") : dstyle == 1 ? "ms" : ""));
23685 cell.w = dstr.join(dstyle == 0 ? ":" : " ");