OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ACTION_MASK
(Results
1 - 25
of
84
) sorted by null
1
2
3
4
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DownUpDetector.java
45
switch (ev.getAction() & MotionEvent.
ACTION_MASK
) {
/frameworks/support/v4/java/android/support/v4/view/
MotionEventCompat.java
118
* Synonym for {@link MotionEvent#
ACTION_MASK
}.
120
public static final int
ACTION_MASK
= 0xff;
179
* Call {@link MotionEvent#getAction}, returning only the {@link #
ACTION_MASK
}
183
return event.getAction() &
ACTION_MASK
;
GestureDetectorCompat.java
232
(action & MotionEventCompat.
ACTION_MASK
) == MotionEventCompat.ACTION_POINTER_UP;
249
switch (action & MotionEventCompat.
ACTION_MASK
) {
/external/replicaisland/src/com/replica/replicaisland/
MultiTouchFilter.java
17
final int actualEvent = action & MotionEvent.
ACTION_MASK
;
/frameworks/base/services/java/com/android/server/wm/
StackTapPointerEventListener.java
50
switch (action & MotionEvent.
ACTION_MASK
) {
/frameworks/base/tests/RenderScriptTests/FBOTest/src/com/android/fbotest/
FBOSyncView.java
89
switch (action & MotionEvent.
ACTION_MASK
) {
FBOTestView.java
89
switch (action & MotionEvent.
ACTION_MASK
) {
/frameworks/base/tests/RenderScriptTests/ShadersTest/src/com/android/shaderstest/
ShadersTestView.java
83
switch (action & MotionEvent.
ACTION_MASK
) {
/frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewPager.java
124
final int action = ev.getAction() & MotionEventCompat.
ACTION_MASK
;
/packages/apps/Launcher2/src/com/android/launcher2/
PagedViewWithDraggableItems.java
69
switch (action & MotionEvent.
ACTION_MASK
) {
Hotseat.java
123
(event.getAction() & MotionEvent.
ACTION_MASK
) == MotionEvent.ACTION_DOWN) {
/packages/apps/Launcher3/src/com/android/launcher3/
PagedViewWithDraggableItems.java
69
switch (action & MotionEvent.
ACTION_MASK
) {
/cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/
TestGenericDetailFragment.java
65
switch(event.getAction() & MotionEvent.
ACTION_MASK
) {
/development/samples/CrossCompatibility/src/com/example/android/touchexample/
VersionedGestureDetector.java
113
switch (action & MotionEvent.
ACTION_MASK
) {
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
LongPressDetector.java
107
switch (action & MotionEvent.
ACTION_MASK
) {
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SimpleModelView.java
116
switch (action & MotionEvent.
ACTION_MASK
) {
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
TestAppView.java
98
switch (action & MotionEvent.
ACTION_MASK
) {
/packages/apps/Calendar/src/com/android/calendar/month/
MonthListView.java
105
switch (ev.getAction() & MotionEvent.
ACTION_MASK
) {
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/third_party/
GestureDetector.java
484
(action & MotionEvent.
ACTION_MASK
) == MotionEvent.ACTION_POINTER_UP;
501
switch (action & MotionEvent.
ACTION_MASK
) {
/frameworks/base/core/java/android/view/
GestureDetector.java
463
(action & MotionEvent.
ACTION_MASK
) == MotionEvent.ACTION_POINTER_UP;
480
switch (action & MotionEvent.
ACTION_MASK
) {
/developers/build/prebuilts/gradle/BasicMultitouch/BasicMultitouchSample/src/main/java/com/example/android/basicmultitouch/
TouchDisplayView.java
139
* applying the MotionEvent.
ACTION_MASK
. Alternatively a call to
142
switch (action & MotionEvent.
ACTION_MASK
) {
/developers/samples/android/input/multitouch/BasicMultitouch/BasicMultitouchSample/src/main/java/com/example/android/basicmultitouch/
TouchDisplayView.java
139
* applying the MotionEvent.
ACTION_MASK
. Alternatively a call to
142
switch (action & MotionEvent.
ACTION_MASK
) {
/development/samples/browseable/BasicMultitouch/src/com.example.android.basicmultitouch/
TouchDisplayView.java
139
* applying the MotionEvent.
ACTION_MASK
. Alternatively a call to
142
switch (action & MotionEvent.
ACTION_MASK
) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
MotionEventReader.java
40
// Assumes that MotionEvent.
ACTION_MASK
does not have all bits set.`
41
private static final int UNINITIALIZED_ACTION = ~MotionEvent.
ACTION_MASK
;
/packages/apps/Gallery2/src/com/android/photos/views/
GalleryThumbnailView.java
282
final int action = ev.getAction() & MotionEventCompat.
ACTION_MASK
;
323
final int action = ev.getAction() & MotionEventCompat.
ACTION_MASK
;
Completed in 665 milliseconds
1
2
3
4