Searched refs:axes (Results 1 - 20 of 20) sorted by relevance

/frameworks/support/v4/java/android/support/v4/view/
H A DNestedScrollingParentHelper.java57 public void onNestedScrollAccepted(View child, View target, int axes) { argument
58 mNestedScrollAxes = axes;
62 * Return the current axes of nested scrolling for this ViewGroup.
H A DNestedScrollingChild.java71 * Begin a nestable scroll operation along the given axes.
99 * @param axes Flags consisting of a combination of {@link ViewCompat#SCROLL_AXIS_HORIZONTAL}
108 public boolean startNestedScroll(int axes); argument
H A DNestedScrollingChildHelper.java100 * @param axes Supported nested scroll axes.
104 public boolean startNestedScroll(int axes) { argument
113 if (ViewParentCompat.onStartNestedScroll(p, child, mView, axes)) {
115 ViewParentCompat.onNestedScrollAccepted(p, child, mView, axes);
H A DViewCompat.java374 boolean startNestedScroll(View view, int axes); argument
887 public boolean startNestedScroll(View view, int axes) { argument
889 return ((NestedScrollingChild) view).startNestedScroll(axes);
1452 public boolean startNestedScroll(View view, int axes) { argument
1453 return ViewCompatLollipop.startNestedScroll(view, axes);
2835 * Begin a nestable scroll operation along the given axes.
2863 * @param axes Flags consisting of a combination of {@link ViewCompat#SCROLL_AXIS_HORIZONTAL}
2872 public static boolean startNestedScroll(View view, int axes) { argument
2873 return IMPL.startNestedScroll(view, axes);
/frameworks/base/tools/velocityplot/
H A Dvelocityplot.py133 axes = self.fig.add_axes([0.1, top, 0.8, height],
140 axes.text(0.02, 0.02, title, transform=axes.transAxes, fontsize=10, fontweight='bold')
141 axes.set_xlabel('time (s)', fontsize=10, fontweight='bold')
142 axes.set_ylabel(ylabel, fontsize=10, fontweight='bold')
143 axes.set_xticks(range(0, timespan + 1, timeticks))
144 axes.set_yticks(yticks)
145 axes.grid(True)
147 for label in axes.get_xticklabels():
149 for label in axes
[all...]
/frameworks/base/tools/orientationplot/
H A Dorientationplot.py207 axes = self.fig.add_axes([0.1, top, 0.8, height],
214 axes.text(0.02, 0.02, title, transform=axes.transAxes, fontsize=10, fontweight='bold')
215 axes.set_xlabel('time (s)', fontsize=10, fontweight='bold')
216 axes.set_ylabel(ylabel, fontsize=10, fontweight='bold')
217 axes.set_xticks(range(0, timespan + 1, timeticks))
218 axes.set_yticks(yticks)
219 axes.grid(True)
221 for label in axes.get_xticklabels():
223 for label in axes
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DTestedFrameLayout.java75 public void onNestedScrollAccepted(View child, View target, int axes) { argument
/frameworks/support/v4/api21/android/support/v4/view/
H A DViewCompatLollipop.java127 public static boolean startNestedScroll(View view, int axes) { argument
128 return view.startNestedScroll(axes);
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java516 public boolean onStartNestedScroll(View child, View target, int axes) { argument
517 if ((axes & SCROLL_AXIS_VERTICAL) == 0 || mActionBarTop.getVisibility() != VISIBLE) {
524 public void onNestedScrollAccepted(View child, View target, int axes) { argument
525 super.onNestedScrollAccepted(child, target, axes);
H A DResolverDrawerLayout.java604 public void onNestedScrollAccepted(View child, View target, int axes) { argument
605 super.onNestedScrollAccepted(child, target, axes);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarOverlayLayout.java461 public boolean onStartNestedScroll(View child, View target, int axes) { argument
462 if ((axes & SCROLL_AXIS_VERTICAL) == 0 || mActionBarTop.getVisibility() != VISIBLE) {
469 public void onNestedScrollAccepted(View child, View target, int axes) { argument
470 mParentHelper.onNestedScrollAccepted(child, target, axes);
/frameworks/support/v4/java/android/support/v4/widget/
H A DSwipeRefreshLayout.java740 public void onNestedScrollAccepted(View child, View target, int axes) { argument
742 mNestedScrollingParentHelper.onNestedScrollAccepted(child, target, axes);
823 public boolean startNestedScroll(int axes) { argument
824 return mNestedScrollingChildHelper.startNestedScroll(axes);
H A DNestedScrollView.java197 public boolean startNestedScroll(int axes) { argument
198 return mChildHelper.startNestedScroll(axes);
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp2594 void prepareAxes(int axes);
2611 void SingleTouchInputMapperTest::prepareAxes(int axes) { argument
2612 if (axes & POSITION) {
2618 if (axes & PRESSURE) {
2622 if (axes & TOOL) {
2626 if (axes & DISTANCE) {
2630 if (axes & TILT) {
3738 void prepareAxes(int axes);
3756 void MultiTouchInputMapperTest::prepareAxes(int axes) { argument
3757 if (axes
[all...]
/frameworks/base/core/java/android/widget/
H A DScrollView.java1675 public void onNestedScrollAccepted(View child, View target, int axes) { argument
1676 super.onNestedScrollAccepted(child, target, axes);
H A DAbsListView.java4125 public void onNestedScrollAccepted(View child, View target, int axes) { argument
4126 super.onNestedScrollAccepted(child, target, axes);
/frameworks/base/core/java/android/view/
H A DViewGroup.java495 * Currently registered axes for nested scrolling. Flag set consisting of
6641 public void onNestedScrollAccepted(View child, View target, int axes) { argument
6642 mNestedScrollAxes = axes;
6692 * Return the current axes of nested scrolling for this ViewGroup.
6697 * @return Flags indicating the current axes of nested scrolling
H A DView.java19956 * Begin a nestable scroll operation along the given axes.
19983 * @param axes Flags consisting of a combination of {@link #SCROLL_AXIS_HORIZONTAL} and/or
19992 public boolean startNestedScroll(int axes) { argument
20002 if (p.onStartNestedScroll(child, this, axes)) {
20004 p.onNestedScrollAccepted(child, this, axes);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java8678 public boolean startNestedScroll(int axes) { argument
8679 return mScrollingChildHelper.startNestedScroll(axes);
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 682 milliseconds