Searched refs:onRelease (Results 1 - 17 of 17) sorted by relevance

/frameworks/support/v4/ics/android/support/v4/widget/
H A DEdgeEffectCompatIcs.java50 public static boolean onRelease(Object edgeEffect) { method in class:EdgeEffectCompatIcs
52 eff.onRelease();
/frameworks/support/v4/java/android/support/v4/widget/
H A DEdgeEffectCompat.java52 public boolean onRelease(Object edgeEffect); method in interface:EdgeEffectCompat.EdgeEffectImpl
80 public boolean onRelease(Object edgeEffect) { method in class:EdgeEffectCompat.BaseEdgeEffectImpl
118 public boolean onRelease(Object edgeEffect) { method in class:EdgeEffectCompat.EdgeEffectIcsImpl
119 return EdgeEffectCompatIcs.onRelease(edgeEffect);
224 public boolean onRelease() { method in class:EdgeEffectCompat
225 return IMPL.onRelease(mEdgeEffect);
H A DNestedScrollView.java772 mEdgeGlowBottom.onRelease();
779 mEdgeGlowTop.onRelease();
1642 mEdgeGlowTop.onRelease();
1643 mEdgeGlowBottom.onRelease();
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteProvider.java244 * The media router will invoke the {@link RouteController#onRelease} method of the route
304 * it will invoke the {@link #onRelease} method to allow the route controller
318 public void onRelease() { method in class:MediaRouteProvider.RouteController
H A DMediaRouteProviderService.java507 mControllers.valueAt(i).onRelease();
536 controller.onRelease();
H A DRegisteredMediaRouteProvider.java333 public void onRelease() { method in class:RegisteredMediaRouteProvider.Controller
H A DMediaRouter.java2134 mSelectedRouteController.onRelease();
/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java626 mEdgeGlowRight.onRelease();
632 mEdgeGlowLeft.onRelease();
664 mEdgeGlowLeft.onRelease();
665 mEdgeGlowRight.onRelease();
679 mEdgeGlowLeft.onRelease();
680 mEdgeGlowRight.onRelease();
H A DEdgeEffect.java38 * the methods {@link #onAbsorb(int)}, {@link #onPull(float)}, and {@link #onRelease()},
239 public void onRelease() { method in class:EdgeEffect
H A DScrollView.java694 mEdgeGlowBottom.onRelease();
700 mEdgeGlowTop.onRelease();
1626 mEdgeGlowTop.onRelease();
1627 mEdgeGlowBottom.onRelease();
H A DAbsListView.java3490 mEdgeGlowBottom.onRelease();
3497 mEdgeGlowTop.onRelease();
3537 mEdgeGlowBottom.onRelease();
3544 mEdgeGlowTop.onRelease();
4002 mEdgeGlowTop.onRelease();
4003 mEdgeGlowBottom.onRelease();
4052 mEdgeGlowTop.onRelease();
4053 mEdgeGlowBottom.onRelease();
/frameworks/base/media/java/android/media/tv/
H A DTvInputService.java687 public abstract void onRelease(); method in class:TvInputService.Session
1077 onRelease();
1513 onRelease();
1664 sessionImpl.onRelease();
/frameworks/base/core/java/com/android/internal/widget/
H A DPasswordEntryKeyboardHelper.java317 public void onRelease(int primaryCode) { method in class:PasswordEntryKeyboardHelper
H A DViewPager.java2046 mLeftEdge.onRelease();
2047 mRightEdge.onRelease();
2056 mLeftEdge.onRelease();
2057 mRightEdge.onRelease();
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java90 void onRelease(int primaryCode); method in interface:KeyboardView.OnKeyboardActionListener
812 mKeyboardActionListener.onRelease(NOT_A_KEY);
829 mKeyboardActionListener.onRelease(code);
1121 public void onRelease(int primaryCode) {
1122 mKeyboardActionListener.onRelease(primaryCode);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java2107 needsInvalidate = mLeftEdge.onRelease() | mRightEdge.onRelease();
2115 needsInvalidate = mLeftEdge.onRelease() | mRightEdge.onRelease();
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java1812 if (mLeftGlow != null) needsInvalidate = mLeftGlow.onRelease();
1813 if (mTopGlow != null) needsInvalidate |= mTopGlow.onRelease();
1814 if (mRightGlow != null) needsInvalidate |= mRightGlow.onRelease();
1815 if (mBottomGlow != null) needsInvalidate |= mBottomGlow.onRelease();
1824 needsInvalidate = mLeftGlow.onRelease();
1827 needsInvalidate |= mRightGlow.onRelease();
1830 needsInvalidate |= mTopGlow.onRelease();
1833 needsInvalidate |= mBottomGlow.onRelease();

Completed in 413 milliseconds