Home
last modified time | relevance | path

Searched refs:crop (Results 1 – 4 of 4) sorted by relevance

/development/tools/winscope/src/flickerlib/layers/
DLayer.ts34 let crop: Rect variable
35 if (proto.crop) {
36 crop = toRect(proto.crop)
63 crop,
/development/tools/winscope/src/mixins/
DTimeline.js120 ((this.crop?.right ?? 1) - (this.crop?.left ?? 0)) *
236 if (!this.crop) {
240 return (cx - this.crop.left) / (this.crop.right - this.crop.left);
244 if (!this.crop) {
248 return pos * (this.crop.right - this.crop.left) + this.crop.left;
/development/tools/winscope/spec/traces/
DExpectedTraces.js29 crop: standardCrop, property
208 crop: standardCrop, property
301 crop: new Rect(0, 0, 1440, 2960), property
405 crop: new Rect(0, 0, 1440, 2880), property
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
DLabelMaker.java376 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()