Home
last modified time | relevance | path

Searched defs:minus (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
DPoint.java60 public Point minus(float x, float y) { in minus() method in Point
64 public Point minus(Point point) { in minus() method in Point
/frameworks/rs/toolkit/test/
DBufferUtils.kt44 operator fun minus(other: Int4) = Int4(x - other.x, y - other.y, z - other.z, w - other.w) in plus() method in com.example.testapp.Int4
45 operator fun minus(n: Int) = Int4(x - n, y - n, z - n, w - n) in plus() method in com.example.testapp.Int4
67 operator fun minus(other: Float4) = Float4(x - other.x, y - other.y, z - other.z, w - other.w) in plus() method in com.example.testapp.Float4
68 operator fun minus(f: Float) = Float4(x - f, y - f, z - f, w - f) in plus() method in com.example.testapp.Float4
121 operator fun minus(other: Rgba) = in plus() method in com.example.testapp.Rgba
427 operator fun FloatArray.minus(other: FloatArray) = FloatArray(size) { this[it] - other[it] } in <lambda>() method
/frameworks/base/core/java/android/text/method/
DDigitsKeyListener.java180 final char minus = minusString.charAt(0); in DigitsKeyListener() local
/frameworks/base/tools/codegen/src/com/android/codegen/
DUtils.kt78 inline operator fun <reified T> Array<T>.minus(item: T) = toList().minus(item).toTypedArray() in singleArgAs() method
/frameworks/base/apex/jobscheduler/service/java/com/android/server/
DAnyMotionDetector.java453 public Vector3 minus(Vector3 v) { in minus() method in AnyMotionDetector.Vector3