Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DStringExtras.h36 inline char hexdigit(unsigned X, bool LowerCase = false) {
37 const char HexChar = LowerCase ? 'a' : 'A';
144 inline std::string utohexstr(uint64_t X, bool LowerCase = false) {
152 *--BufPtr = hexdigit(Mod, LowerCase);
161 inline std::string toHex(StringRef Input, bool LowerCase = false) {
163 const uint8_t Offset = LowerCase ? 32 : 0;
176 inline std::string toHex(ArrayRef<uint8_t> Input, bool LowerCase = false) {
177 return toHex(toStringRef(Input), LowerCase);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp3399 std::string LowerCase = Parser.getTok().getIdentifier().lower(); in parseSymbolicImmVal() local
3400 RefKind = StringSwitch<AArch64MCExpr::VariantKind>(LowerCase) in parseSymbolicImmVal()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Duni.d2305 auto lower = unicode.LowerCase;
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/uni/
H A Dpackage.d2288 auto lower = unicode.LowerCase;