Home | History | Annotate | Download | only in llvm-readobj

Lines Matching refs:Label

83   void printEnum(StringRef Label, T Value,
96 startLine() << Label << ": " << Name << " (" << hex(Value) << ")\n";
98 startLine() << Label << ": " << hex(Value) << "\n";
103 void printFlags(StringRef Label, T Value, ArrayRef<EnumEntry<TFlag>> Flags,
130 startLine() << Label << " [ (" << hex(Value) << ")\n";
138 void printFlags(StringRef Label, T Value) {
139 startLine() << Label << " [ (" << hex(Value) << ")\n";
151 void printNumber(StringRef Label, uint64_t Value) {
152 startLine() << Label << ": " << Value << "\n";
155 void printNumber(StringRef Label, uint32_t Value) {
156 startLine() << Label << ": " << Value << "\n";
159 void printNumber(StringRef Label, uint16_t Value) {
160 startLine() << Label << ": " << Value << "\n";
163 void printNumber(StringRef Label, uint8_t Value) {
164 startLine() << Label << ": " << unsigned(Value) << "\n";
167 void printNumber(StringRef Label, int64_t Value) {
168 startLine() << Label << ": " << Value << "\n";
171 void printNumber(StringRef Label, int32_t Value) {
172 startLine() << Label << ": " << Value << "\n";
175 void printNumber(StringRef Label, int16_t Value) {
176 startLine() << Label << ": " << Value << "\n";
179 void printNumber(StringRef Label, int8_t Value) {
180 startLine() << Label << ": " << int(Value) << "\n";
183 void printBoolean(StringRef Label, bool Value) {
184 startLine() << Label << ": " << (Value ? "Yes" : "No") << '\n';
188 void printList(StringRef Label, const T &List) {
189 startLine() << Label << ": [";
201 void printHexList(StringRef Label, const T &List) {
202 startLine() << Label << ": [";
214 void printHex(StringRef Label, T Value) {
215 startLine() << Label << ": " << hex(Value) << "\n";
219 void printHex(StringRef Label, StringRef Str, T Value) {
220 startLine() << Label << ": " << Str << " (" << hex(Value) << ")\n";
223 void printString(StringRef Label, StringRef Value) {
224 startLine() << Label << ": " << Value << "\n";
227 void printString(StringRef Label, const std::string &Value) {
228 startLine() << Label << ": " << Value << "\n";
232 void printNumber(StringRef Label, StringRef Str, T Value) {
233 startLine() << Label << ": " << Str << " (" << Value << ")\n";
236 void printBinary(StringRef Label, StringRef Str, ArrayRef<uint8_t> Value) {
237 printBinaryImpl(Label, Str, Value, false);
240 void printBinary(StringRef Label, StringRef Str, ArrayRef<char> Value) {
243 printBinaryImpl(Label, Str, V, false);
246 void printBinary(StringRef Label, ArrayRef<uint8_t> Value) {
247 printBinaryImpl(Label, StringRef(), Value, false);
250 void printBinary(StringRef Label, ArrayRef<char> Value) {
253 printBinaryImpl(Label, StringRef(), V, false);
256 void printBinary(StringRef Label, StringRef Value) {
259 printBinaryImpl(Label, StringRef(), V, false);
262 void printBinaryBlock(StringRef Label, StringRef Value) {
265 printBinaryImpl(Label, StringRef(), V, true);
283 void printBinaryImpl(StringRef Label, StringRef Str, ArrayRef<uint8_t> Value,