reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Symbol/Variable.h
   83   bool IsInScope(StackFrame *frame);

References

tools/lldb/source/API/SBFrame.cpp
  613                 [frame](Variable *v) { return v->IsInScope(frame); },
  869                   if (in_scope_only && !variable_sp->IsInScope(frame))
tools/lldb/source/Core/ValueObjectVariable.cpp
  231       return m_variable_sp->IsInScope(frame);
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
  932         if (this_var && this_var->IsInScope(frame) &&
 1058         if (self_var && self_var->IsInScope(frame) &&
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp
  172         if (!this_var_sp || !this_var_sp->IsInScope(frame) ||
  202         if (!self_variable_sp || !self_variable_sp->IsInScope(frame) ||
  245           if (!this_var_sp || !this_var_sp->IsInScope(frame) ||
  272           if (!self_variable_sp || !self_variable_sp->IsInScope(frame) ||
tools/lldb/source/Target/StackFrame.cpp
  477           return v->IsInScope(this) && (!must_have_valid_location ||
 1754             [this](Variable *v) { return v->IsInScope(this); },