Searched refs:IsInScope (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectCast.h39 bool IsInScope() override;
H A DValueObjectChild.h51 bool IsInScope() override;
H A DValueObjectMemory.h53 bool IsInScope() override;
H A DValueObjectVariable.h52 bool IsInScope() override;
H A DValueObjectDynamicValue.h50 bool IsInScope() override;
H A DValueObjectConstResult.h75 bool IsInScope() override;
H A DValueObjectSyntheticFilter.h63 bool IsInScope() override;
H A DValueObject.h413 virtual bool IsInScope() { return true; } function in class:lldb_private::ValueObject
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DValueObjectCast.cpp94 bool ValueObjectCast::IsInScope() { return m_parent->IsInScope(); } function in class:ValueObjectCast
H A DValueObjectVariable.cpp225 bool ValueObjectVariable::IsInScope() { function in class:ValueObjectVariable
231 return m_variable_sp->IsInScope(frame);
H A DValueObjectChild.cpp247 bool ValueObjectChild::IsInScope() { function in class:ValueObjectChild
250 return root->IsInScope();
H A DValueObjectSyntheticFilter.cpp341 bool ValueObjectSynthetic::IsInScope() { return m_parent->IsInScope(); } function in class:ValueObjectSynthetic
H A DValueObjectDynamicValue.cpp272 bool ValueObjectDynamicValue::IsInScope() { return m_parent->IsInScope(); } function in class:ValueObjectDynamicValue
H A DValueObjectMemory.cpp222 bool ValueObjectMemory::IsInScope() { function in class:ValueObjectMemory
H A DValueObjectConstResult.cpp232 bool ValueObjectConstResult::IsInScope() { function in class:ValueObjectConstResult
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DVariable.h83 bool IsInScope(StackFrame *frame);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUserExpression.cpp175 if (!this_var_sp || !this_var_sp->IsInScope(frame) ||
205 if (!self_variable_sp || !self_variable_sp->IsInScope(frame) ||
248 if (!this_var_sp || !this_var_sp->IsInScope(frame) ||
275 if (!self_variable_sp || !self_variable_sp->IsInScope(frame) ||
H A DClangExpressionDeclMap.cpp859 if (this_var && this_var->IsInScope(frame) &&
975 if (!self_var->IsInScope(frame))
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBValue.i93 IsInScope ();
492 is_in_scope = property(IsInScope, None, doc='''A read only property that returns a boolean value that indicates whether this value is currently lexically in scope.''')
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBValue.h49 bool IsInScope();
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBValue.cpp342 bool SBValue::IsInScope() { function in class:SBValue
343 LLDB_RECORD_METHOD_NO_ARGS(bool, SBValue, IsInScope);
350 result = value_sp->IsInScope();
1466 if (!IsInScope())
1529 if (IsInScope() && GetType().IsPointerType())
1565 LLDB_REGISTER_METHOD(bool, SBValue, IsInScope, ());
H A DSBFrame.cpp613 [frame](Variable *v) { return v->IsInScope(frame); },
867 if (in_scope_only && !variable_sp->IsInScope(frame))
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DVariable.cpp282 bool Variable::IsInScope(StackFrame *frame) { function in class:Variable
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp320 return m_valobj->IsInScope();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp477 return v->IsInScope(this) && (!must_have_valid_location ||
1751 [this](Variable *v) { return v->IsInScope(this); },

Completed in 156 milliseconds

12