Searched defs:newOffset (Results 1 - 25 of 51) sorted by relevance

123

/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DIterCollationIterator.java32 public void resetToOffset(int newOffset) { argument
34 iter.setIndex(newOffset);
H A DUTF16CollationIterator.java54 public void resetToOffset(int newOffset) { argument
56 pos = start + newOffset;
H A DFCDIterCollationIterator.java34 public void resetToOffset(int newOffset) { argument
35 super.resetToOffset(newOffset);
36 start = newOffset;
H A DFCDUTF16CollationIterator.java74 public void resetToOffset(int newOffset) { argument
77 start = segmentStart = pos = rawStart + newOffset;
H A DCollationIterator.java235 public abstract void resetToOffset(int newOffset); argument
H A DCollationDataBuilder.java1255 public void resetToOffset(int newOffset) { argument
1257 pos = newOffset;
/external/icu/icu4c/source/i18n/
H A Duitercollationiterator.cpp34 UIterCollationIterator::resetToOffset(int32_t newOffset) { argument
36 iter.move(&iter, newOffset, UITER_START);
89 FCDUIterCollationIterator::resetToOffset(int32_t newOffset) { argument
90 UIterCollationIterator::resetToOffset(newOffset);
91 start = newOffset;
H A Dutf16collationiterator.cpp49 UTF16CollationIterator::resetToOffset(int32_t newOffset) { argument
51 pos = start + newOffset;
191 FCDUTF16CollationIterator::resetToOffset(int32_t newOffset) { argument
193 start = segmentStart = pos = rawStart + newOffset;
H A Dutf8collationiterator.cpp34 UTF8CollationIterator::resetToOffset(int32_t newOffset) { argument
36 pos = newOffset;
134 FCDUTF8CollationIterator::resetToOffset(int32_t newOffset) { argument
136 start = pos = newOffset;
H A Dcoleitr.cpp229 void CollationElementIterator::setOffset(int32_t newOffset, argument
233 if (0 < newOffset && newOffset < string_.length()) {
234 int32_t offset = newOffset;
244 if (offset < newOffset) {
249 // Find the last safe offset no greater than newOffset by iterating forward.
257 if (offset <= newOffset) {
260 } while (offset < newOffset);
261 newOffset = lastSafeOffset;
264 iter_->resetToOffset(newOffset);
[all...]
H A Dcollationdatabuilder.cpp134 virtual void resetToOffset(int32_t newOffset);
211 DataBuilderCollationIterator::resetToOffset(int32_t newOffset) { argument
213 pos = newOffset;
H A Dcalendar.cpp2217 int32_t newOffset = get(UCAL_DST_OFFSET, status) + get(UCAL_ZONE_OFFSET, status); local
2218 if (newOffset != prevOffset) {
2223 int32_t adjAmount = prevOffset - newOffset;
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DIterCollationIterator.java30 public void resetToOffset(int newOffset) { argument
32 iter.setIndex(newOffset);
H A DUTF16CollationIterator.java52 public void resetToOffset(int newOffset) { argument
54 pos = start + newOffset;
H A DFCDIterCollationIterator.java32 public void resetToOffset(int newOffset) { argument
33 super.resetToOffset(newOffset);
34 start = newOffset;
H A DFCDUTF16CollationIterator.java72 public void resetToOffset(int newOffset) { argument
75 start = segmentStart = pos = rawStart + newOffset;
H A DCollationIterator.java233 public abstract void resetToOffset(int newOffset); argument
H A DCollationDataBuilder.java1254 public void resetToOffset(int newOffset) { argument
1256 pos = newOffset;
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DCollationElementIterator.java446 * @param newOffset the character offset into the original source string to
450 public void setOffset(int newOffset) { argument
451 if (0 < newOffset && newOffset < string_.length()) {
452 int offset = newOffset;
462 if (offset < newOffset) {
467 // Find the last safe offset no greater than newOffset by iterating forward.
474 if (offset <= newOffset) {
477 } while (offset < newOffset);
478 newOffset
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DCollationElementIterator.java459 * @param newOffset the character offset into the original source string to
464 public void setOffset(int newOffset) { argument
465 if (0 < newOffset && newOffset < string_.length()) {
466 int offset = newOffset;
476 if (offset < newOffset) {
481 // Find the last safe offset no greater than newOffset by iterating forward.
488 if (offset <= newOffset) {
491 } while (offset < newOffset);
492 newOffset
[all...]
/external/icu/icu4c/source/common/
H A Drbbi.cpp850 int32_t newOffset = (int32_t)UTEXT_GETNATIVEINDEX(fText); local
851 if (newOffset != offset) {
/external/javassist/src/main/javassist/bytecode/
H A DCodeIterator.java874 offset = newOffset(i, offset, where, gapLength, exclusive);
882 offset = newOffset(i, offset, where, gapLength, exclusive);
900 int defaultbyte = newOffset(i, ByteArray.read32bit(code, i2),
911 int offset = newOffset(i, ByteArray.read32bit(code, i0),
932 int defaultbyte = newOffset(i, ByteArray.read32bit(code, i2),
942 int offset = newOffset(i,
973 private static int newOffset(int i, int offset, int where, method in class:CodeIterator
1283 // This code is different from the code in CodeIterator#newOffset().
/external/proguard/src/proguard/classfile/editor/
H A DCodeAttributeEditor.java79 private int newOffset; field in class:CodeAttributeEditor
641 newOffset = 0;
655 if (newOffset > oldOffset)
663 newInstructionOffsets[oldOffset] = newOffset;
665 return newOffset;
677 newInstructionOffsets[oldOffset] = newOffset;
683 newOffset += preInstruction.length(newOffset);
691 newOffset += replacementInstruction.length(newOffset);
[all...]
/external/jacoco/
H A Dasm-debug-all-5.0.1.jarMETA-INF/MANIFEST.MF org/ org/objectweb/ org/objectweb/asm/ org/objectweb/asm/AnnotationVisitor.class AnnotationVisitor ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 688 milliseconds

123