Searched defs:preceding (Results 1 - 25 of 28) sorted by relevance

12

/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
H A DBreakIteratorICU.java83 public int preceding(int offset) { method in class:BreakIteratorICU
84 return fIcuBrkItr.preceding(offset);
/external/icu/icu4c/source/i18n/
H A Dsearch.cpp228 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/
H A DBreakIterator.java302 * @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);
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DSimpleFilteredSentenceBreakIterator.java214 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/
H A DSearchIterator.java580 * @return The character index of the first match preceding
587 public final int preceding(int position) { method in class:SearchIterator
H A DBreakIterator.java308 * @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
H A DRuleBasedBreakIterator.java423 * 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
1355 // // or preceding(). Optimizes sequential access.
1361 int fBoundary; // Current boundary. Set by preceding(), following().
1362 int fStatusIndex; // Current rule status index. Set by preceding, following().
1444 void preceding(in method in class:RuleBasedBreakIterator.BreakCache
[all...]
/external/icu/icu4c/source/common/
H A Drbbi_cache.cpp86 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
H A Dustr_titlecase_brkiter.cpp62 int32_t preceding(int32_t offset) U_OVERRIDE;
120 int32_t WholeStringBreakIterator::preceding(int32_t /*offset*/) { return 0; } function in class:WholeStringBreakIterator
H A Dfilteredbrk.cpp192 virtual int32_t preceding(int32_t offset);
411 SimpleFilteredSentenceBreakIterator::preceding(int32_t offset) { function in class:SimpleFilteredSentenceBreakIterator
412 return internalPrev(fDelegate->preceding(offset));
H A Drbbi.cpp586 * 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.
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DSearchIterator.java602 * @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/
H A DSimpleFilteredSentenceBreakIterator.java212 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/
H A DBreakIterator.java315 * @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
H A DRuleBasedBreakIterator.java433 * 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
1376 // // or preceding(). Optimizes sequential access.
1382 int fBoundary; // Current boundary. Set by preceding(), following().
1383 int fStatusIndex; // Current rule status index. Set by preceding, following().
1465 void preceding(in method in class:RuleBasedBreakIterator.BreakCache
[all...]
/external/v8/src/arm64/
H A Dinstructions-arm64.h132 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
/external/python/cpython2/Modules/
H A Ddatetimemodule.c200 /* year, month -> number of days in year preceding first day of month */
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;
/external/python/cpython3/Modules/
H A D_datetimemodule.c228 /* year, month -> number of days in year preceding first day of month */
268 int n, n1, n4, n100, n400, leapyear, preceding; local
335 preceding = (_days_before_month[*month] + (*month > 2 && leapyear));
336 if (preceding > n) {
339 preceding -= days_in_month(*year, *month);
341 n -= preceding;
/external/guava/guava/lib/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/guice/lib/build/jdiff/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/guice/extensions/persist/lib/
H A Ddb4o-6.4.14.8131-java5.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/db4o/ com/db4o/activation/ com/db4o/cluster/ com/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 3575 milliseconds

12