OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IntentNames
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Dialer/java/com/android/dialer/calllog/constants/
IntentNames.java
20
public final class
IntentNames
{
29
private
IntentNames
() {}
/packages/apps/Dialer/java/com/android/dialer/calllog/notifier/
RefreshAnnotatedCallLogNotifier.java
23
import com.android.dialer.calllog.constants.
IntentNames
;
78
intent.setAction(
IntentNames
.ACTION_REFRESH_ANNOTATED_CALL_LOG);
79
intent.putExtra(
IntentNames
.EXTRA_CHECK_DIRTY, checkDirty);
95
intent.setAction(
IntentNames
.ACTION_CANCEL_REFRESHING_ANNOTATED_CALL_LOG);
/packages/apps/Dialer/java/com/android/dialer/calllog/
RefreshAnnotatedCallLogReceiver.java
25
import com.android.dialer.calllog.constants.
IntentNames
;
62
intentFilter.addAction(
IntentNames
.ACTION_REFRESH_ANNOTATED_CALL_LOG);
63
intentFilter.addAction(
IntentNames
.ACTION_CANCEL_REFRESHING_ANNOTATED_CALL_LOG);
80
if (
IntentNames
.ACTION_REFRESH_ANNOTATED_CALL_LOG.equals(action)) {
81
boolean checkDirty = intent.getBooleanExtra(
IntentNames
.EXTRA_CHECK_DIRTY, false);
83
} else if (
IntentNames
.ACTION_CANCEL_REFRESHING_ANNOTATED_CALL_LOG.equals(action)) {
Completed in 286 milliseconds