| /openbsd-src/gnu/llvm/lldb/source/Symbol/ |
| H A D | CompilerType.cpp | 35 return type_system_sp->IsAggregateType(m_type); in IsAggregateType() 42 return type_system_sp->IsAnonymousType(m_type); in IsAnonymousType() 49 return type_system_sp->IsScopedEnumerationType(m_type); in IsScopedEnumerationType() 57 return type_system_sp->IsArrayType(m_type, element_type_ptr, size, in IsArrayType() 73 return type_system_sp->IsVectorType(m_type, element_type, size); in IsVectorType() 80 return type_system_sp->IsRuntimeGeneratedType(m_type); in IsRuntimeGeneratedType() 87 return type_system_sp->IsCharType(m_type); in IsCharType() 94 return type_system_sp->IsCompleteType(m_type); in IsCompleteType() 101 return type_system_sp->IsForcefullyCompleted(m_type); in IsForcefullyCompleted() 108 return type_system_sp->IsConst(m_type); in IsConst() [all …]
|
| H A D | Symbol.cpp | 31 m_is_weak(false), m_type(eSymbolTypeInvalid), m_mangled(), in Symbol() 45 m_is_weak(false), m_type(type), m_mangled(name), in Symbol() 60 m_is_weak(false), m_type(type), m_mangled(mangled), m_addr_range(range), in Symbol() 72 m_is_weak(rhs.m_is_weak), m_type(rhs.m_type), m_mangled(rhs.m_mangled), in Symbol() 90 m_type = rhs.m_type; in operator =() 112 m_type = eSymbolTypeInvalid; in Clear() 126 if (m_type == eSymbolTypeReExported) { in GetReExportedSymbolName() 140 if (m_type == eSymbolTypeReExported) { in GetReExportedSymbolSharedLibrary() 159 if (m_type == eSymbolTypeReExported) { in SetReExportedSymbolSharedLibrary() 173 bool Symbol::IsTrampoline() const { return m_type == eSymbolTypeTrampoline; } in IsTrampoline() [all …]
|
| H A D | SymbolContext.cpp | 921 m_address_range_up(), m_type(eNothingSpecified) {} in SymbolContextSpecifier() 934 m_type |= eLineStartSpecified; in AddLineSpecification() 938 m_type |= eLineEndSpecified; in AddLineSpecification() 961 m_type |= eModuleSpecified; in AddSpecification() 972 m_type |= eFileSpecified; in AddSpecification() 976 m_type |= eLineStartSpecified; in AddSpecification() 980 m_type |= eLineEndSpecified; in AddSpecification() 984 m_type |= eFunctionSpecified; in AddSpecification() 989 m_type = eClassOrNamespaceSpecified; in AddSpecification() 1008 m_type = eNothingSpecified; in Clear() [all …]
|
| H A D | UnwindPlan.cpp | 27 if (m_type == rhs.m_type) { in operator ==() 28 switch (m_type) { in operator ==() 58 m_type = atDWARFExpression; in SetAtDWARFExpression() 67 m_type = isDWARFExpression; in SetIsDWARFExpression() 98 switch (m_type) { in Dump() 118 if (m_type == atCFAPlusOffset) in Dump() 121 if (m_type == atCFAPlusOffset) in Dump() 128 if (m_type == atAFAPlusOffset) in Dump() 131 if (m_type == atAFAPlusOffset) in Dump() 148 if (m_type == atDWARFExpression) in Dump() [all …]
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/ |
| H A D | UnwindPlan.h | 82 void SetUnspecified() { m_type = unspecified; } in SetUnspecified() 84 void SetUndefined() { m_type = undefined; } in SetUndefined() 86 void SetSame() { m_type = same; } in SetSame() 88 bool IsSame() const { return m_type == same; } in IsSame() 90 bool IsUnspecified() const { return m_type == unspecified; } in IsUnspecified() 92 bool IsUndefined() const { return m_type == undefined; } in IsUndefined() 94 bool IsCFAPlusOffset() const { return m_type == isCFAPlusOffset; } in IsCFAPlusOffset() 96 bool IsAtCFAPlusOffset() const { return m_type == atCFAPlusOffset; } in IsAtCFAPlusOffset() 98 bool IsAFAPlusOffset() const { return m_type == isAFAPlusOffset; } in IsAFAPlusOffset() 100 bool IsAtAFAPlusOffset() const { return m_type == atAFAPlusOffset; } in IsAtAFAPlusOffset() [all …]
|
| H A D | CompilerType.h | 46 : m_type_system(type_system), m_type(type) { in CompilerType() 92 : m_type_system(type_system.GetSharedPointer()), m_type(type) { in CompilerType() 97 : m_type_system(rhs.m_type_system), m_type(rhs.m_type) {} in CompilerType() 105 m_type = rhs.m_type; 113 return m_type < rhs.m_type; 121 return m_type_system.lock() && m_type; 232 lldb::opaque_compiler_type_t GetOpaqueQualType() const { return m_type; } in GetOpaqueQualType() 471 m_type = nullptr; in Clear() 483 lldb::opaque_compiler_type_t m_type = nullptr; variable
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Utility/ |
| H A D | RegisterValue.h | 48 explicit RegisterValue(uint8_t inst) : m_type(eTypeUInt8) { m_scalar = inst; } in RegisterValue() 50 explicit RegisterValue(uint16_t inst) : m_type(eTypeUInt16) { in RegisterValue() 54 explicit RegisterValue(uint32_t inst) : m_type(eTypeUInt32) { in RegisterValue() 58 explicit RegisterValue(uint64_t inst) : m_type(eTypeUInt64) { in RegisterValue() 62 explicit RegisterValue(llvm::APInt inst) : m_type(eTypeUInt128) { in RegisterValue() 66 explicit RegisterValue(float value) : m_type(eTypeFloat) { m_scalar = value; } in RegisterValue() 68 explicit RegisterValue(double value) : m_type(eTypeDouble) { in RegisterValue() 72 explicit RegisterValue(long double value) : m_type(eTypeLongDouble) { in RegisterValue() 81 RegisterValue::Type GetType() const { return m_type; } in GetType() 85 void SetType(RegisterValue::Type type) { m_type = type; } in SetType() [all …]
|
| H A D | Scalar.h | 53 Scalar(int v) : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar() 55 : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar() 56 Scalar(long v) : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar() 58 : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar() 60 : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar() 62 : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar() 63 Scalar(float v) : m_type(e_float), m_float(v) {} in Scalar() 64 Scalar(double v) : m_type(e_float), m_float(v) {} in Scalar() 65 Scalar(long double v) : m_type(e_float), m_float(double(v)) { in Scalar() 71 : m_type(e_int), m_integer(std::move(v), false), m_float(0.0f) {} in Scalar() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Utility/ |
| H A D | Scalar.cpp | 31 switch (m_type) { in GetPromoKey() 119 switch (m_type) { in GetBytes() 132 switch (m_type) { in GetByteSize() 144 switch (m_type) { in IsZero() 159 switch (m_type) { in GetValue() 179 switch (m_type) { in IntegralPromote() 195 switch (m_type) { in FloatPromote() 213 m_type = e_float; in FloatPromote() 230 switch (m_type) { in IsSigned() 244 switch (m_type) { in MakeSigned() [all …]
|
| H A D | RegisterValue.cpp | 127 switch (m_type) { in GetScalarValue() 150 void RegisterValue::Clear() { m_type = eTypeInvalid; } in Clear() 162 return m_type; in SetType() 198 m_type = eTypeInvalid; in SetValueFromData() 234 m_type = eTypeBytes; in SetValueFromData() 254 if (m_type == eTypeInvalid) in SetValueFromData() 336 m_type = eTypeInvalid; in SetValueFromString() 419 m_type = eTypeFloat; in SetValueFromString() 427 m_type = eTypeDouble; in SetValueFromString() 435 m_type = eTypeLongDouble; in SetValueFromString() [all …]
|
| H A D | Status.cpp | 43 : m_code(err), m_type(type), m_string() {} in Status() 50 m_type(EC.category() == std::generic_category() ? eErrorTypePOSIX in Status() 74 m_type = ErrorType::eErrorTypePOSIX; in operator =() 92 if (m_type == ErrorType::eErrorTypePOSIX) in ToError() 135 switch (m_type) { in AsCString() 169 m_type = eErrorTypeInvalid; in Clear() 177 ErrorType Status::GetType() const { return m_type; } in GetType() 187 m_type = eErrorTypeMachKernel; in SetMachError() 194 m_type = eErrorTypeExpression; in SetExpressionError() 211 m_type = eErrorTypeExpression; in SetExpressionErrorWithFormat() [all …]
|
| H A D | Event.cpp | 31 : m_broadcaster_wp(broadcaster->GetBroadcasterImpl()), m_type(event_type), in Event() 36 : m_broadcaster_wp(broadcaster->GetBroadcasterImpl()), m_type(event_type), in Event() 40 : m_broadcaster_wp(), m_type(event_type), m_data_sp(data) {} in Event() 43 : m_broadcaster_wp(), m_type(event_type), m_data_sp(event_data_sp) {} in Event() 57 if (broadcaster->GetEventNames(event_name, m_type, false)) in Dump() 61 broadcaster->GetBroadcasterName().GetCString(), m_type, in Dump() 67 broadcaster->GetBroadcasterName().GetCString(), m_type); in Dump() 70 static_cast<const void *>(this), m_type); in Dump()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Core/ |
| H A D | Opcode.h | 44 : m_byte_order(order), m_type(eType8) { in Opcode() 49 : m_byte_order(order), m_type(eType16) { in Opcode() 54 : m_byte_order(order), m_type(eType32) { in Opcode() 59 : m_byte_order(order), m_type(eType64) { in Opcode() 70 m_type = Opcode::eTypeInvalid; in Clear() 73 Opcode::Type GetType() const { return m_type; } in GetType() 76 switch (m_type) { 96 switch (m_type) { 116 switch (m_type) { 135 switch (m_type) { [all …]
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/DataFormatters/ |
| H A D | FormatClasses.h | 81 m_type(type), m_flags(flags) {} in FormattersMatchCandidate() 87 TypeImpl GetType() const { return m_type; } in GetType() 117 TypeImpl m_type; variable 153 m_type.m_type_name = std::string(name); in TypeNameSpecifierImpl() 160 m_type.m_type_name = std::string(type->GetName().GetStringRef()); in TypeNameSpecifierImpl() 161 m_type.m_compiler_type = type->GetForwardCompilerType(); in TypeNameSpecifierImpl() 168 m_type.m_type_name.assign(type.GetTypeName().GetCString()); in TypeNameSpecifierImpl() 169 m_type.m_compiler_type = type; in TypeNameSpecifierImpl() 174 if (m_type.m_type_name.size()) in GetName() 175 return m_type.m_type_name.c_str(); in GetName() [all …]
|
| /openbsd-src/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/pat_trie_/ |
| H A D | erase_fn_imps.hpp | 53 if (p_nd == NULL || p_nd->m_type == pat_trie_internal_node_type) in erase() 59 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type); in erase() 85 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == pat_trie_internal_node_type); in erase_fixup() 100 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == pat_trie_internal_node_type); in erase_fixup() 110 if (p_nd->m_p_parent->m_type == pat_trie_head_node_type) in erase_fixup() 113 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_parent->m_type == in erase_fixup() 153 if (p_nd->m_type == pat_trie_internal_node_type) in clear_imp() 155 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type); in clear_imp() 168 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type); in clear_imp() 185 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == pat_trie_leaf_node_type); in erase() [all …]
|
| H A D | find_fn_imps.hpp | 55 if (p_nd == NULL || p_nd->m_type != pat_trie_leaf_node_type) in find() 80 if (p_nd == NULL || p_nd->m_type != pat_trie_leaf_node_type) in find() 112 while (p_nd->m_type != pat_trie_leaf_node_type) in find_imp() 114 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type); in find_imp() 144 if (p_nd->m_type == pat_trie_leaf_node_type) in lower_bound_imp() 153 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type); in lower_bound_imp() 217 if (p_nd->m_type == pat_trie_leaf_node_type) in pref_begin() 220 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type); in pref_begin() 229 if (p_nd->m_type == pat_trie_leaf_node_type) in pref_end() 232 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type); in pref_end() [all …]
|
| H A D | point_iterators.hpp | 181 _GLIBCXX_DEBUG_ASSERT(m_p_nd->m_type == pat_trie_leaf_node_type); in operator ->() 188 _GLIBCXX_DEBUG_ASSERT(m_p_nd->m_type == pat_trie_leaf_node_type); in operator *() 246 if (m_p_nd->m_type == pat_trie_head_node_type) in inc() 253 while (p_y->m_type != pat_trie_head_node_type && in inc() 260 if (p_y->m_type == pat_trie_head_node_type) in inc() 275 if (m_p_nd->m_type == pat_trie_head_node_type) in dec() 282 while (p_y->m_type != pat_trie_head_node_type && in dec() 289 if (p_y->m_type == pat_trie_head_node_type) in dec() 339 if (p_nd->m_type == pat_trie_leaf_node_type) in leftmost_descendant() 347 if (p_nd->m_type == pat_trie_leaf_node_type) in rightmost_descendant() [all …]
|
| H A D | node_iterators.hpp | 125 if (m_p_nd->m_type == pat_trie_leaf_node_type) in pref_begin() 130 _GLIBCXX_DEBUG_ASSERT(m_p_nd->m_type == pat_trie_internal_node_type); in pref_begin() 138 if (m_p_nd->m_type == pat_trie_leaf_node_type) in pref_end() 143 _GLIBCXX_DEBUG_ASSERT(m_p_nd->m_type == pat_trie_internal_node_type); in pref_end() 217 if (m_p_nd->m_type == pat_trie_leaf_node_type) in num_children() 219 _GLIBCXX_DEBUG_ASSERT(m_p_nd->m_type == pat_trie_internal_node_type); in num_children() 228 _GLIBCXX_DEBUG_ASSERT(m_p_nd->m_type == pat_trie_internal_node_type); in get_child() 324 _GLIBCXX_DEBUG_ASSERT(base_type::m_p_nd->m_type == pat_trie_internal_node_type); in get_child()
|
| H A D | insert_join_fn_imps.hpp | 110 if (p_l->m_type == pat_trie_leaf_node_type) in rec_join_prep() 112 if (p_r->m_type == pat_trie_leaf_node_type) in rec_join_prep() 119 _GLIBCXX_DEBUG_ASSERT(p_r->m_type == pat_trie_internal_node_type); in rec_join_prep() 125 _GLIBCXX_DEBUG_ASSERT(p_l->m_type == pat_trie_internal_node_type); in rec_join_prep() 126 if (p_r->m_type == pat_trie_leaf_node_type) in rec_join_prep() 133 _GLIBCXX_DEBUG_ASSERT(p_r->m_type == pat_trie_internal_node_type); in rec_join_prep() 212 if (p_l->m_type == pat_trie_leaf_node_type) in rec_join() 214 if (p_r->m_type == pat_trie_leaf_node_type) in rec_join() 222 _GLIBCXX_DEBUG_ASSERT(p_r->m_type == pat_trie_internal_node_type); in rec_join() 230 _GLIBCXX_DEBUG_ASSERT(p_l->m_type == pat_trie_internal_node_type); in rec_join() [all …]
|
| H A D | debug_fn_imps.hpp | 66 _GLIBCXX_DEBUG_ASSERT(m_p_head->m_p_min->m_type == pat_trie_leaf_node_type); in assert_valid() 67 _GLIBCXX_DEBUG_ASSERT(m_p_head->m_p_max->m_type == pat_trie_leaf_node_type); in assert_valid() 110 if (p_nd->m_type == pat_trie_leaf_node_type) in recursive_count_leafs() 112 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type); in recursive_count_leafs()
|
| /openbsd-src/gnu/usr.bin/cvs/src/ |
| H A D | checkout.c | 99 static enum mtype m_type; variable 125 m_type = EXPORT; 131 m_type = CHECKOUT; 242 if (m_type == EXPORT) 303 if (checkout_prune_dirs && m_type == CHECKOUT) 334 send_to_server (m_type == EXPORT ? "export\012" : "co\012", 0); 361 if (m_type == CHECKOUT && !pipeout) 376 err += do_module (db, argv[i], m_type, "Updating", checkout_proc, 466 if (m_type == EXPORT) 469 else if (m_type == CHECKOUT) [all …]
|
| /openbsd-src/games/phantasia/ |
| H A D | fight.c | 79 if (Curmonster.m_type == SM_MORGOTH) in encounter() 83 if (Curmonster.m_type == SM_UNICORN) { in encounter() 105 if (Curmonster.m_type == SM_DARKLORD in encounter() 121 && Curmonster.m_type != SM_DARKLORD in encounter() 123 && Curmonster.m_type != SM_SHRIEKER in encounter() 283 if (Curmonster.m_type == SM_MORGOTH) in playerhits() 334 if ((Curmonster.m_type == SM_DARKLORD in playerhits() 335 || Curmonster.m_type == SM_SHRIEKER in playerhits() 339 && (Curmonster.m_type != SM_MIMIC)) in playerhits() 363 if (Curmonster.m_type == SM_DARKLORD) in playerhits() [all …]
|
| /openbsd-src/gnu/llvm/lldb/tools/debugserver/source/ |
| H A D | JSONGenerator.h | 60 Object(Type t = Type::eTypeInvalid) : m_type(t) {} in m_type() function 66 virtual void Clear() { m_type = Type::eTypeInvalid; } in Clear() 68 Type GetType() const { return m_type; } in GetType() 70 void SetType(Type t) { m_type = t; } in SetType() 73 if (m_type == Type::eTypeArray) in GetAsArray() 79 if (m_type == Type::eTypeDictionary) in GetAsDictionary() 85 if (m_type == Type::eTypeInteger) in GetAsInteger() 91 if (m_type == Type::eTypeFloat) in GetAsFloat() 97 if (m_type == Type::eTypeBoolean) in GetAsBoolean() 103 if (m_type == Type::eTypeString) in GetAsString() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Language/ObjC/ |
| H A D | ObjCLanguage.h | 34 m_type(eTypeUnspecified), m_category_is_valid(false) { in MethodName() 39 m_type(eTypeUnspecified), m_category_is_valid(false) { in MethodName() 48 if (strict && m_type == eTypeUnspecified) in IsValid() 57 Type GetType() const { return m_type; } in GetType() 82 Type m_type = eTypeUnspecified; variable
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ABI/PowerPC/ |
| H A D | ABISysV_ppc64.cpp | 414 m_avail(sizeof(uint64_t) - m_offs), m_type(ty), m_reg_ctx(reg_ctx), in Register() 444 if (m_type == GPR) in GetName() 480 Type m_type; member in __anondf7718cc0111::ReturnValueExtractor::Register 518 const uint32_t type_flags = m_type.GetTypeInfo(); in GetValue() 531 value_sp = GetFloatValue(m_type, 0); in GetValue() 553 CompilerType &m_type; member in __anondf7718cc0111::ReturnValueExtractor 570 : m_thread(thread), m_type(type), in ReturnValueExtractor() 571 m_byte_size(m_type.GetByteSize(&thread).value_or(0)), in ReturnValueExtractor() 593 ValueSP value_sp(NewScalarValue(m_type)); in GetIntegerValue() 595 uint32_t type_flags = m_type.GetTypeInfo(); in GetIntegerValue() [all …]
|