Lines Matching refs:src
47 unorm_quickCheck(const UChar *src,
52 return unorm2_quickCheck((const UNormalizer2 *)n2, src, srcLength, pErrorCode);
56 unorm_quickCheckWithOptions(const UChar *src, int32_t srcLength,
64 src, srcLength, pErrorCode);
66 return unorm2_quickCheck((const UNormalizer2 *)n2, src, srcLength, pErrorCode);
71 unorm_isNormalized(const UChar *src, int32_t srcLength,
75 return unorm2_isNormalized((const UNormalizer2 *)n2, src, srcLength, pErrorCode);
79 unorm_isNormalizedWithOptions(const UChar *src, int32_t srcLength,
87 src, srcLength, pErrorCode);
89 return unorm2_isNormalized((const UNormalizer2 *)n2, src, srcLength, pErrorCode);
97 unorm_normalize(const UChar *src, int32_t srcLength,
106 src, srcLength, dest, destCapacity, pErrorCode);
109 src, srcLength, dest, destCapacity, pErrorCode);
117 unorm_iterate(UCharIterator *src, UBool forward,
137 src==NULL
146 if(!(forward ? src->hasNext(src) : src->hasPrevious(src))) {
154 buffer.append(uiter_next32(src));
156 while((c=uiter_next32(src))>=0) {
159 src->move(src, -U16_LENGTH(c), UITER_CURRENT);
166 while((c=uiter_previous32(src))>=0) {
190 unorm_previous(UCharIterator *src,
195 return unorm_iterate(src, FALSE,
203 unorm_next(UCharIterator *src,
208 return unorm_iterate(src, TRUE,