HomeSort by relevance Sort by last modified time
    Searched refs:getAutofillValue (Results 1 - 25 of 40) sorted by null

1 2

  /cts/tests/tests/widget/src/android/widget/cts/
DatePickerTest.java 103 assertNull(datePicker.getAutofillValue());
108 assertNotNull(datePicker.getAutofillValue());
321 assertEquals(autofilledValue, datePicker.getAutofillValue());
328 assertEquals(autofilledValue, datePicker.getAutofillValue());
330 assertEquals(datePicker.getAutofillValue(), autofilledValue);
336 assertEquals(autofilledValue, datePicker.getAutofillValue());
338 assertEquals(datePicker.getAutofillValue(), autofilledValue);
341 // Make sure getAutofillValue() is reset when value is manually filled.
344 calendar.setTimeInMillis(datePicker.getAutofillValue().getDateValue());
TimePickerTest.java 123 assertNull(mTimePicker.getAutofillValue());
128 assertNotNull(mTimePicker.getAutofillValue());
146 assertEquals(autofilledValue, mTimePicker.getAutofillValue());
154 assertEquals(autofilledValue, mTimePicker.getAutofillValue());
162 assertEquals(autofilledValue, mTimePicker.getAutofillValue());
167 // Make sure getAutofillValue() is reset when value is manually filled.
170 calendar.setTimeInMillis(mTimePicker.getAutofillValue().getDateValue());
174 calendar.setTimeInMillis(mTimePicker.getAutofillValue().getDateValue());
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
MultipleTimesRadioGroupListener.java 55 final int actual = mRadioGroup.getAutofillValue().getListValue();
AutofillValueTest.java 222 assertThat(mEditText.getAutofillValue()).isEqualTo(AutofillValue.forText("test"));
225 assertThat(mEditText.getAutofillValue()).isNull();
275 assertThat(mCompoundButton.getAutofillValue()).isEqualTo(AutofillValue.forToggle(true));
278 assertThat(mCompoundButton.getAutofillValue()).isNull();
333 assertThat(mSpinner.getAutofillValue()).isEqualTo(AutofillValue.forList(1));
336 assertThat(mSpinner.getAutofillValue()).isNull();
405 assertThat(mDatePicker.getAutofillValue()).isNull();
467 assertThat(mTimePicker.getAutofillValue()).isNull();
532 assertThat(mRadioGroup.getAutofillValue()).isEqualTo(AutofillValue.forList(1));
535 assertThat(mRadioGroup.getAutofillValue()).isNull()
    [all...]
AutoFinishSessionTest.java 111 .getAutofillValue().getTextValue().toString()).isEqualTo(view + "-filled");
249 .getAutofillValue().getTextValue().toString()).isEqualTo("editText1-filled");
Helper.java 211 .append(" afValue=").append(node.getAutofillValue())
427 final AutofillValue value = node.getAutofillValue();
493 final AutofillValue value = node.getAutofillValue();
508 final AutofillValue value = node.getAutofillValue();
521 final AutofillValue value = node.getAutofillValue();
534 final AutofillValue value = node.getAutofillValue();
564 assertDateValue(node, node.getAutofillValue(), year, month, day);
571 assertDateValue(view, view.getAutofillValue(), year, month, day);
594 assertTimeValue(node, node.getAutofillValue(), hour, minute);
601 assertTimeValue(view, view.getAutofillValue(), hour, minute)
    [all...]
MultipleFragmentLoginTest.java 127 assertThat(editText1Node.getAutofillValue()).isEqualTo(
  /packages/experimental/FillService/src/foo/bar/fill/
FillService.java 212 if (node.getAutofillValue() != null) {
213 Log.e("class:" + LOG_TAG, node.getClassName() + " value:" + node.getAutofillValue());
215 // Log.e(LOG_TAG, (node.getAutofillValue() != null && node.getAutofillValue().isText())
216 // ? node.getAutofillValue().getTextValue().toString() + "-" +node.getAutofillId() : "NOPE");
249 return node.getAutofillValue() != null
250 && node.getAutofillValue().getTextValue() != null
251 && node.getAutofillValue().getTextValue().toString().toLowerCase()
  /frameworks/base/core/java/android/widget/
DatePicker.java 536 AutofillValue getAutofillValue();
590 // The value that was passed to autofill() - it must be stored because it getAutofillValue()
639 // returned by getAutofillValue() matches it.
644 public final AutofillValue getAutofillValue() {
821 public AutofillValue getAutofillValue() {
822 return isEnabled() ? mDelegate.getAutofillValue() : null;
TimePicker.java 376 AutofillValue getAutofillValue();
431 // The value that was passed to autofill() - it must be stored because it getAutofillValue()
466 // returned by getAutofillValue() matches it.
471 public final AutofillValue getAutofillValue() {
577 public AutofillValue getAutofillValue() {
578 return isEnabled() ? mDelegate.getAutofillValue() : null;
RadioGroup.java 455 public AutofillValue getAutofillValue() {
  /developers/build/prebuilts/gradle/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/app/
CreditCardExpirationDateView.kt 73 override fun getAutofillValue() =
76 // autofill() is called, getAutofillValue() == the value that was originally passed
  /developers/samples/android/input/autofill/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/app/
CreditCardExpirationDateView.kt 73 override fun getAutofillValue() =
76 // autofill() is called, getAutofillValue() == the value that was originally passed
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/
CreditCardExpirationDateCompoundView.java 97 public AutofillValue getAutofillValue() {
99 // Set hours, minutes, seconds, and millis to 0 to ensure getAutofillValue() == the value
CreditCardExpirationDatePickerView.java 87 public AutofillValue getAutofillValue() {
90 if (DEBUG) Log.d(TAG, "getAutofillValue(): " + value);
CommonUtil.java 136 .append(getAutofillValueAndTypeAsString(node.getAutofillValue()))
CustomVirtualView.java 211 child.setAutofillValue(item.getAutofillValue());
365 public AutofillValue getAutofillValue() {
  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/
StructureParser.java 107 AutofillValue autofillValue = viewNode.getAutofillValue();
CommonUtil.java 136 .append(getAutofillValueAndTypeAsString(node.getAutofillValue()))
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/view/autofillable/
CreditCardExpirationDateCompoundView.java 99 public AutofillValue getAutofillValue() {
101 // Set hours, minutes, seconds, and millis to 0 to ensure getAutofillValue() == the value
CreditCardExpirationDatePickerView.java 89 public AutofillValue getAutofillValue() {
92 if (DEBUG) Log.d(TAG, "getAutofillValue(): " + value);
CustomVirtualView.java 213 child.setAutofillValue(item.getAutofillValue());
367 public AutofillValue getAutofillValue() {
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/
Util.java 136 .append(getAutofillValueAndTypeAsString(node.getAutofillValue()))
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/
ClientAutofillDataBuilder.java 91 AutofillValue autofillValue = viewNode.getAutofillValue();
  /packages/experimental/FilledApp/src/foo/bar/filled/
CustomLinearLayout.java 141 structure.setAutofillValue(view.getAutofillValue());

Completed in 1453 milliseconds

1 2