Home | History | Annotate | Download | only in autofill

Lines Matching defs:mTransformations

49     private final ArrayList<Pair<Integer, InternalTransformation>> mTransformations;
53 mTransformations = builder.mTransformations;
60 return mTransformations;
76 private ArrayList<Pair<Integer, InternalTransformation>> mTransformations;
121 if (mTransformations == null) {
122 mTransformations = new ArrayList<>();
124 mTransformations.add(new Pair<>(id, (InternalTransformation) transformation));
137 Preconditions.checkState(mUpdates != null || mTransformations != null,
159 .append(mTransformations == null ? "N/A" : mTransformations.size())
174 if (mTransformations == null) {
177 final int size = mTransformations.size();
181 final Pair<Integer, InternalTransformation> pair = mTransformations.get(i);