Home
last modified time | relevance | path

Searched refs:ShapeDelegate (Results 1 – 8 of 8) sorted by relevance

/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/graphics/
DShapeDelegateTest.kt31 import com.android.launcher3.graphics.ShapeDelegate.Circle
32 import com.android.launcher3.graphics.ShapeDelegate.Companion.AREA_CALC_SIZE
33 import com.android.launcher3.graphics.ShapeDelegate.Companion.AREA_DIFF_THRESHOLD
34 import com.android.launcher3.graphics.ShapeDelegate.Companion.areaDiffCalculator
35 import com.android.launcher3.graphics.ShapeDelegate.Companion.pickBestShape
36 import com.android.launcher3.graphics.ShapeDelegate.GenericPathShape
37 import com.android.launcher3.graphics.ShapeDelegate.RoundedSquare
/packages/apps/Launcher3/src/com/android/launcher3/graphics/
DShapeDelegate.kt49 interface ShapeDelegate { in <lambda>() interface
93 open class RoundedSquare(val radiusRatio: Float) : ShapeDelegate { in <lambda>()
153 data class GenericPathShape(private val pathString: String) : ShapeDelegate { in <lambda>()
277 fun areaDiffCalculator(base: Path): (ShapeDelegate) -> Int { in <lambda>()
283 return fun(shape: ShapeDelegate): Int { in <lambda>()
292 fun pickBestShape(shapeStr: String): ShapeDelegate { in <lambda>()
314 fun pickBestShape(baseShape: Path, shapeStr: String): ShapeDelegate { in <lambda>()
318 var closestShape: ShapeDelegate = Circle() in <lambda>()
DThemeManager.kt29 import com.android.launcher3.graphics.ShapeDelegate.Companion.pickBestShape in <lambda>()
144 val iconShape: ShapeDelegate, in <lambda>()
145 val folderShape: ShapeDelegate, in <lambda>()
/packages/apps/Launcher3/src/com/android/launcher3/icons/
DLauncherIconProvider.java35 import com.android.launcher3.graphics.ShapeDelegate;
103 if (mThemeManager.getIconShape() instanceof ShapeDelegate.Circle) { in loadAppInfoIcon()
/packages/apps/Launcher3/src/com/android/launcher3/folder/
DPreviewBackground.java50 import com.android.launcher3.graphics.ShapeDelegate;
262 private ShapeDelegate getShape() { in getShape()
DFolderAnimationManager.java49 import com.android.launcher3.graphics.ShapeDelegate;
240 ShapeDelegate shapeDelegate = ThemeManager.INSTANCE.get(mContext).getFolderShape(); in getAnimator()
/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/shapes/
DShapesProviderTest.kt25 import com.android.launcher3.graphics.ShapeDelegate.GenericPathShape
/packages/apps/Launcher3/src/com/android/launcher3/
DUtilities.java21 import static com.android.launcher3.graphics.ShapeDelegate.DEFAULT_PATH_SIZE;