HomeSort by relevance Sort by last modified time
    Searched defs:preceding (Results 1 - 25 of 53) 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 250 * DONE is returned by previous(), next(), next(int), preceding(int)
305 * Returns the boundary preceding the current boundary. If the current boundary
308 * current position is set to the boundary preceding the current boundary.
332 * Returns the last boundary preceding the specified character offset. If the
346 public int preceding(int offset) { method in class:BreakIterator
388 * following(int) or preceding(int). If any of these methods returns
400 * @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/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
  /frameworks/base/core/java/android/text/
Selection.java 375 public int preceding(int position); method in interface:Selection.PositionIterator
382 final int offset = iter.preceding(getSelectionEnd(text));
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
SimpleFilteredSentenceBreakIterator.java 211 public int preceding(int offset) { method in class:SimpleFilteredSentenceBreakIterator
212 return internalPrev(delegate.preceding(offset));
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BreakIterator.java 306 * @return The position of the last boundary position preceding the
327 * boundary position preceding the specified position. (Whether the
333 * @return The position of the last boundary position preceding
337 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 566 // preceding() to do the work. They should never recurse in this case.
568 return preceding(endPos);
584 * Moves the iterator backwards, to the last boundary preceding this one.
585 * @return The position of the last boundary position preceding this one.
664 // fLastBreakTag wants to have the value for section of text preceding
800 public int preceding(int offset) { method in class:RuleBasedBreakIterator
    [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 209 public int preceding(int offset) { method in class:SimpleFilteredSentenceBreakIterator
210 return internalPrev(delegate.preceding(offset));
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BreakIterator.java 313 * @return The position of the last boundary position preceding the
336 * boundary position preceding the specified position. (Whether the
342 * @return The position of the last boundary position preceding
347 public int preceding(int offset) { method in class:BreakIterator
    [all...]
RuleBasedBreakIterator.java 576 // preceding() to do the work. They should never recurse in this case.
578 return preceding(endPos);
594 * Moves the iterator backwards, to the last boundary preceding this one.
595 * @return The position of the last boundary position preceding this one.
675 // fLastBreakTag wants to have the value for section of text preceding
813 public int preceding(int offset) { method in class:RuleBasedBreakIterator
    [all...]
  /external/icu/icu4c/source/common/
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 591 * Advances the iterator backwards, to the last boundary preceding this one.
592 * @return The position of the last boundary position preceding this one.
665 // fLastBreakTag wants to have the value for section of text preceding
802 int32_t RuleBasedBreakIterator::preceding(int32_t offset) { function in class:RuleBasedBreakIterator
855 // For breakitereator::preceding only, these non-code-point indices need to be moved
865 // affects only preceding(), seems cleaner, but is slightly different.
    [all...]
  /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...]
  /external/guava/guava/lib/
jdiff.jar 
  /external/guice/lib/build/jdiff/
jdiff.jar 

Completed in 461 milliseconds

1 2 3