Searched refs:m_type (Results 1 - 25 of 120) sorted by relevance

12345

/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp33 return m_type_system->IsAggregateType(m_type);
39 return m_type_system->IsAnonymousType(m_type);
46 return m_type_system->IsArrayType(m_type, element_type_ptr, size,
61 return m_type_system->IsVectorType(m_type, element_type, size);
67 return m_type_system->IsRuntimeGeneratedType(m_type);
73 return m_type_system->IsCharType(m_type);
79 return m_type_system->IsCompleteType(m_type);
85 return m_type_system->IsConst(m_type);
91 return m_type_system->IsCStringType(m_type, length);
97 return m_type_system->IsFunctionType(m_type, is_variadic_pt
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h111 TypeNameSpecifierImpl() : m_is_regex(false), m_type() {}
114 : m_is_regex(is_regex), m_type() {
115 m_type.m_type_name = name;
120 TypeNameSpecifierImpl(lldb::TypeSP type) : m_is_regex(false), m_type() {
122 m_type.m_type_name = type->GetName().GetStringRef();
123 m_type.m_compiler_type = type->GetForwardCompilerType();
127 TypeNameSpecifierImpl(CompilerType type) : m_is_regex(false), m_type() {
129 m_type.m_type_name.assign(type.GetConstTypeName().GetCString());
130 m_type.m_compiler_type = type;
135 if (m_type
155 TypeOrName m_type; member in class:lldb_private::TypeNameSpecifierImpl
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRegisterValue.h45 : m_type(eTypeInvalid), m_scalar(static_cast<unsigned long>(0)) {}
47 explicit RegisterValue(uint8_t inst) : m_type(eTypeUInt8) { m_scalar = inst; }
49 explicit RegisterValue(uint16_t inst) : m_type(eTypeUInt16) {
53 explicit RegisterValue(uint32_t inst) : m_type(eTypeUInt32) {
57 explicit RegisterValue(uint64_t inst) : m_type(eTypeUInt64) {
61 explicit RegisterValue(llvm::APInt inst) : m_type(eTypeUInt128) {
65 explicit RegisterValue(float value) : m_type(eTypeFloat) { m_scalar = value; }
67 explicit RegisterValue(double value) : m_type(eTypeDouble) {
71 explicit RegisterValue(long double value) : m_type(eTypeLongDouble) {
80 RegisterValue::Type GetType() const { return m_type; }
258 RegisterValue::Type m_type; member in class:lldb_private::RegisterValue
[all...]
H A DTraceOptions.h26 lldb::TraceType getType() const { return m_type; }
36 void setType(lldb::TraceType type) { m_type = type; }
47 lldb::TraceType m_type; member in class:lldb_private::TraceOptions
H A DScalar.h63 Scalar(int v) : m_type(e_sint), m_float(static_cast<float>(0)) {
66 Scalar(unsigned int v) : m_type(e_uint), m_float(static_cast<float>(0)) {
69 Scalar(long v) : m_type(e_slong), m_float(static_cast<float>(0)) {
72 Scalar(unsigned long v) : m_type(e_ulong), m_float(static_cast<float>(0)) {
75 Scalar(long long v) : m_type(e_slonglong), m_float(static_cast<float>(0)) {
79 : m_type(e_ulonglong), m_float(static_cast<float>(0)) {
82 Scalar(float v) : m_type(e_float), m_float(v) { m_float = llvm::APFloat(v); }
83 Scalar(double v) : m_type(e_double), m_float(v) {
87 : m_type(e_long_double), m_float(static_cast<float>(0)),
100 Scalar(llvm::APInt v) : m_type(), m_floa
282 Scalar::Type m_type; member in class:lldb_private::Scalar
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DUnwindPlan.h74 RegisterLocation() : m_type(unspecified), m_location() {}
82 void SetUnspecified() { m_type = unspecified; }
84 void SetUndefined() { m_type = undefined; }
86 void SetSame() { m_type = same; }
88 bool IsSame() const { return m_type == same; }
90 bool IsUnspecified() const { return m_type == unspecified; }
92 bool IsUndefined() const { return m_type == undefined; }
94 bool IsCFAPlusOffset() const { return m_type == isCFAPlusOffset; }
96 bool IsAtCFAPlusOffset() const { return m_type == atCFAPlusOffset; }
98 bool IsAFAPlusOffset() const { return m_type
184 RestoreType m_type; // How do we locate this register? member in class:lldb_private::UnwindPlan::Row::RegisterLocation
304 ValueType m_type; // How do we compute CFA value? member in class:lldb_private::UnwindPlan::Row::FAValue
[all...]
H A DCompilerType.h42 : m_type(type), m_type_system(type_system) {}
45 : m_type(rhs.m_type), m_type_system(rhs.m_type_system) {}
52 m_type = rhs.m_type;
60 return m_type != nullptr && m_type_system != nullptr;
65 return m_type < rhs.m_type;
69 bool IsValid() const { return m_type != nullptr && m_type_system != nullptr; }
165 lldb::opaque_compiler_type_t GetOpaqueQualType() const { return m_type; }
378 lldb::opaque_compiler_type_t m_type = nullptr; member in class:lldb_private::CompilerType
[all...]
H A DDebugMacros.h43 DebugMacroEntry() : m_type(INVALID) {}
47 EntryType GetType() const { return static_cast<EntryType>(m_type); }
65 uint32_t m_type : 3;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DOpcode.h41 Opcode() : m_byte_order(lldb::eByteOrderInvalid), m_type(eTypeInvalid) {}
44 : m_byte_order(order), m_type(eType8) {
49 : m_byte_order(order), m_type(eType16) {
54 : m_byte_order(order), m_type(eType32) {
59 : m_byte_order(order), m_type(eType64) {
70 m_type = Opcode::eTypeInvalid;
73 Opcode::Type GetType() const { return m_type; }
76 switch (m_type) {
96 switch (m_type) {
116 switch (m_type) {
[all...]
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/pat_trie_/
H A Ddebug_fn_imps.hpp66 _GLIBCXX_DEBUG_ASSERT(m_p_head->m_p_min->m_type == pat_trie_leaf_node_type);
67 _GLIBCXX_DEBUG_ASSERT(m_p_head->m_p_max->m_type == pat_trie_leaf_node_type);
110 if (p_nd->m_type == pat_trie_leaf_node_type)
112 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type);
H A Derase_fn_imps.hpp53 if (p_nd == NULL || p_nd->m_type == pat_trie_internal_node_type)
59 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type);
85 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == pat_trie_internal_node_type);
100 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == pat_trie_internal_node_type);
110 if (p_nd->m_p_parent->m_type == pat_trie_head_node_type)
113 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_parent->m_type ==
153 if (p_nd->m_type == pat_trie_internal_node_type)
155 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type);
168 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type);
185 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type
[all...]
H A Dfind_fn_imps.hpp55 if (p_nd == NULL || p_nd->m_type != pat_trie_leaf_node_type)
80 if (p_nd == NULL || p_nd->m_type != pat_trie_leaf_node_type)
112 while (p_nd->m_type != pat_trie_leaf_node_type)
114 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type);
144 if (p_nd->m_type == pat_trie_leaf_node_type)
153 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type);
217 if (p_nd->m_type == pat_trie_leaf_node_type)
220 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type);
229 if (p_nd->m_type == pat_trie_leaf_node_type)
232 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type
[all...]
H A Dnode_iterators.hpp125 if (m_p_nd->m_type == pat_trie_leaf_node_type)
130 _GLIBCXX_DEBUG_ASSERT(m_p_nd->m_type == pat_trie_internal_node_type);
138 if (m_p_nd->m_type == pat_trie_leaf_node_type)
143 _GLIBCXX_DEBUG_ASSERT(m_p_nd->m_type == pat_trie_internal_node_type);
217 if (m_p_nd->m_type == pat_trie_leaf_node_type)
219 _GLIBCXX_DEBUG_ASSERT(m_p_nd->m_type == pat_trie_internal_node_type);
228 _GLIBCXX_DEBUG_ASSERT(m_p_nd->m_type == pat_trie_internal_node_type);
324 _GLIBCXX_DEBUG_ASSERT(base_type::m_p_nd->m_type == pat_trie_internal_node_type);
H A Dpoint_iterators.hpp181 _GLIBCXX_DEBUG_ASSERT(m_p_nd->m_type == pat_trie_leaf_node_type);
188 _GLIBCXX_DEBUG_ASSERT(m_p_nd->m_type == pat_trie_leaf_node_type);
246 if (m_p_nd->m_type == pat_trie_head_node_type)
253 while (p_y->m_type != pat_trie_head_node_type &&
260 if (p_y->m_type == pat_trie_head_node_type)
275 if (m_p_nd->m_type == pat_trie_head_node_type)
282 while (p_y->m_type != pat_trie_head_node_type &&
289 if (p_y->m_type == pat_trie_head_node_type)
339 if (p_nd->m_type == pat_trie_leaf_node_type)
347 if (p_nd->m_type
[all...]
H A Dnode_base.hpp111 const pat_trie_node_type m_type; member in struct:pb_ds::detail::pat_trie_node_base
116 pat_trie_node_base(pat_trie_node_type type) : m_type(type)
H A Dtrace_fn_imps.hpp69 std::cerr << ((p_nd->m_type == pat_trie_leaf_node_type) ? "l " : "i ");
79 if (p_nd->m_type == pat_trie_leaf_node_type)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DStatus.cpp41 Status::Status() : m_code(0), m_type(eErrorTypeInvalid), m_string() {}
44 : m_code(err), m_type(type), m_string() {}
47 : m_code(EC.value()), m_type(ErrorType::eErrorTypeGeneric),
51 : m_code(0), m_type(eErrorTypeInvalid), m_string() {
71 m_type = ErrorType::eErrorTypePOSIX;
89 if (m_type == ErrorType::eErrorTypePOSIX)
132 switch (m_type) {
166 m_type = eErrorTypeInvalid;
174 ErrorType Status::GetType() const { return m_type; }
184 m_type
[all...]
H A DRegisterValue.cpp137 switch (m_type) {
186 void RegisterValue::Clear() { m_type = eTypeInvalid; }
195 return m_type;
231 m_type = eTypeInvalid;
267 m_type = eTypeBytes;
287 if (m_type == eTypeInvalid)
369 m_type = eTypeInvalid;
452 m_type = eTypeFloat;
460 m_type = eTypeDouble;
468 m_type
[all...]
H A DScalar.cpp72 Scalar::Scalar() : m_type(e_void), m_float(static_cast<float>(0)) {}
106 switch (m_type) {
185 switch (m_type) {
213 switch (m_type) {
241 switch (m_type) {
271 switch (m_type) {
309 m_type = e_sint;
315 m_type = e_uint;
321 m_type = e_slong;
327 m_type
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.h32 m_type(eTypeUnspecified), m_category_is_valid(false) {}
36 m_type(eTypeUnspecified), m_category_is_valid(false) {
41 m_type(eTypeUnspecified), m_category_is_valid(false) {
50 if (strict && m_type == eTypeUnspecified)
59 Type GetType() const { return m_type; }
84 Type m_type; member in class:lldb_private::ObjCLanguage::MethodName
/freebsd-11-stable/lib/libdevdctl/
H A Dexception.h142 Type m_type; member in class:DevdCtl::ParseException
158 return (m_type);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointSite.h186 BreakpointSite::Type GetType() const { return m_type; }
188 void SetType(BreakpointSite::Type type) { m_type = type; }
204 BreakpointSite::Type m_type; ///< The type of this breakpoint site. member in class:lldb_private::BreakpointSite
/freebsd-11-stable/contrib/atf/atf-c/
H A Derror.h40 const char *m_type; member in struct:atf_error
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DOpcode.cpp26 switch (m_type) {
66 switch (m_type) {
88 if (m_type == Opcode::eType16_2) {
99 switch (m_type) {
/freebsd-11-stable/share/dtrace/
H A Dmbuf.d116 uint8_t m_type;
124 m_type = p->m_type & 0xff000000;
125 m_flags = p->m_type & 0x00ffffff;

Completed in 300 milliseconds

12345