/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/ |
D | GoogleSearch.java | 105 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/ |
D | DelayedDiscovery.java | 63 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/ |
D | ConfirmationActivity.java | 92 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/ |
D | CalendarAlarmManager.java | 172 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/ |
D | ProtipWidget.java | 198 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/ |
D | SaveFragment.java | 209 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/ |
D | AnomalyCleanupJobService.java | 51 final JobInfo pending = jobScheduler.getPendingJob(R.integer.job_anomaly_clean_up); in scheduleCleanUp() local 55 if (pending == null && jobScheduler.schedule(jobBuilder.build()) in scheduleCleanUp()
|
D | AnomalyConfigJobService.java | 60 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/ |
D | AnomalyCleanupJobService.java | 51 final JobInfo pending = jobScheduler.getPendingJob(R.integer.job_anomaly_clean_up); in scheduleCleanUp() local 55 if (pending == null && jobScheduler.schedule(jobBuilder.build()) in scheduleCleanUp()
|
D | AnomalyConfigJobService.java | 60 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/ |
D | ContactEditorFragment.java | 1016 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/ |
D | DialerFutures.java | 57 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/ |
D | EmailNotificationController.java | 135 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/ |
D | AccountDetailsWithSyncStatusPreferenceController.java | 112 boolean syncIsPending = status != null && status.pending; in isSyncFailing()
|
D | AccountSyncHelper.java | 131 boolean syncIsPending = status != null && status.pending; in getSyncState()
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accounts/ |
D | AccountSyncFragment.java | 299 boolean authorityIsPending = status != null && status.pending; in onSyncStateUpdated()
|
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/accounts/ |
D | AccountSyncDetailsPreferenceControllerTest.java | 353 status.pending = true; in refreshUi_syncPending_notInitialSync_shouldHaveActiveSyncIcon()
|
/packages/apps/Settings/src/com/android/settings/accounts/ |
D | AccountSyncSettings.java | 418 boolean authorityIsPending = status == null ? false : status.pending; in setFeedsState()
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/accounts/ |
D | AccountSyncSettings.java | 418 boolean authorityIsPending = status == null ? false : status.pending; in setFeedsState()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/ |
D | BaseActivity.java | 645 public void setPending(boolean pending) { in setPending() argument
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | CellLayout.java | 388 public void setDropPending(boolean pending) { in setDropPending() argument 389 mDropPending = pending; in setDropPending()
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | en_US_wordlist.combined.gz |
|
D | en_GB_wordlist.combined.gz |
|
D | en_wordlist.combined.gz |
|