/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | uchriter.h | 340 #ifdef move32 342 #undef move32 macro 344 virtual int32_t move32(int32_t delta, EOrigin origin);
|
H A D | chariter.h | 266 * it.move32(3, CharacterIterator::kStart); 364 * Origin enumeration for the move() and move32() functions. 613 #ifdef move32 615 #undef move32 macro 617 virtual int32_t move32(int32_t delta, EOrigin origin) = 0;
|
/third_party/icu/icu4c/source/common/unicode/ |
H A D | chariter.h | 266 * it.move32(3, CharacterIterator::kStart); 364 * Origin enumeration for the move() and move32() functions. 613 #ifdef move32 615 #undef move32 macro 617 virtual int32_t move32(int32_t delta, EOrigin origin) = 0;
|
H A D | uchriter.h | 340 #ifdef move32 342 #undef move32 macro 344 virtual int32_t move32(int32_t delta, EOrigin origin) override;
|
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | chariter.h | 266 * it.move32(3, CharacterIterator::kStart); 364 * Origin enumeration for the move() and move32() functions. 613 #ifdef move32 615 #undef move32 macro 617 virtual int32_t move32(int32_t delta, EOrigin origin) = 0;
|
H A D | uchriter.h | 340 #ifdef move32 342 #undef move32 macro 344 virtual int32_t move32(int32_t delta, EOrigin origin) override;
|
/third_party/icu/icu4c/source/common/ |
H A D | normlzr.cpp | 26 #if defined(move32) 27 // System can define move32 intrinsics, but the char iters define move32 method 29 #undef move32 macro 493 text->move32(-1, CharacterIterator::kCurrent); in nextNormalize()
|
H A D | uchriter.cpp | 322 UCharCharacterIterator::move32(int32_t delta, CharacterIterator::EOrigin origin) { in move32() function in UCharCharacterIterator
|
/third_party/node/deps/icu-small/source/common/ |
H A D | normlzr.cpp | 26 #if defined(move32) 27 // System can define move32 intrinsics, but the char iters define move32 method 29 #undef move32 macro 493 text->move32(-1, CharacterIterator::kCurrent); in nextNormalize()
|
H A D | uchriter.cpp | 322 UCharCharacterIterator::move32(int32_t delta, CharacterIterator::EOrigin origin) { in move32() function in UCharCharacterIterator
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | normlzr.cpp | 26 #if defined(move32) 27 // System can define move32 intrinsics, but the char iters define move32 method 29 #undef move32 macro 493 text->move32(-1, CharacterIterator::kCurrent); in nextNormalize()
|
H A D | uchriter.cpp | 322 UCharCharacterIterator::move32(int32_t delta, CharacterIterator::EOrigin origin) { in move32() function in UCharCharacterIterator
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | citrtest.cpp | 104 virtual int32_t move32(int32_t delta, CharacterIterator::EOrigin origin) override { 570 i=iter.move32(1, CharacterIterator::kStart); in TestIterationUChar32() 573 errln("move32(1, kStart) didn't work correctly expected %X got %X", c, text.char32At(1) ); in TestIterationUChar32() 575 i=iter.move32(2, CharacterIterator::kCurrent); in TestIterationUChar32() 578 errln("move32(2, kCurrent) didn't work correctly expected %X got %X i=%ld", c, text.char32At(4), i); in TestIterationUChar32() 580 i=iter.move32(-2, CharacterIterator::kCurrent); in TestIterationUChar32() 583 errln("move32(-2, kCurrent) didn't work correctly expected %X got %X i=%d", c, text.char32At(1), i); in TestIterationUChar32() 586 i=iter.move32(-2, CharacterIterator::kEnd); in TestIterationUChar32() 589 errln("move32(-2, kEnd) didn't work correctly expected %X got %X i=%d", c, text.char32At((text.length()-3)), i); in TestIterationUChar32() 1119 virtual int32_t move32(int32_ [all...] |