Home
last modified time | relevance | path

Searched refs:GetOptions (Results 1 – 25 of 134) sorted by relevance

123456

/openbsd/gnu/llvm/lldb/source/API/
H A DSBBreakpointName.cpp215 bp_name->GetOptions().SetEnabled(enable); in SetEnabled()
239 return bp_name->GetOptions().IsEnabled(); in IsEnabled()
252 bp_name->GetOptions().SetOneShot(one_shot); in SetOneShot()
266 return bp_name->GetOptions().IsOneShot(); in IsOneShot()
279 bp_name->GetOptions().SetIgnoreCount(count); in SetIgnoreCount()
293 return bp_name->GetOptions().GetIgnoreCount(); in GetIgnoreCount()
306 bp_name->GetOptions().SetCondition(condition); in SetCondition()
320 return bp_name->GetOptions().GetConditionText(); in GetCondition()
333 bp_name->GetOptions().SetAutoContinue(auto_continue); in SetAutoContinue()
347 return bp_name->GetOptions().IsAutoContinue(); in GetAutoContinue()
[all …]
H A DSBTypeSummary.cpp233 uint32_t SBTypeSummary::GetOptions() { in GetOptions() function in SBTypeSummary
238 return m_opaque_sp->GetOptions(); in GetOptions()
351 return GetOptions() == rhs.GetOptions(); in IsEqualTo()
355 return GetOptions() == rhs.GetOptions(); in IsEqualTo()
392 GetOptions(), current_summary_ptr->m_impl, in CopyOnWrite_Impl()
397 GetOptions(), current_summary_ptr->GetFunctionName(), in CopyOnWrite_Impl()
402 GetOptions(), current_summary_ptr->GetSummaryString())); in CopyOnWrite_Impl()
421 new_sp = TypeSummaryImplSP(new StringSummaryFormat(GetOptions(), "")); in ChangeSummaryType()
428 new_sp = TypeSummaryImplSP(new ScriptSummaryFormat(GetOptions(), "", "")); in ChangeSummaryType()
430 new_sp = TypeSummaryImplSP(new StringSummaryFormat(GetOptions(), "")); in ChangeSummaryType()
H A DSBTypeFormat.cpp68 uint32_t SBTypeFormat::GetOptions() { in GetOptions() function in SBTypeFormat
72 return m_opaque_sp->GetOptions(); in GetOptions()
134 return GetOptions() == rhs.GetOptions(); in IsEqualTo()
177 TypeFormatImplSP(new TypeFormatImpl_Format(GetFormat(), GetOptions()))); in CopyOnWrite_Impl()
180 new TypeFormatImpl_EnumType(ConstString(GetTypeName()), GetOptions()))); in CopyOnWrite_Impl()
H A DSBTypeFilter.cpp43 uint32_t SBTypeFilter::GetOptions() { in GetOptions() function in SBTypeFilter
47 return m_opaque_sp->GetOptions(); in GetOptions()
145 return GetOptions() == rhs.GetOptions(); in IsEqualTo()
172 TypeFilterImplSP new_sp(new TypeFilterImpl(GetOptions())); in CopyOnWrite_Impl()
H A DSBTypeSynthetic.cpp100 uint32_t SBTypeSynthetic::GetOptions() { in GetOptions() function in SBTypeSynthetic
105 return m_opaque_sp->GetOptions(); in GetOptions()
160 return GetOptions() == rhs.GetOptions(); in IsEqualTo()
191 m_opaque_sp->GetOptions(), m_opaque_sp->GetPythonClassName(), in CopyOnWrite_Impl()
H A DSBBreakpoint.cpp378 bkpt_sp->GetOptions().GetThreadSpec()->SetIndex(index); in SetThreadIndex()
391 bkpt_sp->GetOptions().GetThreadSpecNoCreate(); in GetThreadIndex()
407 bkpt_sp->GetOptions().GetThreadSpec()->SetName(thread_name); in SetThreadName()
420 bkpt_sp->GetOptions().GetThreadSpecNoCreate(); in GetThreadName()
435 bkpt_sp->GetOptions().GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
448 bkpt_sp->GetOptions().GetThreadSpecNoCreate(); in GetQueueName()
496 bkpt_sp->GetOptions().SetCommandDataCallback(cmd_data_up); in SetCommandLineCommands()
507 bkpt_sp->GetOptions().GetCommandLineCallbacks(command_list); in GetCommandLineCommands()
619 BreakpointOptions &bp_options = bkpt_sp->GetOptions(); in SetScriptCallbackFunction()
643 BreakpointOptions &bp_options = bkpt_sp->GetOptions(); in SetScriptCallbackBody()
/openbsd/gnu/usr.bin/perl/cpan/Getopt-Long/t/
H A Dgol-linkage.t19 print "ok 1\n" if GetOptions (\%lnk, "foo", "Foo=s");
32 print "ok 9\n" if GetOptions (\%lnk, "foo" => \$foo, "Foo=s");
47 print "ok 19\n" if GetOptions (\%lnk, "bar" => \$bar, "Foo=s");
67 GetOptions (\%lnk, "bar" => \$bar, "Foo=s");
75 GetOptions (\%lnk, "bar" => \$bar, "Foo=s");
89 print "not" unless GetOptions (\%lnk, "foo=s" => \$foo);
100 print "not" unless GetOptions
114 print "not" unless GetOptions
H A Dgol-basic.t23 print (GetOptions("foo", "Foo=s") ? "" : "not ", "ok 1\n");
35 $rv = GetOptions(
54 $rd = GetOptions('foo=s' => \$foo);
59 $rd = GetOptions('foo!' => \$foo);
64 $rd = GetOptions('foo!' => \$foo);
/openbsd/gnu/llvm/lldb/source/Breakpoint/
H A DBreakpointName.cpp33 m_name(name), m_options(bkpt.GetOptions()) in BreakpointName()
61 if (GetOptions().AnySet()) in GetDescription()
66 GetOptions().GetDescription(s, level); in GetDescription()
84 bp_sp->GetOptions().CopyOverSetOptions(GetOptions()); in ConfigureBreakpoint()
/openbsd/gnu/llvm/lldb/bindings/interface/
H A DSBTypeFilter.i50 GetOptions();
68 options = property(GetOptions, SetOptions)
H A DSBTypeFormat.i43 GetOptions();
69 options = property(GetOptions, SetOptions)
H A DSBTypeSynthetic.i51 GetOptions ();
70 options = property(GetOptions, SetOptions)
H A DSBTypeSummary.i89 GetOptions ();
108 options = property(GetOptions, SetOptions)
/openbsd/gnu/llvm/lldb/source/Interpreter/
H A DCommandObject.cpp66 if (!IsDashDashCommand() && GetOptions() != nullptr) in GetSyntax()
72 if (!IsDashDashCommand() && WantsRawCommandString() && GetOptions() && in GetSyntax()
73 GetOptions()->NumCommandOptions()) in GetSyntax()
100 Options *CommandObject::GetOptions() { in GetOptions() function in CommandObject
108 Options *options = GetOptions(); in ParseOptions()
289 Options *cur_options = GetOptions(); in HandleCompletion()
328 if (!found_word && search_options && GetOptions() != nullptr) { in HelpTextContainsWord()
330 GetOptions()->GenerateOptionUsage( in HelpTextContainsWord()
606 Options *options = GetOptions(); in GenerateHelpText()
H A DCommandAlias.cpp37 Options *options = cmd_obj_sp->GetOptions(); in ProcessAliasOptionsArgs()
131 Options *CommandAlias::GetOptions() { in GetOptions() function in CommandAlias
133 return m_underlying_command_sp->GetOptions(); in GetOptions()
/openbsd/gnu/llvm/lldb/source/Commands/
H A DCommandObjectTrace.cpp73 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectTraceSave
196 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectTraceLoad
278 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectTraceDump
347 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectTraceSchema
H A DCommandObjectPlatform.cpp165 Options *GetOptions() override { return &m_option_group; } in GetOptions() function in CommandObjectPlatformSelect
309 Options *GetOptions() override { in GetOptions() function in CommandObjectPlatformConnect
407 Options *GetOptions() override { in GetOptions() function in CommandObjectPlatformSettings
456 Options *GetOptions() override { in GetOptions() function in CommandObjectPlatformMkDir
520 Options *GetOptions() override { in GetOptions() function in CommandObjectPlatformFOpen
617 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectPlatformFRead
712 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectPlatformFWrite
1156 Options *GetOptions() override { return &m_all_options; } in GetOptions() function in CommandObjectPlatformProcessLaunch
1245 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectPlatformProcessList
1662 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectPlatformProcessAttach
[all …]
H A DCommandObjectBreakpointCommand.cpp205 Options *GetOptions() override { return &m_all_options; } in GetOptions() function in CommandObjectBreakpointCommandAdd
373 m_bp_options_vec.push_back(bp->GetOptions()); in DoExecute()
471 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectBreakpointCommandDelete
642 baton = bp->GetOptions().GetBaton(); in DoExecute()
H A DCommandObjectBreakpoint.cpp253 Options *GetOptions() override { return &m_all_options; } in GetOptions() function in CommandObjectBreakpointSet
836 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectBreakpointModify
866 bp->GetOptions().CopyOverSetOptions( in DoExecute()
1119 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectBreakpointList
1250 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectBreakpointClear
1402 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectBreakpointDelete
1713 Options *GetOptions() override { return &m_option_group; } in GetOptions() function in CommandObjectBreakpointNameConfigure
1807 Options *GetOptions() override { return &m_option_group; } in GetOptions() function in CommandObjectBreakpointNameAdd
1891 Options *GetOptions() override { return &m_option_group; } in GetOptions() function in CommandObjectBreakpointNameDelete
2151 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectBreakpointRead
[all …]
/openbsd/gnu/llvm/lldb/source/Plugins/Trace/intel-pt/
H A DCommandObjectTraceStartIntelPT.h55 Options *GetOptions() override { return &m_options; } in GetOptions() function
105 Options *GetOptions() override { return &m_options; } in GetOptions() function
/openbsd/gnu/llvm/lldb/include/lldb/Interpreter/
H A DOptionValueString.h87 Flags &GetOptions() { return m_options; } in GetOptions() function
89 const Flags &GetOptions() const { return m_options; } in GetOptions() function
/openbsd/gnu/llvm/lldb/include/lldb/Host/
H A DFile.h318 virtual llvm::Expected<OpenOptions> GetOptions() const;
321 auto opts = GetOptions(); in GetOpenMode()
411 llvm::Expected<OpenOptions> GetOptions() const override;
/openbsd/gnu/llvm/lldb/include/lldb/Breakpoint/
H A DBreakpointName.h163 BreakpointOptions &GetOptions() { return m_options; } in GetOptions() function
164 const BreakpointOptions &GetOptions() const { return m_options; } in GetOptions() function
/openbsd/gnu/usr.bin/texinfo/doc/
H A Dhelp2man73 GetOptions (%opt_def,
148 GetOptions %opt_def;
/openbsd/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ExtUtils/
H A Dxsubpp25 GetOptions(\%args, qw(hiertype!

123456