/aosp14/frameworks/base/core/java/android/service/autofill/ |
H A D | InlinePresentation.java | 49 private final @NonNull Slice mSlice; field in InlinePresentation 74 List<String> hints = mSlice.getHints(); in getAutofillHints() 132 this.mSlice = slice; in InlinePresentation() 134 NonNull.class, null, mSlice); in InlinePresentation() 153 return mSlice; in getSlice() 184 "slice = " + mSlice + ", " + in toString() 203 && java.util.Objects.equals(mSlice, that.mSlice) in equals() 215 _hash = 31 * _hash + java.util.Objects.hashCode(mSlice); in hashCode() 230 dest.writeTypedObject(mSlice, flags); in writeToParcel() 250 this.mSlice = slice; in InlinePresentation() [all …]
|
/aosp14/frameworks/base/core/java/android/service/credentials/ |
H A D | CreateEntry.java | 37 private final @NonNull Slice mSlice; field in CreateEntry 40 mSlice = in.readTypedObject(Slice.CREATOR); in CreateEntry() 63 dest.writeTypedObject(mSlice, flags); in writeToParcel() 80 this.mSlice = slice; in CreateEntry() 82 NonNull.class, null, mSlice); in CreateEntry() 88 return mSlice; in getSlice()
|
H A D | RemoteEntry.java | 44 private final @NonNull Slice mSlice; field in RemoteEntry 47 mSlice = in.readTypedObject(Slice.CREATOR); in RemoteEntry() 70 dest.writeTypedObject(mSlice, flags); in writeToParcel() 87 this.mSlice = slice; in RemoteEntry() 89 NonNull.class, null, mSlice); in RemoteEntry() 95 return mSlice; in getSlice()
|
H A D | CredentialEntry.java | 57 private final @NonNull Slice mSlice; field in CredentialEntry 91 mSlice = requireNonNull(slice, "slice must not be null"); in CredentialEntry() 116 mSlice = requireNonNull(slice, "slice must not be null"); in CredentialEntry() 132 mSlice = requireNonNull(slice, "slice must not be null"); in CredentialEntry() 138 mSlice = in.readTypedObject(Slice.CREATOR); in CredentialEntry() 164 dest.writeTypedObject(mSlice, flags); in writeToParcel() 190 return mSlice; in getSlice()
|
H A D | Action.java | 37 private final Slice mSlice; field in Action 60 mSlice = slice; in Action() 64 mSlice = in.readTypedObject(Slice.CREATOR); in Action() 87 dest.writeTypedObject(mSlice, flags); in writeToParcel() 95 return mSlice; in getSlice()
|
/aosp14/frameworks/base/core/java/android/credentials/ui/ |
H A D | Entry.java | 44 private final Slice mSlice; field in Entry 55 mSlice = slice; in Entry() 56 AnnotationValidations.validate(NonNull.class, null, mSlice); in Entry() 67 mSlice = slice; in Entry() 101 return mSlice; in getSlice() 119 dest.writeTypedObject(mSlice, flags); in writeToParcel()
|
H A D | AuthenticationEntry.java | 45 @NonNull private final Slice mSlice; field in AuthenticationEntry 69 mSlice = in.readTypedObject(Slice.CREATOR); in AuthenticationEntry() 74 AnnotationValidations.validate(NonNull.class, null, mSlice); in AuthenticationEntry() 84 mSlice = slice; in AuthenticationEntry() 119 return mSlice; in getSlice() 142 dest.writeTypedObject(mSlice, flags); in writeToParcel()
|
/aosp14/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
H A D | BitmapMutateActivity.java | 65 private int mSlice; field in BitmapMutateActivity.BitmapsView 75 mSlice = mBitmap1.getWidth() / 3; in BitmapsView() 95 color |= (int) ((0xff * ((i + mOffset) % mSlice) / (float) mSlice)) << in onDraw() 96 mShifts[i / mSlice]; in onDraw()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
H A D | KeyguardSliceViewController.java | 71 private Slice mSlice; field in KeyguardSliceViewController 91 mSlice = slice; 232 pw.println(" mSlice: " + mSlice); in dump()
|
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/credentials/ |
H A D | ProviderRegistryGetSessionTest.java | 97 private Slice mSlice; field in ProviderRegistryGetSessionTest 116 mSlice = createSlice(); in setUp() 118 when(mEntry.getSlice()).thenReturn(mSlice); in setUp() 182 assertThat(providerData.getCredentialEntries().get(0).getSlice()).isSameInstanceAs(mSlice); in testPrepareUiData_invokeCalledSuccessfully_returnsCorrectData()
|