Searched refs:triangularPath (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/ |
D | TriangleShape.java | 40 Path triangularPath = new Path(); in create() local 42 triangularPath.moveTo(0, height); in create() 43 triangularPath.lineTo(width, height); in create() 44 triangularPath.lineTo(width / 2, 0); in create() 45 triangularPath.close(); in create() 47 triangularPath.moveTo(0, 0); in create() 48 triangularPath.lineTo(width / 2, height); in create() 49 triangularPath.lineTo(width, 0); in create() 50 triangularPath.close(); in create() 52 return new TriangleShape(triangularPath, width, height); in create() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/ |
D | TriangleShape.java | 38 Path triangularPath = new Path(); in create() local 40 triangularPath.moveTo(0, height); in create() 41 triangularPath.lineTo(width, height); in create() 42 triangularPath.lineTo(width / 2, 0); in create() 43 triangularPath.close(); in create() 45 triangularPath.moveTo(0, 0); in create() 46 triangularPath.lineTo(width / 2, height); in create() 47 triangularPath.lineTo(width, 0); in create() 48 triangularPath.close(); in create() 50 return new TriangleShape(triangularPath, width, height); in create() [all …]
|