Searched defs:axes (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java517 public boolean onStartNestedScroll(View child, View target, int axes) { argument
518 if ((axes & SCROLL_AXIS_VERTICAL) == 0 || mActionBarTop.getVisibility() != VISIBLE) {
525 public void onNestedScrollAccepted(View child, View target, int axes) { argument
526 super.onNestedScrollAccepted(child, target, axes);
H A DResolverDrawerLayout.java537 public void onNestedScrollAccepted(View child, View target, int axes) { argument
538 super.onNestedScrollAccepted(child, target, axes);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarOverlayLayout.java526 public boolean onStartNestedScroll(View child, View target, int axes) { argument
527 if ((axes & SCROLL_AXIS_VERTICAL) == 0 || mActionBarTop.getVisibility() != VISIBLE) {
534 public void onNestedScrollAccepted(View child, View target, int axes) { argument
535 super.onNestedScrollAccepted(child, target, axes);
/frameworks/base/core/java/android/widget/
H A DScrollView.java1652 public void onNestedScrollAccepted(View child, View target, int axes) { argument
1653 super.onNestedScrollAccepted(child, target, axes);
H A DAbsListView.java4069 public void onNestedScrollAccepted(View child, View target, int axes) { argument
4070 super.onNestedScrollAccepted(child, target, axes);
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp2586 void prepareAxes(int axes);
2603 void SingleTouchInputMapperTest::prepareAxes(int axes) { argument
2604 if (axes & POSITION) {
2610 if (axes & PRESSURE) {
2614 if (axes & TOOL) {
2618 if (axes & DISTANCE) {
2622 if (axes & TILT) {
3730 void prepareAxes(int axes);
3748 void MultiTouchInputMapperTest::prepareAxes(int axes) { argument
3749 if (axes
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java478 * Currently registered axes for nested scrolling. Flag set consisting of
6225 public void onNestedScrollAccepted(View child, View target, int axes) { argument
6226 mNestedScrollAxes = axes;
6275 * Return the current axes of nested scrolling for this ViewGroup.
6280 * @return Flags indicating the current axes of nested scrolling
H A DView.java18698 * Begin a nestable scroll operation along the given axes.
18725 * @param axes Flags consisting of a combination of {@link #SCROLL_AXIS_HORIZONTAL} and/or
18734 public boolean startNestedScroll(int axes) { argument
18744 if (p.onStartNestedScroll(child, this, axes)) {
18746 p.onNestedScrollAccepted(child, this, axes);

Completed in 257 milliseconds