/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/ui/viewmodel/ |
H A D | PatternBouncerViewModel.kt | 116 val hitDot = dots.value.firstOrNull { dot -> dot.x == dotColumn && dot.y == dotRow } 121 var dot = previousDot regex 122 while (dot != hitDot) { 123 add(dot) 124 dot = 127 if (hitDot.x > dot.x) dot.x + 1 128 else if (hitDot.x < dot.x) dot.x - 1 else dot.x, 130 if (hitDot.y > dot.y) dot.y + 1 131 else if (hitDot.y < dot.y) dot.y - 1 else dot.y,
|
/aosp14/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/bouncer/ui/composable/ |
H A D | PatternBouncer.kt | 123 val isSelected = dot == currentDot 150 selectedDots.forEach { dot -> 157 if (dot == currentDot) { 258 currentDot?.let { dot -> 274 dots.forEach { dot -> 286 dot: PatternDotViewModel, 291 x = dot.x * spacing + spacing / 2, 315 dots.forEach { dot -> 316 val rowIndex = dot.y 320 get(rowIndex).add(dot) [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/events/ |
H A D | PrivacyDotViewController.kt | 184 fun hideDotView(dot: View, animate: Boolean) { 185 dot.clearAnimation() 187 dot.animate() 197 dot.visibility = View.INVISIBLE 204 dot.clearAnimation() 206 dot.visibility = View.VISIBLE 207 dot.alpha = 0f 208 dot.animate() 214 dot.visibility = View.VISIBLE 215 dot.alpha = 1f [all …]
|
/aosp14/frameworks/base/tools/aapt2/ |
H A D | Resource.cpp | 142 auto dot = std::find(s.begin(), s.end(), '.'); in ParseResourceNamedType() local 144 if (dot != s.end() && dot != std::prev(s.end())) { in ParseResourceNamedType() 145 parsedType = ParseResourceType(android::StringPiece(s.begin(), dot - s.begin())); in ParseResourceNamedType()
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/pip/ |
H A D | PipPinchResizingAlgorithm.java | 71 dot(mTmpDownVector, mTmpLastVector)); in calculateBoundsAndAngle() 117 private float dot(PointF p1, PointF p2) { in dot() method in PipPinchResizingAlgorithm
|
/aosp14/frameworks/base/libs/hwui/utils/ |
H A D | HostColorSpace.cpp | 91 return {{r.xy / dot(r, float3{1}), in computePrimaries() 92 g.xy / dot(g, float3{1}), in computePrimaries() 93 b.xy / dot(b, float3{1})}}; in computePrimaries() 98 return w.xy / dot(w, float3{1}); in computeWhitePoint()
|
/aosp14/frameworks/base/libs/hwui/jni/ |
H A D | Camera.cpp | 108 SkScalar dot = v->dotWithNormal(x, y, z); in Camera_dotWithNormal() local 109 return SkScalarToFloat(dot); in Camera_dotWithNormal()
|
/aosp14/frameworks/base/packages/EasterEgg/src/com/android/egg/landroid/ |
H A D | Vec2.kt | 46 fun Vec2.dot(o: Vec2): Float {
|
/aosp14/frameworks/base/libs/hwui/ |
H A D | Vector.h | 89 float dot(const Vector2& v) const { return x * v.x + y * v.y; } in dot() function
|
/aosp14/frameworks/base/services/accessibility/java/com/android/server/accessibility/gestures/ |
H A D | Swipe.java | 295 float dot = currentDX * nextDX + currentDY * nextDY; in recognizeGesture() local 296 if (dot < ANGLE_THRESHOLD) { in recognizeGesture()
|
/aosp14/frameworks/base/core/java/android/os/ |
H A D | Binder.java | 999 final int dot = descriptor.lastIndexOf("."); in getSimpleDescriptor() local 1000 if (dot > 0) { in getSimpleDescriptor() 1002 return descriptor.substring(dot + 1); in getSimpleDescriptor()
|
/aosp14/frameworks/base/media/mca/filterpacks/native/base/ |
H A D | vec_types.h | 91 T dot(const Vec<T,dim> &x, const Vec<T,dim> &y) { in dot() function
|
/aosp14/frameworks/base/core/java/android/util/ |
H A D | MathUtils.java | 127 public static float dot(float v1x, float v1y, float v2x, float v2y) { in dot() method in MathUtils
|
/aosp14/frameworks/base/core/java/android/view/ |
H A D | GestureDetector.java | 600 final float dot = x + y; in onTouchEvent() local 601 if (dot < 0) { in onTouchEvent()
|
/aosp14/frameworks/base/media/native/midi/include/ |
H A D | Doxyfile | 184 # first line (until the first dot) of a Javadoc-style comment as the brief 193 # line (until the first dot) of a Qt-style comment as the brief description. If 1918 # 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is 2176 # Configuration options related to the dot tool 2229 # When you want a differently looking font in the dot files that doxygen 2231 # sure dot is able to find the font, which can be done by putting it in a 2240 # dot graphs. 2248 # the path where dot can find it using this tag. 2365 # generated by dot. For an explanation of the image formats see the section 2366 # output formats in the documentation of the dot tool (Graphviz (see: [all …]
|
/aosp14/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 58012 Landroid/util/MathUtils;->dot(FFFF)F
|