Searched defs:dy (Results 1 - 25 of 128) sorted by relevance

123456

/frameworks/base/graphics/java/android/graphics/
H A DLayerRasterizer.java31 public void addLayer(Paint paint, float dx, float dy) { } argument
H A DPoint.java62 * Offset the point's coordinates by dx, dy
64 public final void offset(int dx, int dy) { argument
66 y += dy;
H A DPointF.java63 public final void offset(float dx, float dy) { argument
65 y += dy;
H A DCamera.java161 public native float dotWithNormal(float dx, float dy, float dz); argument
H A DOutline.java298 * Offsets the Outline by (dx,dy)
300 public void offset(int dx, int dy) { argument
302 mRect.offset(dx, dy);
304 mPath.offset(dx, dy);
/frameworks/support/leanback/src/androidTest/java/androidx/leanback/widget/
H A DHorizontalGridViewEx.java38 public void smoothScrollBy(int dx, int dy) { argument
40 super.smoothScrollBy(dx, dy);
H A DVerticalGridViewEx.java38 public void smoothScrollBy(int dx, int dy) { argument
40 super.smoothScrollBy(dx, dy);
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
H A DCacheUtils.java28 static void verifyPositionsPrefetched(RecyclerView view, int dx, int dy, argument
33 dx, dy, view.mState, layoutPrefetchRegistry);
H A DGridLayoutManagerCacheTest.java45 public GridLayoutManagerCacheTest(Config config, int dx, int dy) { argument
48 mDy = dy;
51 @Parameterized.Parameters(name = "config:{0},dx:{1},dy:{2}")
57 for (int dy : new int[] {-1, 0, 1}) {
58 result.add(new Object[]{config, dx, dy});
H A DLinearLayoutManagerCacheTest.java44 public LinearLayoutManagerCacheTest(Config config, int dx, int dy) { argument
47 mDy = dy;
50 @Parameterized.Parameters(name = "config:{0},dx:{1},dy:{2}")
56 for (int dy : new int[] {-1, 0, 1}) {
57 result.add(new Object[]{config, dx, dy});
H A DRecyclerViewPrefetchTest.java60 public void collectAdjacentPrefetchPositions(int dx, int dy, RecyclerView.State state, argument
H A DRecyclerViewSmoothScrollerTest.java75 protected void onSeekTargetStep(int dx, int dy, RecyclerView.State state, argument
H A DStaggeredGridLayoutManagerCacheTest.java46 public StaggeredGridLayoutManagerCacheTest(Config config, int dx, int dy) { argument
49 mDy = dy;
52 @Parameterized.Parameters(name = "config:{0},dx:{1},dy:{2}")
58 for (int dy : new int[] {-1, 0, 1}) {
59 result.add(new Object[]{config, dx, dy});
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dpp_semaphore_chroma_inter.cpp30 dy = vertical component of the motion vector (int)
117 int dy, /* i */
176 if (((dy&0xF) != 0) && (mmvy + 1 < (height >> 4) - 1))
177 { /* dy is not a multiple of 16 */
183 { /* dy is a multiple of 16 */
111 pp_semaphore_chroma_inter( int xpred, int ypred, uint8 *pp_dec_u, uint8 *pstprcTypPrv, int dx, int dy, int mvwidth, int height, int32 size, int mv_loc, uint8 msk_deblock ) argument
H A Dpp_semaphore_luma.cpp34 dy = vertical component of the motion vector (int)
120 int dy, /* i */
172 if ((dy&0xF) != 0)
173 { /* dy is not a multiple of 16 */
180 { /* dy is a multiple of 16 */
194 if ((dy&0xF) != 0)
195 { /* dy is not a multiple of 16 */
202 { /* dy is a multiple of 16 */
300 if (((dy&0xF) != 0) && (mmvy + 1 < (height >> 3) - 1))
301 { /* dy i
112 pp_semaphore_luma( int xpred, int ypred, uint8 *pp_dec_y, uint8 *pstprcTypPrv, int *ll, int *mv_loc, int dx, int dy, int mvwidth, int width, int height ) argument
[all...]
/frameworks/support/compat/src/main/java/androidx/core/view/
H A DNestedScrollingChild2.java144 * @param dy Vertical scroll distance in pixels
146 * and consumed[1] the consumed dy.
155 boolean dispatchNestedPreScroll(int dx, int dy, @Nullable int[] consumed, argument
H A DNestedScrollingParent2.java136 * report how any pixels of the scroll reported by dx, dy were consumed in the
137 * <code>consumed</code> array. Index 0 corresponds to dx and index 1 corresponds to dy.
143 * @param dy Vertical scroll distance in pixels
147 void onNestedPreScroll(@NonNull View target, int dx, int dy, @NonNull int[] consumed, argument
H A DNestedScrollingChild.java167 * @param dy Vertical scroll distance in pixels
169 * and consumed[1] the consumed dy.
177 boolean dispatchNestedPreScroll(int dx, int dy, @Nullable int[] consumed, argument
H A DNestedScrollingParent.java131 * report how any pixels of the scroll reported by dx, dy were consumed in the
132 * <code>consumed</code> array. Index 0 corresponds to dx and index 1 corresponds to dy.
138 * @param dy Vertical scroll distance in pixels
141 void onNestedPreScroll(@NonNull View target, int dx, int dy, @NonNull int[] consumed); argument
/frameworks/support/wear/src/main/java/androidx/wear/widget/
H A DWearableLinearLayoutManager.java96 int dy, RecyclerView.Recycler recycler, RecyclerView.State state) {
97 int scrolled = super.scrollVerticallyBy(dy, recycler, state);
95 scrollVerticallyBy( int dy, RecyclerView.Recycler recycler, RecyclerView.State state) argument
/frameworks/base/core/java/com/android/internal/widget/
H A DNestedScrollingChild.java163 * @param dy Vertical scroll distance in pixels
165 * and consumed[1] the consumed dy.
173 boolean dispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow); argument
/frameworks/base/libs/hwui/utils/
H A DPaintUtils.h71 float dy; member in struct:android::uirenderer::PaintUtils::TextShadow
81 textShadow->dy = blur.fOffset.fY;
/frameworks/layoutlib/bridge/src/android/view/
H A DRectShadowPainter.java161 RectF edgeShadowRect, float dx, float dy, int rotations) {
166 canvas.translate(dx, dy);
160 sideShadow(Canvas canvas, Paint edgePaint, RectF edgeShadowRect, float dx, float dy, int rotations) argument
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/test/
H A DNestedScrollingParent2Adapter.java48 public void onNestedPreScroll(@NonNull View target, int dx, int dy, argument
63 public void onNestedPreScroll(View target, int dx, int dy, int[] consumed) { argument
64 onNestedPreScroll(target, dx, dy, consumed, ViewCompat.TYPE_TOUCH);
/frameworks/base/core/jni/android/graphics/
H A DCamera.cpp35 jfloat dx, jfloat dy, jfloat dz) {
38 v->translate(dx, dy, dz);
34 Camera_translate(JNIEnv* env, jobject obj, jfloat dx, jfloat dy, jfloat dz) argument

Completed in 345 milliseconds

123456