Lines Matching refs:var_sp
454 llvm::StringRef GetScopeString(VariableSP var_sp) { in GetScopeString() argument
455 if (!var_sp) in GetScopeString()
458 switch (var_sp->GetScope()) { in GetScopeString()
490 VariableSP var_sp; in DoExecute() local
535 var_sp = regex_var_list.GetVariableAtIndex(regex_idx); in DoExecute()
536 if (var_sp) { in DoExecute()
538 var_sp, m_varobj_options.use_dynamic); in DoExecute()
542 scope_string = GetScopeString(var_sp).str(); in DoExecute()
548 var_sp->GetDeclaration().GetFile()) { in DoExecute()
551 if (var_sp->DumpDeclaration(&s, show_fullpaths, in DoExecute()
581 lldb::VariableSP var_sp; in DoExecute() local
584 var_sp, error); in DoExecute()
588 scope_string = GetScopeString(var_sp).str(); in DoExecute()
592 if (m_option_variable.show_decl && var_sp && in DoExecute()
593 var_sp->GetDeclaration().GetFile()) { in DoExecute()
594 var_sp->GetDeclaration().DumpStopContext(&s, false); in DoExecute()
623 var_sp = variable_list->GetVariableAtIndex(i); in DoExecute()
624 switch (var_sp->GetScope()) { in DoExecute()
647 scope_string = GetScopeString(var_sp).str(); in DoExecute()
652 var_sp, m_varobj_options.use_dynamic); in DoExecute()
666 var_sp->GetDeclaration().GetFile()) { in DoExecute()
667 var_sp->GetDeclaration().DumpStopContext(&s, false); in DoExecute()
675 var_sp ? var_sp->GetName().AsCString() : nullptr); in DoExecute()