/aosp14/frameworks/base/core/tests/coretests/src/android/view/stylus/ |
H A D | HandwritingInitiatorTest.java | 135 final int x2 = x1 + mHandwritingSlop * 2; in onTouchEvent_startHandwriting_when_stylusMoveOnce_withinHWArea() local 160 final int x2 = x1 + mHandwritingSlop / 2; in onTouchEvent_startHandwritingOnce_when_stylusMoveMultiTimes_withinHWArea() local 203 final int x2 = x1 + mHandwritingSlop * 2; in onTouchEvent_startHandwriting_when_stylusMove_withinExtendedHWArea() local 223 final int x2 = x1 + mHandwritingSlop * 2; in onTouchEvent_startHandwriting_inputConnectionBuiltAfterStylusMove() local 245 final int x2 = x1 + mHandwritingSlop * 2; in onTouchEvent_startHandwriting_inputConnectionBuilt_stylusMoveInExtendedHWArea() local 276 final int x2 = x1 + mHandwritingSlop * 2; in onTouchEvent_tryAcceptDelegation_delegatorCallbackCreatesInputConnection() local 299 final int x2 = x1 + mHandwritingSlop * 2; in onTouchEvent_tryAcceptDelegation_delegatorCallbackFocusesDelegate() local 319 final int x2 = x1 + mHandwritingSlop / 2; in onTouchEvent_startHandwriting_delegate_touchEventsHandled() local 355 final int x2 = x1 + mHandwritingSlop * 2; in onTouchEvent_notStartHandwriting_whenHandwritingNotAvailable() local 374 final int x2 = x1 + mHandwritingSlop / 2; in onTouchEvent_notStartHandwriting_when_stylusTap_withinHWArea() local [all …]
|
/aosp14/frameworks/base/core/java/android/view/animation/ |
H A D | PathInterpolator.java | 142 float x2 = a.getFloat(R.styleable.PathInterpolator_controlX2, 0); in parseInterpolatorFromTypeArray() local 156 private void initCubic(float x1, float y1, float x2, float y2) { in initCubic()
|
/aosp14/frameworks/base/graphics/java/android/graphics/ |
H A D | Path.java | 373 public void quadTo(float x1, float y1, float x2, float y2) { in quadTo() 413 public void conicTo(float x1, float y1, float x2, float y2, float weight) { in conicTo() 450 public void cubicTo(float x1, float y1, float x2, float y2, in cubicTo() 460 public void rCubicTo(float x1, float y1, float x2, float y2, in rCubicTo() 844 private static native void nQuadTo(long nPath, float x1, float y1, float x2, float y2); in nQuadTo() 846 private static native void nConicTo(long nPath, float x1, float y1, float x2, float y2, in nConicTo() 850 private static native void nCubicTo(long nPath, float x1, float y1, float x2, float y2, in nCubicTo() 852 private static native void nRCubicTo(long nPath, float x1, float y1, float x2, float y2, in nRCubicTo()
|
/aosp14/frameworks/base/core/java/android/transition/ |
H A D | CircularPropagation.java | 100 private static double distance(float x1, float y1, float x2, float y2) { in distance()
|
/aosp14/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/ |
H A D | RotateFilter.java | 144 Point x2 = new Point(0.5f * (-cosTheta - sinTheta + 1f), in updateParameters() local
|
/aosp14/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/ |
H A D | BrightnessMappingStrategyTest.java | 594 final int x2 = 2500; in testGammaCorrectionLowChangeAtCenter() local 626 final int x2 = 2500; in testGammaCorrectionHighChangeAtCenter() local 678 final int x2 = 2500; in testGammaCorrectionChangeAtEdges() local
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/animation/ |
H A D | FlingAnimationUtils.java | 82 float speedUpFactor, float x2, float y2) { in FlingAnimationUtils() 238 float x2 = mLinearOutSlowInX2; in getInterpolator() local 439 public Builder setX2(float x2) { in setX2()
|
/aosp14/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/ |
H A D | GLCanvas.java | 83 public abstract void drawLine(float x1, float y1, float x2, float y2, GLPaint paint); in drawLine() 87 public abstract void drawRect(float x1, float y1, float x2, float y2, GLPaint paint); in drawRect()
|
H A D | GLES20Canvas.java | 479 public void drawLine(float x1, float y1, float x2, float y2, GLPaint paint) { in drawLine()
|
/aosp14/frameworks/base/core/java/android/widget/ |
H A D | EditorTouchState.java | 211 public static boolean isDistanceWithin(float x1, float y1, float x2, float y2, in isDistanceWithin()
|
H A D | GridLayout.java | 921 private void drawLine(Canvas graphics, int x1, int y1, int x2, int y2, Paint paint) { in drawLine() 1176 int x2 = hLocations[colSpan.max]; in onLayout() local
|
/aosp14/frameworks/base/media/mca/filterfw/jni/ |
H A D | jni_shader_program.cpp | 142 jfloat x2, in Java_android_filterfw_core_ShaderProgram_setSourceRegion() 160 jfloat x2, in Java_android_filterfw_core_ShaderProgram_setTargetRegion()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
H A D | PathInterpolatorBuilder.java | 50 private void initCubic(float x1, float y1, float x2, float y2) { in initCubic()
|
/aosp14/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
H A D | ShaderProgram.java | 269 float x2, float y2, float x3, float y3); in setSourceRegion() 272 float x2, float y2, float x3, float y3); in setTargetRegion()
|
/aosp14/frameworks/base/core/java/android/util/ |
H A D | MathUtils.java | 102 public static float dist(float x1, float y1, float x2, float y2) { in dist() 108 public static float dist(float x1, float y1, float z1, float x2, float y2, float z2) { in dist()
|
/aosp14/frameworks/base/services/core/java/com/android/server/power/ |
H A D | WirelessChargerDetector.java | 346 float x2, float y2, float z2) { in hasMoved()
|
/aosp14/frameworks/base/libs/hwui/jni/ |
H A D | Path.cpp | 94 jfloat x2, jfloat y2) { in quadTo__FFFF() 105 static void conicTo(JNIEnv* env, jclass clazz, jlong objHandle, jfloat x1, jfloat y1, jfloat x2, in conicTo() 118 jfloat x2, jfloat y2, jfloat x3, jfloat y3) { in cubicTo__FFFFFF() 124 jfloat x2, jfloat y2, jfloat x3, jfloat y3) { in rCubicTo()
|
/aosp14/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/ |
H A D | Quad.java | 326 private Quad(float x0, float y0, float x1, float y1, float x2, float y2, float x3, float y3) { in Quad()
|
/aosp14/frameworks/base/packages/SettingsLib/Spa/gradle/wrapper/ |
H A D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |
/aosp14/frameworks/base/startop/apps/ColorChanging/gradle/wrapper/ |
H A D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |
/aosp14/frameworks/base/tests/UiBench/gradle/wrapper/ |
H A D | gradle-wrapper.jar | ... .Install x0
java.io.File x1
String x2
static synthetic org.gradle.wrapper.IDownload access ... |
/aosp14/frameworks/base/tests/TouchLatency/gradle/wrapper/ |
H A D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/ |
H A D | DropBoxTest.java | 411 DropBoxManager.Entry x2 = dropbox.getNextEntry(null, x1.getTimeMillis()); in testGetNextEntry() local
|
/aosp14/frameworks/base/core/java/android/view/ |
H A D | HandwritingInitiator.java | 648 private boolean largerThanTouchSlop(float x1, float y1, float x2, float y2) { in largerThanTouchSlop()
|
/aosp14/frameworks/base/services/core/java/com/android/server/input/ |
H A D | InputShellCommand.java | 402 final float x2 = Float.parseFloat(getNextArgRequired()); in sendSwipe() local
|