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.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.java62 public void resetToOffset(int newOffset) { argument
65 start = segmentStart = pos = rawStart + newOffset;
H A DCollationIterator.java227 public abstract void resetToOffset(int newOffset); argument
H A DCollationDataBuilder.java1253 public void resetToOffset(int newOffset) { argument
1255 pos = newOffset;
/external/icu/icu4c/source/i18n/
H A Duitercollationiterator.cpp32 UIterCollationIterator::resetToOffset(int32_t newOffset) { argument
34 iter.move(&iter, newOffset, UITER_START);
87 FCDUIterCollationIterator::resetToOffset(int32_t newOffset) { argument
88 UIterCollationIterator::resetToOffset(newOffset);
89 start = newOffset;
H A Dutf16collationiterator.cpp47 UTF16CollationIterator::resetToOffset(int32_t newOffset) { argument
49 pos = start + newOffset;
189 FCDUTF16CollationIterator::resetToOffset(int32_t newOffset) { argument
191 start = segmentStart = pos = rawStart + newOffset;
H A Dutf8collationiterator.cpp32 UTF8CollationIterator::resetToOffset(int32_t newOffset) { argument
34 pos = newOffset;
132 FCDUTF8CollationIterator::resetToOffset(int32_t newOffset) { argument
134 start = pos = newOffset;
H A Dcoleitr.cpp227 void CollationElementIterator::setOffset(int32_t newOffset, argument
231 if (0 < newOffset && newOffset < string_.length()) {
232 int32_t offset = newOffset;
242 if (offset < newOffset) {
247 // Find the last safe offset no greater than newOffset by iterating forward.
255 if (offset <= newOffset) {
258 } while (offset < newOffset);
259 newOffset = lastSafeOffset;
262 iter_->resetToOffset(newOffset);
[all...]
H A Dcollationdatabuilder.cpp132 virtual void resetToOffset(int32_t newOffset);
209 DataBuilderCollationIterator::resetToOffset(int32_t newOffset) { argument
211 pos = newOffset;
H A Dcalendar.cpp2218 int32_t newOffset = get(UCAL_DST_OFFSET, status) + get(UCAL_ZONE_OFFSET, status); local
2219 if (newOffset != prevOffset) {
2224 int32_t adjAmount = prevOffset - newOffset;
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DIterCollationIterator.java28 public void resetToOffset(int newOffset) { argument
30 iter.setIndex(newOffset);
H A DUTF16CollationIterator.java50 public void resetToOffset(int newOffset) { argument
52 pos = start + newOffset;
H A DFCDIterCollationIterator.java30 public void resetToOffset(int newOffset) { argument
31 super.resetToOffset(newOffset);
32 start = newOffset;
H A DFCDUTF16CollationIterator.java60 public void resetToOffset(int newOffset) { argument
63 start = segmentStart = pos = rawStart + newOffset;
H A DCollationIterator.java225 public abstract void resetToOffset(int newOffset); argument
H A DCollationDataBuilder.java1252 public void resetToOffset(int newOffset) { argument
1254 pos = newOffset;
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DCollationElementIterator.java444 * @param newOffset the character offset into the original source string to
448 public void setOffset(int newOffset) { argument
449 if (0 < newOffset && newOffset < string_.length()) {
450 int offset = newOffset;
460 if (offset < newOffset) {
465 // Find the last safe offset no greater than newOffset by iterating forward.
472 if (offset <= newOffset) {
475 } while (offset < newOffset);
476 newOffset
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DCollationElementIterator.java457 * @param newOffset the character offset into the original source string to
462 public void setOffset(int newOffset) { argument
463 if (0 < newOffset && newOffset < string_.length()) {
464 int offset = newOffset;
474 if (offset < newOffset) {
479 // Find the last safe offset no greater than newOffset by iterating forward.
486 if (offset <= newOffset) {
489 } while (offset < newOffset);
490 newOffset
[all...]
/external/icu/icu4c/source/common/
H A Drbbi.cpp863 int32_t newOffset = (int32_t)UTEXT_GETNATIVEINDEX(fText); local
864 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/skia/src/animator/
H A DSkScriptTokenizer.cpp1019 size_t newOffset = getTokenOffset(); local
1026 branch.fOffset = SkToU16(newOffset);
/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 ...

Completed in 1677 milliseconds

123