OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:touchY
(Results
1 - 8
of
8
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MoreKeysDetector.java
38
final int
touchY
= getTouchY(y);
43
final int dist = key.squaredDistanceToEdge(touchX,
touchY
);
KeyDetector.java
97
final int
touchY
= getTouchY(y);
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/InCallUI/src/com/android/incallui/
SmallerHitTargetTouchListener.java
64
final int
touchY
= (int) event.getY();
93
touchY
< minTouchY ||
touchY
> maxTouchY) {
/packages/services/Telephony/src/com/android/phone/
SmallerHitTargetTouchListener.java
65
final int
touchY
= (int) event.getY();
94
touchY
< minTouchY ||
touchY
> maxTouchY) {
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info.cpp
141
const float
touchY
= static_cast<float>(y);
142
return ProximityInfoUtils::getSquaredDistanceFloat(centerX, centerY, touchX,
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);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
SwipeableListView.java
189
final int
touchY
= (int) ev.getY();
197
if (
touchY
>= slidingChild.getTop() &&
touchY
<= slidingChild.getBottom()) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIME.java
[
all
...]
Completed in 257 milliseconds