Searched refs:newOffset (Results 1 - 25 of 66) 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;
/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;
/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/swiftshader/src/OpenGL/libGLESv2/
H A DBuffer.h71 void set(Buffer *newBuffer, int newOffset = 0, int newSize = 0)
74 offset = 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/icu4c/source/i18n/
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 Duitercollationiterator.h42 virtual void resetToOffset(int32_t newOffset);
74 virtual void resetToOffset(int32_t newOffset);
H A Dutf8collationiterator.h43 virtual void resetToOffset(int32_t newOffset);
90 virtual void resetToOffset(int32_t newOffset);
H A Dutf16collationiterator.h47 virtual void resetToOffset(int32_t newOffset);
100 virtual void resetToOffset(int32_t newOffset);
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;
/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/dng_sdk/source/
H A Ddng_info.h144 uint64 newOffset);
/external/icu/icu4c/source/i18n/unicode/
H A Dcoleitr.h267 * @param newOffset the new offset.
272 void setOffset(int32_t newOffset, UErrorCode& status);
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timezone/
H A DICUZDump.java99 int newOffset = tz.getOffset(newt);
101 if (offset != newOffset || inDst != newInDst) {
121 w.write(formatter.format(hit, newOffset, tz.inDaylightTime(hit)));
123 offset = newOffset;
/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/icu/android_icu4j/src/main/tests/android/icu/dev/util/
H A DCollectionUtilities.java450 int newOffset = testSet.matchesAt(string, offset);
451 if (newOffset < 0) return offset;
464 int newOffset = testSet.matchesAt(string, offset);
465 if (newOffset >= 0) return offset;
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DCollectionUtilities.java449 int newOffset = testSet.matchesAt(string, offset);
450 if (newOffset < 0) return offset;
463 int newOffset = testSet.matchesAt(string, offset);
464 if (newOffset >= 0) return offset;

Completed in 497 milliseconds

123