Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DLocale.h13 LLVM_ABI 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.cpp185 if (isPrint(c)) { in write_escaped()
458 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()
224 W.getOStream() << (isPrint(TmpSecPtr[i]) in printSectionsAsHex()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h139 inline bool isPrint(char C) { in isPrint() function
/freebsd/contrib/llvm-project/llvm/tools/llvm-strings/
H A Dllvm-strings.cpp116 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.cpp566 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/CGData/
H A DCodeGenDataReader.cpp167 return llvm::all_of(Prefix, [](char c) { return isPrint(c) || isSpace(c); }); in hasFormat()
/freebsd/contrib/llvm-project/llvm/lib/Debuginfod/
H A DDebuginfod.cpp231 return all_of(Name, [](char C) { return llvm::isPrint(C) && C != ' '; }) && in isHeader()
232 all_of(Value, [](char C) { return llvm::isPrint(C) || C == '\t'; }); in isHeader()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDumpDataExtractor.cpp212 if (llvm::isPrint(c)) { in DumpCharacter()
480 if (llvm::isPrint(ch)) in DumpDataExtractor()
H A DIOHandlerCursesGUI.cpp4038 if (llvm::isPrint(shortcut_key)) { in DrawMenuTitle()
4067 if (!underlined_shortcut && llvm::isPrint(m_key_value)) { in DrawMenuTitle()
6206 if (llvm::isPrint(ch)) in CursesKeyToCString()
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DStringPrinter.cpp148 if (llvm::isPrint(*buffer)) in GetPrintableImpl()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeAnalyzer.cpp956 if (!isPrint(static_cast<unsigned char>(Record[j]))) { in parseBlock()
980 if (!isPrint(static_cast<unsigned char>(C))) { in parseBlock()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp1157 if (!isPrint(C)) in isPrintableString()
1160 return isPrint(Data.back()) || Data.back() == 0; in isPrintableString()
1177 if (isPrint(C)) { in PrintByteList()
1223 if (isPrint(C)) { in PrintQuotedString()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DTextDiagnostic.cpp127 if (*Begin < 0x80 && llvm::sys::locale::isPrint(*Begin)) { in printableTextForNextCharacter()
151 if (llvm::sys::locale::isPrint(C)) in printableTextForNextCharacter()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp730 if (!llvm::isPrint(c) && !llvm::isSpace(c)) { in CheckForPacket()
H A DGDBRemoteCommunicationClient.cpp890 if (llvm::isPrint(*p)) { in SendEnvironmentPacket()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp247 [](char c) { return isPrint(c) || isSpace(c); }); in hasFormat()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1454 AsciiData[NumBytes] = isPrint(Byte) ? Byte : '.'; in dumpELFData()
2898 if (isPrint(static_cast<unsigned char>(Contents[Addr + I]) & 0xFF)) in printSectionContents()
/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp314 llvm::any_of(*VarVal, [](char C) { return !isPrint(C) || C == '"'; }); in getResultForDiagnostics()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp7130 if (!llvm::sys::locale::isPrint(*csStart)) { in HandleInvalidConversionSpecifier()