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

12345

/freebsd-current/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRegisterValue.h58 explicit RegisterValue(uint8_t inst) : m_type(eTypeUInt8) { m_scalar = inst; }
60 explicit RegisterValue(uint16_t inst) : m_type(eTypeUInt16) {
64 explicit RegisterValue(uint32_t inst) : m_type(eTypeUInt32) {
68 explicit RegisterValue(uint64_t inst) : m_type(eTypeUInt64) {
72 explicit RegisterValue(llvm::APInt inst) : m_type(eTypeUInt128) {
76 explicit RegisterValue(float value) : m_type(eTypeFloat) { m_scalar = value; }
78 explicit RegisterValue(double value) : m_type(eTypeDouble) {
82 explicit RegisterValue(long double value) : m_type(eTypeLongDouble) {
91 RegisterValue::Type GetType() const { return m_type; }
95 void SetType(RegisterValue::Type type) { m_type
267 RegisterValue::Type m_type = eTypeInvalid; member in class:lldb_private::RegisterValue
[all...]
H A DScalar.h53 Scalar(int v) : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {}
55 : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {}
56 Scalar(long v) : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {}
58 : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {}
60 : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {}
62 : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {}
63 Scalar(float v) : m_type(e_float), m_float(v) {}
64 Scalar(double v) : m_type(e_float), m_float(v) {}
65 Scalar(long double v) : m_type(e_float), m_float(double(v)) {
71 : m_type(e_in
190 Scalar::Type m_type = e_void; member in class:lldb_private::Scalar
[all...]
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DUnwindPlan.h82 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 == isAFAPlusOffset; }
100 bool IsAtAFAPlusOffset() const { return m_type
184 RestoreType m_type = unspecified; // How do we locate this register? member in class:lldb_private::UnwindPlan::Row::RegisterLocation
304 ValueType m_type = unspecified; // How do we compute CFA value? member in class:lldb_private::UnwindPlan::Row::FAValue
[all...]
H A DDebugMacros.h42 DebugMacroEntry() : m_type(INVALID), m_line(0), m_debug_line_file_idx(0) {}
46 EntryType GetType() const { return static_cast<EntryType>(m_type); }
64 uint32_t m_type : 3;
H A DCompilerType.h92 : m_type_system(rhs.m_type_system), m_type(rhs.m_type) {}
100 m_type = rhs.m_type;
108 return m_type < rhs.m_type;
116 return m_type_system.lock() && m_type;
281 lldb::opaque_compiler_type_t GetOpaqueQualType() const { return m_type; }
509 m_type = nullptr;
521 lldb::opaque_compiler_type_t m_type member in class:lldb_private::CompilerType
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp34 return type_system_sp->IsAggregateType(m_type);
41 return type_system_sp->IsAnonymousType(m_type);
48 return type_system_sp->IsScopedEnumerationType(m_type);
56 return type_system_sp->IsArrayType(m_type, element_type_ptr, size,
72 return type_system_sp->IsVectorType(m_type, element_type, size);
79 return type_system_sp->IsRuntimeGeneratedType(m_type);
86 return type_system_sp->IsCharType(m_type);
93 return type_system_sp->IsCompleteType(m_type);
100 return type_system_sp->IsForcefullyCompleted(m_type);
107 return type_system_sp->IsConst(m_type);
[all...]
H A DDebugMacros.cpp17 : m_type(type), m_line(line), m_debug_line_file_idx(debug_line_file_idx),
22 : m_type(type), m_line(0), m_debug_line_file_idx(0),
H A DUnwindPlan.cpp27 if (m_type == rhs.m_type) {
28 switch (m_type) {
58 m_type = atDWARFExpression;
67 m_type = isDWARFExpression;
98 switch (m_type) {
118 if (m_type == atCFAPlusOffset)
121 if (m_type == atCFAPlusOffset)
128 if (m_type == atAFAPlusOffset)
131 if (m_type
[all...]
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Core/
H A DOpcode.h44 : 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) {
117 switch (m_type) {
138 switch (m_type) {
[all...]
/freebsd-current/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h81 m_type(type), m_flags(flags) {}
87 TypeImpl GetType() const { return m_type; }
117 TypeImpl m_type; member in class:lldb_private::FormattersMatchCandidate
153 m_type.m_type_name = std::string(name);
160 m_type.m_type_name = std::string(type->GetName().GetStringRef());
161 m_type.m_compiler_type = type->GetForwardCompilerType();
168 m_type.m_type_name.assign(type.GetTypeName().GetCString());
169 m_type.m_compiler_type = type;
174 if (m_type.m_type_name.size())
175 return m_type
196 TypeOrName m_type; member in class:lldb_private::TypeNameSpecifierImpl
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DScalar.cpp32 switch (m_type) {
120 switch (m_type) {
133 switch (m_type) {
145 switch (m_type) {
160 switch (m_type) {
180 switch (m_type) {
196 switch (m_type) {
214 m_type = e_float;
231 switch (m_type) {
245 switch (m_type) {
[all...]
H A DRegisterValue.cpp116 switch (m_type) {
140 void RegisterValue::Clear() { m_type = eTypeInvalid; }
152 return m_type;
185 m_type = eTypeInvalid;
221 m_type = eTypeBytes;
239 if (m_type == eTypeInvalid)
321 m_type = eTypeInvalid;
402 m_type = eTypeFloat;
410 m_type = eTypeDouble;
418 m_type
[all...]
H A DStatus.cpp43 : m_code(err), m_type(type), m_string() {}
50 m_type(EC.category() == std::generic_category() ? eErrorTypePOSIX
74 m_type = ErrorType::eErrorTypePOSIX;
92 if (m_type == ErrorType::eErrorTypePOSIX)
135 switch (m_type) {
169 m_type = eErrorTypeInvalid;
177 ErrorType Status::GetType() const { return m_type; }
186 m_type = eErrorTypeExpression;
203 m_type = eErrorTypeExpression;
210 m_type
[all...]
H A DEvent.cpp34 : m_broadcaster_wp(broadcaster->GetBroadcasterImpl()), m_type(event_type),
39 : m_broadcaster_wp(broadcaster->GetBroadcasterImpl()), m_type(event_type),
43 : m_broadcaster_wp(), m_type(event_type), m_data_sp(data) {}
46 : m_broadcaster_wp(), m_type(event_type), m_data_sp(event_data_sp) {}
60 if (broadcaster->GetEventNames(event_name, m_type, false))
64 broadcaster->GetBroadcasterName().c_str(), m_type,
70 broadcaster->GetBroadcasterName().c_str(), m_type);
73 static_cast<const void *>(this), m_type);
/freebsd-current/lib/libdevdctl/
H A Dexception.h140 Type m_type; member in class:DevdCtl::ParseException
156 return (m_type);
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointSite.h197 BreakpointSite::Type GetType() const { return m_type; }
199 void SetType(BreakpointSite::Type type) { m_type = type; }
216 BreakpointSite::Type m_type; ///< The type of this breakpoint site. member in class:lldb_private::BreakpointSite
/freebsd-current/contrib/atf/atf-c/
H A Derror.h40 const char *m_type; member in struct:atf_error
/freebsd-current/contrib/opencsd/decoder/include/mem_acc/
H A Dtrc_mem_acc_base.h142 const enum MemAccTypes getType() const { return m_type; };
155 const MemAccTypes m_type; /**< memory accessor type */ member in class:TrcMemAccessorBase
162 m_type(accType),
170 m_type(accType),
/freebsd-current/sys/contrib/openzfs/include/os/linux/spl/sys/
H A Dmutex.h45 kmutex_type_t m_type; member in struct:__anon12
72 mp->m_type = type;
77 if (mp && mp->m_type == MUTEX_NOLOCKDEP) \
83 if (mp && mp->m_type == MUTEX_NOLOCKDEP) \
/freebsd-current/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-current/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.h45 bool IsClassMethod() const { return m_type == eTypeClassMethod; }
51 bool IsInstanceMethod() const { return m_type == eTypeInstanceMethod; }
116 : m_full(name.str()), m_type(type) {}
119 Type m_type; member in class:lldb_private::ObjCLanguage::MethodName
H A DCFBasicHash.h30 HashType GetType() const { return m_type; }
71 HashType m_type = HashType::set; member in class:lldb_private::CFBasicHash
/freebsd-current/share/dtrace/
H A Dmbuf.d120 uint8_t m_type;
128 m_type = p->m_type & 0xff000000;
129 m_flags = p->m_type & 0x00ffffff;
/freebsd-current/lib/libthr/thread/
H A Dthr_mutexattr.c120 (*attr)->m_type = kind;
135 ret = attr->m_type;
148 (*attr)->m_type = type;
160 if (attr == NULL || *attr == NULL || (*attr)->m_type >=
164 *type = (*attr)->m_type;
/freebsd-current/contrib/atf/atf-c/detail/
H A Dfs.c72 int m_type; member in struct:invalid_umask_error_data
97 "umask %05o", stat_type_to_string(data->m_type),
109 data.m_type = type;
128 int m_type; member in struct:unknown_type_error_data
141 snprintf(buf, buflen, "Unknown file type %d of %s", data->m_type,
153 data.m_type = type;
558 case S_IFBLK: st->m_type = atf_fs_stat_blk_type; break;
559 case S_IFCHR: st->m_type = atf_fs_stat_chr_type; break;
560 case S_IFDIR: st->m_type = atf_fs_stat_dir_type; break;
561 case S_IFIFO: st->m_type
[all...]

Completed in 186 milliseconds

12345