Home | History | Annotate | Download | only in brew

Lines Matching refs:sourceLength

77 int toLower(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
80 const UChar* sourceEnd = source + sourceLength;
84 if (sourceLength <= resultLength) {
100 int toUpper(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
103 const UChar* sourceEnd = source + sourceLength;
107 if (sourceLength <= resultLength) {
123 int foldCase(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
126 if (resultLength < sourceLength) {
128 return sourceLength;
130 for (int i = 0; i < sourceLength; ++i)
132 return sourceLength;