Home
last modified time | relevance | path

Searched refs:isUTF8 (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DLiteralSupport.h195 bool isUTF8() const { return Kind == tok::utf8_char_constant; } in isUTF8() function
260 bool isUTF8() const { return Kind == tok::utf8_string_literal; } in isUTF8() function
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DJSON.h77 bool isUTF8(llvm::StringRef S, size_t *ErrOffset = nullptr);
318 if (LLVM_UNLIKELY(!isUTF8(V))) { in Value()
330 if (LLVM_UNLIKELY(!isUTF8(V))) { in Value()
499 if (LLVM_UNLIKELY(!isUTF8(*Owned))) { in ObjectKey()
506 if (LLVM_UNLIKELY(!isUTF8(Data))) { in ObjectKey()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DJSON.cpp367 if (isUTF8(StringRef(Start, End - Start), &ErrOffset)) in checkUTF8()
678 bool isUTF8(llvm::StringRef S, size_t *ErrOffset) { in isUTF8() function
870 if (LLVM_LIKELY(isUTF8(Key))) { in attributeBegin()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DOSLog.cpp204 assert(Lit && (Lit->isAscii() || Lit->isUTF8())); in computeOSLogBufferLayout()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaChecking.cpp624 if (!Format->isAscii() && !Format->isUTF8()) in checkFortifiedBuiltinMemoryFunction()
5881 if (!Literal || (!Literal->isAscii() && !Literal->isUTF8())) { in CheckOSLogFormatStringArg()
7229 bool isUTF8() const { return FExpr->isUTF8(); } in isUTF8() function in __anon7fa672bc1311::FormatStringLiteral
9250 if (!FExpr->isAscii() && !FExpr->isUTF8()) { in CheckFormatString()
H A DSemaExprObjC.cpp536 assert((SL->isAscii() || SL->isUTF8()) && in BuildObjCBoxedExpr()
H A DSemaExpr.cpp1806 } else if (Literal.isUTF8()) { in ActOnStringLiteral()
3541 else if (Literal.isUTF8() && getLangOpts().Char8) in ActOnCharacterConstant()
3559 else if (Literal.isUTF8()) in ActOnCharacterConstant()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExpr.h1878 bool isUTF8() const { return getKind() == UTF8; } in isUTF8() function