Lines Matching refs:buffLength
2068 * @param buffLength The number of Unicode characters in <code>buffer</code> to alias.
2074 int32_t buffLength,
3149 * @param buffLength The number of Unicode characters in <code>buffer</code> to alias.
3153 UnicodeString(char16_t *buffer, int32_t buffLength, int32_t buffCapacity);
3164 * @param buffLength length of the current buffer contents
3168 UnicodeString(uint16_t *buffer, int32_t buffLength, int32_t buffCapacity) :
3169 UnicodeString(Char16Ptr(buffer), buffLength, buffCapacity) {}
3182 * @param buffLength length of the current buffer contents
3186 UnicodeString(wchar_t *buffer, int32_t buffLength, int32_t buffCapacity) :
3187 UnicodeString(Char16Ptr(buffer), buffLength, buffCapacity) {}
3198 * @param buffLength ignored
3202 inline UnicodeString(std::nullptr_t buffer, int32_t buffLength, int32_t buffCapacity);
3922 inline UnicodeString::UnicodeString(std::nullptr_t /*buffer*/, int32_t /*buffLength*/, int32_t /*buffCapacity*/) {