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

  /developers/samples/android/input/autofill/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/datasource/
SharedPrefsAutofillRepository.kt 34 private val DATASET_NUMBER_KEY = "datasetNumber"
79 getPrefs(context).edit().remove(CLIENT_FORM_DATA_KEY).remove(DATASET_NUMBER_KEY).apply()
95 return getPrefs(context).getInt(DATASET_NUMBER_KEY, 0)
103 getPrefs(context).edit().putInt(DATASET_NUMBER_KEY, getDatasetNumber(context) + 1).apply()
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/service/datasource/
LocalAutofillRepository.java 39 private static final String DATASET_NUMBER_KEY = "datasetNumber";
117 return mPrefs.getInt(DATASET_NUMBER_KEY, 0);
125 mPrefs.edit().putInt(DATASET_NUMBER_KEY, getDatasetNumber() + 1).apply();
  /developers/build/prebuilts/gradle/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/service/datasource/
LocalAutofillRepository.java 39 private static final String DATASET_NUMBER_KEY = "datasetNumber";
117 return mPrefs.getInt(DATASET_NUMBER_KEY, 0);
125 mPrefs.edit().putInt(DATASET_NUMBER_KEY, getDatasetNumber() + 1).apply();
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/datasource/
SharedPrefsAutofillRepository.java 37 private static final String DATASET_NUMBER_KEY = "datasetNumber";
111 return mPrefs.getInt(DATASET_NUMBER_KEY, 0);
119 mPrefs.edit().putInt(DATASET_NUMBER_KEY, getDatasetNumber() + 1).apply();

Completed in 286 milliseconds