Searched defs:srcLength (Results 1 - 25 of 35) sorted by relevance

12

/external/icu4c/common/
H A Dubidiwrt.c61 doWriteForward(const UChar *src, int32_t srcLength, argument
69 int32_t length=srcLength;
72 return srcLength;
77 return srcLength;
84 if(destSize<srcLength) {
86 return srcLength;
89 UTF_NEXT_CHAR(src, i, srcLength, c);
92 } while(i<srcLength);
93 return srcLength;
106 while(--srcLength>
154 doWriteReverse(const UChar *src, int32_t srcLength, UChar *dest, int32_t destSize, uint16_t options, UErrorCode *pErrorCode) argument
311 ubidi_writeReverse(const UChar *src, int32_t srcLength, UChar *dest, int32_t destSize, uint16_t options, UErrorCode *pErrorCode) argument
[all...]
H A Dunistr_case.cpp42 int32_t srcLength,
55 srcStart = srcLength = 0;
66 int32_t result=u_strcmpFold(chars, length, srcChars, srcLength,
72 // get the srcLength if necessary
73 if(srcLength < 0) {
74 srcLength = u_strlen(srcChars + srcStart);
76 if(length != srcLength) {
77 return (int8_t)((length - srcLength) >> 24 | 1);
38 doCaseCompare(int32_t start, int32_t length, const UChar *srcChars, int32_t srcStart, int32_t srcLength, uint32_t options) const argument
H A Dunistr_cnv.cpp85 UnicodeString::UnicodeString(const char *src, int32_t srcLength, argument
95 } else if(srcLength<-1) {
99 if(srcLength==-1) {
100 srcLength=(int32_t)uprv_strlen(src);
102 if(srcLength>0) {
106 doCodepageCreate(src, srcLength, cnv, errorCode);
110 doCodepageCreate(src, srcLength, cnv, errorCode);
H A Dunorm.cpp48 int32_t srcLength,
52 return unorm2_quickCheck((const UNormalizer2 *)n2, src, srcLength, pErrorCode);
56 unorm_quickCheckWithOptions(const UChar *src, int32_t srcLength, argument
64 src, srcLength, pErrorCode);
66 return unorm2_quickCheck((const UNormalizer2 *)n2, src, srcLength, pErrorCode);
71 unorm_isNormalized(const UChar *src, int32_t srcLength, argument
75 return unorm2_isNormalized((const UNormalizer2 *)n2, src, srcLength, pErrorCode);
79 unorm_isNormalizedWithOptions(const UChar *src, int32_t srcLength, argument
87 src, srcLength, pErrorCode);
89 return unorm2_isNormalized((const UNormalizer2 *)n2, src, srcLength, pErrorCod
47 unorm_quickCheck(const UChar *src, int32_t srcLength, UNormalizationMode mode, UErrorCode *pErrorCode) argument
97 unorm_normalize(const UChar *src, int32_t srcLength, UNormalizationMode mode, int32_t options, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
[all...]
H A Dpunycode.c179 u_strToPunycode(const UChar *src, int32_t srcLength, argument
193 if(src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
203 if(srcLength==-1) {
240 for(j=0; j<srcLength; ++j) {
260 } else if(UTF_IS_LEAD(c) && (j+1)<srcLength && UTF_IS_TRAIL(c2=src[j+1])) {
372 u_strFromPunycode(const UChar *src, int32_t srcLength, argument
385 if(src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
390 if(srcLength==-1) {
391 srcLength=u_strlen(src);
402 for(j=srcLength;
[all...]
H A Ducasemap.c219 * context [0..srcLength[ into account.
272 int32_t srcLength,
280 utext_openUTF8(&utext, (const char *)src, srcLength, pErrorCode);
301 while(prev<srcLength) {
309 if(idx==UBRK_DONE || idx>srcLength) {
310 idx=srcLength;
410 const uint8_t *src, int32_t srcLength,
421 while(srcIndex<srcLength) {
423 U8_NEXT(src, srcIndex, srcLength, c);
455 const uint8_t *src, int32_t srcLength,
269 _toTitle(UCaseMap *csm, uint8_t *dest, int32_t destCapacity, const uint8_t *src, UCaseContext *csc, int32_t srcLength, UErrorCode *pErrorCode) argument
408 utf8_foldCase(const UCaseProps *csp, uint8_t *dest, int32_t destCapacity, const uint8_t *src, int32_t srcLength, uint32_t options, UErrorCode *pErrorCode) argument
453 caseMap(const UCaseMap *csm, uint8_t *dest, int32_t destCapacity, const uint8_t *src, int32_t srcLength, int32_t toWhichCase, UErrorCode *pErrorCode) argument
529 ucasemap_utf8ToLower(const UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
540 ucasemap_utf8ToUpper(const UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
553 ucasemap_utf8ToTitle(UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
566 ucasemap_utf8FoldCase(const UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
[all...]
H A Dustr_wcs.c71 int32_t srcLength,
93 if(srcLength == -1){
94 srcLength = u_strlen(pSrc);
97 pSrcLimit = pSrc + srcLength;
113 (_BUFFER_CAPACITY_MULTIPLIER * (srcLength)), count,sizeof(char))){
190 nulVal = (nulLen < srcLength) ? 1 : 0;
234 int32_t srcLength,
242 if( (src==NULL && srcLength!=0) || srcLength < -1 ||
251 if(srcLength
67 _strToWCS(wchar_t *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
230 u_strToWCS(wchar_t *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
281 _strFromWCS( UChar *dest, int32_t destCapacity, int32_t *pDestLength, const wchar_t *src, int32_t srcLength, UErrorCode *pErrorCode) argument
484 u_strFromWCS(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const wchar_t *src, int32_t srcLength, UErrorCode *pErrorCode) argument
[all...]
H A Dustrtrns.c38 int32_t srcLength,
52 if( (src==NULL && srcLength!=0) || srcLength < -1 ||
69 if(srcLength < 0) {
86 srcLimit = src + srcLength;
138 int32_t srcLength,
142 src, srcLength,
152 int32_t srcLength,
167 if( (src==NULL && srcLength!=0) || srcLength <
34 u_strFromUTF32WithSub(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const UChar32 *src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) argument
134 u_strFromUTF32(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const UChar32 *src, int32_t srcLength, UErrorCode *pErrorCode) argument
148 u_strToUTF32WithSub(UChar32 *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) argument
240 u_strToUTF32(UChar32 *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
394 u_strFromUTF8WithSub(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const char* src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) argument
718 u_strFromUTF8(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const char* src, int32_t srcLength, UErrorCode *pErrorCode) argument
732 u_strFromUTF8Lenient(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
971 u_strToUTF8WithSub(char *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *pSrc, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) argument
1235 u_strToUTF8(char *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *pSrc, int32_t srcLength, UErrorCode *pErrorCode) argument
1249 u_strFromJavaModifiedUTF8WithSub( UChar *dest, int32_t destCapacity, int32_t *pDestLength, const char *src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) argument
1502 u_strToJavaModifiedUTF8( char *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
[all...]
H A Duidna.cpp57 startsWithPrefix(const UChar* src , int32_t srcLength){ argument
60 if(srcLength < ACE_PREFIX_LENGTH){
145 getNextSeparator(UChar *src, int32_t srcLength, argument
147 if(srcLength == -1){
163 for(i=0;i<srcLength;i++){
170 // if(i==srcLength)
171 *limit = src+srcLength;
194 _internal_toASCII(const UChar* src, int32_t srcLength, argument
226 if(srcLength == -1){
227 srcLength
394 _internal_toUnicode(const UChar* src, int32_t srcLength, UChar* dest, int32_t destCapacity, int32_t options, UStringPrepProfile* nameprep, UParseError* parseError, UErrorCode* status) argument
611 uidna_toASCII(const UChar* src, int32_t srcLength, UChar* dest, int32_t destCapacity, int32_t options, UParseError* parseError, UErrorCode* status) argument
640 uidna_toUnicode(const UChar* src, int32_t srcLength, UChar* dest, int32_t destCapacity, int32_t options, UParseError* parseError, UErrorCode* status) argument
669 uidna_IDNToASCII( const UChar *src, int32_t srcLength, UChar* dest, int32_t destCapacity, int32_t options, UParseError *parseError, UErrorCode *status) argument
762 uidna_IDNToUnicode( const UChar* src, int32_t srcLength, UChar* dest, int32_t destCapacity, int32_t options, UParseError* parseError, UErrorCode* status) argument
[all...]
H A Dustrcase.c119 * context [0..srcLength[ into account.
212 int32_t srcLength,
220 ubrk_setText(csm->iter, src, srcLength, pErrorCode);
223 src, srcLength,
236 while(prev<srcLength) {
244 if(idx==UBRK_DONE || idx>srcLength) {
245 idx=srcLength;
346 const UChar *src, int32_t srcLength,
355 csc.limit=srcLength;
359 src, &csc, 0, srcLength,
209 _toTitle(UCaseMap *csm, UChar *dest, int32_t destCapacity, const UChar *src, UCaseContext *csc, int32_t srcLength, UErrorCode *pErrorCode) argument
344 ustr_toLower(const UCaseProps *csp, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, const char *locale, UErrorCode *pErrorCode) argument
364 ustr_toUpper(const UCaseProps *csp, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, const char *locale, UErrorCode *pErrorCode) argument
386 ustr_toTitle(const UCaseProps *csp, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, UBreakIterator *titleIter, const char *locale, uint32_t options, UErrorCode *pErrorCode) argument
416 ustr_foldCase(const UCaseProps *csp, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, uint32_t options, UErrorCode *pErrorCode) argument
453 caseMap(const UCaseMap *csm, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, int32_t toWhichCase, UErrorCode *pErrorCode) argument
555 u_strToLower(UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, const char *locale, UErrorCode *pErrorCode) argument
568 u_strToUpper(UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, const char *locale, UErrorCode *pErrorCode) argument
583 u_strToTitle(UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, UBreakIterator *titleIter, const char *locale, UErrorCode *pErrorCode) argument
604 ucasemap_toTitle(UCaseMap *csm, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
617 u_strFoldCase(UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, uint32_t options, UErrorCode *pErrorCode) argument
[all...]
H A Ducnv_ext.c122 const char *src, int32_t srcLength,
147 srcLength=0;
149 if(srcLength>1) {
150 srcLength=1;
180 } else if(j<srcLength) {
503 * @param srcLength length of src, >=0
521 const UChar *src, int32_t srcLength,
595 } else if(j<srcLength) {
120 ucnv_extMatchToU(const int32_t *cx, int8_t sisoState, const char *pre, int32_t preLength, const char *src, int32_t srcLength, uint32_t *pMatchValue, UBool useFallback, UBool flush) argument
518 ucnv_extMatchFromU(const int32_t *cx, UChar32 firstCP, const UChar *pre, int32_t preLength, const UChar *src, int32_t srcLength, uint32_t *pMatchValue, UBool useFallback, UBool flush) argument
H A Duset.cpp346 uset_getSerializedSet(USerializedSet* fillSet, const uint16_t* src, int32_t srcLength) { argument
352 if(src==NULL || srcLength<=0) {
361 if(srcLength<(2+length)) {
368 if(srcLength<(1+length)) {
H A Dusprep.cpp518 const UChar* src, int32_t srcLength,
536 for(srcIndex=0;srcIndex<srcLength;){
539 U16_NEXT(src,srcIndex,srcLength,ch);
550 uprv_syntaxError(src,srcIndex-U16_LENGTH(ch), srcLength,parseError);
612 usprep_normalize( const UChar* src, int32_t srcLength, argument
616 src, srcLength,
667 const UChar* src, int32_t srcLength,
679 if(profile==NULL || src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
696 if(srcLength == -1){
697 srcLength
517 usprep_map( const UStringPrepProfile* profile, const UChar* src, int32_t srcLength, UChar* dest, int32_t destCapacity, int32_t options, UParseError* parseError, UErrorCode* status ) argument
666 usprep_prepare( const UStringPrepProfile* profile, const UChar* src, int32_t srcLength, UChar* dest, int32_t destCapacity, int32_t options, UParseError* parseError, UErrorCode* status ) argument
[all...]
H A Duts46.cpp316 int32_t srcLength=src.length(); local
317 if(srcLength==0) {
323 UChar *destArray=dest.getBuffer(srcLength);
333 if(i==srcLength) {
368 if((i+1)==srcLength || srcArray[i+1]==0x2e) {
380 if(i==labelStart && i<(srcLength-1)) {
412 int32_t srcLength=src.length(); local
413 if(srcArray==NULL && srcLength!=0) {
419 if(srcLength==0) {
428 if(srcLength<
[all...]
H A Dunistr.cpp343 int32_t srcLength)
348 setTo(that, srcStart, srcLength);
484 int32_t srcLength = src.length(); local
485 setLength(srcLength);
492 uprv_memcpy(fUnion.fStackBuffer, src.fUnion.fStackBuffer, srcLength * U_SIZEOF_UCHAR);
516 if(allocate(srcLength)) {
517 uprv_memcpy(getArrayStart(), src.getArrayStart(), srcLength * U_SIZEOF_UCHAR);
574 int32_t srcLength) const
586 srcStart = srcLength = 0;
598 // get the srcLength i
341 UnicodeString(const UnicodeString& that, int32_t srcStart, int32_t srcLength) argument
893 indexOf(const UChar *srcChars, int32_t srcStart, int32_t srcLength, int32_t start, int32_t length) const argument
957 lastIndexOf(const UChar *srcChars, int32_t srcStart, int32_t srcLength, int32_t start, int32_t length) const argument
1203 doReplace( int32_t start, int32_t length, const UnicodeString& src, int32_t srcStart, int32_t srcLength) argument
1223 doReplace(int32_t start, int32_t length, const UChar *srcChars, int32_t srcStart, int32_t srcLength) argument
[all...]
/external/icu4c/test/intltest/
H A Dnptrans.cpp139 int32_t NamePrepTransform::map(const UChar* src, int32_t srcLength, argument
149 if(src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
154 UnicodeString rsource(src,srcLength);
184 int32_t NamePrepTransform::process( const UChar* src, int32_t srcLength, argument
195 if(src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
208 b1Len = map(src, srcLength, b1, b1String.getCapacity(), allowUnassigned, parseError, status);
216 b1Len = map(src, srcLength, b1, b1String.getCapacity(), allowUnassigned, parseError, status);
H A Didnaref.cpp47 startsWithPrefix(const UChar* src , int32_t srcLength){ argument
50 if(srcLength < ACE_PREFIX_LENGTH){
129 static int32_t convertToPuny(const UChar* src, int32_t srcLength, argument
141 u_strToUTF32((UChar32*)b1,b1Capacity,&b1Len,src,srcLength,&status);
153 u_strToUTF32((UChar32*)b1,b1Len,&b1Len,src,srcLength,&status);
199 static int32_t convertFromPuny( const UChar* src, int32_t srcLength, argument
206 convertUCharsToASCII(src, b1,srcLength);
211 unsigned char* caseFlags = NULL; //(unsigned char*) uprv_malloc(srcLength * sizeof(unsigned char*));
212 punycode_status error = punycode_decode(srcLength,b1,(uint32_t*)&b2Len,b2,caseFlags);
220 error = punycode_decode(srcLength,b
244 idnaref_toASCII(const UChar* src, int32_t srcLength, UChar* dest, int32_t destCapacity, int32_t options, UParseError* parseError, UErrorCode* status) argument
411 idnaref_toUnicode(const UChar* src, int32_t srcLength, UChar* dest, int32_t destCapacity, int32_t options, UParseError* parseError, UErrorCode* status) argument
640 getNextSeparator(UChar *src,int32_t srcLength,NamePrepTransform* prep, UChar **limit, UBool *done, UErrorCode *status) argument
676 idnaref_IDNToASCII( const UChar* src, int32_t srcLength, UChar* dest, int32_t destCapacity, int32_t options, UParseError* parseError, UErrorCode* status) argument
831 idnaref_IDNToUnicode( const UChar* src, int32_t srcLength, UChar* dest, int32_t destCapacity, int32_t options, UParseError* parseError, UErrorCode* status) argument
[all...]
/external/icu4c/test/cintltst/
H A Dnfsprep.c40 nfs4_prepare( const char* src, int32_t srcLength, argument
66 if((src==NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
73 u_strFromUTF8(b1,b1Capacity,&b1Len,src,srcLength,status);
86 u_strFromUTF8(b1, b1Capacity, &b1Len, src, srcLength, status);
174 getPrefixSuffix(const char *src, int32_t srcLength, argument
181 while(i<srcLength){
183 if((i+1) == srcLength){
196 *suffixLen = srcLength - i;
206 nfs4_mixed_prepare( const char* src, int32_t srcLength, argument
224 if((src==NULL) || (srcLength <
280 nfs4_cis_prepare( const char* src, int32_t srcLength, char* dest, int32_t destCapacity, UParseError* parseError, UErrorCode* status) argument
289 nfs4_cs_prepare( const char* src, int32_t srcLength, char* dest, int32_t destCapacity, UBool isCaseSensitive, UParseError* parseError, UErrorCode* status) argument
[all...]
H A Dspreptst.c760 int32_t srcLength, resultLength, expectedLength; local
780 srcLength = resultLength = expectedLength = SPREP_PROFILE_TEST_MAX_LENGTH;
784 srcLength = u_unescape(profile_test_case[i], src, srcLength);
787 resultLength = usprep_prepare(sprep, src, srcLength, result, resultLength, USPREP_ALLOW_UNASSIGNED, NULL, &status);
H A Dcustrtrn.c884 log_err("error: u_strFromUTF8(preflight srcLength=3) fails: destLength=%ld - %s\n",
893 log_err("error: u_strFromUTF8(preflight srcLength=4) fails: destLength=%ld - %s\n",
902 log_err("error: u_strFromUTF8(preflight srcLength=-1) fails: destLength=%ld - %s\n",
912 log_err("error: u_strFromUTF8(transform srcLength=3) fails: destLength=%ld - %s\n",
976 int32_t srcLength, destLength0, destLength; local
1018 pb+=srcLength+1, pu+=destLength0+1, ++number
1020 srcLength=uprv_strlen(pb);
1035 if(srcLength>0) {
1075 pDest=u_strFromUTF8Lenient(NULL, 0, &destLength, pb, srcLength, &errorCode);
1077 pDest!=NULL || dest[0]!=0x1234 || destLength!=srcLength
[all...]
/external/webkit/Source/JavaScriptCore/wtf/unicode/glib/
H A DUnicodeGLib.cpp69 static int convertCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error, UTF8CaseFunction caseFunction) argument
74 Vector<char> buffer(srcLength * 3);
77 ConversionResult conversionResult = convertUTF16ToUTF8(&utf16Source, utf16Source + srcLength, &utf8Target, utf8Target + buffer.size(), true);
104 int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error) argument
106 return convertCase(result, resultLength, src, srcLength, error, g_utf8_casefold);
109 int toLower(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error) argument
111 return convertCase(result, resultLength, src, srcLength, error, g_utf8_strdown);
114 int toUpper(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error) argument
116 return convertCase(result, resultLength, src, srcLength, error, g_utf8_strup);
/external/webkit/Source/WebCore/svg/
H A DSVGFontFaceElement.cpp309 unsigned srcLength = srcList ? srcList->length() : 0; local
310 for (unsigned i = 0; i < srcLength; i++) {
/external/webkit/Source/WebCore/css/
H A DCSSFontSelector.cpp232 int srcLength = srcList->length(); local
236 for (int i = 0; i < srcLength; i++) {
/external/webkit/Source/JavaScriptCore/wtf/unicode/icu/
H A DUnicodeIcu.h123 inline int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error) argument
126 int realLength = u_strFoldCase(result, resultLength, src, srcLength, U_FOLD_CASE_DEFAULT, &status);
131 inline int toLower(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error) argument
134 int realLength = u_strToLower(result, resultLength, src, srcLength, "", &status);
149 inline int toUpper(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error) argument
152 int realLength = u_strToUpper(result, resultLength, src, srcLength, "", &status);
/external/icu4c/common/unicode/
H A Dunistr.h302 * [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>).
307 * @param srcLength the number of characters in <TT>src</TT> to compare
319 int32_t srcLength) const;
323 * <TT>srcLength</TT> characters in <TT>srcChars</TT>.
325 * @param srcLength the number of characters in <TT>srcChars</TT> to compare
334 int32_t srcLength) const;
358 * [<TT>srcStart</TT>, <TT>srcStart + srcLength</TT>).
363 * @param srcLength the number of characters in <TT>srcChars</TT> to compare
375 int32_t srcLength) const;
457 * @param srcLength Th
3685 doCaseCompare(int32_t start, int32_t thisLength, const UnicodeString &srcText, int32_t srcStart, int32_t srcLength, uint32_t options) const argument
3714 caseCompare(const UChar *srcChars, int32_t srcLength, uint32_t options) const argument
3721 caseCompare(int32_t start, int32_t _length, const UnicodeString &srcText, int32_t srcStart, int32_t srcLength, uint32_t options) const argument
3739 caseCompare(int32_t start, int32_t _length, const UChar *srcChars, int32_t srcStart, int32_t srcLength, uint32_t options) const argument
3759 indexOf(const UnicodeString& srcText, int32_t srcStart, int32_t srcLength, int32_t start, int32_t _length) const argument
3792 indexOf(const UChar *srcChars, int32_t srcLength, int32_t start) const argument
3800 indexOf(const UChar *srcChars, int32_t srcLength, int32_t start, int32_t _length) const argument
3841 lastIndexOf(const UChar *srcChars, int32_t srcLength, int32_t start, int32_t _length) const argument
3848 lastIndexOf(const UChar *srcChars, int32_t srcLength, int32_t start) const argument
3856 lastIndexOf(const UnicodeString& srcText, int32_t srcStart, int32_t srcLength, int32_t start, int32_t _length) const argument
3990 replace(int32_t start, int32_t _length, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) argument
3998 replace(int32_t start, int32_t _length, const UChar *srcChars, int32_t srcLength) argument
4005 replace(int32_t start, int32_t _length, const UChar *srcChars, int32_t srcStart, int32_t srcLength) argument
4252 setTo(const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) argument
4277 setTo(const UChar *srcChars, int32_t srcLength) argument
4299 append(const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) argument
4309 append(const UChar *srcChars, int32_t srcStart, int32_t srcLength) argument
4315 append(const UChar *srcChars, int32_t srcLength) argument
4346 insert(int32_t start, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) argument
4358 insert(int32_t start, const UChar *srcChars, int32_t srcStart, int32_t srcLength) argument
4365 insert(int32_t start, const UChar *srcChars, int32_t srcLength) argument
[all...]

Completed in 315 milliseconds

12