Home
last modified time | relevance | path

Searched refs:format_str (Results 1 – 9 of 9) sorted by relevance

/llvm-project/llvm/test/Transforms/InstCombine/
H A Dprintf-2.ll11 @format_str = constant [3 x i8] c"%s\00"
62 call i32 (ptr, ...) @printf(ptr @format_str, ptr @charstr)
72 call i32 (ptr, ...) @printf(ptr @format_str, ptr @empty)
83 call i32 (ptr, ...) @printf(ptr @format_str, ptr @hello_world)
97 call i32 (ptr, ...) @printf(ptr @format_str, ptr @empty, i32 42, double 0x40091EB860000000)
98 call i32 (ptr, ...) @printf(ptr @format_str, ptr @charstr, i32 42, double 0x40091EB860000000)
99 call i32 (ptr, ...) @printf(ptr @format_str, ptr @hello_world, i32 42, double 0x40091EB860000000)
/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp1154 bool FormatEntity::FormatStringRef(const llvm::StringRef &format_str, Stream &s, in FormatStringRef()
1160 if (!format_str.empty()) { in FormatStringRef()
1162 Status error = FormatEntity::Parse(format_str, root); in FormatStringRef()
1178 llvm::StringRef format_str(format); in FormatCString()
1179 Status error = FormatEntity::Parse(format_str, root); in FormatCString()
1933 static Status ParseEntry(const llvm::StringRef &format_str, in ParseEntry()
1937 const size_t sep_pos = format_str.find_first_of(".[:"); in ParseEntry()
1939 (sep_pos == llvm::StringRef::npos) ? '\0' : format_str[sep_pos]; in ParseEntry()
1940 llvm::StringRef key = format_str.substr(0, sep_pos); in ParseEntry()
1949 format_str in ParseEntry()
1151 FormatStringRef(const llvm::StringRef & format_str,Stream & s,const SymbolContext * sc,const ExecutionContext * exe_ctx,const Address * addr,ValueObject * valobj,bool function_changed,bool initial_function) FormatStringRef() argument
1175 llvm::StringRef format_str(format); FormatCString() local
1919 ParseEntry(const llvm::StringRef & format_str,const Definition * parent,FormatEntity::Entry & entry) ParseEntry() argument
2003 FindEntry(const llvm::StringRef & format_str,const Definition * parent,llvm::StringRef & remainder) FindEntry() argument
2328 ExtractVariableInfo(llvm::StringRef & format_str,llvm::StringRef & variable_name,llvm::StringRef & variable_format) ExtractVariableInfo() argument
2516 Parse(const llvm::StringRef & format_str,Entry & entry) Parse() argument
[all...]
/llvm-project/llvm/utils/
H A Dextract-section.py148 format_str = "{:0" + str(args.hex_width * 2) + "x}" variable
150 results.append(format_str.format(word))
/llvm-project/lldb/source/Utility/
H A DLog.cpp355 llvm::SmallString<12> format_str; in WriteHeader()
356 llvm::raw_svector_ostream format_os(format_str); in WriteHeader()
358 OS << llvm::formatv(format_str.c_str(), thread_name); in WriteHeader()
343 llvm::SmallString<12> format_str; WriteHeader() local
H A DStream.cpp87 std::string format_str = lldb_private::ansi::FormatAnsiTerminalCodes( in PutCStringColorHighlighted() local
93 Printf(format_str.c_str(), match.size(), match.data()); in PutCStringColorHighlighted()
/llvm-project/lldb/test/API/tools/lldb-server/
H A DTestLldbGdbServer.py1482 format_str = "iii{}P".format(pad)
1485 format_str = "iiiiiiP"
1488 format_str = "iii{}P".format(pad)
1494 decoder = struct.Struct(format_str)
/llvm-project/lldb/source/Target/
H A DDynamicRegisterInfo.cpp290 llvm::StringRef format_str; in SetRegisterInfo() local
291 if (reg_info_dict->GetValueForKeyAsString("format", format_str, nullptr)) { in SetRegisterInfo()
292 if (OptionArgParser::ToFormat(format_str.str().c_str(), reg_info.format, in SetRegisterInfo()
/llvm-project/lldb/include/lldb/Core/
H A DFormatEntity.h225 Status ExtractVariableInfo(llvm::StringRef &format_str,
/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp3548 const char *format_str = DEBUGSERVER_BASENAME " died with signal {0}"; in StartAsyncThread()
3550 stream.Format(format_str, signal_name); in StartAsyncThread()
3552 stream.Format(format_str, signo); in StartAsyncThread()
3491 const char *format_str = DEBUGSERVER_BASENAME " died with signal {0}"; MonitorDebugserverProcess() local