Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DDILLexer.cpp53 static bool IsLetter(char c) { in IsLetter() function
66 [](char c) { return IsDigit(c) || IsLetter(c) || c == '_' || c == '$'; }); in IsWord()
73 static bool IsNumberBodyChar(char ch) { return IsDigit(ch) || IsLetter(ch); } in IsNumberBodyChar()