Searched refs:Fmt (Results 1 - 10 of 10) sorted by relevance

/external/llvm/tools/llvm-objdump/
H A DELFDump.cpp56 const char *Fmt = ELFT::Is64Bits ? "0x%016" PRIx64 " " : "0x%08" PRIx64 " "; local
59 << format(Fmt, (uint64_t)pi->p_offset)
61 << format(Fmt, (uint64_t)pi->p_vaddr)
63 << format(Fmt, (uint64_t)pi->p_paddr)
66 << format(Fmt, (uint64_t)pi->p_filesz)
68 << format(Fmt, (uint64_t)pi->p_memsz)
H A Dllvm-objdump.cpp393 StringRef Fmt = Obj->getBytesInAddress() > 4 ? "\t\t%016" PRIx64 ": " : local
550 outs() << format(Fmt.data(), SectionAddr + addr) << name
562 StringRef Fmt = Obj->getBytesInAddress() > 4 ? "%016" PRIx64 : local
586 outs() << format(Fmt.data(), address) << " " << relocname << " "
772 const char *Fmt = o->getBytesInAddress() > 4 ? "%016" PRIx64 : local
775 outs() << format(Fmt, Address) << " "
/external/llvm/include/llvm/Support/
H A DFormat.h43 const char *Fmt; member in class:llvm::format_object_base
50 format_object_base(const char *fmt) : Fmt(fmt) {}
90 return snprintf(Buffer, BufferSize, Fmt, Val);
104 return snprintf(Buffer, BufferSize, Fmt, Val1, Val2);
119 return snprintf(Buffer, BufferSize, Fmt, Val1, Val2, Val3);
136 return snprintf(Buffer, BufferSize, Fmt, Val1, Val2, Val3, Val4);
155 return snprintf(Buffer, BufferSize, Fmt, Val1, Val2, Val3, Val4, Val5);
169 format_object6(const char *Fmt, const T1 &Val1, const T2 &Val2, argument
171 : format_object_base(Fmt), Val1(Val1), Val2(Val2), Val3(Val3), Val4(Val4),
175 return snprintf(Buffer, BufferSize, Fmt, Val
189 format(const char *Fmt, const T &Val) argument
194 format(const char *Fmt, const T1 &Val1, const T2 &Val2) argument
200 format(const char *Fmt, const T1 &Val1, const T2 &Val2, const T3 &Val3) argument
206 format(const char *Fmt, const T1 &Val1, const T2 &Val2, const T3 &Val3, const T4 &Val4) argument
213 format(const char *Fmt,const T1 &Val1, const T2 &Val2, const T3 &Val3, const T4 &Val4, const T5 &Val5) argument
222 format(const char *Fmt, const T1 &Val1, const T2 &Val2, const T3 &Val3, const T4 &Val4, const T5 &Val5, const T6 &Val6) argument
[all...]
H A Draw_ostream.h211 raw_ostream &operator<<(const format_object_base &Fmt);
/external/clang/lib/Basic/
H A DBuiltins.cpp101 bool &HasVAListArg, const char *Fmt) const {
102 assert(Fmt && "Not passed a format string");
103 assert(::strlen(Fmt) == 2 &&
105 assert(::toupper(Fmt[0]) == Fmt[1] &&
108 const char *Like = ::strpbrk(GetRecord(ID).Attributes, Fmt);
112 HasVAListArg = (*Like == Fmt[1]);
/external/clang/include/clang/Basic/
H A DBuiltins.h183 const char *Fmt) const;
/external/clang/tools/libclang/
H A DCLog.h87 Logger &operator<<(const llvm::format_object_base &Fmt);
H A DCIndex.cpp7017 Logger &cxindex::Logger::operator<<(const llvm::format_object_base &Fmt) {
7018 LogOS << Fmt;
/external/llvm/lib/Support/
H A Draw_ostream.cpp357 raw_ostream &raw_ostream::operator<<(const format_object_base &Fmt) { argument
363 size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft);
385 size_t BytesUsed = Fmt.print(V.data(), NextBufferSize);
/external/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp625 SmallString<256> Fmt;
626 llvm::raw_svector_ostream OS(Fmt);
652 SmallString<256> Fmt;
653 llvm::raw_svector_ostream OS(Fmt);

Completed in 2462 milliseconds