Searched refs:crop (Results 1 – 2 of 2) sorted by relevance
/development/tools/winscope/src/ |
D | transform_sf.js | 47 var crop = layer.crop || {left: 0, top: 0, right: 0 , bottom:0}; 49 left: crop.left || 0, 50 right: crop.right || 0, 51 top: crop.top || 0, 52 bottom: crop.bottom || 0 56 function intersect(bounds, crop) { argument 58 left: Math.max(crop.left, bounds.left), 59 right: Math.min(crop.right, bounds.right), 60 top: Math.max(crop.top, bounds.top), 61 bottom: Math.min(crop.bottom, bounds.bottom), [all …]
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
D | LabelMaker.java | 376 int[] crop = new int[4]; in Label() local 377 crop[0] = cropU; in Label() 378 crop[1] = cropV; in Label() 379 crop[2] = cropW; in Label() 380 crop[3] = cropH; in Label() 381 mCrop = crop; in Label()
|