/external/chromium_org/third_party/icu/source/common/ |
uchriter.cpp | 17 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(UCharCharacterIterator) 19 UCharCharacterIterator::UCharCharacterIterator() 26 UCharCharacterIterator::UCharCharacterIterator(const UChar* textPtr, 33 UCharCharacterIterator::UCharCharacterIterator(const UChar* textPtr, 41 UCharCharacterIterator::UCharCharacterIterator(const UChar* textPtr, 51 UCharCharacterIterator::UCharCharacterIterator(const UCharCharacterIterator& that [all...] |
schriter.cpp | 26 : UCharCharacterIterator(), 33 : UCharCharacterIterator(textStr.getBuffer(), textStr.length()), 37 UCharCharacterIterator::text = this->text.getBuffer(); 42 : UCharCharacterIterator(textStr.getBuffer(), textStr.length(), textPos), 46 UCharCharacterIterator::text = this->text.getBuffer(); 53 : UCharCharacterIterator(textStr.getBuffer(), textStr.length(), textBegin, textEnd, textPos), 57 UCharCharacterIterator::text = this->text.getBuffer(); 61 : UCharCharacterIterator(that), 65 UCharCharacterIterator::text = this->text.getBuffer(); 73 UCharCharacterIterator::operator=(that) [all...] |
normlzr.cpp | 43 text(new UCharCharacterIterator(str, length)), 443 CharacterIterator *newIter = new UCharCharacterIterator(newText, length);
|
rbbi.cpp | 375 fDCharIter = new UCharCharacterIterator(&c, 0); [all...] |
/external/icu/icu4c/source/common/ |
uchriter.cpp | 17 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(UCharCharacterIterator) 19 UCharCharacterIterator::UCharCharacterIterator() 26 UCharCharacterIterator::UCharCharacterIterator(const UChar* textPtr, 33 UCharCharacterIterator::UCharCharacterIterator(const UChar* textPtr, 41 UCharCharacterIterator::UCharCharacterIterator(const UChar* textPtr, 51 UCharCharacterIterator::UCharCharacterIterator(const UCharCharacterIterator& that [all...] |
schriter.cpp | 26 : UCharCharacterIterator(), 33 : UCharCharacterIterator(textStr.getBuffer(), textStr.length()), 37 UCharCharacterIterator::text = this->text.getBuffer(); 42 : UCharCharacterIterator(textStr.getBuffer(), textStr.length(), textPos), 46 UCharCharacterIterator::text = this->text.getBuffer(); 53 : UCharCharacterIterator(textStr.getBuffer(), textStr.length(), textBegin, textEnd, textPos), 57 UCharCharacterIterator::text = this->text.getBuffer(); 61 : UCharCharacterIterator(that), 65 UCharCharacterIterator::text = this->text.getBuffer(); 73 UCharCharacterIterator::operator=(that) [all...] |
normlzr.cpp | 43 text(new UCharCharacterIterator(str, length)), 443 CharacterIterator *newIter = new UCharCharacterIterator(newText, length);
|
rbbi.cpp | 375 fDCharIter = new UCharCharacterIterator(&c, 0); [all...] |
/external/chromium_org/third_party/icu/source/common/unicode/ |
uchriter.h | 33 class U_COMMON_API UCharCharacterIterator : public CharacterIterator { 44 UCharCharacterIterator(const UChar* textPtr, int32_t length); 59 UCharCharacterIterator(const UChar* textPtr, int32_t length, 78 UCharCharacterIterator(const UChar* textPtr, int32_t length, 87 * @param that The UCharCharacterIterator to be copied 90 UCharCharacterIterator(const UCharCharacterIterator& that); 96 virtual ~UCharCharacterIterator(); 106 UCharCharacterIterator& 107 operator=(const UCharCharacterIterator& that) [all...] |
schriter.h | 43 class U_COMMON_API StringCharacterIterator : public UCharCharacterIterator {
|
rbbi.h | 93 UCharCharacterIterator *fDCharIter;
|
/external/icu/icu4c/source/common/unicode/ |
uchriter.h | 33 class U_COMMON_API UCharCharacterIterator : public CharacterIterator { 44 UCharCharacterIterator(const UChar* textPtr, int32_t length); 59 UCharCharacterIterator(const UChar* textPtr, int32_t length, 78 UCharCharacterIterator(const UChar* textPtr, int32_t length, 87 * @param that The UCharCharacterIterator to be copied 90 UCharCharacterIterator(const UCharCharacterIterator& that); 96 virtual ~UCharCharacterIterator(); 106 UCharCharacterIterator& 107 operator=(const UCharCharacterIterator& that) [all...] |
schriter.h | 43 class U_COMMON_API StringCharacterIterator : public UCharCharacterIterator {
|
rbbi.h | 93 UCharCharacterIterator *fDCharIter;
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
citrtest.cpp | 290 UCharCharacterIterator* test1 = new UCharCharacterIterator(testText, u_strlen(testText)); 291 UCharCharacterIterator* test2 = new UCharCharacterIterator(testText, u_strlen(testText), 5); 292 UCharCharacterIterator* test3 = new UCharCharacterIterator(testText, u_strlen(testText), 2, 20, 5); 293 UCharCharacterIterator* test4 = new UCharCharacterIterator(testText2, u_strlen(testText2)); 294 UCharCharacterIterator* test5 = (UCharCharacterIterator*)test1->clone() [all...] |
utxttest.cpp | 235 CharacterIterator *ci = new UCharCharacterIterator(cbuf, saLen, status); [all...] |
/external/icu/icu4c/source/test/intltest/ |
citrtest.cpp | 290 UCharCharacterIterator* test1 = new UCharCharacterIterator(testText, u_strlen(testText)); 291 UCharCharacterIterator* test2 = new UCharCharacterIterator(testText, u_strlen(testText), 5); 292 UCharCharacterIterator* test3 = new UCharCharacterIterator(testText, u_strlen(testText), 2, 20, 5); 293 UCharCharacterIterator* test4 = new UCharCharacterIterator(testText2, u_strlen(testText2)); 294 UCharCharacterIterator* test5 = (UCharCharacterIterator*)test1->clone() [all...] |
utxttest.cpp | 237 CharacterIterator *ci = new UCharCharacterIterator(cbuf, saLen, status); [all...] |
/external/chromium_org/third_party/icu/source/samples/citer/ |
citer.cpp | 50 UCharCharacterIterator iter(testText, u_strlen(testText)); 51 UCharCharacterIterator* test2 = (UCharCharacterIterator*)iter.clone();
|
/external/icu/icu4c/source/samples/citer/ |
citer.cpp | 50 UCharCharacterIterator iter(testText, u_strlen(testText)); 51 UCharCharacterIterator* test2 = (UCharCharacterIterator*)iter.clone();
|
/external/chromium_org/third_party/icu/source/test/thaitest/ |
thaitest.cpp | 219 UCharCharacterIterator *noSpaceIter = new UCharCharacterIterator(noSpaces, noSpaceCount); 399 UCharCharacterIterator *noSpaceIter = new UCharCharacterIterator(chars, length); 499 UCharCharacterIterator *iter = new UCharCharacterIterator(text, count);
|
/external/icu/icu4c/source/test/thaitest/ |
thaitest.cpp | 219 UCharCharacterIterator *noSpaceIter = new UCharCharacterIterator(noSpaces, noSpaceCount); 399 UCharCharacterIterator *noSpaceIter = new UCharCharacterIterator(chars, length); 499 UCharCharacterIterator *iter = new UCharCharacterIterator(text, count);
|
/external/icu/icu4c/source/layoutex/ |
ParagraphLayout.cpp | 995 UCharCharacterIterator *iter = new UCharCharacterIterator(fChars, fCharCount); [all...] |