/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
MoreKeysDetector.java | 37 final int touchX = getTouchX(x); 43 final int dist = key.squaredDistanceToEdge(touchX, touchY);
|
KeyDetector.java | 96 final int touchX = getTouchX(x); 101 for (final Key key: mKeyboard.getNearestKeys(touchX, touchY)) { 104 if (!key.isOnKey(touchX, touchY)) { 107 final int distance = key.squaredDistanceToEdge(touchX, touchY);
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
DragView.java | 245 * @param touchX the x coordinate the user touched in DragLayer coordinates 248 public void show(int touchX, int touchY) { 257 setTranslationX(touchX - mRegistrationX); 281 * @param touchX the x coordinate the user touched in DragLayer coordinates 284 void move(int touchX, int touchY) { 285 setTranslationX(touchX - mRegistrationX + (int) mOffsetX);
|
CellLayout.java | 711 public void setTagToCellInfoForPoint(int touchX, int touchY) { 714 final int x = touchX + getScrollX(); [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
DragView.java | 254 * @param touchX the x coordinate the user touched in DragLayer coordinates 257 public void show(int touchX, int touchY) { 266 setTranslationX(touchX - mRegistrationX); 290 * @param touchX the x coordinate the user touched in DragLayer coordinates 293 void move(int touchX, int touchY) { 294 setTranslationX(touchX - mRegistrationX + (int) mOffsetX);
|
CellLayout.java | 710 public void setTagToCellInfoForPoint(int touchX, int touchY) { 713 final int x = touchX + getScrollX(); [all...] |
/packages/wallpapers/NoiseField/src/com/android/noisefield/ |
noisefield.rs | 66 static float touchX = 0; 187 touchX = x/rsgGetWidth() * wRatio * 2 - wRatio; 224 float touchDist = sqrt(pow(touchX - particle->position.x, 2) + 232 rads = atan2(touchX - particle->position.x + noiseval,
|
/packages/apps/InCallUI/src/com/android/incallui/ |
SmallerHitTargetTouchListener.java | 63 final int touchX = (int) event.getX(); 92 if (touchX < minTouchX || touchX > maxTouchX ||
|
/packages/services/Telephony/src/com/android/phone/ |
SmallerHitTargetTouchListener.java | 64 final int touchX = (int) event.getX(); 93 if (touchX < minTouchX || touchX > maxTouchX ||
|
/development/samples/SoftKeyboard/src/com/example/android/softkeyboard/ |
CandidateView.java | 175 final int touchX = mTouchX; 189 if (touchX + scrollX >= x && touchX + scrollX < x + wordWidth && !scrolled) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
NotificationRowLayout.java | 190 public View getChildAtRawPosition(float touchX, float touchY) { 193 return getChildAtPosition((float) (touchX - location[0]), (float) (touchY - location[1])); 196 public View getChildAtPosition(float touchX, float touchY) {
|
/frameworks/base/services/java/com/android/server/wm/ |
DragState.java | 183 void broadcastDragStartedLw(final float touchX, final float touchY) { 191 Slog.d(WindowManagerService.TAG, "broadcasting DRAG_STARTED at (" + touchX + ", " + touchY + ")"); 198 sendDragStartedLw(windows.get(i), touchX, touchY, mDataDescription); 211 private void sendDragStartedLw(WindowState newWin, float touchX, float touchY, 227 touchX, touchY, null, desc, null, false);
|
Session.java | 261 float touchX, float touchY, float thumbCenterX, float thumbCenterY, 291 // will let us eliminate the (touchX,touchY) parameters from the API. 309 mService.mDragState.mCurrentX = touchX; 311 mService.mDragState.broadcastDragStartedLw(touchX, touchY); 323 surfaceControl.setPosition(touchX - thumbCenterX,
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/ |
proximity_info.cpp | 140 const float touchX = static_cast<float>(x); 142 return ProximityInfoUtils::getSquaredDistanceFloat(centerX, centerY, touchX, touchY)
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
BridgeWindowSession.java | 142 float touchX, float touchY, float thumbCenterX, float thumbCenterY,
|
/frameworks/base/core/java/android/inputmethodservice/ |
KeyboardView.java | [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
KeyboardView.java | [all...] |
/frameworks/base/core/java/android/view/ |
IWindowSession.aidl | 150 boolean performDrag(IWindow window, IBinder dragToken, float touchX, float touchY,
|
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
ConversationItemView.java | [all...] |