| /freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | OptionValueFileSpecList.cpp | 61 StringConvert::ToUInt32(args.GetArgumentAtIndex(0), UINT32_MAX); in SetValueFromString() 105 StringConvert::ToUInt32(args.GetArgumentAtIndex(0), UINT32_MAX); in SetValueFromString() 133 StringConvert::ToSInt32(args.GetArgumentAtIndex(i), INT32_MAX); in SetValueFromString()
|
| H A D | OptionValuePathMappings.cpp | 56 StringConvert::ToUInt32(args.GetArgumentAtIndex(0), UINT32_MAX); in SetValueFromString() 132 StringConvert::ToUInt32(args.GetArgumentAtIndex(0), UINT32_MAX); in SetValueFromString() 173 StringConvert::ToSInt32(args.GetArgumentAtIndex(i), INT32_MAX); in SetValueFromString()
|
| H A D | OptionValueArray.cpp | 171 StringConvert::ToUInt32(args.GetArgumentAtIndex(0), UINT32_MAX); in SetArgs() 211 StringConvert::ToSInt32(args.GetArgumentAtIndex(i), INT32_MAX); in SetArgs() 253 StringConvert::ToUInt32(args.GetArgumentAtIndex(0), UINT32_MAX); in SetArgs()
|
| H A D | Property.cpp | 186 ? StringConvert::ToSInt64(definition.default_cstr_value) in Property() 197 ? StringConvert::ToUInt64(definition.default_cstr_value) in Property()
|
| H A D | OptionValueSInt64.cpp | 46 int64_t value = StringConvert::ToSInt64(value_str.c_str(), 0, 0, &success); in SetValueFromString()
|
| H A D | OptionValueUInt64.cpp | 50 uint64_t value = StringConvert::ToUInt64(value_str.c_str(), 0, 0, &success); in SetValueFromString()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/ |
| H A D | StringConvert.h | 16 namespace StringConvert {
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/ |
| H A D | module.modulemap | 51 module StringConvert { textual header "Host/StringConvert.h" export * }
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | StringConvert.cpp | 14 namespace StringConvert { namespace
|
| H A D | XML.cpp | 162 value = StringConvert::ToUInt64(str_value.data(), fail_value, base, &success); in GetAttributeValueAsUnsigned() 310 value = StringConvert::ToUInt64(text.c_str(), fail_value, base, &success); in GetElementTextAsUnsigned()
|
| H A D | Socket.cpp | 288 port = StringConvert::ToUInt32(port_str.c_str(), UINT32_MAX, 10, &ok); in DecodeHostAndPort()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.cpp | 395 uint32_t reg = StringConvert::ToUInt32(value_pair.first.str().c_str(), in SplitCommaSeparatedRegisterNumberString() 1524 pc = StringConvert::ToUInt64(value.c_str(), LLDB_INVALID_ADDRESS, 16); in UpdateThreadPCsFromStopReplyThreadsValue() 1529 pc = StringConvert::ToUInt64(value.c_str(), LLDB_INVALID_ADDRESS, 16); in UpdateThreadPCsFromStopReplyThreadsValue() 2100 StringConvert::ToUInt32(key.GetCString(), UINT32_MAX, 10); in SetThreadStopInfo() 4403 StringConvert::ToUInt32(value.data(), 0, 0) / CHAR_BIT; in ParseRegisters() 4447 StringConvert::ToUInt32(value.data(), UINT32_MAX, 0); in ParseRegisters() 4585 set_id = StringConvert::ToUInt32(value.data(), in GetGDBServerRegisterInfoXMLAndProcess() 4723 StringConvert::ToUInt64(main_lm.data(), LLDB_INVALID_ADDRESS, 0); in GetLoadedModuleList() 4739 module.set_link_map(StringConvert::ToUInt64( in GetLoadedModuleList() 4744 module.set_base(StringConvert::ToUInt64( in GetLoadedModuleList() [all …]
|
| H A D | GDBRemoteCommunication.cpp | 1176 uint16_t child_port = StringConvert::ToUInt32(port_cstr, 0); in StartDebugserverProcess()
|
| H A D | GDBRemoteCommunicationClient.cpp | 1588 page = StringConvert::ToUInt64(comma_sep_str.c_str(), in GetMemoryRegionInfo() 1594 page = StringConvert::ToUInt64(comma_sep_str.c_str(), in GetMemoryRegionInfo()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFUnit.cpp | 645 StringConvert::ToUInt32(matches[1].str().c_str(), UINT32_MAX, 10); in ParseProducerInfo() 647 StringConvert::ToUInt32(matches[2].str().c_str(), UINT32_MAX, 10); in ParseProducerInfo() 649 StringConvert::ToUInt32(matches[3].str().c_str(), UINT32_MAX, 10); in ParseProducerInfo()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | UnixSignals.cpp | 160 StringConvert::ToSInt32(name, LLDB_INVALID_SIGNAL_NUMBER, 0); in GetSignalNumberFromName()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
| H A D | DynamicRegisterInfo.cpp | 146 StringConvert::ToUInt32(msbit_str.c_str(), UINT32_MAX); in SetRegisterInfo() 148 StringConvert::ToUInt32(lsbit_str.c_str(), UINT32_MAX); in SetRegisterInfo()
|
| /freebsd-13.1/contrib/llvm-project/lldb/tools/lldb-server/ |
| H A D | lldb-gdbserver.cpp | 241 connection_portno = StringConvert::ToUInt32(connection_port.c_str(), 0); in ConnectToRemote()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | SymbolContext.cpp | 980 m_start_line = StringConvert::ToSInt32(spec_string, 0, 0, &return_value); in AddSpecification() 985 m_end_line = StringConvert::ToSInt32(spec_string, 0, 0, &return_value); in AddSpecification()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/ |
| H A D | RenderScriptRuntime.cpp | 4573 StringConvert::ToUInt32(id_cstr, UINT32_MAX, 0, &success); in DoExecute() 4719 StringConvert::ToUInt32(id_cstr, UINT32_MAX, 0, &success); in DoExecute() 4768 StringConvert::ToUInt32(id_cstr, UINT32_MAX, 0, &success); in DoExecute()
|
| /freebsd-13.1/lib/clang/liblldb/ |
| H A D | Makefile | 250 SRCS+= Host/common/StringConvert.cpp
|