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

12

/frameworks/base/services/java/com/android/server/pm/
H A DPackageSetting.java42 PackageSetting(PackageSetting orig) { argument
43 super(orig);
45 appId = orig.appId;
46 pkg = orig.pkg;
47 sharedUser = orig.sharedUser;
/frameworks/base/core/java/android/content/pm/
H A DInstrumentationInfo.java68 public InstrumentationInfo(InstrumentationInfo orig) { argument
69 super(orig);
70 targetPackage = orig.targetPackage;
71 sourceDir = orig.sourceDir;
72 publicSourceDir = orig.publicSourceDir;
73 dataDir = orig.dataDir;
74 nativeLibraryDir = orig.nativeLibraryDir;
75 handleProfiling = orig.handleProfiling;
76 functionalTest = orig.functionalTest;
H A DProviderInfo.java103 public ProviderInfo(ProviderInfo orig) { argument
104 super(orig);
105 authority = orig.authority;
106 readPermission = orig.readPermission;
107 writePermission = orig.writePermission;
108 grantUriPermissions = orig.grantUriPermissions;
109 uriPermissionPatterns = orig.uriPermissionPatterns;
110 pathPermissions = orig.pathPermissions;
111 multiprocess = orig.multiprocess;
112 initOrder = 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 DApplicationInfo.java559 public ApplicationInfo(ApplicationInfo orig) { argument
560 super(orig);
561 taskAffinity = orig.taskAffinity;
562 permission = orig.permission;
563 processName = orig.processName;
564 className = orig.className;
565 theme = orig.theme;
566 flags = orig.flags;
567 requiresSmallestWidthDp = orig.requiresSmallestWidthDp;
568 compatibleWidthLimitDp = orig
[all...]
H A DUserInfo.java107 public UserInfo(UserInfo orig) { argument
108 name = orig.name;
109 iconPath = orig.iconPath;
110 id = orig.id;
111 flags = orig.flags;
112 serialNumber = orig.serialNumber;
113 creationTime = orig.creationTime;
114 lastLoggedInTime = orig.lastLoggedInTime;
115 partial = orig.partial;
H A DFeatureInfo.java61 public FeatureInfo(FeatureInfo orig) { argument
62 name = orig.name;
63 reqGlEsVersion = orig.reqGlEsVersion;
64 flags = orig.flags;
H A DServiceInfo.java70 public ServiceInfo(ServiceInfo orig) { argument
71 super(orig);
72 permission = orig.permission;
73 flags = orig.flags;
H A DComponentInfo.java69 public ComponentInfo(ComponentInfo orig) { argument
70 super(orig);
71 applicationInfo = orig.applicationInfo;
72 processName = orig.processName;
73 descriptionRes = orig.descriptionRes;
74 enabled = orig.enabled;
75 exported = orig.exported;
H A DPermissionInfo.java162 public PermissionInfo(PermissionInfo orig) { argument
163 super(orig);
164 protectionLevel = orig.protectionLevel;
165 flags = orig.flags;
166 group = orig.group;
167 descriptionRes = orig.descriptionRes;
168 nonLocalizedDescription = orig.nonLocalizedDescription;
H A DActivityInfo.java531 public ActivityInfo(ActivityInfo orig) { argument
532 super(orig);
533 theme = orig.theme;
534 launchMode = orig.launchMode;
535 permission = orig.permission;
536 taskAffinity = orig.taskAffinity;
537 targetActivity = orig.targetActivity;
538 flags = orig.flags;
539 screenOrientation = orig.screenOrientation;
540 configChanges = orig
[all...]
H A DPackageItemInfo.java87 public PackageItemInfo(PackageItemInfo orig) { argument
88 name = orig.name;
90 packageName = orig.packageName;
91 labelRes = orig.labelRes;
92 nonLocalizedLabel = orig.nonLocalizedLabel;
94 icon = orig.icon;
95 logo = orig.logo;
96 metaData = orig.metaData;
H A DResolveInfo.java255 public ResolveInfo(ResolveInfo orig) { argument
256 activityInfo = orig.activityInfo;
257 serviceInfo = orig.serviceInfo;
258 providerInfo = orig.providerInfo;
259 filter = orig.filter;
260 priority = orig.priority;
261 preferredOrder = orig.preferredOrder;
262 match = orig.match;
263 specificIndex = orig.specificIndex;
264 labelRes = orig
[all...]
/frameworks/base/core/java/android/os/
H A DMessage.java122 * @param orig Original message to copy.
125 public static Message obtain(Message orig) { argument
127 m.what = orig.what;
128 m.arg1 = orig.arg1;
129 m.arg2 = orig.arg2;
130 m.obj = orig.obj;
131 m.replyTo = orig.replyTo;
132 if (orig.data != null) {
133 m.data = new Bundle(orig.data);
135 m.target = orig
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DInsetDrawable.java289 InsetState(InsetState orig, InsetDrawable owner, Resources res) { argument
290 if (orig != null) {
292 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
294 mDrawable = orig.mDrawable.getConstantState().newDrawable();
297 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection());
298 mInsetLeft = orig.mInsetLeft;
299 mInsetTop = orig.mInsetTop;
300 mInsetRight = orig.mInsetRight;
301 mInsetBottom = orig.mInsetBottom;
H A DDrawableContainer.java510 DrawableContainerState(DrawableContainerState orig, DrawableContainer owner, argument
515 if (orig != null) {
516 mChangingConfigurations = orig.mChangingConfigurations;
517 mChildrenChangingConfigurations = orig.mChildrenChangingConfigurations;
522 mVariablePadding = orig.mVariablePadding;
523 mConstantSize = orig.mConstantSize;
524 mDither = orig.mDither;
525 mMutated = orig.mMutated;
526 mLayoutDirection = orig.mLayoutDirection;
527 mEnterFadeDuration = orig
[all...]
H A DLevelListDrawable.java160 LevelListState(LevelListState orig, LevelListDrawable owner, Resources res) { argument
161 super(orig, owner, res);
163 if (orig != null) {
164 mLows = orig.mLows;
165 mHighs = orig.mHighs;
H A DClipDrawable.java263 ClipState(ClipState orig, ClipDrawable owner, Resources res) { argument
264 if (orig != null) {
266 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
268 mDrawable = orig.mDrawable.getConstantState().newDrawable();
271 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection());
272 mOrientation = orig.mOrientation;
273 mGravity = orig.mGravity;
H A DScaleDrawable.java276 ScaleState(ScaleState orig, ScaleDrawable owner, Resources res) { argument
277 if (orig != null) {
279 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
281 mDrawable = orig.mDrawable.getConstantState().newDrawable();
284 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection());
285 mScaleWidth = orig.mScaleWidth;
286 mScaleHeight = orig.mScaleHeight;
287 mGravity = orig.mGravity;
288 mUseIntrinsicSizeAsMin = orig.mUseIntrinsicSizeAsMin;
H A DShapeDrawable.java417 ShapeState(ShapeState orig) { argument
418 if (orig != null) {
419 mPaint = orig.mPaint;
420 mShape = orig.mShape;
421 mPadding = orig.mPadding;
422 mIntrinsicWidth = orig.mIntrinsicWidth;
423 mIntrinsicHeight = orig.mIntrinsicHeight;
424 mAlpha = orig.mAlpha;
425 mShaderFactory = orig.mShaderFactory;
H A DAnimationDrawable.java317 AnimationState(AnimationState orig, AnimationDrawable owner, argument
319 super(orig, owner, res);
321 if (orig != null) {
322 mDurations = orig.mDurations;
323 mOneShot = orig.mOneShot;
H A DStateListDrawable.java280 StateListState(StateListState orig, StateListDrawable owner, Resources res) { argument
281 super(orig, owner, res);
283 if (orig != null) {
284 mStateSets = Arrays.copyOf(orig.mStateSets, orig.mStateSets.length);
H A DLayerDrawable.java654 LayerState(LayerState orig, LayerDrawable owner, Resources res) { argument
655 if (orig != null) {
656 final ChildDrawable[] origChildDrawable = orig.mChildren;
657 final int N = orig.mNum;
662 mChangingConfigurations = orig.mChangingConfigurations;
663 mChildrenChangingConfigurations = orig.mChildrenChangingConfigurations;
682 mHaveOpacity = orig.mHaveOpacity;
683 mOpacity = orig.mOpacity;
684 mHaveStateful = orig.mHaveStateful;
685 mStateful = orig
[all...]
/frameworks/base/core/java/android/net/
H A DDhcpResults.java75 public void updateFromDhcpRequest(DhcpResults orig) { argument
76 if (orig == null || orig.linkProperties == null) return;
78 for (RouteInfo r : orig.linkProperties.getRoutes()) linkProperties.addRoute(r);
81 for (InetAddress d : orig.linkProperties.getDnses()) linkProperties.addDns(d);

Completed in 5379 milliseconds

12