Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DLocale.h11 bool isPrint(int c);
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DLocale.cpp13 bool isPrint(int UCS) { in isPrint() function
H A DStringExtras.cpp66 else if (isPrint(C) && C != '"') in printEscapedString()
H A Draw_ostream.cpp187 if (isPrint(c)) { in write_escaped()
460 if (isPrint(Byte)) in operator <<()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DOptionDefinition.h53 llvm::isPrint(short_option); in HasShortOption()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DObjDumper.cpp55 W << (isPrint(Start[i]) ? static_cast<char>(Start[i]) : '.'); in printAsPrintable()
220 W.startLine() << (isPrint(TmpSecPtr[i]) in printSectionsAsHex()
/freebsd/contrib/llvm-project/llvm/tools/llvm-strings/
H A Dllvm-strings.cpp114 if (isPrint(*P) || *P == '\t') { in strings()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DEvent.cpp131 if (llvm::all_of(m_bytes, llvm::isPrint)) in Dump()
H A DArgs.cpp556 if (llvm::isPrint(*p)) in ExpandEscapedCharacters()
H A DDataExtractor.cpp934 sstr.Printf(" %c", llvm::isPrint(ch) ? ch : ' '); in PutToLog()
/freebsd/contrib/llvm-project/llvm/lib/Debuginfod/
H A DDebuginfod.cpp220 return all_of(Name, [](char C) { return llvm::isPrint(C) && C != ' '; }) && in isHeader()
221 all_of(Value, [](char C) { return llvm::isPrint(C) || C == '\t'; }); in isHeader()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDumpDataExtractor.cpp211 if (llvm::isPrint(c)) { in DumpCharacter()
479 if (llvm::isPrint(ch)) in DumpDataExtractor()
H A DIOHandlerCursesGUI.cpp4037 if (llvm::isPrint(shortcut_key)) { in DrawMenuTitle()
4066 if (!underlined_shortcut && llvm::isPrint(m_key_value)) { in DrawMenuTitle()
6204 if (llvm::isPrint(ch)) in CursesKeyToCString()
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DStringPrinter.cpp146 // Use llvm's locale-independent isPrint(char), instead of the libc in GetPrintableImpl()
148 if (llvm::isPrint(*buffer)) in GetPrintableImpl()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeAnalyzer.cpp953 if (!isPrint(static_cast<unsigned char>(Record[j]))) { in parseBlock()
977 if (!isPrint(static_cast<unsigned char>(C))) { in parseBlock()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h138 inline bool isPrint(char C) { in isPrint() function
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp1149 if (!isPrint(C)) in isPrintableString()
1152 return isPrint(Data.back()) || Data.back() == 0; in isPrintableString()
1169 if (isPrint(C)) { in PrintByteList()
1215 if (isPrint((unsigned char)C)) { in PrintQuotedString()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DTextDiagnostic.cpp129 if (*Begin < 0x80 && llvm::sys::locale::isPrint(*Begin)) { in printableTextForNextCharacter()
153 if (llvm::sys::locale::isPrint(C)) in printableTextForNextCharacter()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp740 if (!llvm::isPrint(c) && !llvm::isSpace(c)) { in CheckForPacket()
H A DGDBRemoteCommunicationClient.cpp861 if (llvm::isPrint(*p)) { in SendEnvironmentPacket()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp237 [](char c) { return isPrint(c) || isSpace(c); }); in hasFormat()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1383 AsciiData[NumBytes] = isPrint(Byte) ? Byte : '.'; in dumpELFData()
2827 if (isPrint(static_cast<unsigned char>(Contents[Addr + I]) & 0xFF)) in printSectionContents()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp6476 if (!llvm::sys::locale::isPrint(*csStart)) { in HandleInvalidConversionSpecifier()