Home | History | Annotate | Download | only in autofill

Lines Matching defs:FillResponse

50 public final class FillResponse implements Parcelable {
60 * Flag used to change the behavior of {@link FillResponse.Builder#disableAutofill(long)}—
88 private FillResponse(@NonNull Builder builder) {
166 * Associates a {@link FillResponse} to a request.
184 * Builder for {@link FillResponse} objects. You must to provide at least
227 * with the fully populated {@link FillResponse response} (or {@code null} if the screen
230 * <p>For example, if you provided an empty {@link FillResponse response} because the
306 * with a presentation string like "Next 10" that would return a new {@link FillResponse}
348 * <p>If this method is called on multiple {@link FillResponse} objects for the same
366 * {@link FillResponse#FLAG_TRACK_CONTEXT_COMMITED} to the {@link #setFlags(int) flags}.
451 * method should only be used on {@link FillResponse FillResponses} that do not require
482 * method should only be used on {@link FillResponse FillResponses} that do not require
496 * @throws IllegalStateException if the FillResponse
509 * Builds a new {@link FillResponse} instance.
525 public FillResponse build() {
539 return new FillResponse(this);
570 "FillResponse : [mRequestId=" + mRequestId);
631 public static final Parcelable.Creator<FillResponse> CREATOR =
632 new Parcelable.Creator<FillResponse>() {
634 public FillResponse createFromParcel(Parcel parcel) {
677 final FillResponse response = builder.build();
684 public FillResponse[] newArray(int size) {
685 return new FillResponse[size];