Searched refs:isLegalUTF8 (Results 1 - 1 of 1) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DConvertUTF.cpp153 * If your compiler supports it, the "isLegalUTF8" call can be turned
397 static Boolean isLegalUTF8(const UTF8 *source, int length) { function in namespace:llvm
433 return isLegalUTF8(source, length);
442 return (length <= sourceEnd - source && isLegalUTF8(source, length)) ? length
558 if (length > sourceEnd - *source || !isLegalUTF8(*source, length))
580 if (!isLegalUTF8(source, extraBytesToRead+1)) {
672 if (!isLegalUTF8(source, extraBytesToRead+1)) {

Completed in 56 milliseconds