Searched refs:UCharCharacterIterator (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/third_party/icu/source/common/
H A Duchriter.cpp17 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(UCharCharacterIterator)
19 UCharCharacterIterator::UCharCharacterIterator() function in class:UCharCharacterIterator
26 UCharCharacterIterator::UCharCharacterIterator(const UChar* textPtr, function in class:UCharCharacterIterator
33 UCharCharacterIterator::UCharCharacterIterator(const UChar* textPtr, function in class:UCharCharacterIterator
41 UCharCharacterIterator::UCharCharacterIterator(const UChar* textPtr, function in class:UCharCharacterIterator
51 UCharCharacterIterator function in class:UCharCharacterIterator
[all...]
H A Dschriter.cpp26 : 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
[all...]
H A Dnormlzr.cpp43 text(new UCharCharacterIterator(str, length)),
443 CharacterIterator *newIter = new UCharCharacterIterator(newText, length);
H A Drbbi.cpp375 fDCharIter = new UCharCharacterIterator(&c, 0);
/external/icu/icu4c/source/common/
H A Duchriter.cpp17 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(UCharCharacterIterator)
19 UCharCharacterIterator::UCharCharacterIterator() function in class:UCharCharacterIterator
26 UCharCharacterIterator::UCharCharacterIterator(const UChar* textPtr, function in class:UCharCharacterIterator
33 UCharCharacterIterator::UCharCharacterIterator(const UChar* textPtr, function in class:UCharCharacterIterator
41 UCharCharacterIterator::UCharCharacterIterator(const UChar* textPtr, function in class:UCharCharacterIterator
51 UCharCharacterIterator function in class:UCharCharacterIterator
[all...]
H A Dschriter.cpp26 : 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
[all...]
H A Dnormlzr.cpp43 text(new UCharCharacterIterator(str, length)),
443 CharacterIterator *newIter = new UCharCharacterIterator(newText, length);
H A Drbbi.cpp375 fDCharIter = new UCharCharacterIterator(&c, 0);
/external/chromium_org/third_party/icu/source/common/unicode/
H A Duchriter.h33 class U_COMMON_API UCharCharacterIterator : public CharacterIterator { class in inherits: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
[all...]
H A Dschriter.h43 class U_COMMON_API StringCharacterIterator : public UCharCharacterIterator {
H A Drbbi.h93 UCharCharacterIterator *fDCharIter;
/external/icu/icu4c/source/common/unicode/
H A Duchriter.h33 class U_COMMON_API UCharCharacterIterator : public CharacterIterator { class in inherits: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
[all...]
H A Dschriter.h43 class U_COMMON_API StringCharacterIterator : public UCharCharacterIterator {
H A Drbbi.h93 UCharCharacterIterator *fDCharIter;
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcitrtest.cpp290 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*)test
[all...]
H A Dutxttest.cpp235 CharacterIterator *ci = new UCharCharacterIterator(cbuf, saLen, status);
/external/icu/icu4c/source/test/intltest/
H A Dcitrtest.cpp290 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*)test
[all...]
H A Dutxttest.cpp237 CharacterIterator *ci = new UCharCharacterIterator(cbuf, saLen, status);
/external/chromium_org/third_party/icu/source/samples/citer/
H A Dciter.cpp50 UCharCharacterIterator iter(testText, u_strlen(testText));
51 UCharCharacterIterator* test2 = (UCharCharacterIterator*)iter.clone();
/external/icu/icu4c/source/samples/citer/
H A Dciter.cpp50 UCharCharacterIterator iter(testText, u_strlen(testText));
51 UCharCharacterIterator* test2 = (UCharCharacterIterator*)iter.clone();
/external/chromium_org/third_party/icu/source/test/thaitest/
H A Dthaitest.cpp219 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/
H A Dthaitest.cpp219 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/
H A DParagraphLayout.cpp995 UCharCharacterIterator *iter = new UCharCharacterIterator(fChars, fCharCount);

Completed in 3194 milliseconds