Searched refs:axes (Results 1 - 23 of 23) 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.java459 boolean startNestedScroll(View view, int axes); argument
987 public boolean startNestedScroll(View view, int axes) { argument
989 return ((NestedScrollingChild) view).startNestedScroll(axes);
1633 public boolean startNestedScroll(View view, int axes) { argument
1634 return ViewCompatLollipop.startNestedScroll(view, axes);
3092 * Begin a nestable scroll operation along the given axes.
3120 * @param axes Flags consisting of a combination of {@link ViewCompat#SCROLL_AXIS_HORIZONTAL}
3129 public static boolean startNestedScroll(View view, int axes) { argument
3130 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/graphics/java/android/graphics/
H A DFontListParser.java56 Font(String fontName, int ttcIndex, List<Axis> axes, int weight, boolean isItalic) { argument
59 this.axes = axes;
65 public final List<Axis> axes; field in class:FontListParser.Font
146 List<Axis> axes = new ArrayList<Axis>();
158 axes.add(readAxis(parser));
165 return new Font(fullFilename, index, axes, weight, isItalic);
H A DFontFamily.java83 public boolean addFontWeightStyle(ByteBuffer font, int ttcIndex, List<FontListParser.Axis> axes, argument
85 return nAddFontWeightStyle(mNativePtr, font, ttcIndex, axes, weight, style);
H A DTypeface.java313 if (!fontFamily.addFontWeightStyle(fontBuffer, font.ttcIndex, font.axes,
/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/v4/api21/android/support/v4/view/
H A DViewCompatLollipop.java165 public static boolean startNestedScroll(View view, int axes) { argument
166 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.java620 public void onNestedScrollAccepted(View child, View target, int axes) { argument
621 super.onNestedScrollAccepted(child, target, axes);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionBarOverlayLayout.java459 public boolean onStartNestedScroll(View child, View target, int axes) { argument
460 if ((axes & SCROLL_AXIS_VERTICAL) == 0 || mActionBarTop.getVisibility() != VISIBLE) {
467 public void onNestedScrollAccepted(View child, View target, int axes) { argument
468 mParentHelper.onNestedScrollAccepted(child, target, axes);
/frameworks/support/v4/java/android/support/v4/widget/
H A DSwipeRefreshLayout.java754 public void onNestedScrollAccepted(View child, View target, int axes) { argument
756 mNestedScrollingParentHelper.onNestedScrollAccepted(child, target, axes);
758 startNestedScroll(axes & ViewCompat.SCROLL_AXIS_VERTICAL);
846 public boolean startNestedScroll(int axes) { argument
847 return mNestedScrollingChildHelper.startNestedScroll(axes);
H A DNestedScrollView.java221 public boolean startNestedScroll(int axes) { argument
222 return mChildHelper.startNestedScroll(axes);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DTestedFrameLayout.java174 public void onNestedScrollAccepted(View child, View target, int axes) { argument
/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.java1685 public void onNestedScrollAccepted(View child, View target, int axes) { argument
1686 super.onNestedScrollAccepted(child, target, axes);
H A DAbsListView.java4263 public void onNestedScrollAccepted(View child, View target, int axes) { argument
4264 super.onNestedScrollAccepted(child, target, axes);
/frameworks/base/core/java/android/view/
H A DViewGroup.java500 * Currently registered axes for nested scrolling. Flag set consisting of
6807 public void onNestedScrollAccepted(View child, View target, int axes) { argument
6808 mNestedScrollAxes = axes;
6862 * Return the current axes of nested scrolling for this ViewGroup.
6867 * @return Flags indicating the current axes of nested scrolling
H A DView.java21006 * Begin a nestable scroll operation along the given axes.
21033 * @param axes Flags consisting of a combination of {@link #SCROLL_AXIS_HORIZONTAL} and/or
21042 public boolean startNestedScroll(int axes) { argument
21052 if (p.onStartNestedScroll(child, this, axes)) {
21054 p.onNestedScrollAccepted(child, this, axes);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java9765 public boolean startNestedScroll(int axes) { argument
9766 return getScrollingChildHelper().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 1464 milliseconds