Home
last modified time | relevance | path

Searched defs:Fmt (Results 1 – 25 of 39) sorted by relevance

12

/llvm-project/libc/src/__support/
H A Dinteger_to_string.h88 using WithPrefix = Fmt<BASE, true, FORCE_SIGN, IS_UPPERCASE, MIN_DIGITS>; argument
90 using Uppercase = Fmt<BASE, PREFIX, FORCE_SIGN, true, MIN_DIGITS>; argument
79 struct Fmt { global() struct
86 WithPrefixFmt global() argument
87 WithSignFmt global() argument
93 NUMERICAL_DIGITSFmt global() argument
94 ALPHA_DIGITSFmt global() argument
95 MAX_DIGITFmt global() argument
[all...]
/llvm-project/clang-tools-extra/clangd/support/
H A DLogger.h47 void log(Logger::Level L, const char *Fmt, Ts &&... Vals) { in log()
61 template <typename... Ts> void elog(const char *Fmt, Ts &&... Vals) { in elog()
67 template <typename... Ts> void log(const char *Fmt, Ts &&... Vals) { in log()
72 template <typename... Ts> void vlog(const char *Fmt, Ts &&... Vals) { in vlog()
79 llvm::Error error(std::error_code EC, const char *Fmt, Ts &&... Vals) { in error()
85 template <typename... Ts> llvm::Error error(const char *Fmt, Ts &&... Vals) { in error()
H A DLogger.cpp31 void detail::logImpl(Logger::Level Level, const char *Fmt, in logImpl()
50 void StreamLogger::log(Logger::Level Level, const char *Fmt, in log()
/llvm-project/llvm/lib/Support/
H A DFormatVariadic.cpp93 splitLiteralAndReplacement(StringRef Fmt) { in splitLiteralAndReplacement() argument
144 parseFormatString(StringRef Fmt) parseFormatString() argument
[all...]
/llvm-project/llvm/tools/llvm-objdump/
H A DELFDump.cpp125 raw_string_ostream Fmt(FmtBuf); getRelocationValueString() local
231 const char *Fmt = printDynamicSection() local
315 const char *Fmt = ELFT::Is64Bits ? "0x%016" PRIx64 " " : "0x%08" PRIx64 " "; printProgramHeaders() local
348 StringRef Fmt = Obj.getBytesInAddress() > 4 ? "%016" PRIx64 : "%08" PRIx64; printDynamicRelocations() local
[all...]
H A DWasmDump.cpp50 raw_string_ostream Fmt(FmtBuf); in getWasmRelocationValueString() local
H A DCOFFDump.cpp100 auto print = [](const char *K, auto V, const char *Fmt = "%d\n") { in printPEHeader() argument
104 const char *Fmt = "%d\n") { print(K, uint16_t(V), Fmt); }; in printPEHeader() argument
106 const char *Fmt = "%d\n") { print(K, uint32_t(V), Fmt); }; in printPEHeader() argument
/llvm-project/llvm/include/llvm/Support/
H A DFormatVariadic.h77 formatv_object_base(StringRef Fmt,ArrayRef<support::detail::format_adapter * > Adapters) formatv_object_base() argument
152 formatv_object(StringRef Fmt,Tuple && Params) formatv_object() argument
[all...]
H A DError.h1314 inline Error createStringError(char const *Fmt, const Ts &...Vals) { in createStringError() argument
1286 createStringError(std::error_code EC,char const * Fmt,const Ts &...Vals) createStringError() argument
1309 createStringError(char const * Fmt,const Ts &...Vals) createStringError() argument
/llvm-project/lldb/unittests/Utility/
H A DVASprintfTest.cpp25 static bool Sprintf(llvm::SmallVectorImpl<char> &Buffer, const char *Fmt, ...) { in Sprintf()
/llvm-project/lldb/tools/lldb-test/
H A DFormatUtil.h48 template <typename... Ts> void formatLine(const char *Fmt, Ts &&... Items) { in formatLine()
/llvm-project/clang/include/clang/Serialization/
H A DPCHContainerOperations.h102 for (llvm::StringRef Fmt : Reader->getFormats()) in registerReader() local
/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIO.cpp159 void Printf(const char *Fmt, ...) { in Printf()
167 void VPrintf(bool Verbose, const char *Fmt, ...) { in VPrintf()
/llvm-project/llvm/tools/llvm-debuginfo-analyzer/
H A Dllvm-debuginfo-analyzer.cpp31 static void error(std::error_code EC, char const *Fmt, const Ts &...Vals) { in error() argument
/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DLinePrinter.h63 template <typename... Ts> void formatLine(const char *Fmt, Ts &&...Items) { in formatLine()
66 template <typename... Ts> void format(const char *Fmt, Ts &&...Items) { in format()
/llvm-project/clang-tools-extra/clang-tidy/cert/
H A DStrToNumCheck.cpp57 ConversionKind classifyFormatString(StringRef Fmt, const LangOptions &LO, in classifyFormatString()
/llvm-project/compiler-rt/lib/fuzzer/afl/
H A Dafl_driver.cpp168 static void Printf(const char *Fmt, ...) { in Printf()
/llvm-project/clang-tools-extra/clangd/index/remote/server/
H A DServer.cpp451 log(Level L,const char * Fmt,const llvm::formatv_object_base & Message) makeLogger() argument
475 log(Level L,const char * Fmt,const llvm::formatv_object_base & Message) makeLogger() argument
/llvm-project/llvm/lib/Transforms/Utils/
H A DAMDGPUEmitPrintf.cpp223 IRBuilder<> &Builder, ArrayRef<Value *> Args, Value *Fmt, in callBufferedPrintfStart()
431 auto Fmt = Args[0]; in emitAMDGPUPrintfCall() local
H A DBuildLibCalls.cpp1603 emitSNPrintf(Value * Dest,Value * Size,Value * Fmt,ArrayRef<Value * > VariadicArgs,IRBuilderBase & B,const TargetLibraryInfo * TLI) emitSNPrintf() argument
1616 emitSPrintf(Value * Dest,Value * Fmt,ArrayRef<Value * > VariadicArgs,IRBuilderBase & B,const TargetLibraryInfo * TLI) emitSPrintf() argument
1663 emitVSNPrintf(Value * Dest,Value * Size,Value * Fmt,Value * VAList,IRBuilderBase & B,const TargetLibraryInfo * TLI) emitVSNPrintf() argument
1674 emitVSPrintf(Value * Dest,Value * Fmt,Value * VAList,IRBuilderBase & B,const TargetLibraryInfo * TLI) emitVSPrintf() argument
/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFContext.h412 checkAddressSizeSupported(unsigned AddressSize,std::error_code EC,char const * Fmt,const Ts &...Vals) checkAddressSizeSupported() argument
/llvm-project/llvm/include/llvm/ADT/
H A DTwine.h327 /*implicit*/ Twine(const formatv_object_base &Fmt) in Twine()
/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPrintfRuntimeBinding.cpp90 SmallVectorImpl<char> &OpConvSpecifiers, StringRef Fmt, in getConversionSpecifiers() argument
/llvm-project/llvm/lib/CodeGen/
H A DRDFRegisters.cpp267 const char *Fmt = Idx < 0x10000 ? "%04x" : "%08x"; in print() local
/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp875 SmallString<256> Fmt; in PrintUnexpected() local
905 SmallString<256> Fmt; in PrintExpected() local

12