HomeSort by relevance Sort by last modified time
    Searched defs:preceding (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
BreakIteratorICU.java 83 public int preceding(int offset) { method in class:BreakIteratorICU
84 return fIcuBrkItr.preceding(offset);
  /libcore/ojluni/src/main/java/java/text/
BreakIterator.java 255 * DONE is returned by previous(), next(), next(int), preceding(int)
310 * Returns the boundary preceding the current boundary. If the current boundary
313 * current position is set to the boundary preceding the current boundary.
337 * Returns the last boundary preceding the specified character offset. If the
351 public int preceding(int offset) { method in class:BreakIterator
393 * following(int) or preceding(int). If any of these methods returns
405 * @see #preceding(int)
IcuIteratorWrapper.java 79 * <td width="94%">Specifies that the expression preceding the asterisk may occur any number
105 * when there is overlap between the last group of characters in the expression preceding the
309 * Advances the iterator backwards, to the last boundary preceding this one.
311 * @return The position of the last boundary position preceding this one.
346 public int preceding(int offset) { method in class:IcuIteratorWrapper
352 return wrapped.preceding(offset);
  /external/icu/icu4c/source/common/
ustr_titlecase_brkiter.cpp 62 int32_t preceding(int32_t offset) U_OVERRIDE;
120 int32_t WholeStringBreakIterator::preceding(int32_t /*offset*/) { return 0; } function in class:WholeStringBreakIterator
rbbi_cache.cpp 86 UBool RuleBasedBreakIterator::DictionaryCache::preceding(int32_t fromPos, int32_t *result, int32_t *statusIndex) { function in class:RuleBasedBreakIterator::DictionaryCache
257 void RuleBasedBreakIterator::BreakCache::preceding(int32_t startPos, UErrorCode &status) { function in class:RuleBasedBreakIterator::BreakCache
265 // seek() leaves the BreakCache positioned at the preceding boundary
383 while (fTextIdx > position) { // Move backwards to a position at or preceding the requested pos.
402 // Back up one, leaving cache position at the boundary preceding the requested position.
478 if (fBI->fDictionaryCache->preceding(fromPosition, &position, &positionStatusIdx)) {
485 // Find a boundary somewhere preceding the first already-cached boundary
559 // No space in circular buffer to hold a new preceding result while
filteredbrk.cpp 192 virtual int32_t preceding(int32_t offset);
411 SimpleFilteredSentenceBreakIterator::preceding(int32_t offset) { function in class:SimpleFilteredSentenceBreakIterator
412 return internalPrev(fDelegate->preceding(offset));
rbbi.cpp 586 * Move the iterator backwards, to the boundary preceding the current one.
591 * @return The position of the boundary position immediately preceding the starting position.
628 int32_t RuleBasedBreakIterator::preceding(int32_t offset) { function in class:RuleBasedBreakIterator
640 fBreakCache->preceding(adjustedOffset, status);
679 // Cache->seek(), above, left us on the preceding boundary, so advance one.
    [all...]
  /external/icu/icu4c/source/i18n/
search.cpp 228 int32_t SearchIterator::preceding(int32_t position, function in class:SearchIterator
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
BreakIterator.java 302 * @return The position of the last boundary position preceding the
325 * boundary position preceding the specified position. (Whether the
331 * @return The position of the last boundary position preceding
336 public int preceding(int offset) { method in class:BreakIterator
778 public int preceding(int offset) { method in class:BreakIterator.BreakIteratorHandle
779 return breakIterator.preceding(offset);
    [all...]
  /frameworks/base/core/java/android/text/method/
WordIterator.java 71 public int preceding(int offset) { method in class:WordIterator
74 offset = mIterator.preceding(offset);
103 * @return the position of the last boundary preceding the given offset.
111 * Returns the position of boundary preceding the given offset or
115 * @return the position of the last boundary preceding the given offset.
119 return mIterator.preceding(offset);
220 return mIterator.preceding(offset);
224 return mIterator.preceding(offset);
  /frameworks/base/core/java/android/view/
AccessibilityIterators.java 40 public int[] preceding(int current); method in interface:AccessibilityIterators.TextSegmentIterator
120 public int[] preceding(int offset) { method in class:AccessibilityIterators.CharacterTextSegmentIterator
133 end = mImpl.preceding(end);
138 final int start = mImpl.preceding(end);
205 public int[] preceding(int offset) { method in class:AccessibilityIterators.WordTextSegmentIterator
218 end = mImpl.preceding(end);
223 final int start = mImpl.preceding(end);
287 public int[] preceding(int offset) { method in class:AccessibilityIterators.ParagraphTextSegmentIterator
  /frameworks/base/core/java/android/widget/
AccessibilityIterators.java 79 public int[] preceding(int offset) { method in class:AccessibilityIterators.LineTextSegmentIterator
165 public int[] preceding(int offset) { method in class:AccessibilityIterators.PageTextSegmentIterator
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
SimpleFilteredSentenceBreakIterator.java 214 public int preceding(int offset) { method in class:SimpleFilteredSentenceBreakIterator
215 return internalPrev(delegate.preceding(offset));
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BreakIterator.java 308 * @return The position of the last boundary position preceding the
329 * boundary position preceding the specified position. (Whether the
335 * @return The position of the last boundary position preceding
339 public int preceding(int offset) { method in class:BreakIterator
    [all...]
SearchIterator.java 580 * @return The character index of the first match preceding
587 public final int preceding(int position) { method in class:SearchIterator
RuleBasedBreakIterator.java 423 * Moves the iterator backwards, to the boundary preceding the current one.
424 * @return The position of the boundary position immediately preceding the starting position.
461 public int preceding(int offset) { method in class:RuleBasedBreakIterator
471 fBreakCache.preceding(adjustedOffset);
512 // fBreakCache.seek(), above, left us on the preceding boundary, so advance one.
1198 boolean preceding(int fromPos) { method in class:RuleBasedBreakIterator.DictionaryCache
1444 void preceding(int startPos) { method in class:RuleBasedBreakIterator.DictionaryCache.BreakCache
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
SearchIterator.java 602 * @return The character index of the first match preceding
610 public final int preceding(int position) { method in class:SearchIterator
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
SimpleFilteredSentenceBreakIterator.java 212 public int preceding(int offset) { method in class:SimpleFilteredSentenceBreakIterator
213 return internalPrev(delegate.preceding(offset));
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BreakIterator.java 315 * @return The position of the last boundary position preceding the
338 * boundary position preceding the specified position. (Whether the
344 * @return The position of the last boundary position preceding
349 public int preceding(int offset) { method in class:BreakIterator
    [all...]
RuleBasedBreakIterator.java 433 * Moves the iterator backwards, to the boundary preceding the current one.
434 * @return The position of the boundary position immediately preceding the starting position.
474 public int preceding(int offset) { method in class:RuleBasedBreakIterator
484 fBreakCache.preceding(adjustedOffset);
527 // fBreakCache.seek(), above, left us on the preceding boundary, so advance one.
1219 boolean preceding(int fromPos) { method in class:RuleBasedBreakIterator.DictionaryCache
1465 void preceding(int startPos) { method in class:RuleBasedBreakIterator.DictionaryCache.BreakCache
    [all...]
  /frameworks/base/core/java/android/text/
Selection.java 446 public int preceding(int position); method in interface:Selection.PositionIterator
453 final int offset = iter.preceding(getSelectionEnd(text));
  /external/jdiff/src/jdiff/
DiffMyers.java 747 to be the "change". The only exception is if the preceding blank line
758 int preceding = -1; local
772 will count as the preceding batch of changes. */
803 && !((preceding >= 0 && start == preceding)
819 preceding = i;
  /external/v8/src/arm64/
instructions-arm64.h 132 V8_INLINE const Instruction* preceding(int count = 1) const { function in class:v8::internal::Instruction
136 V8_INLINE Instruction* preceding(int count = 1) { function in class:v8::internal::Instruction
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
datetimemodule.c 246 int n, n1, n4, n100, n400, leapyear, preceding; local
313 preceding = (_days_before_month[*month] + (*month > 2 && leapyear));
314 if (preceding > n) {
317 preceding -= days_in_month(*year, *month);
319 n -= preceding;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
datetimemodule.c 246 int n, n1, n4, n100, n400, leapyear, preceding; local
313 preceding = (_days_before_month[*month] + (*month > 2 && leapyear));
314 if (preceding > n) {
317 preceding -= days_in_month(*year, *month);
319 n -= preceding;
    [all...]

Completed in 907 milliseconds

1 2 3