Searched defs:otherOptions (Results 1 - 6 of 6) sorted by relevance

/frameworks/support/compat/jellybean/android/support/v4/app/
H A DActivityOptionsCompatJB.java55 public void update(ActivityOptionsCompatJB otherOptions) { argument
56 mActivityOptions.update(otherOptions.mActivityOptions);
/frameworks/support/compat/api21/android/support/v4/app/
H A DActivityOptionsCompat21.java82 public void update(ActivityOptionsCompat21 otherOptions) { argument
83 mActivityOptions.update(otherOptions.mActivityOptions);
/frameworks/support/compat/api23/android/support/v4/app/
H A DActivityOptionsCompat23.java93 public void update(ActivityOptionsCompat23 otherOptions) { argument
94 mActivityOptions.update(otherOptions.mActivityOptions);
/frameworks/support/compat/api24/android/support/v4/app/
H A DActivityOptionsCompat24.java103 public void update(ActivityOptionsCompat24 otherOptions) { argument
104 mActivityOptions.update(otherOptions.mActivityOptions);
/frameworks/support/compat/java/android/support/v4/app/
H A DActivityOptionsCompat.java322 public void update(ActivityOptionsCompat otherOptions) { argument
323 if (otherOptions instanceof ActivityOptionsImplJB) {
324 ActivityOptionsImplJB otherImpl = (ActivityOptionsImplJB)otherOptions;
343 public void update(ActivityOptionsCompat otherOptions) { argument
344 if (otherOptions instanceof ActivityOptionsCompat.ActivityOptionsImpl21) {
346 otherImpl = (ActivityOptionsCompat.ActivityOptionsImpl21)otherOptions;
365 public void update(ActivityOptionsCompat otherOptions) { argument
366 if (otherOptions instanceof ActivityOptionsCompat.ActivityOptionsImpl23) {
368 otherImpl = (ActivityOptionsCompat.ActivityOptionsImpl23)otherOptions;
392 public void update(ActivityOptionsCompat otherOptions) { argument
459 update(ActivityOptionsCompat otherOptions) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivityOptions.java1073 * in <var>otherOptions</var>. Any values
1074 * defined in <var>otherOptions</var> replace those in the base options.
1076 public void update(ActivityOptions otherOptions) { argument
1077 if (otherOptions.mPackageName != null) {
1078 mPackageName = otherOptions.mPackageName;
1080 mUsageTimeReport = otherOptions.mUsageTimeReport;
1087 mAnimationType = otherOptions.mAnimationType;
1088 switch (otherOptions.mAnimationType) {
1090 mCustomEnterResId = otherOptions.mCustomEnterResId;
1091 mCustomExitResId = otherOptions
[all...]

Completed in 269 milliseconds