/openbsd/gnu/llvm/lldb/source/Core/ |
H A D | ValueObjectCast.cpp | 92 bool ValueObjectCast::IsInScope() { return m_parent->IsInScope(); } in IsInScope() function in ValueObjectCast
|
H A D | ValueObjectChild.cpp | 219 bool ValueObjectChild::IsInScope() { in IsInScope() function in ValueObjectChild 222 return root->IsInScope(); in IsInScope()
|
H A D | ValueObjectDynamicValue.cpp | 268 bool ValueObjectDynamicValue::IsInScope() { return m_parent->IsInScope(); } in IsInScope() function in ValueObjectDynamicValue
|
H A D | ValueObjectVariable.cpp | 308 bool ValueObjectVariable::IsInScope() { in IsInScope() function in ValueObjectVariable 314 return m_variable_sp->IsInScope(frame); in IsInScope()
|
H A D | ValueObjectSyntheticFilter.cpp | 347 bool ValueObjectSynthetic::IsInScope() { return m_parent->IsInScope(); } in IsInScope() function in ValueObjectSynthetic
|
H A D | ValueObjectMemory.cpp | 226 bool ValueObjectMemory::IsInScope() { in IsInScope() function in ValueObjectMemory
|
H A D | ValueObjectConstResult.cpp | 241 bool ValueObjectConstResult::IsInScope() { in IsInScope() function in ValueObjectConstResult
|
/openbsd/gnu/llvm/lldb/include/lldb/Core/ |
H A D | ValueObjectCast.h | 40 bool IsInScope() override;
|
H A D | ValueObjectMemory.h | 54 bool IsInScope() override;
|
H A D | ValueObjectVariable.h | 53 bool IsInScope() override;
|
H A D | ValueObjectChild.h | 50 bool IsInScope() override;
|
H A D | ValueObjectDynamicValue.h | 50 bool IsInScope() override;
|
H A D | ValueObjectSyntheticFilter.h | 64 bool IsInScope() override;
|
H A D | ValueObjectConstResult.h | 76 bool IsInScope() override;
|
H A D | ValueObject.h | 420 virtual bool IsInScope() { return true; } in IsInScope() function
|
/openbsd/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangUserExpression.cpp | 172 if (!this_var_sp || !this_var_sp->IsInScope(frame) || in ScanContext() 202 if (!self_variable_sp || !self_variable_sp->IsInScope(frame) || in ScanContext() 245 if (!this_var_sp || !this_var_sp->IsInScope(frame) || in ScanContext() 272 if (!self_variable_sp || !self_variable_sp->IsInScope(frame) || in ScanContext()
|
/openbsd/gnu/llvm/lldb/include/lldb/Symbol/ |
H A D | Variable.h | 90 bool IsInScope(StackFrame *frame);
|
/openbsd/gnu/llvm/lldb/bindings/interface/ |
H A D | SBValue.i | 93 IsInScope (); 491 …is_in_scope = property(IsInScope, None, doc='''A read only property that returns a boolean value t…
|
/openbsd/gnu/llvm/lldb/include/lldb/API/ |
H A D | SBValue.h | 49 bool IsInScope();
|
/openbsd/gnu/llvm/lldb/source/API/ |
H A D | SBValue.cpp | 339 bool SBValue::IsInScope() { in IsInScope() function in SBValue 347 result = value_sp->IsInScope(); in IsInScope() 1432 if (!IsInScope()) in Watch() 1492 if (IsInScope() && GetType().IsPointerType()) in WatchPointee()
|
H A D | SBFrame.cpp | 601 [frame](Variable *v) { return v->IsInScope(frame); }, in FindValue() 844 if (in_scope_only && !variable_sp->IsInScope(frame)) in GetVariables()
|
/openbsd/gnu/llvm/lldb/examples/python/ |
H A D | sbvalue.py | 58 return self.sbvalue.IsInScope()
|
/openbsd/gnu/llvm/lldb/source/DataFormatters/ |
H A D | ValueObjectPrinter.cpp | 313 return m_valobj->IsInScope(); in CheckScopeIfNeeded()
|
/openbsd/gnu/llvm/lldb/source/Symbol/ |
H A D | Variable.cpp | 272 bool Variable::IsInScope(StackFrame *frame) { in IsInScope() function in Variable
|
/openbsd/gnu/llvm/lldb/source/Target/ |
H A D | StackFrame.cpp | 492 return v->IsInScope(this) && (!must_have_valid_location || in GetInScopeVariableList() 1749 [this](Variable *v) { return v->IsInScope(this); }, in FindVariable()
|