OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Fmt
(Results
1 - 10
of
10
) sorted by null
/external/llvm/include/llvm/Support/
Format.h
43
const char *
Fmt
;
50
format_object_base(const char *
fmt
) :
Fmt
(
fmt
) {}
85
format_object1(const char *
fmt
, const T &val)
86
: format_object_base(
fmt
), Val(val) {
90
return snprintf(Buffer, BufferSize,
Fmt
, Val);
99
format_object2(const char *
fmt
, const T1 &val1, const T2 &val2)
100
: format_object_base(
fmt
), Val1(val1), Val2(val2) {
104
return snprintf(Buffer, BufferSize,
Fmt
, Val1, Val2)
[
all
...]
raw_ostream.h
211
raw_ostream &operator<<(const format_object_base &
Fmt
);
/external/llvm/tools/llvm-objdump/
ELFDump.cpp
56
const char *
Fmt
= ELFT::Is64Bits ? "0x%016" PRIx64 " " : "0x%08" PRIx64 " ";
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)
llvm-objdump.cpp
393
StringRef
Fmt
= Obj->getBytesInAddress() > 4 ? "\t\t%016" PRIx64 ": " :
550
outs() << format(
Fmt
.data(), SectionAddr + addr) << name
562
StringRef
Fmt
= Obj->getBytesInAddress() > 4 ? "%016" PRIx64 :
586
outs() << format(
Fmt
.data(), address) << " " << relocname << " "
772
const char *
Fmt
= o->getBytesInAddress() > 4 ? "%016" PRIx64 :
775
outs() << format(
Fmt
, Address) << " "
/external/clang/lib/Basic/
Builtins.cpp
101
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/tools/libclang/
CLog.h
87
Logger &operator<<(const llvm::format_object_base &
Fmt
);
CIndex.cpp
[
all
...]
/external/clang/include/clang/Basic/
Builtins.h
183
const char *
Fmt
) const;
/external/llvm/lib/Support/
raw_ostream.cpp
357
raw_ostream &raw_ostream::operator<<(const format_object_base &
Fmt
) {
363
size_t BytesUsed =
Fmt
.print(OutBufCur, BufferBytesLeft);
385
size_t BytesUsed =
Fmt
.print(V.data(), NextBufferSize);
/external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp
625
SmallString<256>
Fmt
;
626
llvm::raw_svector_ostream OS(
Fmt
);
652
SmallString<256>
Fmt
;
653
llvm::raw_svector_ostream OS(
Fmt
);
Completed in 152 milliseconds