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

12

/frameworks/base/core/java/android/content/pm/
H A DInstrumentationInfo.java83 public InstrumentationInfo(InstrumentationInfo orig) { argument
84 super(orig);
85 targetPackage = orig.targetPackage;
86 sourceDir = orig.sourceDir;
87 publicSourceDir = orig.publicSourceDir;
88 dataDir = orig.dataDir;
89 nativeLibraryDir = orig.nativeLibraryDir;
90 handleProfiling = orig.handleProfiling;
91 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.java675 public ApplicationInfo(ApplicationInfo orig) { argument
676 super(orig);
677 taskAffinity = orig.taskAffinity;
678 permission = orig.permission;
679 processName = orig.processName;
680 className = orig.className;
681 theme = orig.theme;
682 flags = orig.flags;
683 requiresSmallestWidthDp = orig.requiresSmallestWidthDp;
684 compatibleWidthLimitDp = orig
[all...]
H A DUserInfo.java141 public UserInfo(UserInfo orig) { argument
142 name = orig.name;
143 iconPath = orig.iconPath;
144 id = orig.id;
145 flags = orig.flags;
146 serialNumber = orig.serialNumber;
147 creationTime = orig.creationTime;
148 lastLoggedInTime = orig.lastLoggedInTime;
149 partial = orig.partial;
150 profileGroupId = orig
[all...]
H A DFeatureInfo.java60 public FeatureInfo(FeatureInfo orig) { argument
61 name = orig.name;
62 reqGlEsVersion = orig.reqGlEsVersion;
63 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.java172 public PermissionInfo(PermissionInfo orig) { argument
173 super(orig);
174 protectionLevel = orig.protectionLevel;
175 flags = orig.flags;
176 group = orig.group;
177 descriptionRes = orig.descriptionRes;
178 nonLocalizedDescription = orig.nonLocalizedDescription;
H A DActivityInfo.java647 public ActivityInfo(ActivityInfo orig) { argument
648 super(orig);
649 theme = orig.theme;
650 launchMode = orig.launchMode;
651 permission = orig.permission;
652 taskAffinity = orig.taskAffinity;
653 targetActivity = orig.targetActivity;
654 flags = orig.flags;
655 screenOrientation = orig.screenOrientation;
656 configChanges = orig
[all...]
H A DResolveInfo.java271 public ResolveInfo(ResolveInfo orig) { argument
272 activityInfo = orig.activityInfo;
273 serviceInfo = orig.serviceInfo;
274 providerInfo = orig.providerInfo;
275 filter = orig.filter;
276 priority = orig.priority;
277 preferredOrder = orig.preferredOrder;
278 match = orig.match;
279 specificIndex = orig.specificIndex;
280 labelRes = orig
[all...]
H A DPackageItemInfo.java101 public PackageItemInfo(PackageItemInfo orig) { argument
102 name = orig.name;
104 packageName = orig.packageName;
105 labelRes = orig.labelRes;
106 nonLocalizedLabel = orig.nonLocalizedLabel;
108 icon = orig.icon;
109 banner = orig.banner;
110 logo = orig.logo;
111 metaData = orig.metaData;
112 showUserIcon = orig
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageSetting.java45 PackageSetting(PackageSetting orig) { argument
46 super(orig);
48 appId = orig.appId;
49 pkg = orig.pkg;
50 sharedUser = orig.sharedUser;
/frameworks/base/core/java/android/os/
H A DMessage.java139 * @param orig Original message to copy.
142 public static Message obtain(Message orig) { argument
144 m.what = orig.what;
145 m.arg1 = orig.arg1;
146 m.arg2 = orig.arg2;
147 m.obj = orig.obj;
148 m.replyTo = orig.replyTo;
149 m.sendingUid = orig.sendingUid;
150 if (orig.data != null) {
151 m.data = new Bundle(orig
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DRotateDrawable.java551 RotateState(RotateState orig, RotateDrawable owner, Resources res) { argument
552 if (orig != null) {
553 mThemeAttrs = orig.mThemeAttrs;
554 mChangingConfigurations = orig.mChangingConfigurations;
556 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
558 mDrawable = orig.mDrawable.getConstantState().newDrawable();
561 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection());
562 mDrawable.setBounds(orig.mDrawable.getBounds());
563 mDrawable.setLevel(orig.mDrawable.getLevel());
564 mPivotXRel = orig
[all...]
H A DClipDrawable.java361 ClipState(ClipState orig, ClipDrawable owner, Resources res) { argument
362 if (orig != null) {
363 mThemeAttrs = orig.mThemeAttrs;
364 mChangingConfigurations = orig.mChangingConfigurations;
366 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
368 mDrawable = orig.mDrawable.getConstantState().newDrawable();
371 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection());
372 mDrawable.setBounds(orig.mDrawable.getBounds());
373 mDrawable.setLevel(orig.mDrawable.getLevel());
374 mOrientation = orig
[all...]
H A DAnimatedRotateDrawable.java417 public AnimatedRotateState(AnimatedRotateState orig, AnimatedRotateDrawable owner, argument
419 if (orig != null) {
421 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
423 mDrawable = orig.mDrawable.getConstantState().newDrawable();
426 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection());
427 mDrawable.setBounds(orig.mDrawable.getBounds());
428 mDrawable.setLevel(orig.mDrawable.getLevel());
429 mThemeAttrs = orig.mThemeAttrs;
430 mPivotXRel = orig.mPivotXRel;
431 mPivotX = orig
[all...]
H A DInsetDrawable.java429 InsetState(InsetState orig, InsetDrawable owner, Resources res) { argument
430 if (orig != null) {
431 mThemeAttrs = orig.mThemeAttrs;
432 mChangingConfigurations = orig.mChangingConfigurations;
434 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
436 mDrawable = orig.mDrawable.getConstantState().newDrawable();
439 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection());
440 mDrawable.setBounds(orig.mDrawable.getBounds());
441 mDrawable.setLevel(orig.mDrawable.getLevel());
442 mInsetLeft = orig
[all...]
H A DScaleDrawable.java367 ScaleState(ScaleState orig, ScaleDrawable owner, Resources res) { argument
368 if (orig != null) {
369 mThemeAttrs = orig.mThemeAttrs;
370 mChangingConfigurations = orig.mChangingConfigurations;
372 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
374 mDrawable = orig.mDrawable.getConstantState().newDrawable();
377 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection());
378 mDrawable.setBounds(orig.mDrawable.getBounds());
379 mDrawable.setLevel(orig.mDrawable.getLevel());
380 mScaleWidth = orig
[all...]
H A DDrawableContainer.java674 DrawableContainerState(DrawableContainerState orig, DrawableContainer owner, argument
679 if (orig != null) {
680 mChangingConfigurations = orig.mChangingConfigurations;
681 mChildrenChangingConfigurations = orig.mChildrenChangingConfigurations;
686 mVariablePadding = orig.mVariablePadding;
687 mConstantSize = orig.mConstantSize;
688 mDither = orig.mDither;
689 mMutated = orig.mMutated;
690 mLayoutDirection = orig.mLayoutDirection;
691 mEnterFadeDuration = orig
[all...]
H A DShapeDrawable.java534 ShapeState(ShapeState orig) { argument
535 if (orig != null) {
536 mThemeAttrs = orig.mThemeAttrs;
537 mPaint = orig.mPaint;
538 mShape = orig.mShape;
539 mTint = orig.mTint;
540 mTintMode = orig.mTintMode;
541 mPadding = orig.mPadding;
542 mIntrinsicWidth = orig.mIntrinsicWidth;
543 mIntrinsicHeight = orig
[all...]
H A DLayerDrawable.java957 ChildDrawable(ChildDrawable orig, LayerDrawable owner, Resources res) { argument
959 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
961 mDrawable = orig.mDrawable.getConstantState().newDrawable();
964 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection());
965 mDrawable.setBounds(orig.mDrawable.getBounds());
966 mDrawable.setLevel(orig.mDrawable.getLevel());
967 mThemeAttrs = orig.mThemeAttrs;
968 mInsetL = orig.mInsetL;
969 mInsetT = orig.mInsetT;
970 mInsetR = orig
994 LayerState(LayerState orig, LayerDrawable owner, Resources res) argument
[all...]
/frameworks/av/services/audiopolicy/
H A DAudioPolicyEffects.h94 EffectDesc(const EffectDesc& orig) : argument
95 mName(strdup(orig.mName)),
96 mUuid(orig.mUuid) {
98 for (size_t k = 0; k < orig.mParams.size(); k++) {
99 effect_param_t *origParam = orig.mParams[k];
/frameworks/base/core/java/android/net/
H A DDhcpResults.java70 public void updateFromDhcpRequest(DhcpResults orig) { argument
71 if (orig == null) return;
72 if (gateway == null) gateway = orig.gateway;
74 dnsServers.addAll(orig.dnsServers);

Completed in 4198 milliseconds

12