HomeSort by relevance Sort by last modified time
    Searched refs:nextHint (Results 1 - 2 of 2) sorted by null

  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/model/
FilledAutofillFieldCollection.java 117 String nextHint = null;
121 nextHint = autofillHints[i + 1];
128 nextHint = autofillHints[i + 1];
131 if (isW3cTypePrefix(hint) && nextHint != null && isW3cTypeHint(nextHint)) {
132 hint = nextHint;
136 if (isW3cAddressType(hint) && nextHint != null) {
137 hint = nextHint;
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/
AutofillHints.java 104 String nextHint = null;
108 nextHint = hints.get(i + 1);
116 nextHint = hints.get(i + 1);
119 if (isW3cTypePrefix(hint) && nextHint != null && isW3cTypeHint(nextHint)) {
120 hint = nextHint;
124 if (isW3cAddressType(hint) && nextHint != null) {
125 hint = nextHint;

Completed in 315 milliseconds