Searched refs:orig (Results 1 - 25 of 75) sorted by relevance

123

/frameworks/base/services/core/java/com/android/server/pm/
H A DSettingBase.java33 SettingBase(SettingBase orig) { argument
35 doCopy(orig);
38 public void copyFrom(SettingBase orig) { argument
39 doCopy(orig);
42 private void doCopy(SettingBase orig) { argument
43 pkgFlags = orig.pkgFlags;
44 pkgPrivateFlags = orig.pkgPrivateFlags;
45 mPermissionsState.copyFrom(orig.mPermissionsState);
H A DPackageSetting.java65 PackageSetting(PackageSetting orig) { argument
66 super(orig, orig.realName);
67 doCopy(orig);
75 PackageSetting(PackageSetting orig, String realPkgName) { argument
76 super(orig, realPkgName);
77 doCopy(orig);
94 public void copyFrom(PackageSetting orig) { argument
95 super.copyFrom(orig);
96 doCopy(orig);
99 doCopy(PackageSetting orig) argument
[all...]
H A DPackageSettingBase.java239 public void copyFrom(PackageSettingBase orig) { argument
240 super.copyFrom(orig);
241 doCopy(orig);
244 private void doCopy(PackageSettingBase orig) { argument
245 childPackageNames = (orig.childPackageNames != null)
246 ? new ArrayList<>(orig.childPackageNames) : null;
247 codePath = orig.codePath;
248 codePathString = orig.codePathString;
249 cpuAbiOverrideString = orig.cpuAbiOverrideString;
250 firstInstallTime = orig
[all...]
/frameworks/base/core/java/android/content/pm/
H A DProviderInfo.java109 public ProviderInfo(ProviderInfo orig) { argument
110 super(orig);
111 authority = orig.authority;
112 readPermission = orig.readPermission;
113 writePermission = orig.writePermission;
114 grantUriPermissions = orig.grantUriPermissions;
115 uriPermissionPatterns = orig.uriPermissionPatterns;
116 pathPermissions = orig.pathPermissions;
117 multiprocess = orig.multiprocess;
118 initOrder = orig
[all...]
H A DInstrumentationInfo.java121 public InstrumentationInfo(InstrumentationInfo orig) { argument
122 super(orig);
123 targetPackage = orig.targetPackage;
124 targetProcesses = orig.targetProcesses;
125 sourceDir = orig.sourceDir;
126 publicSourceDir = orig.publicSourceDir;
127 splitNames = orig.splitNames;
128 splitSourceDirs = orig.splitSourceDirs;
129 splitPublicSourceDirs = orig.splitPublicSourceDirs;
130 splitDependencies = orig
[all...]
H A DConfigurationInfo.java86 public ConfigurationInfo(ConfigurationInfo orig) { argument
87 reqTouchScreen = orig.reqTouchScreen;
88 reqKeyboardType = orig.reqKeyboardType;
89 reqNavigation = orig.reqNavigation;
90 reqInputFeatures = orig.reqInputFeatures;
91 reqGlEsVersion = orig.reqGlEsVersion;
H A DPermissionGroupInfo.java64 public PermissionGroupInfo(PermissionGroupInfo orig) { argument
65 super(orig);
66 descriptionRes = orig.descriptionRes;
67 nonLocalizedDescription = orig.nonLocalizedDescription;
68 flags = orig.flags;
69 priority = orig.priority;
H A DUserInfo.java225 public UserInfo(UserInfo orig) { argument
226 name = orig.name;
227 iconPath = orig.iconPath;
228 id = orig.id;
229 flags = orig.flags;
230 serialNumber = orig.serialNumber;
231 creationTime = orig.creationTime;
232 lastLoggedInTime = orig.lastLoggedInTime;
233 lastLoggedInFingerprint = orig.lastLoggedInFingerprint;
234 partial = orig
[all...]
H A DFeatureInfo.java82 public FeatureInfo(FeatureInfo orig) { argument
83 name = orig.name;
84 version = orig.version;
85 reqGlEsVersion = orig.reqGlEsVersion;
86 flags = orig.flags;
H A DApplicationInfo.java1131 public ApplicationInfo(ApplicationInfo orig) { argument
1132 super(orig);
1133 taskAffinity = orig.taskAffinity;
1134 permission = orig.permission;
1135 processName = orig.processName;
1136 className = orig.className;
1137 theme = orig.theme;
1138 flags = orig.flags;
1139 privateFlags = orig.privateFlags;
1140 requiresSmallestWidthDp = orig
[all...]
H A DServiceInfo.java83 public ServiceInfo(ServiceInfo orig) { argument
84 super(orig);
85 permission = orig.permission;
86 flags = orig.flags;
H A DResolveInfo.java319 public ResolveInfo(ResolveInfo orig) { argument
320 activityInfo = orig.activityInfo;
321 serviceInfo = orig.serviceInfo;
322 providerInfo = orig.providerInfo;
323 filter = orig.filter;
324 priority = orig.priority;
325 preferredOrder = orig.preferredOrder;
326 match = orig.match;
327 specificIndex = orig.specificIndex;
328 labelRes = orig
[all...]
H A DComponentInfo.java88 public ComponentInfo(ComponentInfo orig) { argument
89 super(orig);
90 applicationInfo = orig.applicationInfo;
91 processName = orig.processName;
92 splitName = orig.splitName;
93 descriptionRes = orig.descriptionRes;
94 enabled = orig.enabled;
95 exported = orig.exported;
96 encryptionAware = directBootAware = orig.directBootAware;
H A DActivityInfo.java933 public ActivityInfo(ActivityInfo orig) { argument
934 super(orig);
935 theme = orig.theme;
936 launchMode = orig.launchMode;
937 documentLaunchMode = orig.documentLaunchMode;
938 permission = orig.permission;
939 taskAffinity = orig.taskAffinity;
940 targetActivity = orig.targetActivity;
941 flags = orig.flags;
942 screenOrientation = orig
[all...]
H A DPermissionInfo.java269 public PermissionInfo(PermissionInfo orig) { argument
270 super(orig);
271 protectionLevel = orig.protectionLevel;
272 flags = orig.flags;
273 group = orig.group;
274 descriptionRes = orig.descriptionRes;
275 nonLocalizedDescription = orig.nonLocalizedDescription;
H A DPackageItemInfo.java105 public PackageItemInfo(PackageItemInfo orig) { argument
106 name = orig.name;
108 packageName = orig.packageName;
109 labelRes = orig.labelRes;
110 nonLocalizedLabel = orig.nonLocalizedLabel;
112 icon = orig.icon;
113 banner = orig.banner;
114 logo = orig.logo;
115 metaData = orig.metaData;
116 showUserIcon = orig
[all...]
H A DAuxiliaryResolveInfo.java51 @NonNull IntentFilter orig,
56 super(orig);
50 AuxiliaryResolveInfo(@onNull InstantAppResolveInfo resolveInfo, @NonNull IntentFilter orig, @Nullable String splitName, @NonNull String token, boolean needsPhase2, @Nullable Intent failureIntent) argument
/frameworks/support/compat/kitkat/android/support/v4/graphics/drawable/
H A DDrawableWrapperApi19.java53 DrawableWrapperStateKitKat(@Nullable DrawableWrapperState orig, argument
55 super(orig, res);
/frameworks/base/core/java/android/app/usage/
H A DUsageEvents.java176 public Event(Event orig) { argument
177 mPackage = orig.mPackage;
178 mClass = orig.mClass;
179 mTimeStamp = orig.mTimeStamp;
180 mEventType = orig.mEventType;
181 mConfiguration = orig.mConfiguration;
182 mShortcutId = orig.mShortcutId;
183 mAction = orig.mAction;
184 mContentType = orig.mContentType;
185 mContentAnnotations = orig
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DRotateDrawable.java338 RotateState(RotateState orig, Resources res) { argument
339 super(orig, res);
341 if (orig != null) {
342 mPivotXRel = orig.mPivotXRel;
343 mPivotX = orig.mPivotX;
344 mPivotYRel = orig.mPivotYRel;
345 mPivotY = orig.mPivotY;
346 mFromDegrees = orig.mFromDegrees;
347 mToDegrees = orig.mToDegrees;
348 mCurrentDegrees = orig
[all...]
H A DDrawableContainer.java736 protected DrawableContainerState(DrawableContainerState orig, DrawableContainer owner, argument
739 mSourceRes = res != null ? res : (orig != null ? orig.mSourceRes : null);
740 mDensity = Drawable.resolveDensity(res, orig != null ? orig.mDensity : 0);
742 if (orig != null) {
743 mChangingConfigurations = orig.mChangingConfigurations;
744 mChildrenChangingConfigurations = orig.mChildrenChangingConfigurations;
749 mVariablePadding = orig.mVariablePadding;
750 mConstantSize = orig
[all...]
H A DAnimatedRotateDrawable.java230 public AnimatedRotateState(AnimatedRotateState orig, Resources res) { argument
231 super(orig, res);
233 if (orig != null) {
234 mPivotXRel = orig.mPivotXRel;
235 mPivotX = orig.mPivotX;
236 mPivotYRel = orig.mPivotYRel;
237 mPivotY = orig.mPivotY;
238 mFramesCount = orig.mFramesCount;
239 mFrameDuration = orig.mFrameDuration;
H A DShapeDrawable.java561 * @param orig the state to create a deep copy of
563 ShapeState(@NonNull ShapeState orig) { argument
564 mChangingConfigurations = orig.mChangingConfigurations;
565 mPaint = new Paint(orig.mPaint);
566 mThemeAttrs = orig.mThemeAttrs;
567 if (orig.mShape != null) {
569 mShape = orig.mShape.clone();
572 mShape = orig.mShape;
575 mTint = orig.mTint;
576 mTintMode = orig
[all...]
H A DScaleDrawable.java265 ScaleState(ScaleState orig, Resources res) { argument
266 super(orig, res);
268 if (orig != null) {
269 mScaleWidth = orig.mScaleWidth;
270 mScaleHeight = orig.mScaleHeight;
271 mGravity = orig.mGravity;
272 mUseIntrinsicSizeAsMin = orig.mUseIntrinsicSizeAsMin;
273 mInitialLevel = orig.mInitialLevel;
/frameworks/base/core/java/android/os/
H A DMessage.java141 * @param orig Original message to copy.
144 public static Message obtain(Message orig) { argument
146 m.what = orig.what;
147 m.arg1 = orig.arg1;
148 m.arg2 = orig.arg2;
149 m.obj = orig.obj;
150 m.replyTo = orig.replyTo;
151 m.sendingUid = orig.sendingUid;
152 if (orig.data != null) {
153 m.data = new Bundle(orig
[all...]

Completed in 7097 milliseconds

123