Home
last modified time | relevance | path

Searched refs:smooth (Results 1 – 20 of 20) sorted by relevance

/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/
DBaseLayoutManagerActivity.java121 final boolean smooth = checkBox.isChecked();
123 scrollToPosition(smooth, spinner.getSelectedItemPosition());
125 scrollToPositionWithOffset(smooth, spinner.getSelectedItemPosition(), offset);
158 protected void scrollToPosition(boolean smooth, int position) {
159 if (smooth) {
166 protected void scrollToPositionWithOffset(boolean smooth, int position, int offset) {
167 scrollToPosition(smooth, position);
DGridLayoutManagerActivity.java105 protected void scrollToPositionWithOffset(boolean smooth, int position, int offset) {
106 if (smooth) {
107 super.scrollToPositionWithOffset(smooth, position, offset);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
DRowsFragment.java496 public void setSelectedPosition(int rowPosition, boolean smooth, in setSelectedPosition() argument
522 if (smooth) { in setSelectedPosition()
649 boolean smooth, in setSelectedPosition() argument
651 getFragment().setSelectedPosition(rowPosition, smooth, rowHolderTask); in setSelectedPosition()
655 public void setSelectedPosition(int rowPosition, boolean smooth) { in setSelectedPosition() argument
656 getFragment().setSelectedPosition(rowPosition, smooth); in setSelectedPosition()
DRowsSupportFragment.java499 public void setSelectedPosition(int rowPosition, boolean smooth, in setSelectedPosition() argument
525 if (smooth) { in setSelectedPosition()
652 boolean smooth, in setSelectedPosition() argument
654 getFragment().setSelectedPosition(rowPosition, smooth, rowHolderTask); in setSelectedPosition()
658 public void setSelectedPosition(int rowPosition, boolean smooth) { in setSelectedPosition() argument
659 getFragment().setSelectedPosition(rowPosition, smooth); in setSelectedPosition()
DBrowseFragment.java236 void post(int position, int type, boolean smooth) { in post() argument
245 mSmooth = smooth; in post()
527 boolean smooth, in setSelectedPosition() argument
534 public void setSelectedPosition(int rowPosition, boolean smooth) { in setSelectedPosition() argument
1474 void setSelection(int position, boolean smooth) { in setSelection() argument
1484 mHeadersFragment.setSelectedPosition(position, smooth); in setSelection()
1488 mMainFragmentRowsAdapter.setSelectedPosition(position, smooth); in setSelection()
1560 public void setSelectedPosition(int position, boolean smooth) { in setSelectedPosition() argument
1562 position, SetSelectionRunnable.TYPE_USER_REQUEST, smooth); in setSelectedPosition()
1577 public void setSelectedPosition(int rowPosition, boolean smooth, in setSelectedPosition() argument
[all …]
DBrowseSupportFragment.java239 void post(int position, int type, boolean smooth) { in post() argument
248 mSmooth = smooth; in post()
530 boolean smooth, in setSelectedPosition() argument
537 public void setSelectedPosition(int rowPosition, boolean smooth) { in setSelectedPosition() argument
1477 void setSelection(int position, boolean smooth) { in setSelection() argument
1487 mHeadersSupportFragment.setSelectedPosition(position, smooth); in setSelection()
1491 mMainFragmentRowsAdapter.setSelectedPosition(position, smooth); in setSelection()
1563 public void setSelectedPosition(int position, boolean smooth) { in setSelectedPosition() argument
1565 position, SetSelectionRunnable.TYPE_USER_REQUEST, smooth); in setSelectedPosition()
1580 public void setSelectedPosition(int rowPosition, boolean smooth, in setSelectedPosition() argument
[all …]
DBaseRowSupportFragment.java219 public void setSelectedPosition(int position, boolean smooth) { in setSelectedPosition() argument
228 if (smooth) { in setSelectedPosition()
DBaseRowFragment.java216 public void setSelectedPosition(int position, boolean smooth) { in setSelectedPosition() argument
225 if (smooth) { in setSelectedPosition()
DDetailsFragment.java576 public void setSelectedPosition(int position, boolean smooth) { in setSelectedPosition() argument
578 mSetSelectionRunnable.mSmooth = smooth; in setSelectedPosition()
DDetailsSupportFragment.java579 public void setSelectedPosition(int position, boolean smooth) { in setSelectedPosition() argument
581 mSetSelectionRunnable.mSmooth = smooth; in setSelectedPosition()
DPlaybackSupportFragment.java717 public void setSelectedPosition(int position, boolean smooth) { in setSelectedPosition() argument
719 mSetSelectionRunnable.mSmooth = smooth; in setSelectedPosition()
DPlaybackFragment.java714 public void setSelectedPosition(int position, boolean smooth) { in setSelectedPosition() argument
716 mSetSelectionRunnable.mSmooth = smooth; in setSelectedPosition()
/frameworks/support/dynamic-animation/
Dbuild.gradle32 …re driven by physics force. You can use this Animation library to create smooth and realistic anim…
/frameworks/native/opengl/libagl/
Darray.cpp1098 GLboolean smooth = GL_FALSE; in validate_arrays() local
1101 smooth = c->point.smooth; in validate_arrays()
1106 smooth = c->line.smooth; in validate_arrays()
1109 if (((enables & GGL_ENABLE_AA)?1:0) != smooth) in validate_arrays()
1110 c->rasterizer.procs.enableDisable(c, GGL_AA, smooth); in validate_arrays()
Dcontext.h164 GLboolean smooth; member
169 GLboolean smooth; member
Dstate.cpp147 c->point.smooth = enabled; in enable_disable()
150 c->line.smooth = enabled; in enable_disable()
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DGridLayoutManager.java2614 public void setSelection(int position, int subposition, boolean smooth,
2618 scrollToSelection(position, subposition, smooth, primaryScrollExtra);
2623 boolean smooth, int primaryScrollExtra) {
2629 scrollToView(view, smooth);
2638 if (smooth) {
2839 void scrollToView(View view, boolean smooth) {
2840 scrollToView(view, view == null ? null : view.findFocus(), smooth);
2846 private void scrollToView(View view, View childView, boolean smooth) {
2871 if (!mScrollEnabled && smooth) {
2875 scrollGrid(sTwoInts[0], sTwoInts[1], smooth);
[all …]
/frameworks/base/tools/orientationplot/
DREADME.txt43 less than about 1Hz, then the filtered accelorometer data becomes too smooth
/frameworks/native/opengl/specs/
DEGL_ANDROID_blob_cache.txt41 performance tuning, often leading to occasional pauses in otherwise smooth
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
DGridWidgetTest.java3533 private void testSelectViewTaskWithAdapterChange(final boolean smooth) throws Throwable { in testSelectViewTaskWithAdapterChange() argument
3554 if (smooth) { in testSelectViewTaskWithAdapterChange()