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

1 2

  /libcore/luni/src/main/java/java/text/
RuleBasedBreakIterator.java 24 * We need this because BreakIterator.isBoundary and BreakIterator.preceding are non-abstract,
154 * @see java.text.BreakIterator#preceding(int)
157 public int preceding(int offset) { method in class:RuleBasedBreakIterator
159 return wrapped.preceding(offset);
BreakIterator.java 366 * Returns the position of last boundary preceding the given offset, and
372 * @return the position of the last boundary preceding the given offset.
376 public int preceding(int offset) { method in class:BreakIterator
377 return wrapped.preceding(offset);
  /external/webkit/WebCore/platform/text/wince/
TextBreakIteratorWince.cpp 66 int preceding(int position) function in class:WebCore::TextBreakIterator
289 return breakIterator->preceding(position);
  /external/chromium/third_party/icu/public/i18n/unicode/
search.h 353 * @return The character index of the first match preceding
359 int32_t preceding(int32_t position, UErrorCode &status);
  /external/icu4c/i18n/unicode/
search.h 353 * @return The character index of the first match preceding
359 int32_t preceding(int32_t position, UErrorCode &status);
  /external/chromium/third_party/icu/public/common/unicode/
brkiter.h 223 * Return the boundary preceding the current boundary.
256 * Return the first boundary preceding the specified offset.
263 virtual int32_t preceding(int32_t offset) = 0;
rbbi.h 431 * Moves the iterator backwards, to the last boundary preceding this one.
432 * @return The position of the last boundary position preceding this one.
453 virtual int32_t preceding(int32_t offset);
  /external/chromium/third_party/icu/source/i18n/
brktrans.cpp 91 bi->preceding(offsets.start);
search.cpp 208 int32_t SearchIterator::preceding(int32_t position, function in class:SearchIterator
  /external/icu4c/common/unicode/
brkiter.h 223 * Return the boundary preceding the current boundary.
256 * Return the first boundary preceding the specified offset.
263 virtual int32_t preceding(int32_t offset) = 0;
rbbi.h 431 * Moves the iterator backwards, to the last boundary preceding this one.
432 * @return The position of the last boundary position preceding this one.
453 virtual int32_t preceding(int32_t offset);
  /external/icu4c/i18n/
brktrans.cpp 91 bi->preceding(offsets.start);
search.cpp 226 int32_t SearchIterator::preceding(int32_t position, function in class:SearchIterator
  /libcore/luni/src/main/java/com/ibm/icu4jni/text/
NativeBreakIterator.java 126 public int preceding(int offset) { method in class:NativeBreakIterator
  /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/chromium/third_party/icu/source/test/intltest/
rbbiapts.cpp 303 TEST_ASSERT(rb->preceding(2) == 0);
305 //if(rb->preceding(2) != 3) {
522 // Preceding
524 i = bi->preceding(4);
526 errln("Incorrect value from bi->preceding() at line %d. Expected 3, got %d", __LINE__, i);
529 i = bi->preceding(10);
531 errln("Incorrect value from bi->preceding() at line %d. Expected 9, got %d", __LINE__, i);
534 i = bi->preceding(1);
536 errln("Incorrect value from bi->preceding() at line %d. Expected 0, got %d", __LINE__, i);
539 i = bi->preceding(0)
    [all...]
srchtest.cpp 301 // start of preceding matches
    [all...]
  /external/icu4c/test/intltest/
rbbiapts.cpp 298 TEST_ASSERT(rb->preceding(2) == 0);
300 //if(rb->preceding(2) != 3) {
509 // Preceding
511 i = bi->preceding(4);
513 errln("Incorrect value from bi->preceding() at line %d. Expected 3, got %d", __LINE__, i);
516 i = bi->preceding(10);
518 errln("Incorrect value from bi->preceding() at line %d. Expected 9, got %d", __LINE__, i);
521 i = bi->preceding(1);
523 errln("Incorrect value from bi->preceding() at line %d. Expected 0, got %d", __LINE__, i);
526 i = bi->preceding(0)
    [all...]
srchtest.cpp 310 // start of preceding matches
    [all...]
  /external/chromium/third_party/icu/source/common/
ubrk.cpp 232 return ((RuleBasedBreakIterator*)bi)->RuleBasedBreakIterator::preceding(offset);
rbbi.cpp 539 * Advances the iterator backwards, to the last boundary preceding this one.
540 * @return The position of the last boundary position preceding this one.
614 // fLastBreakTag wants to have the value for section of text preceding
747 int32_t RuleBasedBreakIterator::preceding(int32_t offset) { function in class:RuleBasedBreakIterator
796 // For breakitereator::preceding only, these non-code-point indices need to be moved
806 // affects only preceding(), seems cleaner, but is slightly different.
    [all...]
  /external/icu4c/common/
ubrk.cpp 232 return ((RuleBasedBreakIterator*)bi)->RuleBasedBreakIterator::preceding(offset);
rbbi.cpp 541 * Advances the iterator backwards, to the last boundary preceding this one.
542 * @return The position of the last boundary position preceding this one.
616 // fLastBreakTag wants to have the value for section of text preceding
749 int32_t RuleBasedBreakIterator::preceding(int32_t offset) { function in class:RuleBasedBreakIterator
798 // For breakitereator::preceding only, these non-code-point indices need to be moved
808 // affects only preceding(), seems cleaner, but is slightly different.
    [all...]
  /external/icu4c/layoutex/
ParagraphLayout.cpp 976 // on a break, the "+ 1" will cause preceding to
978 return fBreakIterator->preceding(charIndex + 1);
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/compiler/
XPathParser.java     [all...]

Completed in 887 milliseconds

1 2