/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | KeyboardShortcutKeysLayout.java | 50 int xPos = getPaddingLeft(); in onMeasure() local 70 if (xPos + childWidth > width) { in onMeasure() 71 xPos = getPaddingLeft(); in onMeasure() 74 xPos += childWidth + layoutParams.mHorizontalSpacing; in onMeasure() 110 int xPos = isRTL() in onLayout() local 126 ? xPos - getPaddingLeft() - currentChildWidth < 0 in onLayout() 127 : xPos + currentChildWidth > fullRowWidth; in onLayout() 131 layoutChildrenOnRow(rowStartIdx, i, fullRowWidth, xPos, yPos, in onLayout() 134 xPos = isRTL() in onLayout() 141 xPos = isRTL() in onLayout() [all …]
|
/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/ui/automation/ |
D | Interaction.java | 108 float[] xPos, float[] yPos, long duration) { in createInterpolatedEventList() argument 112 float startX = xPos[0]; in createInterpolatedEventList() 119 for (int i = 1; i < xPos.length; i++) { in createInterpolatedEventList() 120 float endX = xPos[i]; in createInterpolatedEventList() 139 float lastX = xPos[xPos.length - 1]; in createInterpolatedEventList() 149 float[] xPos, float[] yPos, long duration) { in Interaction() argument 151 mXPositions = xPos; in Interaction()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | SurfaceAnimationRunner.java | 397 final int xPos = bounds.left + maxExtensionInsets.left; in edgeExtendWindow() local 400 extensionRect, xPos, yPos, "Left Edge Extension", transaction); in edgeExtendWindow() 408 final int xPos = bounds.left; in edgeExtendWindow() local 411 extensionRect, xPos, yPos, "Top Edge Extension", transaction); in edgeExtendWindow() 419 final int xPos = bounds.right; in edgeExtendWindow() local 422 extensionRect, xPos, yPos, "Right Edge Extension", transaction); in edgeExtendWindow() 430 final int xPos = bounds.left; in edgeExtendWindow() local 433 extensionRect, xPos, yPos, "Bottom Edge Extension", transaction); in edgeExtendWindow() 438 Rect extensionRect, int xPos, int yPos, String layerName, in createExtensionSurface() argument 441 doCreateExtensionSurface(leash, edgeBounds, extensionRect, xPos, yPos, layerName, in createExtensionSurface() [all …]
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/transition/ |
D | TransitionAnimationHelper.java | 328 final int xPos = maxExtensionInsets.left; in edgeExtendWindow() local 330 createExtensionSurface(change.getLeash(), edgeBounds, extensionRect, xPos, yPos, in edgeExtendWindow() local 338 final int xPos = 0; in edgeExtendWindow() local 340 createExtensionSurface(change.getLeash(), edgeBounds, extensionRect, xPos, yPos, in edgeExtendWindow() local 349 final int xPos = targetSurfaceWidth; in edgeExtendWindow() local 351 createExtensionSurface(change.getLeash(), edgeBounds, extensionRect, xPos, yPos, in edgeExtendWindow() local 360 final int xPos = maxExtensionInsets.left; in edgeExtendWindow() local 362 createExtensionSurface(change.getLeash(), edgeBounds, extensionRect, xPos, yPos, in edgeExtendWindow() local 372 @NonNull Rect edgeBounds, @NonNull Rect extensionRect, int xPos, int yPos, in createExtensionSurface() argument 414 startTransaction.setPosition(edgeExtensionLayer, xPos, yPos); in createExtensionSurface()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/onehanded/ |
D | OneHandedAnimationCallback.java | 49 default void onAnimationUpdate(SurfaceControl.Transaction tx, float xPos, float yPos) { in onAnimationUpdate() argument
|
D | OneHandedTutorialHandler.java | 99 public void onAnimationUpdate(SurfaceControl.Transaction tx, float xPos, float yPos) { in onAnimationUpdate() argument
|
/frameworks/native/include/input/ |
D | MotionPredictor.h | 49 void pushSample(int64_t timestamp, float xPos, float yPos);
|
/frameworks/base/cmds/bootanimation/ |
D | BootAnimation.h | 187 void drawClock(const Font& font, const int xPos, const int yPos); 188 void drawProgress(int percent, const Font& font, const int xPos, const int yPos);
|
D | BootAnimation.cpp | 1132 void BootAnimation::drawClock(const Font& font, const int xPos, const int yPos) { in drawClock() argument 1153 int x = xPos; in drawClock() 1158 void BootAnimation::drawProgress(int percent, const Font& font, const int xPos, const int yPos) { in drawProgress() argument 1166 int x = xPos; in drawProgress()
|
/frameworks/native/libs/input/ |
D | MotionPredictor.cpp | 77 void JerkTracker::pushSample(int64_t timestamp, float xPos, float yPos) { in pushSample() argument 105 newXDerivatives[i] = xPos; in pushSample()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/windowdecor/ |
D | WindowDecoration.java | 618 SurfaceControl.Transaction t, SurfaceSyncGroup ssg, int xPos, int yPos, in addWindow() argument 629 t.setPosition(windowSurfaceControl, xPos, yPos) in addWindow()
|