/aosp14/frameworks/base/core/java/android/view/inputmethod/ |
H A D | ParcelableHandwritingGesture.java | 68 return SelectGesture.CREATOR.createFromParcel(parcel); in createFromParcelInternal() 70 return SelectRangeGesture.CREATOR.createFromParcel(parcel); in createFromParcelInternal() 72 return InsertGesture.CREATOR.createFromParcel(parcel); in createFromParcelInternal() 74 return InsertModeGesture.CREATOR.createFromParcel(parcel); in createFromParcelInternal() 76 return DeleteGesture.CREATOR.createFromParcel(parcel); in createFromParcelInternal() 78 return DeleteRangeGesture.CREATOR.createFromParcel(parcel); in createFromParcelInternal() 80 return JoinOrSplitGesture.CREATOR.createFromParcel(parcel); in createFromParcelInternal() 82 return RemoveSpaceGesture.CREATOR.createFromParcel(parcel); in createFromParcelInternal() 88 public static final Creator<ParcelableHandwritingGesture> CREATOR = new Parcelable.Creator<>() { field in ParcelableHandwritingGesture
|
/aosp14/frameworks/base/core/java/android/content/ |
H A D | ContentProviderNative.java | 89 Uri url = Uri.CREATOR.createFromParcel(data); in onTransact() 145 Uri url = Uri.CREATOR.createFromParcel(data); in onTransact() 157 Uri url = Uri.CREATOR.createFromParcel(data); in onTransact() 165 Uri url = Uri.CREATOR.createFromParcel(data); in onTransact() 176 Uri url = Uri.CREATOR.createFromParcel(data); in onTransact() 191 Uri url = Uri.CREATOR.createFromParcel(data); in onTransact() 224 Uri url = Uri.CREATOR.createFromParcel(data); in onTransact() 239 Uri url = Uri.CREATOR.createFromParcel(data); in onTransact() 590 Uri out = Uri.CREATOR.createFromParcel(reply); in insert() 859 Uri out = Uri.CREATOR.createFromParcel(reply); in canonicalize() [all …]
|
/aosp14/frameworks/base/core/java/android/content/pm/ |
H A D | PackageInfo.java | 580 applicationInfo = ApplicationInfo.CREATOR.createFromParcel(source); in PackageInfo() 585 activities = source.createTypedArray(ActivityInfo.CREATOR); in PackageInfo() 586 receivers = source.createTypedArray(ActivityInfo.CREATOR); in PackageInfo() 587 services = source.createTypedArray(ServiceInfo.CREATOR); in PackageInfo() 588 providers = source.createTypedArray(ProviderInfo.CREATOR); in PackageInfo() 590 permissions = source.createTypedArray(PermissionInfo.CREATOR); in PackageInfo() 593 signatures = source.createTypedArray(Signature.CREATOR); in PackageInfo() 595 reqFeatures = source.createTypedArray(FeatureInfo.CREATOR); in PackageInfo() 596 featureGroups = source.createTypedArray(FeatureGroupInfo.CREATOR); in PackageInfo() 597 attributions = source.createTypedArray(Attribution.CREATOR); in PackageInfo() [all …]
|
H A D | LauncherActivityInfoInternal.java | 51 mActivityInfo = source.readTypedObject(ActivityInfo.CREATOR); in LauncherActivityInfoInternal() 53 mIncrementalStatesInfo = source.readTypedObject(IncrementalStatesInfo.CREATOR); in LauncherActivityInfoInternal() 54 mUser = source.readTypedObject(UserHandle.CREATOR); in LauncherActivityInfoInternal() 85 public static final @android.annotation.NonNull Creator<LauncherActivityInfoInternal> CREATOR = field in LauncherActivityInfoInternal
|
/aosp14/frameworks/base/core/tests/coretests/src/android/app/servertransaction/ |
H A D | TransactionParcelTests.java | 91 ActivityConfigurationChangeItem.CREATOR.createFromParcel(mParcel); in testActivityConfigChange() 104 MoveToDisplayItem result = MoveToDisplayItem.CREATOR.createFromParcel(mParcel); in testMoveToDisplay() 117 NewIntentItem result = NewIntentItem.CREATOR.createFromParcel(mParcel); in testNewIntent() 130 ActivityResultItem result = ActivityResultItem.CREATOR.createFromParcel(mParcel); in testActivityResult() 184 LaunchActivityItem result = LaunchActivityItem.CREATOR.createFromParcel(mParcel); in testLaunch() 215 PauseActivityItem result = PauseActivityItem.CREATOR.createFromParcel(mParcel); in testPause() 242 StopActivityItem result = StopActivityItem.CREATOR.createFromParcel(mParcel); in testStop() 255 StartActivityItem result = StartActivityItem.CREATOR.createFromParcel(mParcel); in testStart() 280 ClientTransaction result = ClientTransaction.CREATOR.createFromParcel(mParcel); in testClientTransaction() 302 ClientTransaction result = ClientTransaction.CREATOR.createFromParcel(mParcel); in testClientTransactionCallbacksOnly() [all …]
|
/aosp14/frameworks/base/core/java/android/window/ |
H A D | StartingWindowInfo.java | 264 taskInfo = source.readTypedObject(ActivityManager.RunningTaskInfo.CREATOR); in readFromParcel() 265 targetActivityInfo = source.readTypedObject(ActivityInfo.CREATOR); in readFromParcel() 267 topOpaqueWindowInsetsState = source.readTypedObject(InsetsState.CREATOR); in readFromParcel() 269 WindowManager.LayoutParams.CREATOR); in readFromParcel() 270 mainWindowLayoutParams = source.readTypedObject(WindowManager.LayoutParams.CREATOR); in readFromParcel() 273 taskSnapshot = source.readTypedObject(TaskSnapshot.CREATOR); in readFromParcel() 278 rootSurface = source.readTypedObject(SurfaceControl.CREATOR); in readFromParcel() 295 public static final @android.annotation.NonNull Creator<StartingWindowInfo> CREATOR = field in StartingWindowInfo
|
H A D | DisplayAreaAppearedInfo.java | 40 public static final Creator<DisplayAreaAppearedInfo> CREATOR = field in DisplayAreaAppearedInfo 44 final DisplayAreaInfo displayAreaInfo = source.readTypedObject(DisplayAreaInfo.CREATOR); 45 final SurfaceControl leash = source.readTypedObject(SurfaceControl.CREATOR);
|
H A D | TaskAppearedInfo.java | 40 public static final Creator<TaskAppearedInfo> CREATOR = new Creator<TaskAppearedInfo>() { field in TaskAppearedInfo 43 final RunningTaskInfo taskInfo = source.readTypedObject(RunningTaskInfo.CREATOR); 44 final SurfaceControl leash = source.readTypedObject(SurfaceControl.CREATOR);
|
H A D | TaskFragmentTransaction.java | 60 in.readTypedList(mChanges, Change.CREATOR); in TaskFragmentTransaction() 113 public static final Creator<TaskFragmentTransaction> CREATOR = new Creator<>() { field in TaskFragmentTransaction 202 mTaskFragmentInfo = in.readTypedObject(TaskFragmentInfo.CREATOR); in Change() 206 mActivityIntent = in.readTypedObject(Intent.CREATOR); in Change() 208 mTaskFragmentParentInfo = in.readTypedObject(TaskFragmentParentInfo.CREATOR); in Change() 373 public static final Creator<Change> CREATOR = new Creator<>() { field in TaskFragmentTransaction.Change
|
/aosp14/frameworks/base/services/tests/voiceinteractiontests/src/com/android/server/soundtrigger/ |
H A D | SoundTriggerTest.java | 52 Keyphrase unparceled = Keyphrase.CREATOR.createFromParcel(parcel); in testKeyphraseParcelUnparcel_noUsers() 69 Keyphrase unparceled = Keyphrase.CREATOR.createFromParcel(parcel); in testKeyphraseParcelUnparcel_zeroUsers() 89 Keyphrase unparceled = Keyphrase.CREATOR.createFromParcel(parcel); in testKeyphraseParcelUnparcel_pos() 114 KeyphraseSoundModel unparceled = KeyphraseSoundModel.CREATOR.createFromParcel(parcel); in testKeyphraseSoundModelParcelUnparcel_noData() 236 RecognitionEvent unparceled = RecognitionEvent.CREATOR.createFromParcel(parcel); in testRecognitionEventParcelUnparcel_noData() 265 RecognitionEvent unparceled = RecognitionEvent.CREATOR.createFromParcel(parcel); in testRecognitionEventParcelUnparcel_zeroData() 296 RecognitionEvent unparceled = RecognitionEvent.CREATOR.createFromParcel(parcel); in testRecognitionEventParcelUnparcel_largeData() 327 RecognitionEvent unparceled = RecognitionEvent.CREATOR.createFromParcel(parcel); in testRecognitionEventParcelUnparcel_largeAudioData() 360 KeyphraseRecognitionEvent.CREATOR.createFromParcel(parcel); in testKeyphraseRecognitionEventParcelUnparcel_noKeyphrases() 394 KeyphraseRecognitionEvent.CREATOR.createFromParcel(parcel); in testKeyphraseRecognitionEventParcelUnparcel_zeroData() [all …]
|
/aosp14/frameworks/base/core/tests/coretests/src/android/security/keystore/recovery/ |
H A D | WrappedApplicationKeyTest.java | 78 WrappedApplicationKey.CREATOR.createFromParcel(mParcel); in writeToParcel_writesAliasToParcel() 88 WrappedApplicationKey.CREATOR.createFromParcel(mParcel); in writeToParcel_writesKeyMaterial() 98 WrappedApplicationKey.CREATOR.createFromParcel(mParcel); in writeToParcel_writesMetadata_nonNull() 108 WrappedApplicationKey.CREATOR.createFromParcel(mParcel); in writeToParcel_writesMetadata_null() 118 WrappedApplicationKey.CREATOR.createFromParcel(mParcel); in writeToParcel_writesMetadata_absent()
|
/aosp14/frameworks/base/core/java/android/view/ |
H A D | RemoteAnimationTarget.java | 298 leash = in.readTypedObject(SurfaceControl.CREATOR); in RemoteAnimationTarget() 303 clipRect = in.readTypedObject(Rect.CREATOR); in RemoteAnimationTarget() 304 contentInsets = in.readTypedObject(Rect.CREATOR); in RemoteAnimationTarget() 306 position = in.readTypedObject(Point.CREATOR); in RemoteAnimationTarget() 307 localBounds = in.readTypedObject(Rect.CREATOR); in RemoteAnimationTarget() 308 sourceContainerBounds = in.readTypedObject(Rect.CREATOR); in RemoteAnimationTarget() 309 screenSpaceBounds = in.readTypedObject(Rect.CREATOR); in RemoteAnimationTarget() 310 windowConfiguration = in.readTypedObject(WindowConfiguration.CREATOR); in RemoteAnimationTarget() 312 startLeash = in.readTypedObject(SurfaceControl.CREATOR); in RemoteAnimationTarget() 316 startBounds = in.readTypedObject(Rect.CREATOR); in RemoteAnimationTarget() [all …]
|
H A D | InsetsFrameProvider.java | 256 mInsetsSize = in.readTypedObject(Insets.CREATOR); in InsetsFrameProvider() 257 mInsetsSizeOverrides = in.createTypedArray(InsetsSizeOverride.CREATOR); in InsetsFrameProvider() 258 mArbitraryRectangle = in.readTypedObject(Rect.CREATOR); in InsetsFrameProvider() 259 mMinimalInsetsSizeInDisplayCutoutSafe = in.readTypedObject(Insets.CREATOR); in InsetsFrameProvider() 301 public static final @NonNull Parcelable.Creator<InsetsFrameProvider> CREATOR = field in InsetsFrameProvider 328 mInsetsSize = in.readTypedObject(Insets.CREATOR); in InsetsSizeOverride() 343 public static final Creator<InsetsSizeOverride> CREATOR = new Creator<>() { field in InsetsFrameProvider.InsetsSizeOverride
|
H A D | AppTransitionAnimationSpec.java | 31 rect = in.readTypedObject(Rect.CREATOR); in AppTransitionAnimationSpec() 32 buffer = in.readTypedObject(HardwareBuffer.CREATOR); in AppTransitionAnimationSpec() 47 …lic static final @android.annotation.NonNull Parcelable.Creator<AppTransitionAnimationSpec> CREATOR field in AppTransitionAnimationSpec
|
/aosp14/frameworks/base/core/java/android/app/smartspace/uitemplatedata/ |
H A D | BaseTemplateData.java | 104 mPrimaryItem = in.readTypedObject(SubItemInfo.CREATOR); in BaseTemplateData() 105 mSubtitleItem = in.readTypedObject(SubItemInfo.CREATOR); in BaseTemplateData() 106 mSubtitleSupplementalItem = in.readTypedObject(SubItemInfo.CREATOR); in BaseTemplateData() 107 mSupplementalLineItem = in.readTypedObject(SubItemInfo.CREATOR); in BaseTemplateData() 108 mSupplementalAlarmItem = in.readTypedObject(SubItemInfo.CREATOR); in BaseTemplateData() 177 public static final Creator<BaseTemplateData> CREATOR = field in BaseTemplateData 406 mText = in.readTypedObject(Text.CREATOR); in SubItemInfo() 407 mIcon = in.readTypedObject(Icon.CREATOR); in SubItemInfo() 408 mTapAction = in.readTypedObject(TapAction.CREATOR); in SubItemInfo() 450 public static final Creator<SubItemInfo> CREATOR = field in BaseTemplateData.SubItemInfo [all …]
|
H A D | HeadToHeadTemplateData.java | 60 mHeadToHeadTitle = in.readTypedObject(Text.CREATOR); in HeadToHeadTemplateData() 61 mHeadToHeadFirstCompetitorIcon = in.readTypedObject(Icon.CREATOR); in HeadToHeadTemplateData() 62 mHeadToHeadSecondCompetitorIcon = in.readTypedObject(Icon.CREATOR); in HeadToHeadTemplateData() 63 mHeadToHeadFirstCompetitorText = in.readTypedObject(Text.CREATOR); in HeadToHeadTemplateData() 64 mHeadToHeadSecondCompetitorText = in.readTypedObject(Text.CREATOR); in HeadToHeadTemplateData() 65 mHeadToHeadAction = in.readTypedObject(TapAction.CREATOR); in HeadToHeadTemplateData() 132 public static final Creator<HeadToHeadTemplateData> CREATOR = field in HeadToHeadTemplateData
|
H A D | CarouselTemplateData.java | 54 mCarouselItems = in.createTypedArrayList(CarouselItem.CREATOR); in CarouselTemplateData() 55 mCarouselAction = in.readTypedObject(TapAction.CREATOR); in CarouselTemplateData() 90 public static final Creator<CarouselTemplateData> CREATOR = field in CarouselTemplateData 216 mUpperText = in.readTypedObject(Text.CREATOR); in CarouselItem() 217 mImage = in.readTypedObject(Icon.CREATOR); in CarouselItem() 218 mLowerText = in.readTypedObject(Text.CREATOR); in CarouselItem() 219 mTapAction = in.readTypedObject(TapAction.CREATOR); in CarouselItem() 254 public static final Creator<CarouselItem> CREATOR = field in CarouselTemplateData.CarouselItem
|
/aosp14/frameworks/base/tests/Codegen/src/com/android/codegentest/ |
H A D | SampleDataClassTest.java | 76 SampleDataClass copy = parcelAndUnparcel(mSpecimen, SampleDataClass.CREATOR); in testParcelling_producesEqualInstance() 83 SampleDataClass copy = parcelAndUnparcel(mSpecimen, SampleDataClass.CREATOR); in testParcelling_producesInstanceWithEqualFields() 99 parcelAndUnparcel(mSpecimen, SampleDataClass.CREATOR); in testCustomParcelling_instanceIsCached() 100 parcelAndUnparcel(mSpecimen, SampleDataClass.CREATOR); in testCustomParcelling_instanceIsCached() 239 parcelAndUnparcel(instance, ParcelAllTheThingsDataClass.CREATOR); in testDataStructures_parcelCorrectly() 250 SampleWithNestedDataClasses.NestedDataClass.CREATOR); in testNestedDataClasses_notMangledWhenParceled() 254 SampleWithNestedDataClasses.NestedDataClass2.CREATOR); in testNestedDataClasses_notMangledWhenParceled() 258 SampleWithNestedDataClasses.NestedDataClass2.NestedDataClass3.CREATOR); in testNestedDataClasses_notMangledWhenParceled()
|
/aosp14/frameworks/base/core/java/android/hardware/display/ |
H A D | WifiDisplayStatus.java | 73 …public static final @android.annotation.NonNull Creator<WifiDisplayStatus> CREATOR = new Creator<W… field in WifiDisplayStatus 81 activeDisplay = WifiDisplay.CREATOR.createFromParcel(in); 84 WifiDisplay[] displays = WifiDisplay.CREATOR.newArray(in.readInt()); 86 displays[i] = WifiDisplay.CREATOR.createFromParcel(in); 90 WifiDisplaySessionInfo.CREATOR.createFromParcel(in);
|
/aosp14/frameworks/base/core/java/android/app/slice/ |
H A D | SliceItem.java | 360 return Slice.CREATOR.createFromParcel(in); in readObj() 364 return Icon.CREATOR.createFromParcel(in); in readObj() 367 PendingIntent.CREATOR.createFromParcel(in), in readObj() 368 Slice.CREATOR.createFromParcel(in)); in readObj() 374 return RemoteInput.CREATOR.createFromParcel(in); in readObj() 376 return Bundle.CREATOR.createFromParcel(in); in readObj() 381 …public static final @android.annotation.NonNull Creator<SliceItem> CREATOR = new Creator<SliceItem… field in SliceItem
|
/aosp14/frameworks/base/telecomm/java/android/telecom/ |
H A D | TelecomAnalytics.java | 31 public static final @android.annotation.NonNull Parcelable.Creator<TelecomAnalytics> CREATOR = field in TelecomAnalytics 46 public static final @android.annotation.NonNull Parcelable.Creator<SessionTiming> CREATOR = field in TelecomAnalytics.SessionTiming 125 in.readTypedList(mSessionTimings, SessionTiming.CREATOR); in TelecomAnalytics() 127 in.readTypedList(mCallAnalytics, ParcelableCallAnalytics.CREATOR); in TelecomAnalytics()
|
/aosp14/frameworks/base/core/java/android/credentials/ui/ |
H A D | GetCredentialProviderData.java | 82 in.readTypedList(credentialEntries, Entry.CREATOR); in GetCredentialProviderData() 87 in.readTypedList(actionChips, Entry.CREATOR); in GetCredentialProviderData() 92 in.readTypedList(authenticationEntries, AuthenticationEntry.CREATOR); in GetCredentialProviderData() 96 Entry remoteEntry = in.readTypedObject(Entry.CREATOR); in GetCredentialProviderData() 114 public static final @NonNull Creator<GetCredentialProviderData> CREATOR = field in GetCredentialProviderData
|
H A D | Entry.java | 49 Slice slice = in.readTypedObject(Slice.CREATOR); in Entry() 57 mPendingIntent = in.readTypedObject(PendingIntent.CREATOR); in Entry() 58 mFrameworkExtrasIntent = in.readTypedObject(Intent.CREATOR); in Entry() 129 public static final @NonNull Creator<Entry> CREATOR = new Creator<Entry>() { field in Entry
|
/aosp14/frameworks/base/core/java/android/content/integrity/ |
H A D | IntegrityFormula.java | 243 return CompoundFormula.CREATOR.createFromParcel(in); in readFromParcel() 245 return StringAtomicFormula.CREATOR.createFromParcel(in); in readFromParcel() 247 return LongAtomicFormula.CREATOR.createFromParcel(in); in readFromParcel() 249 return BooleanAtomicFormula.CREATOR.createFromParcel(in); in readFromParcel() 251 return InstallerAllowedByManifestFormula.CREATOR.createFromParcel(in); in readFromParcel()
|
/aosp14/frameworks/base/core/java/android/app/admin/ |
H A D | NetworkEvent.java | 88 public static final @android.annotation.NonNull Parcelable.Creator<NetworkEvent> CREATOR field in NetworkEvent 97 return DnsEvent.CREATOR.createFromParcel(in); 99 return ConnectEvent.CREATOR.createFromParcel(in);
|