Searched defs:updates (Results 1 - 19 of 19) sorted by relevance

/frameworks/base/services/core/java/com/android/server/updates/
H A DCarrierProvisioningUrlsInstallReceiver.java17 package com.android.server.updates;
H A DCertPinInstallReceiver.java17 package com.android.server.updates;
H A DIntentFirewallInstallReceiver.java17 package com.android.server.updates;
H A DLangIdInstallReceiver.java17 package com.android.server.updates;
H A DSmsShortCodesInstallReceiver.java17 package com.android.server.updates;
H A DApnDbInstallReceiver.java17 package com.android.server.updates;
H A DCarrierIdInstallReceiver.java17 package com.android.server.updates;
H A DNetworkWatchlistInstallReceiver.java17 package com.android.server.updates;
H A DSmartSelectionInstallReceiver.java17 package com.android.server.updates;
H A DCertificateTransparencyLogInstallReceiver.java17 package com.android.server.updates;
H A DConfigUpdateInstallReceiver.java17 package com.android.server.updates;
/frameworks/base/core/java/android/service/autofill/
H A DBatchUpdates.java79 * Applies the {@code updates} in the underlying presentation template.
81 * <p><b>Note:</b> The updates are applied before the
88 * @param updates a {@link RemoteViews} with the updated actions to be applied in the
95 public Builder updateTemplate(@NonNull RemoteViews updates) { argument
97 mUpdates = Preconditions.checkNotNull(updates);
109 * {@link #updateTemplate(RemoteViews) updates} are applied to the presentation template.
160 .append(", updates=").append(mUpdates)
207 final RemoteViews updates = parcel.readParcelable(null);
208 if (updates != null) {
209 builder.updateTemplate(updates);
[all...]
H A DCustomDescription.java181 * <p>The updates are applied in the sequence they are added, after the
247 * @param condition condition used to trigger the updates.
248 * @param updates actions to be applied to the
256 public Builder batchUpdate(@NonNull Validator condition, @NonNull BatchUpdates updates) { argument
260 Preconditions.checkNotNull(updates);
264 mUpdates.add(new Pair<>((InternalValidator) condition, updates));
295 .append(", updates=")
332 final BatchUpdates[] updates = new BatchUpdates[size];
337 updates[i] = pair.second;
340 dest.writeParcelableArray(updates, flag
[all...]
/frameworks/base/libs/input/
H A DSpriteController.cpp113 // Collect information about sprite updates.
118 Vector<SpriteUpdate> updates; local
127 updates.push(SpriteUpdate(sprite, sprite->getStateLocked()));
136 SpriteUpdate& update = updates.editItemAt(i);
155 SpriteUpdate& update = updates.editItemAt(i);
184 SpriteUpdate& update = updates.editItemAt(i);
234 SpriteUpdate& update = updates.editItemAt(i);
304 const SpriteUpdate& update = updates.itemAt(i);
319 updates.clear();
/frameworks/base/services/tests/servicestests/src/com/android/server/updates/
H A DCertPinInstallReceiverTest.java17 package com.android.server.updates;
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DDiffUtil.java33 * It can be used to calculate updates for a RecyclerView Adapter. See
38 * DiffUtil uses Eugene W. Myers's difference algorithm to calculate the minimal number of updates
490 * You can consume the updates in a DiffResult via
594 * the updates (which is probably being called on the main thread).
713 * method to dispatch all updates to the RecyclerView.
721 * Note that the RecyclerView requires you to dispatch adapter updates immediately when you
723 * rule because updates are sent to the adapter right after the backing data is changed,
729 * list is instantly moved to its final state while the adapter updates are dispatched later
747 * These updates are atomic such that the first update call affects every update call that
794 private static PostponedUpdate removePostponedUpdate(List<PostponedUpdate> updates, argument
[all...]
/frameworks/native/services/surfaceflinger/tests/
H A DSurfaceInterceptor_test.cpp209 // Verification of buffer updates
720 uint32_t updates = 0; local
723 updates++;
726 return updates == BUFFER_UPDATES;
799 // Find all of the updates in the single trace
840 // If the interceptor is enabled while buffer updates are being pushed, the interceptor should
842 // the buffer updates
/frameworks/support/v7/recyclerview/src/test/java/androidx/recyclerview/widget/
H A DAdapterHelperTest.java1114 void applyOps(List<AdapterHelper.UpdateOp> updates, argument
1116 for (AdapterHelper.UpdateOp op : updates) {
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
H A DAppWidgetServiceImpl.java860 // We key the updates based on request id, so that the values are sorted in the
868 // Reset the update counter once all the updates have been calculated
1186 // Schedule the future updates.
1837 // cancel the future updates
2844 * Checks if the provider is assigned and updates the mWidgetPackages to track packages
2867 * Removes a widget from mWidgets and updates the cache of bound widget provider packages.
3992 // widget update is successfully sent to the host callbacks. As all new/undelivered updates
3993 // will have sequenceNo greater than this, all those updates will be sent when the host
4018 * Adds all pending updates in {@param outUpdates} keys by the update time.
4482 // send out updates t
4759 countPendingUpdates(ArrayList<RestoreUpdateRecord> updates) argument
[all...]

Completed in 297 milliseconds