Home
last modified time | relevance | path

Searched refs:pending (Results 1 – 24 of 24) sorted by relevance

/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
DGoogleSearch.java105 PendingIntent pending = in handleWebSearchIntent() local
107 if (pending == null || !launchPendingIntent(pending, launchUriIntent)) { in handleWebSearchIntent()
159 private boolean launchPendingIntent(PendingIntent pending, Intent fillIn) { in launchPendingIntent() argument
161 pending.send(this, Activity.RESULT_OK, fillIn); in launchPendingIntent()
164 Log.i(TAG, "Pending intent cancelled: " + pending); in launchPendingIntent()
/packages/services/BuiltInPrintService/src/com/android/bips/discovery/
DDelayedDiscovery.java63 DiscoveredPrinter pending = mPending.remove(printer.getUri()); in DelayedDiscovery()
64 if (pending != null) { in DelayedDiscovery()
65 if (DEBUG) Log.d(TAG, "Delay complete for " + pending); in DelayedDiscovery()
66 printerFound(pending); in DelayedDiscovery()
/packages/apps/PermissionController/src/com/android/packageinstaller/incident/
DConfirmationActivity.java92 final IncidentManager.PendingReport pending = new IncidentManager.PendingReport(uri); in onCreate() local
93 final String appLabel = formatting.getAppLabel(pending.getRequestingPackage()); in onCreate()
163 formatting.getDate(pending.getTimestamp()), in onCreate()
164 formatting.getTime(pending.getTimestamp()), in onCreate()
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarAlarmManager.java172 PendingIntent pending = PendingIntent.getBroadcast(mContext, 0 /* ignored */, intent, in checkNextAlarm() local
174 if (pending != null) { in checkNextAlarm()
176 cancel(pending); in checkNextAlarm()
178 pending = PendingIntent.getBroadcast(mContext, 0 /* ignored */, intent, in checkNextAlarm()
184 setExactAndAllowWhileIdle(AlarmManager.ELAPSED_REALTIME_WAKEUP, triggerAtTime, pending); in checkNextAlarm()
/packages/apps/Protips/src/com/android/protips/
DProtipWidget.java198 PendingIntent pending = PendingIntent.getBroadcast( in buildUpdate() local
200 updateViews.setOnClickPendingIntent(R.id.tip_bubble, pending); in buildUpdate()
206 pending = PendingIntent.getBroadcast( in buildUpdate()
208 updateViews.setOnClickPendingIntent(R.id.bugdroid, pending); in buildUpdate()
/packages/apps/DocumentsUI/src/com/android/documentsui/picker/
DSaveFragment.java209 private void setPending(boolean pending) { in setPending() argument
210 mSave.setVisibility(pending ? View.INVISIBLE : View.VISIBLE); in setPending()
211 mProgress.setVisibility(pending ? View.VISIBLE : View.GONE); in setPending()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/fuelgauge/batterytip/
DAnomalyCleanupJobService.java51 final JobInfo pending = jobScheduler.getPendingJob(R.integer.job_anomaly_clean_up); in scheduleCleanUp() local
55 if (pending == null && jobScheduler.schedule(jobBuilder.build()) in scheduleCleanUp()
DAnomalyConfigJobService.java60 final JobInfo pending = jobScheduler.getPendingJob(R.integer.job_anomaly_config_update); in scheduleConfigUpdate() local
64 if (pending == null && jobScheduler.schedule(jobBuilder.build()) in scheduleConfigUpdate()
/packages/apps/Settings/src/com/android/settings/fuelgauge/batterytip/
DAnomalyCleanupJobService.java51 final JobInfo pending = jobScheduler.getPendingJob(R.integer.job_anomaly_clean_up); in scheduleCleanUp() local
55 if (pending == null && jobScheduler.schedule(jobBuilder.build()) in scheduleCleanUp()
DAnomalyConfigJobService.java60 final JobInfo pending = jobScheduler.getPendingJob(R.integer.job_anomaly_config_update); in scheduleConfigUpdate() local
64 if (pending == null && jobScheduler.schedule(jobBuilder.build()) in scheduleConfigUpdate()
/packages/apps/Contacts/src/com/android/contacts/editor/
DContactEditorFragment.java1016 final ContentValues pending = after.getAfter(); in structuredNamesAreEqual() local
1017 if (original != null && pending != null) { in structuredNamesAreEqual()
1019 final String afterDisplayName = pending.getAsString(StructuredName.DISPLAY_NAME); in structuredNamesAreEqual()
1023 final String afterPrefix = pending.getAsString(StructuredName.PREFIX); in structuredNamesAreEqual()
1027 final String afterFirstName = pending.getAsString(StructuredName.GIVEN_NAME); in structuredNamesAreEqual()
1031 final String afterMiddleName = pending.getAsString(StructuredName.MIDDLE_NAME); in structuredNamesAreEqual()
1035 final String afterLastName = pending.getAsString(StructuredName.FAMILY_NAME); in structuredNamesAreEqual()
1039 final String afterSuffix = pending.getAsString(StructuredName.SUFFIX); in structuredNamesAreEqual()
/packages/apps/Dialer/java/com/android/dialer/common/concurrent/
DDialerFutures.java57 final AtomicInteger pending = new AtomicInteger(output.futures.size()); in firstMatchingImpl() local
76 if (pending.decrementAndGet() == 0) { in firstMatchingImpl()
/packages/apps/Email/src/com/android/email/
DEmailNotificationController.java135 PendingIntent pending = null; in createBaseAccountNotificationBuilder() local
137 pending = PendingIntent.getActivity( in createBaseAccountNotificationBuilder()
145 .setContentIntent(pending) in createBaseAccountNotificationBuilder()
/packages/apps/Car/Settings/src/com/android/car/settings/accounts/
DAccountDetailsWithSyncStatusPreferenceController.java112 boolean syncIsPending = status != null && status.pending; in isSyncFailing()
DAccountSyncHelper.java131 boolean syncIsPending = status != null && status.pending; in getSyncState()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accounts/
DAccountSyncFragment.java299 boolean authorityIsPending = status != null && status.pending; in onSyncStateUpdated()
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/accounts/
DAccountSyncDetailsPreferenceControllerTest.java353 status.pending = true; in refreshUi_syncPending_notInitialSync_shouldHaveActiveSyncIcon()
/packages/apps/Settings/src/com/android/settings/accounts/
DAccountSyncSettings.java418 boolean authorityIsPending = status == null ? false : status.pending; in setFeedsState()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/accounts/
DAccountSyncSettings.java418 boolean authorityIsPending = status == null ? false : status.pending; in setFeedsState()
/packages/apps/DocumentsUI/src/com/android/documentsui/
DBaseActivity.java645 public void setPending(boolean pending) { in setPending() argument
/packages/apps/Launcher3/src/com/android/launcher3/
DCellLayout.java388 public void setDropPending(boolean pending) { in setDropPending() argument
389 mDropPending = pending; in setDropPending()
/packages/inputmethods/LatinIME/dictionaries/
Den_US_wordlist.combined.gz
Den_GB_wordlist.combined.gz
Den_wordlist.combined.gz