Home
last modified time | relevance | path

Searched refs:InternalTransformation (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/core/java/android/service/autofill/
DBatchUpdates.java49 private final ArrayList<Pair<Integer, InternalTransformation>> mTransformations;
59 public ArrayList<Pair<Integer, InternalTransformation>> getTransformations() { in getTransformations()
76 private ArrayList<Pair<Integer, InternalTransformation>> mTransformations;
119 Preconditions.checkArgument((transformation instanceof InternalTransformation), in transformChild()
124 mTransformations.add(new Pair<>(id, (InternalTransformation) transformation)); in transformChild()
179 final InternalTransformation[] values = new InternalTransformation[size]; in writeToParcel()
181 final Pair<Integer, InternalTransformation> pair = mTransformations.get(i); in writeToParcel()
200 final InternalTransformation[] values =
201 parcel.readParcelableArray(null, InternalTransformation.class);
DCustomDescription.java93 private final ArrayList<Pair<Integer, InternalTransformation>> mTransformations;
112 public ArrayList<Pair<Integer, InternalTransformation>> getTransformations() { in getTransformations()
136 private ArrayList<Pair<Integer, InternalTransformation>> mTransformations;
182 Preconditions.checkArgument((transformation instanceof InternalTransformation), in addChild()
187 mTransformations.add(new Pair<>(id, (InternalTransformation) transformation)); in addChild()
394 final InternalTransformation[] values = new InternalTransformation[size]; in writeToParcel()
396 final Pair<Integer, InternalTransformation> pair = mTransformations.get(i); in writeToParcel()
445 final InternalTransformation[] values =
446 parcel.readParcelableArray(null, InternalTransformation.class);
DInternalTransformation.java36 public abstract class InternalTransformation implements Transformation, Parcelable { class
61 @NonNull ArrayList<Pair<Integer, InternalTransformation>> transformations) { in batchApply()
65 final Pair<Integer, InternalTransformation> pair = transformations.get(i); in batchApply()
67 final InternalTransformation transformation = pair.second; in batchApply()
DDateTransformation.java46 public final class DateTransformation extends InternalTransformation implements
DCharSequenceTransformation.java63 public final class CharSequenceTransformation extends InternalTransformation implements
DImageTransformation.java58 public final class ImageTransformation extends InternalTransformation implements Transformation,
/frameworks/base/services/autofill/java/com/android/server/autofill/ui/
DSaveUi.java39 import android.service.autofill.InternalTransformation;
298 final ArrayList<Pair<Integer, InternalTransformation>> transformations = in applyCustomDescription()
304 if (!InternalTransformation.batchApply(valueFinder, template, transformations)) { in applyCustomDescription()
373 final ArrayList<Pair<Integer, InternalTransformation>> batchTransformations = in applyCustomDescription()
380 if (!InternalTransformation.batchApply(valueFinder, template, in applyCustomDescription()
/frameworks/base/api/
Dtest-current.txt2451 …lass CharSequenceTransformation extends android.service.autofill.InternalTransformation implements…
2473 …public final class DateTransformation extends android.service.autofill.InternalTransformation impl…
2485 …public final class ImageTransformation extends android.service.autofill.InternalTransformation imp…
2499 …public abstract class InternalTransformation implements android.os.Parcelable android.service.auto…
2500 ctor public InternalTransformation();
2501 …l.ArrayList<android.util.Pair<java.lang.Integer,android.service.autofill.InternalTransformation>>);