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

1 2 3 4 5 6 7

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
bundle-bad.l 3 [^:]*:6:.*\.bundle_unlock without preceding \.bundle_lock
9 [^:]*:36:.*\.bundle_unlock without preceding \.bundle_lock
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
b-bend3.d 6 #error: invalid mmo file: YZ of lop_end .* not equal to the number of tetras to the preceding lop_stab
b-badm2.s 3 % the number of tetras to the preceding LOP_STAB.
b-bend.s 4 % number of bytes between it and a preceding lop_stab.
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
BreakIteratorTest.java 138 iterator.preceding(2);
143 assertEquals(0, iterator.preceding(2));
144 assertEquals(2, iterator.preceding(3));
145 assertEquals(16, iterator.preceding(17));
146 assertEquals(17, iterator.preceding(18));
147 assertEquals(18, iterator.preceding(19));
149 iterator.preceding(-1);
153 assertEquals(TEXT.length() - 1, iterator.preceding(TEXT.length()));
154 assertEquals(BreakIterator.DONE, iterator.preceding(0));
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
AbstractBreakIteratorTests.java 92 int pos = bi.preceding(0);
93 TestFmwk.assertEquals("BreakIterator preceding position not correct", BreakIterator.DONE, pos);
95 pos = bi.preceding(5);
96 TestFmwk.assertEquals("BreakIterator preceding position not correct", 4, pos);
RBBIAPITest.java 300 * Testing the methods lastt(), previous(), and preceding() of RuleBasedBreakIterator
306 logln("Testing last(),previous(), preceding() with custom rules");
319 q = wordIter1.preceding(25);
324 q = wordIter1.preceding(20);
326 p = wordIter1.preceding(wordIter1.first());
328 errln("ERROR: preceding() at starting position returned #" + p + " instead of 0");
341 q = sentIter1.preceding(40);
343 q = sentIter1.preceding(25);
347 q = sentIter1.preceding(sentIter1.first());
349 errln("ERROR: previous()/preceding() at starting position returned #
    [all...]
  /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);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
AbstractBreakIteratorTests.java 91 int pos = bi.preceding(0);
92 TestFmwk.assertEquals("BreakIterator preceding position not correct", BreakIterator.DONE, pos);
94 pos = bi.preceding(5);
95 TestFmwk.assertEquals("BreakIterator preceding position not correct", 4, pos);
RBBIAPITest.java 299 * Testing the methods lastt(), previous(), and preceding() of RuleBasedBreakIterator
305 logln("Testing last(),previous(), preceding() with custom rules");
318 q = wordIter1.preceding(25);
323 q = wordIter1.preceding(20);
325 p = wordIter1.preceding(wordIter1.first());
327 errln("ERROR: preceding() at starting position returned #" + p + " instead of 0");
340 q = sentIter1.preceding(40);
342 q = sentIter1.preceding(25);
346 q = sentIter1.preceding(sentIter1.first());
348 errln("ERROR: previous()/preceding() at starting position returned #
    [all...]
  /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
  /libcore/luni/src/test/java/libcore/java/text/
BreakIteratorTest.java 158 it.preceding(-1);
164 assertEquals(BreakIterator.DONE, it.preceding(0));
165 assertEquals(0, it.preceding(1));
166 assertEquals(4, it.preceding(5));
169 it.preceding(6);
  /libcore/ojluni/src/main/java/java/text/
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);
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)
  /frameworks/base/core/tests/coretests/src/android/text/method/
WordIteratorTest.java 68 assertEquals(expectedWindowStart, wordIterator.preceding(expectedWindowStart + 1));
69 assertEquals(BreakIterator.DONE, wordIterator.preceding(expectedWindowStart));
84 wordIterator.preceding(-1);
85 fail("preceding with invalid offset should throw IllegalArgumentException.");
89 wordIterator.preceding(text.length() + 1);
90 fail("preceding with invalid offset should throw IllegalArgumentException.");
94 assertEquals(BreakIterator.DONE, wordIterator.preceding(text.indexOf('a')));
95 assertEquals(text.indexOf('a'), wordIterator.preceding(text.indexOf('c')));
96 assertEquals(text.indexOf('a'), wordIterator.preceding(text.indexOf('d')));
97 assertEquals(text.indexOf('d'), wordIterator.preceding(text.indexOf('e')))
    [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);
  /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...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
BreakIteratorTest.java 158 * Test method for 'com.ibm.icu.text.BreakIterator.preceding(int)'
161 assertEquals(98, cbr.preceding(pos));
162 assertEquals(98, wbr.preceding(pos));
163 assertEquals(97, lbr.preceding(pos));
164 assertEquals(62, sbr.preceding(pos));
  /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/icu4c/source/i18n/unicode/
search.h 361 * @return The character index of the first match preceding
367 int32_t preceding(int32_t position, UErrorCode &status);
  /cts/tests/tests/text/src/android/text/method/cts/
WordIteratorTest.java 62 assertEquals(BreakIterator.DONE, mWordIterator.preceding(0));
  /external/icu/icu4c/source/common/unicode/
rbbi.h 437 * Moves the iterator backwards, to the last boundary preceding this one.
438 * @return The position of the last boundary position preceding this one.
459 virtual int32_t preceding(int32_t offset);
brkiter.h 237 * Set the iterator position to the boundary preceding the current boundary.
270 * Set the iterator position to the first boundary preceding the specified offset.
277 virtual int32_t preceding(int32_t offset) = 0;
  /external/icu/icu4c/source/i18n/
brktrans.cpp 99 bi->preceding(offsets.start);
  /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;

Completed in 1551 milliseconds

1 2 3 4 5 6 7