Searched refs:yOffset (Results 26 - 40 of 40) sorted by relevance

12

/frameworks/native/libs/input/
H A DInputTransport.cpp295 float yOffset,
306 "metaState=0x%x, buttonState=0x%x, xOffset=%f, yOffset=%f, "
311 xOffset, yOffset, xPrecision, yPrecision, downTime, eventTime, pointerCount);
337 msg.body.motion.yOffset = yOffset;
932 msg->body.motion.yOffset,
284 publishMotionEvent( uint32_t seq, int32_t deviceId, int32_t source, int32_t action, int32_t actionButton, int32_t flags, int32_t edgeFlags, int32_t metaState, int32_t buttonState, float xOffset, float yOffset, float xPrecision, float yPrecision, nsecs_t downTime, nsecs_t eventTime, uint32_t pointerCount, const PointerProperties* pointerProperties, const PointerCoords* pointerCoords) argument
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java484 public void onOffsetsChanged(float xOffset, float yOffset, argument
955 float yOffset;
961 yOffset = mPendingYOffset;
972 + ": " + xOffset + "," + yOffset);
976 final int yPixels = availh > 0 ? -(int)(availh*yOffset+.5f) : 0;
977 onOffsetsChanged(xOffset, yOffset, xOffsetStep, yOffsetStep, xPixels, yPixels);
/frameworks/base/core/java/android/widget/
H A DToast.java219 public void setGravity(int gravity, int xOffset, int yOffset) { argument
222 mTN.mY = yOffset;
/frameworks/native/services/inputflinger/
H A DInputDispatcher.cpp1582 target.yOffset = - windowInfo->frameTop;
1595 target.yOffset = 0;
1806 "xOffset=%f, yOffset=%f, scaleFactor=%f, "
1809 inputTarget->xOffset, inputTarget->yOffset,
1886 inputTargetFlags, inputTarget->xOffset, inputTarget->yOffset,
2000 float xOffset, yOffset, scaleFactor; local
2005 yOffset = dispatchEntry->yOffset * scaleFactor;
2015 yOffset = 0.0f;
2033 xOffset, yOffset, motionEntr
3967 MotionEntry(nsecs_t eventTime, int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t action, int32_t actionButton, int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags, float xPrecision, float yPrecision, nsecs_t downTime, int32_t displayId, uint32_t pointerCount, const PointerProperties* pointerProperties, const PointerCoords* pointerCoords, float xOffset, float yOffset) argument
4013 DispatchEntry(EventEntry* eventEntry, int32_t targetFlags, float xOffset, float yOffset, float scaleFactor) argument
[all...]
H A DInputDispatcher.h158 float xOffset, yOffset; member in struct:android::InputTarget
533 float xOffset, float yOffset);
547 float yOffset; member in struct:android::InputDispatcher::DispatchEntry
556 int32_t targetFlags, float xOffset, float yOffset, float scaleFactor);
/frameworks/base/media/java/android/media/
H A DMediaCodec.java3559 long timestamp, int xOffset, int yOffset, @Nullable Rect cropRect) {
3568 mYOffset = yOffset;
3614 + (xOffset / horiz) * colInc + (yOffset / vert) * rowInc);
3627 cropRect.offset(-xOffset, -yOffset);
3557 MediaImage( @onNull ByteBuffer buffer, @NonNull ByteBuffer info, boolean readOnly, long timestamp, int xOffset, int yOffset, @Nullable Rect cropRect) argument
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListPopupWindow.java1419 private int getMaxAvailableHeight(View anchor, int yOffset, boolean ignoreBottomDecorations) { argument
1422 return (int) sGetMaxAvailableHeightMethod.invoke(mPopup, anchor, yOffset,
1429 return mPopup.getMaxAvailableHeight(anchor, yOffset);
/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskStack.java1089 final int yOffset = displayContentRect.bottom - contentBounds.bottom;
1103 mBounds.bottom - yOffset + dividerWidth - dividerWidthInactive,
1122 mBounds.top - yOffset, minTopStackBottom + dividerWidthInactive);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewThumbnail.java251 int xOffset, yOffset = 0;
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java1472 * @param yOffset The offset along the Y dimension, from 0 to 1.
1474 public void setWallpaperOffsets(IBinder windowToken, float xOffset, float yOffset) { argument
1478 windowToken, xOffset, yOffset, mWallpaperXStep, mWallpaperYStep);
/frameworks/base/core/java/com/android/internal/widget/
H A DResolverDrawerLayout.java490 private void smoothScrollTo(int yOffset, float velocity) { argument
493 int dy = yOffset - sy;
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLES20Canvas.java933 public void texSubImage2D(BasicTexture texture, int xOffset, int yOffset, Bitmap bitmap, argument
938 GLUtils.texSubImage2D(target, 0, xOffset, yOffset, bitmap, format, type);
/frameworks/base/libs/hwui/
H A DBakedOpDispatcher.cpp369 float xOffset, float yOffset, PathTexture& texture, const SkPaint& paint) {
372 yOffset + texture.top - texture.offset);
368 renderPathTexture(BakedOpRenderer& renderer, const BakedOpState& state, float xOffset, float yOffset, PathTexture& texture, const SkPaint& paint) argument
/frameworks/base/core/java/android/view/
H A DMotionEvent.java1471 float xOffset, float yOffset, float xPrecision, float yPrecision,
1468 nativeInitialize(long nativePtr, int deviceId, int source, int action, int flags, int edgeFlags, int metaState, int buttonState, float xOffset, float yOffset, float xPrecision, float yPrecision, long downTimeNanos, long eventTimeNanos, int pointerCount, PointerProperties[] pointerIds, PointerCoords[] pointerCoords) argument
H A DViewRootImpl.java2917 int yOffset = -mCanvasOffsetY + curScrollY;
2922 yOffset -= surfaceInsets.top;
2953 if (mHardwareYOffset != yOffset || mHardwareXOffset != xOffset) {
2954 mHardwareYOffset = yOffset;
3007 if (!drawSoftware(surface, mAttachInfo, xOffset, yOffset, scalingRequired, dirty)) {

Completed in 1677 milliseconds

12