Home
last modified time | relevance | path

Searched refs:nameToCodepointLooseMatching (Results 1 – 5 of 5) sorted by relevance

/llvm-project/llvm/unittests/Support/
H A DUnicodeTest.cpp216 auto Opt = nameToCodepointLooseMatching(Str); in TEST()
328 EXPECT_FALSE(nameToCodepointLooseMatching("-LEFT-TO-RIGHT OVERRIDE")); in TEST()
329 EXPECT_FALSE(nameToCodepointLooseMatching("LEFT-TO-RIGHT OVERRIDE-")); in TEST()
336 EXPECT_FALSE(nameToCodepointLooseMatching("B")); in TEST()
337 EXPECT_FALSE(nameToCodepointLooseMatching("BE")); in TEST()
338 EXPECT_FALSE(nameToCodepointLooseMatching("BEE")); in TEST()
339 EXPECT_FALSE(nameToCodepointLooseMatching("BEET")); in TEST()
340 EXPECT_FALSE(nameToCodepointLooseMatching("BEETL")); in TEST()
341 EXPECT_TRUE(nameToCodepointLooseMatching("BEETLE")); in TEST()
/llvm-project/llvm/include/llvm/Support/
H A DUnicode.h77 std::optional<LooseMatchingResult> nameToCodepointLooseMatching(StringRef Name);
/llvm-project/llvm/lib/Support/
H A DUnicodeNameToCodepoint.cpp408 nameToCodepointLooseMatching(StringRef Name) { in nameToCodepointLooseMatching() function
/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp414 llvm::sys::unicode::nameToCodepointLooseMatching(Name); in expandUCNs()
555 u::nameToCodepointLooseMatching(Name); in DiagnoseInvalidUnicodeCharacterName()
H A DLexer.cpp3571 LooseMatch = llvm::sys::unicode::nameToCodepointLooseMatching(Name); in tryReadNamedUCN()