Home
last modified time | relevance | path

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

/frameworks/support/design/src/android/support/design/widget/
DHeaderBehavior.java199 int minOffset, int maxOffset) { in setHeaderTopBottomOffset() argument
203 if (minOffset != 0 && curOffset >= minOffset && curOffset <= maxOffset) { in setHeaderTopBottomOffset()
206 newOffset = MathUtils.constrain(newOffset, minOffset, maxOffset); in setHeaderTopBottomOffset()
223 int dy, int minOffset, int maxOffset) { in scroll() argument
225 getTopBottomOffsetForScrollingSibling() - dy, minOffset, maxOffset); in scroll()
228 final boolean fling(CoordinatorLayout coordinatorLayout, V layout, int minOffset, in fling() argument
243 minOffset, maxOffset); // y in fling()
DAppBarLayout.java1123 AppBarLayout appBarLayout, int newOffset, int minOffset, int maxOffset) { in setHeaderTopBottomOffset() argument
1127 if (minOffset != 0 && curOffset >= minOffset && curOffset <= maxOffset) { in setHeaderTopBottomOffset()
1130 newOffset = MathUtils.constrain(newOffset, minOffset, maxOffset); in setHeaderTopBottomOffset()
/frameworks/base/core/java/android/widget/
DEditor.java831 final int minOffset = TextUtils.unpackRangeStartFromLong(lastTouchOffsets); in selectCurrentWord() local
835 if (minOffset < 0 || minOffset > mTextView.getText().length()) return false; in selectCurrentWord()
842 getSpans(minOffset, maxOffset, URLSpan.class); in selectCurrentWord()
851 wordIterator.setCharSequence(mTextView.getText(), minOffset, maxOffset); in selectCurrentWord() local
853 selectionStart = wordIterator.getBeginning(minOffset); in selectCurrentWord()
859 long range = getCharClusterRange(minOffset); in selectCurrentWord()
998 int minOffset = selectionController.getMinTouchOffset(); in touchPositionIsInSelection() local
1001 return ((minOffset >= selectionStart) && (maxOffset < selectionEnd)); in touchPositionIsInSelection()
1132 final int minOffset = selectionController.getMinTouchOffset(); in getLastTouchOffsets() local
1134 return TextUtils.packRangeInLong(minOffset, maxOffset); in getLastTouchOffsets()
/frameworks/native/libs/binder/
DParcel.cpp2198 binder_size_t minOffset = 0; in ipcSetDataReference() local
2213 if (offset < minOffset) { in ipcSetDataReference()
2215 __func__, (uint64_t)offset, (uint64_t)minOffset); in ipcSetDataReference()
2219 minOffset = offset + sizeof(flat_binder_object); in ipcSetDataReference()