Lines Matching defs:arg
410 python::PythonObject Transform(bool arg) {
412 return python::PythonBoolean(arg);
415 python::PythonObject Transform(const Status &arg) {
416 return python::SWIGBridge::ToSWIGWrapper(arg.Clone());
419 python::PythonObject Transform(Status &&arg) {
420 return python::SWIGBridge::ToSWIGWrapper(std::move(arg));
423 python::PythonObject Transform(const StructuredDataImpl &arg) {
424 return python::SWIGBridge::ToSWIGWrapper(arg);
427 python::PythonObject Transform(lldb::ExecutionContextRefSP arg) {
428 return python::SWIGBridge::ToSWIGWrapper(arg);
431 python::PythonObject Transform(lldb::TargetSP arg) {
432 return python::SWIGBridge::ToSWIGWrapper(arg);
435 python::PythonObject Transform(lldb::ProcessSP arg) {
436 return python::SWIGBridge::ToSWIGWrapper(arg);
439 python::PythonObject Transform(lldb::ThreadPlanSP arg) {
440 return python::SWIGBridge::ToSWIGWrapper(arg);
443 python::PythonObject Transform(lldb::ProcessAttachInfoSP arg) {
444 return python::SWIGBridge::ToSWIGWrapper(arg);
447 python::PythonObject Transform(lldb::ProcessLaunchInfoSP arg) {
448 return python::SWIGBridge::ToSWIGWrapper(arg);
451 python::PythonObject Transform(Event *arg) {
452 return python::SWIGBridge::ToSWIGWrapper(arg);
455 python::PythonObject Transform(lldb::StreamSP arg) {
456 return python::SWIGBridge::ToSWIGWrapper(arg.get());
459 python::PythonObject Transform(lldb::DataExtractorSP arg) {
460 return python::SWIGBridge::ToSWIGWrapper(arg);
526 void FormatArgs(std::string &fmt, T arg, Args... args) const {
527 FormatArgs(fmt, arg);
531 template <typename T> void FormatArgs(std::string &fmt, T arg) const {