Home
last modified time | relevance | path

Searched refs:SaveInfo (Results 1 – 11 of 11) sorted by relevance

/aosp14/frameworks/base/services/autofill/java/com/android/server/autofill/
H A DHintsHelper.java19 import static android.service.autofill.SaveInfo.SAVE_DATA_TYPE_ADDRESS;
20 import static android.service.autofill.SaveInfo.SAVE_DATA_TYPE_CREDIT_CARD;
21 import static android.service.autofill.SaveInfo.SAVE_DATA_TYPE_DEBIT_CARD;
22 import static android.service.autofill.SaveInfo.SAVE_DATA_TYPE_EMAIL_ADDRESS;
23 import static android.service.autofill.SaveInfo.SAVE_DATA_TYPE_GENERIC_CARD;
24 import static android.service.autofill.SaveInfo.SAVE_DATA_TYPE_PASSWORD;
25 import static android.service.autofill.SaveInfo.SAVE_DATA_TYPE_PAYMENT_CARD;
26 import static android.service.autofill.SaveInfo.SAVE_DATA_TYPE_USERNAME;
H A DHelper.java38 import android.service.autofill.SaveInfo;
340 static ArrayMap<AutofillId, InternalSanitizer> createSanitizers(@Nullable SaveInfo saveInfo) { in createSanitizers()
H A DSession.java149 import android.service.autofill.SaveInfo;
1676 SaveInfo saveInfo = response.getSaveInfo(); in isEmptyResponse()
1764 private SaveInfo getEligibleSaveInfo(FillResponse response) { in getEligibleSaveInfo()
1765 SaveInfo saveInfo = response.getSaveInfo(); in getEligibleSaveInfo()
1780 if (saveType == SaveInfo.SAVE_DATA_TYPE_GENERIC) { in getEligibleSaveInfo()
1797 return SaveInfo.copy(saveInfo, autofillIds); in getEligibleSaveInfo()
2881 private SaveInfo getSaveInfoLocked() { in getSaveInfoLocked()
2888 final SaveInfo saveInfo = getSaveInfoLocked(); in getSaveInfoFlagsLocked()
3978 final SaveInfo saveInfo = response.getSaveInfo(); in shouldStartNewPartitionLocked()
4789 final SaveInfo saveInfo = response.getSaveInfo(); in updateTrackedIdsLocked()
[all …]
H A DAutofillManagerServiceImpl.java62 import android.service.autofill.SaveInfo;
647 && (previousSession.getSaveInfoFlagsLocked() & SaveInfo.FLAG_DELAY_SAVE) != 0) { in getPreviousSessionsLocked()
/aosp14/frameworks/base/core/java/android/service/autofill/
H A DSaveInfo.java150 public final class SaveInfo implements Parcelable { class
342 public static SaveInfo copy(SaveInfo s, AutofillId[] optionalIds) { in copy()
343 return new SaveInfo(s.mType, s.mNegativeButtonStyle, s.mPositiveButtonStyle, in copy()
349 private SaveInfo(@SaveDataType int type, @NegativeButtonStyle int negativeButtonStyle, in SaveInfo() method in SaveInfo
370 private SaveInfo(Builder builder) { in SaveInfo() method in SaveInfo
818 public SaveInfo build() { in build()
821 return new SaveInfo(this); in build()
903 …nal @android.annotation.NonNull Parcelable.Creator<SaveInfo> CREATOR = new Parcelable.Creator<Save…
905 public SaveInfo createFromParcel(Parcel parcel) {
950 public SaveInfo[] newArray(int size) {
[all …]
H A DFillResponse.java94 private final @Nullable SaveInfo mSaveInfo;
126 FillResponse r, List<Dataset> datasets, SaveInfo saveInfo) { in shallowCopy()
156 private FillResponse(ParceledListSlice<Dataset> datasets, SaveInfo saveInfo, Bundle clientState, in FillResponse()
242 public @Nullable SaveInfo getSaveInfo() { in getSaveInfo()
377 private SaveInfo mSaveInfo;
765 public @NonNull Builder setSaveInfo(@NonNull SaveInfo saveInfo) { in setSaveInfo()
1266 … builder.setSaveInfo(parcel.readParcelable(null, android.service.autofill.SaveInfo.class));
/aosp14/frameworks/base/services/autofill/java/com/android/server/autofill/ui/
H A DSaveUi.java43 import android.service.autofill.SaveInfo;
179 @NonNull SaveInfo info, @NonNull ValueFinder valueFinder, in SaveUi()
240 if ((mType & SaveInfo.SAVE_DATA_TYPE_PASSWORD) != 0) { in SaveUi()
243 if ((mType & SaveInfo.SAVE_DATA_TYPE_ADDRESS) != 0) { in SaveUi()
249 | SaveInfo.SAVE_DATA_TYPE_DEBIT_CARD in SaveUi()
250 | SaveInfo.SAVE_DATA_TYPE_PAYMENT_CARD; in SaveUi()
261 if ((mType & SaveInfo.SAVE_DATA_TYPE_USERNAME) != 0) { in SaveUi()
264 if ((mType & SaveInfo.SAVE_DATA_TYPE_EMAIL_ADDRESS) != 0) { in SaveUi()
327 case SaveInfo.NEGATIVE_BUTTON_STYLE_REJECT: in SaveUi()
330 case SaveInfo.NEGATIVE_BUTTON_STYLE_NEVER: in SaveUi()
[all …]
H A DAutoFillUI.java39 import android.service.autofill.SaveInfo;
335 @Nullable String servicePackageName, @NonNull SaveInfo info, in showSaveUi()
/aosp14/frameworks/base/boot/hiddenapi/
H A Dhiddenapi-max-target-o.txt48965 Landroid/service/autofill/SaveInfo$Builder;->mDestroyed:Z
48966 Landroid/service/autofill/SaveInfo$Builder;->mFlags:I
48974 Landroid/service/autofill/SaveInfo$Builder;->mType:I
48976 Landroid/service/autofill/SaveInfo$Builder;->throwIfDestroyed()V
48977 Landroid/service/autofill/SaveInfo;-><init>(Landroid/service/autofill/SaveInfo$Builder;)V
48980 Landroid/service/autofill/SaveInfo;->getFlags()I
48982 Landroid/service/autofill/SaveInfo;->getNegativeActionStyle()I
48988 Landroid/service/autofill/SaveInfo;->getType()I
48992 Landroid/service/autofill/SaveInfo;->mFlags:I
48994 Landroid/service/autofill/SaveInfo;->mNegativeButtonStyle:I
[all …]
/aosp14/frameworks/base/core/api/
H A Dcurrent.txt40049 public final class SaveInfo implements android.os.Parcelable {
40052 …nNull public static final android.os.Parcelable.Creator<android.service.autofill.SaveInfo> CREATOR;
40072 public static final class SaveInfo.Builder {
40073 ctor public SaveInfo.Builder(int, @NonNull android.view.autofill.AutofillId[]);
40074 ctor public SaveInfo.Builder(int);
40076 method public android.service.autofill.SaveInfo build();
40078 …method @NonNull public android.service.autofill.SaveInfo.Builder setDescription(@Nullable CharSequ…
40079 method @NonNull public android.service.autofill.SaveInfo.Builder setFlags(int);
40082 method @NonNull public android.service.autofill.SaveInfo.Builder setPositiveAction(int);
40083 …method @NonNull public android.service.autofill.SaveInfo.Builder setTriggerId(@NonNull android.vie…
[all …]
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...