/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Locale.h | 11 bool isPrint(int c);
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | Locale.cpp | 13 bool isPrint(int UCS) { in isPrint() function
|
H A D | StringExtras.cpp | 66 else if (isPrint(C) && C != '"') in printEscapedString()
|
H A D | raw_ostream.cpp | 187 if (isPrint(c)) { in write_escaped() 460 if (isPrint(Byte)) in operator <<()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | OptionDefinition.h | 53 llvm::isPrint(short_option); in HasShortOption()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | ObjDumper.cpp | 55 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 D | llvm-strings.cpp | 114 if (isPrint(*P) || *P == '\t') { in strings()
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | Event.cpp | 131 if (llvm::all_of(m_bytes, llvm::isPrint)) in Dump()
|
H A D | Args.cpp | 556 if (llvm::isPrint(*p)) in ExpandEscapedCharacters()
|
H A D | DataExtractor.cpp | 934 sstr.Printf(" %c", llvm::isPrint(ch) ? ch : ' '); in PutToLog()
|
/freebsd/contrib/llvm-project/llvm/lib/Debuginfod/ |
H A D | Debuginfod.cpp | 220 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 D | DumpDataExtractor.cpp | 211 if (llvm::isPrint(c)) { in DumpCharacter() 479 if (llvm::isPrint(ch)) in DumpDataExtractor()
|
H A D | IOHandlerCursesGUI.cpp | 4037 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 D | StringPrinter.cpp | 146 // 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 D | BitcodeAnalyzer.cpp | 953 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 D | StringExtras.h | 138 inline bool isPrint(char C) { in isPrint() function
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCAsmStreamer.cpp | 1149 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 D | TextDiagnostic.cpp | 129 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 D | GDBRemoteCommunication.cpp | 740 if (!llvm::isPrint(c) && !llvm::isSpace(c)) { in CheckForPacket()
|
H A D | GDBRemoteCommunicationClient.cpp | 861 if (llvm::isPrint(*p)) { in SendEnvironmentPacket()
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | InstrProfReader.cpp | 237 [](char c) { return isPrint(c) || isSpace(c); }); in hasFormat()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | llvm-objdump.cpp | 1383 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 D | SemaChecking.cpp | 6476 if (!llvm::sys::locale::isPrint(*csStart)) { in HandleInvalidConversionSpecifier()
|