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

1 2

  /dalvik/libcore/text/src/main/java/java/text/
RuleBasedBreakIterator.java 155 * @see java.text.BreakIterator#preceding(int)
158 public int preceding(int offset) { method in class:RuleBasedBreakIterator
160 return wrapped.preceding(offset);
BreakIterator.java 400 * Returns the position of last boundary preceding the given offset, and
406 * @return the position of the last boundary preceding the given offset.
410 public int preceding(int offset) { method in class:BreakIterator
411 return wrapped.preceding(offset);
  /dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
BreakIteratorTest.java 242 method = "preceding",
247 iterator.preceding(2);
252 assertEquals(0, iterator.preceding(2));
253 assertEquals(2, iterator.preceding(3));
254 assertEquals(16, iterator.preceding(17));
255 assertEquals(17, iterator.preceding(18));
256 assertEquals(18, iterator.preceding(19));
258 iterator.preceding(-1);
263 iterator.preceding(TEXT.length());
  /external/webkit/WebCore/platform/text/wince/
TextBreakIteratorWince.cpp 66 int preceding(int position) function in class:WebCore::TextBreakIterator
289 return breakIterator->preceding(position);
  /dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/
RuleBasedBreakIterator.java 129 public int preceding(int offset) { method in class:RuleBasedBreakIterator
BreakIterator.java 111 public abstract int preceding(int offset); method in class:BreakIterator
  /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/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 208 int32_t SearchIterator::preceding(int32_t position, function in class:SearchIterator
  /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/icu4c/test/intltest/
rbbiapts.cpp 298 TEST_ASSERT(rb->preceding(2) == 0);
300 //if(rb->preceding(2) != 3) {
517 // Preceding
519 i = bi->preceding(4);
521 errln("Incorrect value from bi->preceding() at line %d. Expected 3, got %d", __LINE__, i);
524 i = bi->preceding(10);
526 errln("Incorrect value from bi->preceding() at line %d. Expected 9, got %d", __LINE__, i);
529 i = bi->preceding(1);
531 errln("Incorrect value from bi->preceding() at line %d. Expected 0, got %d", __LINE__, i);
534 i = bi->preceding(0)
    [all...]
srchtest.cpp 301 // start of preceding matches
    [all...]
rbbitst.cpp     [all...]
  /external/icu4c/common/
ubrk.cpp 232 return ((RuleBasedBreakIterator*)bi)->RuleBasedBreakIterator::preceding(offset);
rbbi.cpp 538 * Advances the iterator backwards, to the last boundary preceding this one.
539 * @return The position of the last boundary position preceding this one.
613 // fLastBreakTag wants to have the value for section of text preceding
746 int32_t RuleBasedBreakIterator::preceding(int32_t offset) { function in class:RuleBasedBreakIterator
795 // For breakitereator::preceding only, these non-code-point indices need to be moved
805 // affects only preceding(), seems cleaner, but is slightly different.
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/compiler/
XPathParser.java     [all...]
  /external/icu4c/layoutex/
ParagraphLayout.cpp 967 // on a break, the "+ 1" will cause preceding to
969 return fBreakIterator->preceding(charIndex + 1);
    [all...]
  /external/v8/benchmarks/
richards.js 253 * @param {TaskControlBlock} link the preceding block in the linked block list
  /external/webkit/SunSpider/tests/v8-v4/
v8-richards.js 248 * @param {TaskControlBlock} link the preceding block in the linked block list
  /external/blktrace/btt/doc/
btt.tex 314 This table and the preceding one have to be considered together --
315 in the sample output in the immediately preceding table one can see
    [all...]
  /external/grub/docs/
texinfo.tex 757 % normal leading is inserted relative to the preceding line.
    [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]
  /prebuilt/sdk/5/
android.jar 

Completed in 570 milliseconds

1 2