Home | History | Annotate | Download | only in autofill

Lines Matching defs:updates

176          * Updates the {@link RemoteViews presentation template} when a condition is satisfied by
181 * <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) {
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, flags);
366 final BatchUpdates[] updates = parcel.readParcelableArray(null, BatchUpdates.class);
369 builder.batchUpdate(conditions[i], updates[i]);