OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mPendingCheckForLongPress
(Results
1 - 5
of
5
) sorted by null
/packages/apps/Launcher2/src/com/android/launcher2/
CheckLongPressHelper.java
24
private CheckForLongPress
mPendingCheckForLongPress
;
45
if (
mPendingCheckForLongPress
== null) {
46
mPendingCheckForLongPress
= new CheckForLongPress();
48
mView.postDelayed(
mPendingCheckForLongPress
, LauncherApplication.getLongPressTimeout());
53
if (
mPendingCheckForLongPress
!= null) {
54
mView.removeCallbacks(
mPendingCheckForLongPress
);
55
mPendingCheckForLongPress
= null;
/packages/apps/Launcher3/src/com/android/launcher3/
CheckLongPressHelper.java
24
private CheckForLongPress
mPendingCheckForLongPress
;
45
if (
mPendingCheckForLongPress
== null) {
46
mPendingCheckForLongPress
= new CheckForLongPress();
48
mView.postDelayed(
mPendingCheckForLongPress
,
54
if (
mPendingCheckForLongPress
!= null) {
55
mView.removeCallbacks(
mPendingCheckForLongPress
);
56
mPendingCheckForLongPress
= null;
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
CheckLongPressHelper.java
26
private CheckForLongPress
mPendingCheckForLongPress
;
54
if (
mPendingCheckForLongPress
== null) {
55
mPendingCheckForLongPress
= new CheckForLongPress();
57
mView.postDelayed(
mPendingCheckForLongPress
, mLongPressTimeout);
73
if (
mPendingCheckForLongPress
!= null) {
74
mView.removeCallbacks(
mPendingCheckForLongPress
);
75
mPendingCheckForLongPress
= null;
/frameworks/base/core/java/android/widget/
AbsListView.java
537
private CheckForLongPress
mPendingCheckForLongPress
;
[
all
...]
/frameworks/base/core/java/android/view/
View.java
[
all
...]
Completed in 275 milliseconds