Searched refs:InternalTransformation (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/core/java/android/service/autofill/ |
D | BatchUpdates.java | 49 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);
|
D | CustomDescription.java | 93 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);
|
D | InternalTransformation.java | 36 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()
|
D | DateTransformation.java | 46 public final class DateTransformation extends InternalTransformation implements
|
D | CharSequenceTransformation.java | 63 public final class CharSequenceTransformation extends InternalTransformation implements
|
D | ImageTransformation.java | 58 public final class ImageTransformation extends InternalTransformation implements Transformation,
|
/frameworks/base/services/autofill/java/com/android/server/autofill/ui/ |
D | SaveUi.java | 39 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/ |
D | test-current.txt | 2451 …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>>);
|