Home
last modified time | relevance | path

Searched refs:minOffset (Results 1 – 5 of 5) sorted by relevance

/frameworks/support/design/src/android/support/design/widget/
DHeaderBehavior.java197 int minOffset, int maxOffset) { in setHeaderTopBottomOffset() argument
201 if (minOffset != 0 && curOffset >= minOffset && curOffset <= maxOffset) { in setHeaderTopBottomOffset()
204 newOffset = MathUtils.clamp(newOffset, minOffset, maxOffset); in setHeaderTopBottomOffset()
221 int dy, int minOffset, int maxOffset) { in scroll() argument
223 getTopBottomOffsetForScrollingSibling() - dy, minOffset, maxOffset); in scroll()
226 final boolean fling(CoordinatorLayout coordinatorLayout, V layout, int minOffset, in fling() argument
241 minOffset, maxOffset); // y in fling()
DAppBarLayout.java1113 AppBarLayout appBarLayout, int newOffset, int minOffset, int maxOffset) { in setHeaderTopBottomOffset() argument
1117 if (minOffset != 0 && curOffset >= minOffset && curOffset <= maxOffset) { in setHeaderTopBottomOffset()
1120 newOffset = MathUtils.clamp(newOffset, minOffset, maxOffset); in setHeaderTopBottomOffset()
/frameworks/base/core/java/android/widget/
DEditor.java854 final int minOffset = TextUtils.unpackRangeStartFromLong(lastTouchOffsets); in selectCurrentWord() local
858 if (minOffset < 0 || minOffset > mTextView.getText().length()) return false; in selectCurrentWord()
865 ((Spanned) mTextView.getText()).getSpans(minOffset, maxOffset, URLSpan.class); in selectCurrentWord()
874 wordIterator.setCharSequence(mTextView.getText(), minOffset, maxOffset); in selectCurrentWord() local
876 selectionStart = wordIterator.getBeginning(minOffset); in selectCurrentWord()
882 long range = getCharClusterRange(minOffset); in selectCurrentWord()
1018 int minOffset = selectionController.getMinTouchOffset(); in touchPositionIsInSelection() local
1021 return ((minOffset >= selectionStart) && (maxOffset < selectionEnd)); in touchPositionIsInSelection()
1131 final int minOffset = selectionController.getMinTouchOffset(); in getLastTouchOffsets() local
1133 return TextUtils.packRangeInLong(minOffset, maxOffset); in getLastTouchOffsets()
/frameworks/native/libs/binder/
DParcel.cpp2358 binder_size_t minOffset = 0; in ipcSetDataReference() local
2373 if (offset < minOffset) { in ipcSetDataReference()
2375 __func__, (uint64_t)offset, (uint64_t)minOffset); in ipcSetDataReference()
2379 minOffset = offset + sizeof(flat_binder_object); in ipcSetDataReference()
/frameworks/av/media/libstagefright/codec2/include/
DC2Buffer.h837 inline ssize_t minOffset(uint32_t width, uint32_t height) { in minOffset() function