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

123

/frameworks/base/core/java/android/content/pm/
H A DInstrumentationInfo.java86 public InstrumentationInfo(InstrumentationInfo orig) { argument
87 super(orig);
88 targetPackage = orig.targetPackage;
89 sourceDir = orig.sourceDir;
90 publicSourceDir = orig.publicSourceDir;
91 splitSourceDirs = orig.splitSourceDirs;
92 splitPublicSourceDirs = orig.splitPublicSourceDirs;
93 dataDir = orig.dataDir;
94 deviceProtectedDataDir = orig.deviceProtectedDataDir;
95 credentialProtectedDataDir = orig
[all...]
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 DUserInfo.java210 public UserInfo(UserInfo orig) { argument
211 name = orig.name;
212 iconPath = orig.iconPath;
213 id = orig.id;
214 flags = orig.flags;
215 serialNumber = orig.serialNumber;
216 creationTime = orig.creationTime;
217 lastLoggedInTime = orig.lastLoggedInTime;
218 lastLoggedInFingerprint = orig.lastLoggedInFingerprint;
219 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.java891 public ApplicationInfo(ApplicationInfo orig) { argument
892 super(orig);
893 taskAffinity = orig.taskAffinity;
894 permission = orig.permission;
895 processName = orig.processName;
896 className = orig.className;
897 theme = orig.theme;
898 flags = orig.flags;
899 privateFlags = orig.privateFlags;
900 requiresSmallestWidthDp = orig
[all...]
H A DServiceInfo.java77 public ServiceInfo(ServiceInfo orig) { argument
78 super(orig);
79 permission = orig.permission;
80 flags = orig.flags;
H A DPermissionInfo.java245 public PermissionInfo(PermissionInfo orig) { argument
246 super(orig);
247 protectionLevel = orig.protectionLevel;
248 flags = orig.flags;
249 group = orig.group;
250 descriptionRes = orig.descriptionRes;
251 nonLocalizedDescription = orig.nonLocalizedDescription;
H A DResolveInfo.java315 public ResolveInfo(ResolveInfo orig) { argument
316 activityInfo = orig.activityInfo;
317 serviceInfo = orig.serviceInfo;
318 providerInfo = orig.providerInfo;
319 filter = orig.filter;
320 priority = orig.priority;
321 preferredOrder = orig.preferredOrder;
322 match = orig.match;
323 specificIndex = orig.specificIndex;
324 labelRes = orig
[all...]
H A DComponentInfo.java82 public ComponentInfo(ComponentInfo orig) { argument
83 super(orig);
84 applicationInfo = orig.applicationInfo;
85 processName = orig.processName;
86 descriptionRes = orig.descriptionRes;
87 enabled = orig.enabled;
88 exported = orig.exported;
89 encryptionAware = directBootAware = orig.directBootAware;
H A DActivityInfo.java786 public ActivityInfo(ActivityInfo orig) { argument
787 super(orig);
788 theme = orig.theme;
789 launchMode = orig.launchMode;
790 documentLaunchMode = orig.documentLaunchMode;
791 permission = orig.permission;
792 taskAffinity = orig.taskAffinity;
793 targetActivity = orig.targetActivity;
794 flags = orig.flags;
795 screenOrientation = orig
[all...]
H A DPackageItemInfo.java109 public PackageItemInfo(PackageItemInfo orig) { argument
110 name = orig.name;
112 packageName = orig.packageName;
113 labelRes = orig.labelRes;
114 nonLocalizedLabel = orig.nonLocalizedLabel;
116 icon = orig.icon;
117 banner = orig.banner;
118 logo = orig.logo;
119 metaData = orig.metaData;
120 showUserIcon = orig
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageSetting.java48 PackageSetting(PackageSetting orig) { argument
49 super(orig);
51 appId = orig.appId;
52 pkg = orig.pkg;
53 sharedUser = orig.sharedUser;
/frameworks/support/v4/honeycomb/android/support/v4/graphics/drawable/
H A DDrawableWrapperHoneycomb.java46 DrawableWrapperStateHoneycomb(@Nullable DrawableWrapperState orig, argument
48 super(orig, res);
/frameworks/support/v4/kitkat/android/support/v4/graphics/drawable/
H A DDrawableWrapperKitKat.java51 DrawableWrapperStateKitKat(@Nullable DrawableWrapperState orig, argument
53 super(orig, res);
/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.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.java714 DrawableContainerState(DrawableContainerState orig, DrawableContainer owner, argument
717 mSourceRes = res != null ? res : (orig != null ? orig.mSourceRes : null);
718 mDensity = Drawable.resolveDensity(res, orig != null ? orig.mDensity : 0);
720 if (orig != null) {
721 mChangingConfigurations = orig.mChangingConfigurations;
722 mChildrenChangingConfigurations = orig.mChildrenChangingConfigurations;
727 mVariablePadding = orig.mVariablePadding;
728 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 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/rs/java/tests/Refocus/src/com/android/rs/test/
H A DRGBZ.java126 private Bitmap setAlphaChannelFromBitmap(Bitmap depth, Bitmap orig, Bitmap dest) { argument
127 int w = orig.getWidth();
128 int h = orig.getHeight();
132 orig.getPixels(orig_data, 0, w, 0, 0, w, h);
/frameworks/support/v4/donut/android/support/v4/graphics/drawable/
H A DDrawableWrapperDonut.java345 DrawableWrapperState(@Nullable DrawableWrapperState orig, @Nullable Resources res) { argument
346 if (orig != null) {
347 mChangingConfigurations = orig.mChangingConfigurations;
348 mDrawableState = orig.mDrawableState;
349 mTint = orig.mTint;
350 mTintMode = orig.mTintMode;
374 @Nullable DrawableWrapperState orig, @Nullable Resources res) {
375 super(orig, res);
373 DrawableWrapperStateDonut( @ullable DrawableWrapperState orig, @Nullable Resources res) argument
/frameworks/support/v4/eclair/android/support/v4/graphics/drawable/
H A DDrawableWrapperEclair.java50 DrawableWrapperStateEclair(@Nullable DrawableWrapperState orig, argument
52 super(orig, res);
/frameworks/av/services/audiopolicy/service/
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];

Completed in 5760 milliseconds

123