HomeSort by: relevance | last modified time | path
    Searched refs:Fmt (Results 1 - 25 of 43) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/Support/
FormatVariadic.cpp 93 formatv_object_base::splitLiteralAndReplacement(StringRef Fmt) {
94 while (!Fmt.empty()) {
96 if (Fmt.front() != '{') {
97 std::size_t BO = Fmt.find_first_of('{');
98 return std::make_pair(ReplacementItem{Fmt.substr(0, BO)}, Fmt.substr(BO));
101 StringRef Braces = Fmt.take_while([](char C) { return C == '{'; });
106 StringRef Middle = Fmt.take_front(NumEscapedBraces);
107 StringRef Right = Fmt.drop_front(NumEscapedBraces * 2);
113 std::size_t BC = Fmt.find_first_of('}')
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
FormatVariadic.h 67 StringRef Fmt;
74 splitLiteralAndReplacement(StringRef Fmt);
76 formatv_object_base(StringRef Fmt,
78 : Fmt(Fmt), Adapters(Adapters) {}
85 for (auto &R : parseFormatString(Fmt)) {
103 static SmallVector<ReplacementItem, 2> parseFormatString(StringRef Fmt);
151 formatv_object(StringRef Fmt, Tuple &&Params)
152 : formatv_object_base(Fmt, ParameterPointers),
171 // Formats textual output. `Fmt` is a string consisting of one or mor
    [all...]
Format.h 40 const char *Fmt;
49 format_object_base(const char *fmt) : Fmt(fmt) {}
97 return _snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...);
99 return snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...);
104 format_object(const char *fmt, const Ts &... vals)
105 : format_object_base(fmt), Vals(vals...) {
124 inline format_object<Ts...> format(const char *Fmt, const Ts &... Vals) {
125 return format_object<Ts...>(Fmt, Vals...)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
WasmDump.cpp 37 raw_string_ostream Fmt(FmtBuf);
41 Fmt << Rel.Index;
49 Fmt << (Rel.Addend < 0 ? "" : "+") << Rel.Addend;
50 Fmt.flush();
ELFDump.cpp 87 raw_string_ostream Fmt(FmtBuf);
106 Fmt << *SecName;
112 Fmt << demangle(std::string(*SymName));
114 Fmt << *SymName;
117 Fmt << "*ABS*";
120 Fmt << (Addend < 0
125 Fmt.flush();
191 const char *Fmt =
205 outs() << format(Fmt, (uint64_t)Dyn.d_un.d_val);
265 const char *Fmt = ELFT::Is64Bits ? "0x%016" PRIx64 " " : "0x%08" PRIx64 " "
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Basic/
Builtins.cpp 126 bool &HasVAListArg, const char *Fmt) const {
127 assert(Fmt && "Not passed a format string");
128 assert(::strlen(Fmt) == 2 &&
130 assert(::toupper(Fmt[0]) == Fmt[1] &&
133 const char *Like = ::strpbrk(getRecord(ID).Attributes, Fmt);
137 HasVAListArg = (*Like == Fmt[1]);
  /src/sys/external/bsd/acpica/dist/compiler/
asldebug.c 70 * Fmt - Printf format string
81 char *Fmt,
92 va_start (Args, Fmt);
93 (void) vfprintf (AcpiGbl_ConvDebugFile, Fmt, Args);
aslutils.c 442 * Fmt - Printf format string
455 char *Fmt,
472 va_start (Args, Fmt);
473 (void) vfprintf (stderr, Fmt, Args);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
LinePrinter.h 44 template <typename... Ts> void formatLine(const char *Fmt, Ts &&... Items) {
45 printLine(formatv(Fmt, std::forward<Ts>(Items)...));
47 template <typename... Ts> void format(const char *Fmt, Ts &&... Items) {
48 print(formatv(Fmt, std::forward<Ts>(Items)...));
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerIO.cpp 121 void Printf(const char *Fmt, ...) {
123 va_start(ap, Fmt);
124 vfprintf(OutputFile, Fmt, ap);
FuzzerIO.h 49 void Printf(const char *Fmt, ...);
  /src/sys/external/bsd/acpica/dist/os_specific/service_layers/
oswinxf.c 429 * PARAMETERS: Fmt, ... - Standard printf format
439 const char *Fmt,
455 va_start (Args, Fmt);
456 vfprintf (AcpiGbl_DebugFile, Fmt, Args);
469 va_start (Args, Fmt);
470 vfprintf (AcpiGbl_OutputFile, Fmt, Args);
482 * PARAMETERS: Fmt - Standard printf format
493 const char *Fmt,
509 Count = vfprintf (AcpiGbl_DebugFile, Fmt, Args);
521 Count = vfprintf (AcpiGbl_OutputFile, Fmt, Args)
    [all...]
osunixxf.c 414 * PARAMETERS: fmt, ... - Standard printf format
425 const char *Fmt,
441 va_start (Args, Fmt);
442 vfprintf (AcpiGbl_DebugFile, Fmt, Args);
455 va_start (Args, Fmt);
456 vfprintf (AcpiGbl_OutputFile, Fmt, Args);
466 * PARAMETERS: fmt - Standard printf format
479 const char *Fmt,
496 vsnprintf (Buffer, ACPI_VPRINTF_BUFFER_SIZE, Fmt, Args);
oszephyr.c 119 * PARAMETERS: Fmt, ... - Standard printf format
129 const char *Fmt,
134 va_start (args, Fmt);
138 vprintk (Fmt, args);
  /src/external/apache2/llvm/dist/llvm/tools/lli/
ExecutionUtils.cpp 48 template <typename... Ts> static void outsv(const char *Fmt, Ts &&...Vals) {
49 outs() << formatv(Fmt, Vals...);
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
FrontendOptions.h 148 unsigned Fmt : 3;
161 : Lang(L), Fmt(F), Preprocessed(PP) {}
164 Format getFormat() const { return static_cast<Format>(Fmt); }
168 bool isUnknown() const { return Lang == Language::Unknown && Fmt == Source; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
BuildLibCalls.h 121 Value *emitSNPrintf(Value *Dest, Value *Size, Value *Fmt,
126 Value *emitSPrintf(Value *Dest, Value *Fmt, ArrayRef<Value *> VariadicArgs,
146 Value *emitVSNPrintf(Value *Dest, Value *Size, Value *Fmt, Value *VAList,
150 Value *emitVSPrintf(Value *Dest, Value *Fmt, Value *VAList, IRBuilderBase &B,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
AMDGPUEmitPrintf.cpp 193 static void locateCStrings(SparseBitVector<8> &BV, Value *Fmt) {
195 if (!getConstantStringInfo(Fmt, Str) || Str.empty())
226 auto Fmt = Args[0];
228 locateCStrings(SpecIsCString, Fmt);
231 Desc = appendString(Builder, Desc, Fmt, NumOps == 1);
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CLog.h 86 Logger &operator<<(const llvm::format_object_base &Fmt);
  /src/external/gpl3/gcc.old/dist/gcc/
gengtype.h 506 #define DBGPRINTF(Fmt,...) do {if (do_debug) \
507 fprintf (stderr, "%s:%d: " Fmt "\n", \
  /src/external/gpl3/gcc/dist/gcc/
gengtype.h 508 #define DBGPRINTF(Fmt,...) do {if (do_debug) \
509 fprintf (stderr, "%s:%d: " Fmt "\n", \
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Builtins.h 244 const char *Fmt) const;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUPrintfRuntimeBinding.cpp 62 StringRef fmt, size_t num_ops) const;
102 SmallVectorImpl<char> &OpConvSpecifiers, StringRef Fmt,
113 while ((CurFmtSpecifierIdx = Fmt.find_first_of(
116 StringRef CurFmt = Fmt.substr(PrevFmtSpecifierIdx,
127 OpConvSpecifiers.push_back(Fmt[CurFmtSpecifierIdx]);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Twine.h 300 /*implicit*/ Twine(const formatv_object_base &Fmt)
302 LHS.formatvObject = &Fmt;
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 867 SmallString<256> Fmt;
868 llvm::raw_svector_ostream OS(Fmt);
895 SmallString<256> Fmt;
896 llvm::raw_svector_ostream OS(Fmt);

Completed in 83 milliseconds

1 2