Home
last modified time | relevance | path

Searched refs:mSlice (Results 1 – 10 of 10) sorted by relevance

/aosp14/frameworks/base/core/java/android/service/autofill/
H A DInlinePresentation.java49 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 DCreateEntry.java37 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 DRemoteEntry.java44 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 DCredentialEntry.java57 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 DAction.java37 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 DEntry.java44 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 DAuthenticationEntry.java45 @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 DBitmapMutateActivity.java65 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 DKeyguardSliceViewController.java71 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 DProviderRegistryGetSessionTest.java97 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()