Home | History | Annotate | Download | only in Interpreter

Lines Matching refs:Args

20 #include "lldb/Interpreter/Args.h"
164 // "target.run-args{arch==i386}" -- only set run args if the arch is i386
165 // "target.run-args{path=/tmp/a/b/c/a.out}" -- only set run args if the path matches
166 // "target.run-args{basename==test&&arch==x86_64}" -- only set run args if exectable basename is "test" and arch is "x86_64"
304 OptionValueProperties::GetPropertyAtIndexAsArgs (const ExecutionContext *exe_ctx, uint32_t idx, Args &args) const
314 return array->GetArgs(args);
319 return dict->GetArgs(args);
327 OptionValueProperties::SetPropertyAtIndexFromArgs (const ExecutionContext *exe_ctx, uint32_t idx, const Args &args)
337 return array->SetArgs(args, eVarSetOperationAssign).Success();
342 return dict->SetArgs(args, eVarSetOperationAssign).Success();
584 // Args args(value_cstr);
585 // const size_t argc = args.GetArgumentCount();