Lines Matching full:unsorted
241 SkIRect unsorted = { 15, 5, 10, 25 };
242 SkDebugf("unsorted.fLeft: %d unsorted.left(): %d\n", unsorted.fLeft, unsorted.left());
243 SkIRect sorted = unsorted.makeSorted();
246 unsorted.fLeft: 15 unsorted.left(): 15
267 SkIRect unsorted = { 15, 25, 10, 5 };
268 SkDebugf("unsorted.fTop: %d unsorted.top(): %d\n", unsorted.fTop, unsorted.top());
269 SkIRect sorted = unsorted.makeSorted();
272 unsorted.fTop: 25 unsorted.top(): 25
293 SkIRect unsorted = { 15, 25, 10, 5 };
294 SkDebugf("unsorted.fRight: %d unsorted.right(): %d\n", unsorted.fRight, unsorted.right());
295 SkIRect sorted = unsorted.makeSorted();
298 unsorted.fRight: 10 unsorted.right(): 10
319 SkIRect unsorted = { 15, 25, 10, 5 };
320 SkDebugf("unsorted.fBottom: %d unsorted.bottom(): %d\n", unsorted.fBottom, unsorted.bottom());
321 SkIRect sorted = unsorted.makeSorted();
324 unsorted.fBottom: 5 unsorted.bottom(): 5
345 SkIRect unsorted = { 15, 5, 10, 25 };
346 SkDebugf("unsorted.fLeft: %d unsorted.x(): %d\n", unsorted.fLeft, unsorted.x());
347 SkIRect sorted = unsorted.makeSorted();
350 unsorted.fLeft: 15 unsorted.x(): 15
371 SkIRect unsorted = { 15, 25, 10, 5 };
372 SkDebugf("unsorted.fTop: %d unsorted.y(): %d\n", unsorted.fTop, unsorted.y());
373 SkIRect sorted = unsorted.makeSorted();
376 unsorted.fTop: 25 unsorted.y(): 25
397 SkIRect unsorted = { 15, 25, 10, 5 };
398 SkDebugf("unsorted width: %d\n", unsorted.width());
402 unsorted width: -5
449 SkIRect unsorted = { 15, 25, 10, 20 };
450 SkDebugf("unsorted height: %d\n", unsorted.height());
454 unsorted height: -5
1337 #Line # returns true if contains unsorted IRect ##