HomeSort by relevance Sort by last modified time
    Searched defs:epicenter (Results 1 - 21 of 21) sorted by null

  /frameworks/support/fragment/src/androidTest/java/androidx/fragment/app/
TrackingVisibility.java 39 Rect epicenter = getEpicenter(); local
40 if (epicenter != null) {
41 mEpicenter[0] = new Rect(epicenter);
52 Rect epicenter = getEpicenter(); local
53 if (epicenter != null) {
54 mEpicenter[0] = new Rect(epicenter);
TrackingTransition.java 68 Rect epicenter = getEpicenter(); local
69 if (epicenter != null) {
70 mEpicenter[0] = new Rect(epicenter);
  /cts/common/device-side/util/src/com/android/compatibility/common/util/transition/
TrackingVisibility.java 39 Rect epicenter = getEpicenter(); local
40 if (epicenter != null) {
41 mEpicenter[0] = new Rect(epicenter);
52 Rect epicenter = getEpicenter(); local
53 if (epicenter != null) {
54 mEpicenter[0] = new Rect(epicenter);
TrackingTransition.java 68 Rect epicenter = getEpicenter(); local
69 if (epicenter != null) {
70 mEpicenter[0] = new Rect(epicenter);
  /frameworks/support/transition/src/main/java/androidx/transition/
CircularPropagation.java 24 * A propagation that varies with the distance to the epicenter of the Transition
25 * or center of the scene if no epicenter exists. When a View is visible in the
26 * start of the transition, Views farther from the epicenter will transition
27 * sooner than Views closer to the epicenter. When a View is not in the start
29 * transition sooner when closer to the epicenter and later when farther from
30 * the epicenter. This is the default TransitionPropagation used with
40 * the epicenter and View centered at the epicenter will have a difference
74 Rect epicenter = transition.getEpicenter(); local
77 if (epicenter != null)
    [all...]
SidePropagation.java 28 * and, orthogonally, the distance to epicenter. If the transitioning View is visible in
80 Rect epicenter = transition.getEpicenter(); local
101 if (epicenter != null) {
102 epicenterX = epicenter.centerX();
103 epicenterY = epicenter.centerY();
Explode.java 40 * no epicenter was provided.</p>
134 Rect epicenter = getEpicenter(); local
135 if (epicenter == null) {
141 focalX = epicenter.centerX();
142 focalY = epicenter.centerY();
FragmentTransitionSupport.java 85 final Rect epicenter = new Rect(); local
86 getBoundsOnScreen(view, epicenter);
91 return epicenter;
306 public void setEpicenter(Object transitionObj, final Rect epicenter) {
312 if (epicenter == null || epicenter.isEmpty()) {
315 return epicenter;
  /frameworks/base/core/java/android/transition/
CircularPropagation.java 23 * A propagation that varies with the distance to the epicenter of the Transition
24 * or center of the scene if no epicenter exists. When a View is visible in the
25 * start of the transition, Views farther from the epicenter will transition
26 * sooner than Views closer to the epicenter. When a View is not in the start
28 * transition sooner when closer to the epicenter and later when farther from
29 * the epicenter. This is the default TransitionPropagation used with
40 * the epicenter and View centered at the epicenter will have a difference
74 Rect epicenter = transition.getEpicenter(); local
77 if (epicenter != null)
    [all...]
SidePropagation.java 26 * and, orthogonally, the distance to epicenter. If the transitioning View is visible in
79 Rect epicenter = transition.getEpicenter(); local
100 if (epicenter != null) {
101 epicenterX = epicenter.centerX();
102 epicenterY = epicenter.centerY();
Explode.java 38 * no epicenter was provided.</p>
132 Rect epicenter = getEpicenter(); local
133 if (epicenter == null) {
139 focalX = epicenter.centerX();
140 focalY = epicenter.centerY();
  /frameworks/base/core/java/com/android/internal/view/menu/
MenuPopupHelper.java 176 * Additionally, the popup's transition epicenter (see
265 // Set the transition epicenter to be roughly finger (or mouse
271 final Rect epicenter = new Rect(xOffset - halfSize, yOffset - halfSize, local
273 popup.setEpicenterBounds(epicenter);
  /frameworks/support/fragment/src/main/java/androidx/fragment/app/
FragmentTransitionCompat21.java 78 final Rect epicenter = new Rect(); local
79 getBoundsOnScreen(view, epicenter);
84 return epicenter;
302 public void setEpicenter(Object transitionObj, final Rect epicenter) {
308 if (epicenter == null || epicenter.isEmpty()) {
311 return epicenter;
FragmentTransitionImpl.java 66 * Sets a transition epicenter to the rectangle of a given View.
74 protected void getBoundsOnScreen(View view, Rect epicenter) {
77 epicenter.set(loc[0], loc[1], loc[0] + view.getWidth(), loc[1] + view.getHeight());
285 * Sets the epicenter of a transition to a rect object. The object can be modified until
288 public abstract void setEpicenter(Object transitionObj, Rect epicenter);
FragmentTransition.java 529 * views, and sets up the epicenter on the transitions.
531 * The epicenter of exit and shared element transitions is the first shared element
532 * in the outgoing fragment. The epicenter of the entering transition is the first shared
548 * epicenter
550 * epicenter
601 final Rect epicenter; local
611 epicenter = new Rect();
615 impl.setEpicenter(enterTransition, epicenter);
618 epicenter = null;
628 impl.getBoundsOnScreen(epicenterView, epicenter);
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/view/menu/
MenuPopupHelper.java 185 * Additionally, the popup's transition epicenter (see
279 // Set the transition epicenter to be roughly finger (or mouse
285 final Rect epicenter = new Rect(xOffset - halfSize, yOffset - halfSize, local
287 popup.setEpicenterBounds(epicenter);
  /frameworks/base/core/java/com/android/internal/transition/
EpicenterTranslateClipReveal.java 40 * epicenter bounds during a visibility transition.
135 // Translate the view to be centered on the epicenter.
192 final Rect epicenter = getEpicenter(); local
193 if (epicenter != null) {
194 return epicenter;
  /frameworks/base/core/java/android/app/
FragmentTransition.java 454 * views, and sets up the epicenter on the transitions.
456 * The epicenter of exit and shared element transitions is the first shared element
457 * in the outgoing fragment. The epicenter of the entering transition is the first shared
473 * epicenter
475 * epicenter
525 final Rect epicenter; local
534 epicenter = new Rect();
541 return epicenter;
546 epicenter = null;
554 epicenterView.getBoundsOnScreen(epicenter);
878 final Rect epicenter = new Rect(); local
    [all...]
ActivityTransitionCoordinator.java 310 * Sets the transition epicenter to the position of the first shared element.
313 View epicenter = null; local
317 epicenter = mSharedElements.get(index);
320 setEpicenter(epicenter);
327 Rect epicenter = new Rect(); local
328 view.getBoundsOnScreen(epicenter);
329 mEpicenterCallback.setEpicenter(epicenter);
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/contact/
ContactPickerFragment.java 511 final Rect epicenter = mPendingExplodeView == null ? null : local
518 return epicenter;
  /frameworks/base/core/java/android/widget/
PopupWindow.java 455 * Sets the bounds used as the epicenter of the enter and exit transitions.
457 * Transitions use a point or Rect, referred to as the epicenter, to orient
459 * used as the default epicenter.
464 * @param bounds the epicenter bounds relative to the anchor view, or
465 * {@code null} to use the default epicenter
1917 final Rect epicenter = getTransitionEpicenter(); local
    [all...]

Completed in 1617 milliseconds