Lines Matching +full:bool +full:- +full:property
1 //===-- Property.h ----------------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
14 #include "lldb/lldb-defines.h"
15 #include "lldb/lldb-private-types.h"
22 // Property class instances can be constructed using one of these.
26 bool global; // false == this setting is a global setting by default
35 class Property {
37 Property(const PropertyDefinition &definition);
39 Property(llvm::StringRef name, llvm::StringRef desc, bool is_global,
51 bool IsValid() const { return (bool)m_value_sp; } in IsValid()
53 bool IsGlobal() const { return m_is_global; } in IsGlobal()
58 bool DumpQualifiedName(Stream &strm) const;
62 bool display_qualified_name) const;
70 bool m_is_global;