Home
last modified time | relevance | path

Searched refs:intentAction (Results 1 – 4 of 4) sorted by relevance

/external/libtextclassifier/java/tests/instrumentation/src/com/android/textclassifier/testing/
DFakeContextBuilder.java70 String intentAction, @Nullable ComponentName component) { in setIntentComponent() argument
71 Preconditions.checkNotNull(intentAction); in setIntentComponent()
72 components.put(intentAction, component); in setIntentComponent()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/offline/
DDownloadService.java601 @Nullable String intentAction = null; in onStartCommand() local
604 intentAction = intent.getAction(); in onStartCommand()
607 intent.getBooleanExtra(KEY_FOREGROUND, false) || ACTION_RESTART.equals(intentAction); in onStartCommand()
610 if (intentAction == null) { in onStartCommand()
611 intentAction = ACTION_INIT; in onStartCommand()
614 switch (intentAction) { in onStartCommand()
665 Log.e(TAG, "Ignored unrecognized action: " + intentAction); in onStartCommand()
/external/libtextclassifier/java/src/com/android/textclassifier/
DExtrasUtils.java215 @Nullable TextClassification classification, @Nullable String intentAction) { in findAction() argument
216 if (classification == null || intentAction == null) { in findAction()
224 if (intent != null && intentAction.equals(intent.getAction())) { in findAction()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
DSmsFacade.java742 private PendingIntent createBroadcastPendingIntent(String intentAction, Uri messageUri) { in createBroadcastPendingIntent() argument
743 Intent intent = new Intent(intentAction, messageUri); in createBroadcastPendingIntent()