Home
last modified time | relevance | path

Searched refs:ID_L1C1 (Results 1 – 3 of 3) sorted by relevance

/cts/tests/autofillservice/src/android/autofillservice/cts/
DPartitionedActivityTest.java18 import static android.autofillservice.cts.GridActivity.ID_L1C1;
108 .setField(ID_L1C1, "l1c1", createPresentation("l1c1")) in testAutofillTwoPartitionsSkipFirst()
118 final ViewNode p1l1c1 = assertTextIsSanitized(fillRequest1.structure, ID_L1C1); in testAutofillTwoPartitionsSkipFirst()
141 final ViewNode p2l1c1 = assertTextIsSanitized(fillRequest2.structure, ID_L1C1); in testAutofillTwoPartitionsSkipFirst()
188 .setField(ID_L1C1, "l1c1") in testAutofillTwoPartitionsInSequence()
202 assertTextIsSanitized(fillRequest1.structure, ID_L1C1); in testAutofillTwoPartitionsInSequence()
230 assertValue(fillRequest2.structure, ID_L1C1, "l1c1"); in testAutofillTwoPartitionsInSequence()
263 .setField(ID_L1C1, "l1c1") in autofill4PartitionsTest()
278 assertValue(fillRequest1.structure, ID_L1C1, ""); in autofill4PartitionsTest()
280 assertTextIsSanitized(fillRequest1.structure, ID_L1C1); in autofill4PartitionsTest()
[all …]
DMutableAutofillIdTest.java19 import static android.autofillservice.cts.GridActivity.ID_L1C1;
87 final ViewNode node1Request1 = assertTextIsSanitized(fillRequest1.structure, ID_L1C1); in testDatasetPickerIsNotShownAfterViewIsSwappedOut()
113 Log.d(TAG, "Changed id of " + ID_L1C1 + " from " + oldIdField1 + " to " + newIdField1); in testDatasetPickerIsNotShownAfterViewIsSwappedOut()
128 final ViewNode node1Request2 = assertTextIsSanitized(fillRequest2.structure, ID_L1C1); in testDatasetPickerIsNotShownAfterViewIsSwappedOut()
165 final ViewNode node1Request1 = assertTextIsSanitized(fillRequest1.structure, ID_L1C1); in testViewGoneDuringAutofillCanStillBeFilled()
180 Log.d(TAG, "Changed id of " + ID_L1C1 + " from " + oldIdField1 + " to " + newIdField1); in testViewGoneDuringAutofillCanStillBeFilled()
228 final ViewNode node1Request1 = assertTextIsSanitized(fillRequest1.structure, ID_L1C1); in saveWhenIdChanged()
243 Log.d(TAG, "Changed id of " + ID_L1C1 + " from " + oldIdField1 + " to " + newIdField1); in saveWhenIdChanged()
259 final ViewNode node1Request2 = assertTextIsSanitized(fillRequest2.structure, ID_L1C1); in saveWhenIdChanged()
279 assertThat(oldNode1Context1.getIdEntry()).isEqualTo(ID_L1C1); in saveWhenIdChanged()
[all …]
DGridActivity.java40 public static final String ID_L1C1 = getResourceId(1, 1); field in GridActivity