Searched defs:move32 (Results 1 - 2 of 2) sorted by relevance

/external/icu/icu4c/source/common/
H A Duchriter.cpp322 UCharCharacterIterator::move32(int32_t delta, CharacterIterator::EOrigin origin) { function in class:UCharCharacterIterator
/external/icu/icu4c/source/test/intltest/
H A Dcitrtest.cpp104 virtual int32_t move32(int32_t delta, CharacterIterator::EOrigin origin){ function in class:SCharacterIterator
570 i=iter.move32(1, CharacterIterator::kStart);
573 errln("move32(1, kStart) didn't work correctly expected %X got %X", c, text.char32At(1) );
575 i=iter.move32(2, CharacterIterator::kCurrent);
578 errln("move32(2, kCurrent) didn't work correctly expected %X got %X i=%ld", c, text.char32At(4), i);
580 i=iter.move32(-2, CharacterIterator::kCurrent);
583 errln("move32(-2, kCurrent) didn't work correctly expected %X got %X i=%d", c, text.char32At(1), i);
586 i=iter.move32(-2, CharacterIterator::kEnd);
589 errln("move32(-2, kEnd) didn't work correctly expected %X got %X i=%d", c, text.char32At((text.length()-3)), i);
1119 virtual int32_t move32(int32_ function in class:SubCharIter
[all...]

Completed in 52 milliseconds