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

  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/
AutofillHints.java 20 import com.example.android.autofill.service.model.FakeData;
51 FakeData fakeData = fieldTypeWithHeuristics.fieldType.getFakeData();
56 if (fakeData.strictExampleSet != null && fakeData.strictExampleSet.strings != null &&
57 fakeData.strictExampleSet.strings.size() > 0 &&
58 !fakeData.strictExampleSet.strings.get(0).isEmpty()) {
59 List<String> choices = fakeData.strictExampleSet.strings;
61 } else if (fakeData.textTemplate != null) {
62 text = fakeData.textTemplate.replace("seed", "" + seed
    [all...]
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/model/
DefaultFieldTypeWithHints.java 38 "fakeData": {
58 public DefaultFakeData fakeData;
FieldType.java 46 private final FakeData mFakeData;
49 @NonNull Integer saveInfo, @NonNull Integer partition, @NonNull FakeData fakeData) {
54 mFakeData = fakeData;
78 public FakeData getFakeData() {
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/source/local/db/
AutofillDatabase.java 32 import com.example.android.autofill.service.model.FakeData;
97 DefaultFieldTypeWithHints.DefaultFakeData defaultFakeData = defaultType.fieldType.fakeData;
98 FakeData fakeData = new FakeData(new Converters.StringList(
102 defaultFieldType.saveInfo, defaultFieldType.partition, fakeData);
  /tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/
TestFailureListenerTest.java 66 final byte[] fakeData = "fakeData".getBytes();
67 InputStreamSource fakeSource = new ByteArrayInputStreamSource(fakeData);
112 final byte[] fakeData = "fakeData".getBytes();
113 InputStreamSource fakeSource = new ByteArrayInputStreamSource(fakeData);
ITestSuiteTest.java 269 final byte[] fakeData = "fakeData".getBytes();
270 InputStreamSource fakeSource = new ByteArrayInputStreamSource(fakeData);
298 final byte[] fakeData = "fakeData".getBytes();
299 InputStreamSource fakeSource = new ByteArrayInputStreamSource(fakeData);
    [all...]
  /test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/result/
ResultReporterTest.java 463 InputStreamSource fakeData = new ByteArrayInputStreamSource("test".getBytes());
465 mReporter.testLog("test1", LogDataType.LOGCAT, fakeData);
472 mReporter.testLog("test2", LogDataType.LOGCAT, fakeData);
486 InputStreamSource fakeData = new ByteArrayInputStreamSource("test".getBytes());
489 mReporter.testLog(deviceInfoName, LogDataType.TEXT, fakeData);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/search/
DatabaseIndexingManagerTest.java 383 private PreIndexData getPreIndexData(SearchIndexableData fakeData) {
385 data.dataToUpdate.add(fakeData);

Completed in 162 milliseconds