Home
last modified time | relevance | path

Searched refs:orig (Results 1 – 25 of 46) sorted by relevance

12

/frameworks/base/core/java/android/content/pm/
DApplicationInfo.java675 public ApplicationInfo(ApplicationInfo orig) { in ApplicationInfo() argument
676 super(orig); in ApplicationInfo()
677 taskAffinity = orig.taskAffinity; in ApplicationInfo()
678 permission = orig.permission; in ApplicationInfo()
679 processName = orig.processName; in ApplicationInfo()
680 className = orig.className; in ApplicationInfo()
681 theme = orig.theme; in ApplicationInfo()
682 flags = orig.flags; in ApplicationInfo()
683 requiresSmallestWidthDp = orig.requiresSmallestWidthDp; in ApplicationInfo()
684 compatibleWidthLimitDp = orig.compatibleWidthLimitDp; in ApplicationInfo()
[all …]
DProviderInfo.java103 public ProviderInfo(ProviderInfo orig) { in ProviderInfo() argument
104 super(orig); in ProviderInfo()
105 authority = orig.authority; in ProviderInfo()
106 readPermission = orig.readPermission; in ProviderInfo()
107 writePermission = orig.writePermission; in ProviderInfo()
108 grantUriPermissions = orig.grantUriPermissions; in ProviderInfo()
109 uriPermissionPatterns = orig.uriPermissionPatterns; in ProviderInfo()
110 pathPermissions = orig.pathPermissions; in ProviderInfo()
111 multiprocess = orig.multiprocess; in ProviderInfo()
112 initOrder = orig.initOrder; in ProviderInfo()
[all …]
DInstrumentationInfo.java83 public InstrumentationInfo(InstrumentationInfo orig) { in InstrumentationInfo() argument
84 super(orig); in InstrumentationInfo()
85 targetPackage = orig.targetPackage; in InstrumentationInfo()
86 sourceDir = orig.sourceDir; in InstrumentationInfo()
87 publicSourceDir = orig.publicSourceDir; in InstrumentationInfo()
88 dataDir = orig.dataDir; in InstrumentationInfo()
89 nativeLibraryDir = orig.nativeLibraryDir; in InstrumentationInfo()
90 handleProfiling = orig.handleProfiling; in InstrumentationInfo()
91 functionalTest = orig.functionalTest; in InstrumentationInfo()
DUserInfo.java141 public UserInfo(UserInfo orig) { in UserInfo() argument
142 name = orig.name; in UserInfo()
143 iconPath = orig.iconPath; in UserInfo()
144 id = orig.id; in UserInfo()
145 flags = orig.flags; in UserInfo()
146 serialNumber = orig.serialNumber; in UserInfo()
147 creationTime = orig.creationTime; in UserInfo()
148 lastLoggedInTime = orig.lastLoggedInTime; in UserInfo()
149 partial = orig.partial; in UserInfo()
150 profileGroupId = orig.profileGroupId; in UserInfo()
[all …]
DActivityInfo.java647 public ActivityInfo(ActivityInfo orig) { in ActivityInfo() argument
648 super(orig); in ActivityInfo()
649 theme = orig.theme; in ActivityInfo()
650 launchMode = orig.launchMode; in ActivityInfo()
651 permission = orig.permission; in ActivityInfo()
652 taskAffinity = orig.taskAffinity; in ActivityInfo()
653 targetActivity = orig.targetActivity; in ActivityInfo()
654 flags = orig.flags; in ActivityInfo()
655 screenOrientation = orig.screenOrientation; in ActivityInfo()
656 configChanges = orig.configChanges; in ActivityInfo()
[all …]
DConfigurationInfo.java86 public ConfigurationInfo(ConfigurationInfo orig) { in ConfigurationInfo() argument
87 reqTouchScreen = orig.reqTouchScreen; in ConfigurationInfo()
88 reqKeyboardType = orig.reqKeyboardType; in ConfigurationInfo()
89 reqNavigation = orig.reqNavigation; in ConfigurationInfo()
90 reqInputFeatures = orig.reqInputFeatures; in ConfigurationInfo()
91 reqGlEsVersion = orig.reqGlEsVersion; in ConfigurationInfo()
DResolveInfo.java271 public ResolveInfo(ResolveInfo orig) { in ResolveInfo() argument
272 activityInfo = orig.activityInfo; in ResolveInfo()
273 serviceInfo = orig.serviceInfo; in ResolveInfo()
274 providerInfo = orig.providerInfo; in ResolveInfo()
275 filter = orig.filter; in ResolveInfo()
276 priority = orig.priority; in ResolveInfo()
277 preferredOrder = orig.preferredOrder; in ResolveInfo()
278 match = orig.match; in ResolveInfo()
279 specificIndex = orig.specificIndex; in ResolveInfo()
280 labelRes = orig.labelRes; in ResolveInfo()
[all …]
DPermissionGroupInfo.java64 public PermissionGroupInfo(PermissionGroupInfo orig) { in PermissionGroupInfo() argument
65 super(orig); in PermissionGroupInfo()
66 descriptionRes = orig.descriptionRes; in PermissionGroupInfo()
67 nonLocalizedDescription = orig.nonLocalizedDescription; in PermissionGroupInfo()
68 flags = orig.flags; in PermissionGroupInfo()
69 priority = orig.priority; in PermissionGroupInfo()
DPermissionInfo.java172 public PermissionInfo(PermissionInfo orig) { in PermissionInfo() argument
173 super(orig); in PermissionInfo()
174 protectionLevel = orig.protectionLevel; in PermissionInfo()
175 flags = orig.flags; in PermissionInfo()
176 group = orig.group; in PermissionInfo()
177 descriptionRes = orig.descriptionRes; in PermissionInfo()
178 nonLocalizedDescription = orig.nonLocalizedDescription; in PermissionInfo()
DPackageItemInfo.java101 public PackageItemInfo(PackageItemInfo orig) { in PackageItemInfo() argument
102 name = orig.name; in PackageItemInfo()
104 packageName = orig.packageName; in PackageItemInfo()
105 labelRes = orig.labelRes; in PackageItemInfo()
106 nonLocalizedLabel = orig.nonLocalizedLabel; in PackageItemInfo()
108 icon = orig.icon; in PackageItemInfo()
109 banner = orig.banner; in PackageItemInfo()
110 logo = orig.logo; in PackageItemInfo()
111 metaData = orig.metaData; in PackageItemInfo()
112 showUserIcon = orig.showUserIcon; in PackageItemInfo()
DComponentInfo.java69 public ComponentInfo(ComponentInfo orig) { in ComponentInfo() argument
70 super(orig); in ComponentInfo()
71 applicationInfo = orig.applicationInfo; in ComponentInfo()
72 processName = orig.processName; in ComponentInfo()
73 descriptionRes = orig.descriptionRes; in ComponentInfo()
74 enabled = orig.enabled; in ComponentInfo()
75 exported = orig.exported; in ComponentInfo()
DServiceInfo.java70 public ServiceInfo(ServiceInfo orig) { in ServiceInfo() argument
71 super(orig); in ServiceInfo()
72 permission = orig.permission; in ServiceInfo()
73 flags = orig.flags; in ServiceInfo()
DFeatureInfo.java60 public FeatureInfo(FeatureInfo orig) { in FeatureInfo() argument
61 name = orig.name; in FeatureInfo()
62 reqGlEsVersion = orig.reqGlEsVersion; in FeatureInfo()
63 flags = orig.flags; in FeatureInfo()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageSetting.java45 PackageSetting(PackageSetting orig) { in PackageSetting() argument
46 super(orig); in PackageSetting()
48 appId = orig.appId; in PackageSetting()
49 pkg = orig.pkg; in PackageSetting()
50 sharedUser = orig.sharedUser; in PackageSetting()
/frameworks/base/graphics/java/android/graphics/drawable/
DDrawableContainer.java634 DrawableContainerState(DrawableContainerState orig, DrawableContainer owner, in DrawableContainerState() argument
639 if (orig != null) { in DrawableContainerState()
640 mChangingConfigurations = orig.mChangingConfigurations; in DrawableContainerState()
641 mChildrenChangingConfigurations = orig.mChildrenChangingConfigurations; in DrawableContainerState()
646 mVariablePadding = orig.mVariablePadding; in DrawableContainerState()
647 mConstantSize = orig.mConstantSize; in DrawableContainerState()
648 mDither = orig.mDither; in DrawableContainerState()
649 mMutated = orig.mMutated; in DrawableContainerState()
650 mLayoutDirection = orig.mLayoutDirection; in DrawableContainerState()
651 mEnterFadeDuration = orig.mEnterFadeDuration; in DrawableContainerState()
[all …]
DAnimatedRotateDrawable.java349 public AnimatedRotateState(AnimatedRotateState orig, AnimatedRotateDrawable owner, in AnimatedRotateState() argument
351 if (orig != null) { in AnimatedRotateState()
353 mDrawable = orig.mDrawable.getConstantState().newDrawable(res); in AnimatedRotateState()
355 mDrawable = orig.mDrawable.getConstantState().newDrawable(); in AnimatedRotateState()
358 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection()); in AnimatedRotateState()
359 mDrawable.setBounds(orig.mDrawable.getBounds()); in AnimatedRotateState()
360 mDrawable.setLevel(orig.mDrawable.getLevel()); in AnimatedRotateState()
361 mPivotXRel = orig.mPivotXRel; in AnimatedRotateState()
362 mPivotX = orig.mPivotX; in AnimatedRotateState()
363 mPivotYRel = orig.mPivotYRel; in AnimatedRotateState()
[all …]
DScaleDrawable.java290 ScaleState(ScaleState orig, ScaleDrawable owner, Resources res) { in ScaleState() argument
291 if (orig != null) { in ScaleState()
293 mDrawable = orig.mDrawable.getConstantState().newDrawable(res); in ScaleState()
295 mDrawable = orig.mDrawable.getConstantState().newDrawable(); in ScaleState()
298 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection()); in ScaleState()
299 mDrawable.setBounds(orig.mDrawable.getBounds()); in ScaleState()
300 mDrawable.setLevel(orig.mDrawable.getLevel()); in ScaleState()
301 mScaleWidth = orig.mScaleWidth; in ScaleState()
302 mScaleHeight = orig.mScaleHeight; in ScaleState()
303 mGravity = orig.mGravity; in ScaleState()
[all …]
DRotateDrawable.java510 public RotateState(RotateState orig, RotateDrawable owner, Resources res) { in RotateState() argument
511 if (orig != null) { in RotateState()
513 mDrawable = orig.mDrawable.getConstantState().newDrawable(res); in RotateState()
515 mDrawable = orig.mDrawable.getConstantState().newDrawable(); in RotateState()
518 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection()); in RotateState()
519 mDrawable.setBounds(orig.mDrawable.getBounds()); in RotateState()
520 mDrawable.setLevel(orig.mDrawable.getLevel()); in RotateState()
521 mPivotXRel = orig.mPivotXRel; in RotateState()
522 mPivotX = orig.mPivotX; in RotateState()
523 mPivotYRel = orig.mPivotYRel; in RotateState()
[all …]
DInsetDrawable.java394 InsetState(InsetState orig, InsetDrawable owner, Resources res) { in InsetState() argument
395 if (orig != null) { in InsetState()
396 mThemeAttrs = orig.mThemeAttrs; in InsetState()
397 mChangingConfigurations = orig.mChangingConfigurations; in InsetState()
399 mDrawable = orig.mDrawable.getConstantState().newDrawable(res); in InsetState()
401 mDrawable = orig.mDrawable.getConstantState().newDrawable(); in InsetState()
404 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection()); in InsetState()
405 mDrawable.setBounds(orig.mDrawable.getBounds()); in InsetState()
406 mDrawable.setLevel(orig.mDrawable.getLevel()); in InsetState()
407 mInsetLeft = orig.mInsetLeft; in InsetState()
[all …]
DClipDrawable.java280 ClipState(ClipState orig, ClipDrawable owner, Resources res) { in ClipState() argument
281 if (orig != null) { in ClipState()
283 mDrawable = orig.mDrawable.getConstantState().newDrawable(res); in ClipState()
285 mDrawable = orig.mDrawable.getConstantState().newDrawable(); in ClipState()
288 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection()); in ClipState()
289 mDrawable.setBounds(orig.mDrawable.getBounds()); in ClipState()
290 mDrawable.setLevel(orig.mDrawable.getLevel()); in ClipState()
291 mOrientation = orig.mOrientation; in ClipState()
292 mGravity = orig.mGravity; in ClipState()
DLayerDrawable.java964 ChildDrawable(ChildDrawable orig, LayerDrawable owner, Resources res) { in ChildDrawable() argument
966 mDrawable = orig.mDrawable.getConstantState().newDrawable(res); in ChildDrawable()
968 mDrawable = orig.mDrawable.getConstantState().newDrawable(); in ChildDrawable()
971 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection()); in ChildDrawable()
972 mDrawable.setBounds(orig.mDrawable.getBounds()); in ChildDrawable()
973 mDrawable.setLevel(orig.mDrawable.getLevel()); in ChildDrawable()
974 mThemeAttrs = orig.mThemeAttrs; in ChildDrawable()
975 mInsetL = orig.mInsetL; in ChildDrawable()
976 mInsetT = orig.mInsetT; in ChildDrawable()
977 mInsetR = orig.mInsetR; in ChildDrawable()
[all …]
DShapeDrawable.java526 ShapeState(ShapeState orig) { in ShapeState() argument
527 if (orig != null) { in ShapeState()
528 mThemeAttrs = orig.mThemeAttrs; in ShapeState()
529 mPaint = orig.mPaint; in ShapeState()
530 mShape = orig.mShape; in ShapeState()
531 mTint = orig.mTint; in ShapeState()
532 mTintMode = orig.mTintMode; in ShapeState()
533 mPadding = orig.mPadding; in ShapeState()
534 mIntrinsicWidth = orig.mIntrinsicWidth; in ShapeState()
535 mIntrinsicHeight = orig.mIntrinsicHeight; in ShapeState()
[all …]
DLevelListDrawable.java160 LevelListState(LevelListState orig, LevelListDrawable owner, Resources res) { in LevelListState() argument
161 super(orig, owner, res); in LevelListState()
163 if (orig != null) { in LevelListState()
164 mLows = orig.mLows; in LevelListState()
165 mHighs = orig.mHighs; in LevelListState()
/frameworks/base/core/java/android/os/
DMessage.java142 public static Message obtain(Message orig) { in obtain() argument
144 m.what = orig.what; in obtain()
145 m.arg1 = orig.arg1; in obtain()
146 m.arg2 = orig.arg2; in obtain()
147 m.obj = orig.obj; in obtain()
148 m.replyTo = orig.replyTo; in obtain()
149 m.sendingUid = orig.sendingUid; in obtain()
150 if (orig.data != null) { in obtain()
151 m.data = new Bundle(orig.data); in obtain()
153 m.target = orig.target; in obtain()
[all …]
/frameworks/av/services/audiopolicy/
DAudioPolicyEffects.h94 EffectDesc(const EffectDesc& orig) : in EffectDesc() argument
95 mName(strdup(orig.mName)), in EffectDesc()
96 mUuid(orig.mUuid) { in EffectDesc()
98 for (size_t k = 0; k < orig.mParams.size(); k++) { in EffectDesc()
99 effect_param_t *origParam = orig.mParams[k]; in EffectDesc()

12