Home | History | Annotate | Download | only in hwc

Lines Matching refs:dim

261     HwcTestDim dim;
271 if (!in || ((chStart != '<') && (chStart != '['))) { return dim; }
275 if (!in) { return dim; }
276 dim.setWidth(val);
278 if (!in || (ch != ',')) { return dim; }
282 if (!in) { return dim; }
283 dim.setHeight(val);
287 if (!in) { return dim; }
289 || ((chStart == '[') && (ch != ']'))) { return dim; }
292 if ((dim.width() <= 0) || (dim.height() <= 0)) { return dim; }
296 return dim;