Home | History | Annotate | Download | only in wince

Lines Matching refs:sourceLength

85 int toLower(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
88 const UChar* sourceEnd = source + sourceLength;
93 if (sourceLength <= resultLength)
109 int toUpper(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
112 const UChar* sourceEnd = source + sourceLength;
117 if (sourceLength <= resultLength)
133 int foldCase(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
136 if (resultLength < sourceLength) {
138 return sourceLength;
140 for (int i = 0; i < sourceLength; ++i)
142 return sourceLength;