reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Utility/DataExtractor.cpp
 1003       sstr.Printf(format ? format : " %2.2x", GetU8(&offset));
 1003       sstr.Printf(format ? format : " %2.2x", GetU8(&offset));
 1007       sstr.Printf(format ? format : " %c", isprint(ch) ? ch : ' ');
 1007       sstr.Printf(format ? format : " %c", isprint(ch) ? ch : ' ');
 1010       sstr.Printf(format ? format : " %4.4x", GetU16(&offset));
 1010       sstr.Printf(format ? format : " %4.4x", GetU16(&offset));
 1013       sstr.Printf(format ? format : " %8.8x", GetU32(&offset));
 1013       sstr.Printf(format ? format : " %8.8x", GetU32(&offset));
 1016       sstr.Printf(format ? format : " %16.16" PRIx64, GetU64(&offset));
 1016       sstr.Printf(format ? format : " %16.16" PRIx64, GetU64(&offset));
 1019       sstr.Printf(format ? format : " 0x%" PRIx64, GetAddress(&offset));
 1019       sstr.Printf(format ? format : " 0x%" PRIx64, GetAddress(&offset));
 1022       sstr.Printf(format ? format : " 0x%" PRIx64, GetULEB128(&offset));
 1022       sstr.Printf(format ? format : " 0x%" PRIx64, GetULEB128(&offset));
 1025       sstr.Printf(format ? format : " %" PRId64, GetSLEB128(&offset));
 1025       sstr.Printf(format ? format : " %" PRId64, GetSLEB128(&offset));