/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/widget/ |
D | BaseLayoutManagerActivity.java | 122 final boolean smooth = checkBox.isChecked(); 124 scrollToPosition(smooth, spinner.getSelectedItemPosition()); 126 scrollToPositionWithOffset(smooth, spinner.getSelectedItemPosition(), offset); 159 protected void scrollToPosition(boolean smooth, int position) { 160 if (smooth) { 167 protected void scrollToPositionWithOffset(boolean smooth, int position, int offset) { 168 scrollToPosition(smooth, position);
|
D | GridLayoutManagerActivity.java | 106 protected void scrollToPositionWithOffset(boolean smooth, int position, int offset) { 107 if (smooth) { 108 super.scrollToPositionWithOffset(smooth, position, offset);
|
/frameworks/support/leanback/src/main/java/androidx/leanback/app/ |
D | RowsSupportFragment.java | 505 public void setSelectedPosition(int rowPosition, boolean smooth, in setSelectedPosition() argument 531 if (smooth) { in setSelectedPosition() 663 boolean smooth, in setSelectedPosition() argument 665 getFragment().setSelectedPosition(rowPosition, smooth, rowHolderTask); in setSelectedPosition() 669 public void setSelectedPosition(int rowPosition, boolean smooth) { in setSelectedPosition() argument 670 getFragment().setSelectedPosition(rowPosition, smooth); in setSelectedPosition()
|
D | RowsFragment.java | 510 public void setSelectedPosition(int rowPosition, boolean smooth, in setSelectedPosition() argument 536 if (smooth) { in setSelectedPosition() 670 boolean smooth, in setSelectedPosition() argument 672 getFragment().setSelectedPosition(rowPosition, smooth, rowHolderTask); in setSelectedPosition() 676 public void setSelectedPosition(int rowPosition, boolean smooth) { in setSelectedPosition() argument 677 getFragment().setSelectedPosition(rowPosition, smooth); in setSelectedPosition()
|
D | BrowseSupportFragment.java | 238 void post(int position, int type, boolean smooth) { in post() argument 247 mSmooth = smooth; in post() 529 boolean smooth, in setSelectedPosition() argument 536 public void setSelectedPosition(int rowPosition, boolean smooth) { in setSelectedPosition() argument 1513 void setSelection(int position, boolean smooth) { in setSelection() argument 1523 mHeadersSupportFragment.setSelectedPosition(position, smooth); in setSelection() 1527 mMainFragmentRowsAdapter.setSelectedPosition(position, smooth); in setSelection() 1598 public void setSelectedPosition(int position, boolean smooth) { in setSelectedPosition() argument 1600 position, SetSelectionRunnable.TYPE_USER_REQUEST, smooth); in setSelectedPosition() 1615 public void setSelectedPosition(int rowPosition, boolean smooth, in setSelectedPosition() argument [all …]
|
D | BrowseFragment.java | 244 void post(int position, int type, boolean smooth) { in post() argument 253 mSmooth = smooth; in post() 545 boolean smooth, in setSelectedPosition() argument 552 public void setSelectedPosition(int rowPosition, boolean smooth) { in setSelectedPosition() argument 1535 void setSelection(int position, boolean smooth) { in setSelection() argument 1545 mHeadersFragment.setSelectedPosition(position, smooth); in setSelection() 1549 mMainFragmentRowsAdapter.setSelectedPosition(position, smooth); in setSelection() 1620 public void setSelectedPosition(int position, boolean smooth) { in setSelectedPosition() argument 1622 position, SetSelectionRunnable.TYPE_USER_REQUEST, smooth); in setSelectedPosition() 1637 public void setSelectedPosition(int rowPosition, boolean smooth, in setSelectedPosition() argument [all …]
|
D | BaseRowFragment.java | 228 public void setSelectedPosition(int position, boolean smooth) { in setSelectedPosition() argument 237 if (smooth) { in setSelectedPosition()
|
D | BaseRowSupportFragment.java | 223 public void setSelectedPosition(int position, boolean smooth) { in setSelectedPosition() argument 232 if (smooth) { in setSelectedPosition()
|
D | DetailsSupportFragment.java | 580 public void setSelectedPosition(int position, boolean smooth) { in setSelectedPosition() argument 582 mSetSelectionRunnable.mSmooth = smooth; in setSelectedPosition()
|
D | DetailsFragment.java | 585 public void setSelectedPosition(int position, boolean smooth) { in setSelectedPosition() argument 587 mSetSelectionRunnable.mSmooth = smooth; in setSelectedPosition()
|
D | PlaybackFragment.java | 729 public void setSelectedPosition(int position, boolean smooth) { in setSelectedPosition() argument 731 mSetSelectionRunnable.mSmooth = smooth; in setSelectedPosition()
|
D | PlaybackSupportFragment.java | 722 public void setSelectedPosition(int position, boolean smooth) { in setSelectedPosition() argument 724 mSetSelectionRunnable.mSmooth = smooth; in setSelectedPosition()
|
/frameworks/support/dynamic-animation/ |
D | build.gradle | 26 …re driven by physics force. You can use this Animation library to create smooth and realistic anim…
|
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/ |
D | GridLayoutManager.java | 2653 public void setSelection(int position, int subposition, boolean smooth, 2657 scrollToSelection(position, subposition, smooth, primaryScrollExtra); 2662 boolean smooth, int primaryScrollExtra) { 2675 scrollToView(view, smooth); 2684 if (smooth && !mBaseGridView.isLayoutRequested()) { 2709 scrollToView(view, smooth); 2931 void scrollToView(View view, boolean smooth) { 2932 scrollToView(view, view == null ? null : view.findFocus(), smooth); 2935 void scrollToView(View view, boolean smooth, int extraDelta, int extraDeltaSecondary) { 2936 scrollToView(view, view == null ? null : view.findFocus(), smooth, extraDelta, [all …]
|
/frameworks/native/opengl/libagl/ |
D | array.cpp | 1096 GLboolean smooth = GL_FALSE; in validate_arrays() local 1099 smooth = c->point.smooth; in validate_arrays() 1104 smooth = c->line.smooth; in validate_arrays() 1107 if (((enables & GGL_ENABLE_AA)?1:0) != smooth) in validate_arrays() 1108 c->rasterizer.procs.enableDisable(c, GGL_AA, smooth); in validate_arrays()
|
D | context.h | 164 GLboolean smooth; member 169 GLboolean smooth; member
|
D | state.cpp | 147 c->point.smooth = enabled; in enable_disable() 150 c->line.smooth = enabled; in enable_disable()
|
/frameworks/base/tools/orientationplot/ |
D | README.txt | 43 less than about 1Hz, then the filtered accelorometer data becomes too smooth
|
/frameworks/native/opengl/specs/ |
D | EGL_ANDROID_blob_cache.txt | 41 performance tuning, often leading to occasional pauses in otherwise smooth
|
/frameworks/support/leanback/src/androidTest/java/androidx/leanback/widget/ |
D | GridWidgetTest.java | 1395 final boolean viewVisible, final boolean smooth, in testSetSelectedPosition() argument 1422 if (smooth) { in testSetSelectedPosition() 1647 void testScrollInSmoothScrolling(final boolean smooth, final boolean scrollToInvisible, in testScrollInSmoothScrolling() argument 1682 if (smooth) { in testScrollInSmoothScrolling() 1688 if (smooth) { in testScrollInSmoothScrolling() 4033 private void testSelectViewTaskWithAdapterChange(final boolean smooth) throws Throwable { in testSelectViewTaskWithAdapterChange() argument 4054 if (smooth) { in testSelectViewTaskWithAdapterChange()
|
/frameworks/support/work/integration-tests/testapp/src/main/assets/ |
D | case.txt | 428 in smooth waters, but if you persist in this marriage you will raise 1315 Army. We took the rough and the smooth together for a year of hard 4702 American, but he has worn his accent smooth with years of London. 9461 "Left shoe wrinkled, right one smooth."
|
D | mems.txt | 3109 "We were dashing along the smooth white country road, with the long 3538 from us. Our boat lay, rising and falling, upon the long, smooth 7198 paved causeway, and at others our smooth, silent course suggested
|
D | advs.txt | 1276 inches, and the left one with the smooth patch near the elbow where 1894 I had the hint from Holmes that this smooth-faced pawnbroker's 5799 smooth-skinned, rubbing his eyes and staring about him with sleepy
|
D | retn.txt | 6436 eyes. His voice was as smooth and suave as his countenance, as he 8083 smooth and unstained. Now I found a clean cut in it about three
|