Symbol: CompoundType
headers/private/debugger/model/Type.h
176
class CompoundType : public virtual Type {
headers/private/debugger/model/Type.h
178
virtual ~CompoundType();
headers/private/debugger/model/Type.h
314
virtual CompoundType* ContainingType() const = 0;
headers/private/debugger/value/value_nodes/BListValueNode.h
18
class CompoundType;
headers/private/debugger/value/value_nodes/BMessageValueNode.h
17
class CompoundType;
headers/private/debugger/value/value_nodes/CompoundValueNode.h
15
class CompoundType;
headers/private/debugger/value/value_nodes/CompoundValueNode.h
21
CompoundType* type);
headers/private/debugger/value/value_nodes/CompoundValueNode.h
49
CompoundType* fType;
src/kits/debugger/debug_info/DwarfTypes.cpp
1585
CompoundType*
src/kits/debugger/debug_info/DwarfTypes.h
287
class DwarfCompoundType : public CompoundType, public DwarfType {
src/kits/debugger/debug_info/DwarfTypes.h
570
virtual CompoundType* ContainingType() const;
src/kits/debugger/debug_info/GlobalTypeLookup.cpp
170
CompoundType* type = dynamic_cast<CompoundType*>(
src/kits/debugger/model/Type.cpp
134
CompoundType::~CompoundType()
src/kits/debugger/model/Type.cpp
140
CompoundType::Kind() const
src/kits/debugger/value/type_handlers/BListTypeHandler.cpp
30
if (dynamic_cast<CompoundType*>(type) != NULL
src/kits/debugger/value/type_handlers/BMessageTypeHandler.cpp
30
if (dynamic_cast<CompoundType*>(type) != NULL
src/kits/debugger/value/value_nodes/BListValueNode.cpp
218
CompoundType* baseType = dynamic_cast<CompoundType*>(fType);
src/kits/debugger/value/value_nodes/BListValueNode.cpp
226
baseType = dynamic_cast<CompoundType*>(baseType->BaseTypeAt(0)
src/kits/debugger/value/value_nodes/BListValueNode.cpp
234
baseType = dynamic_cast<CompoundType*>(baseType->BaseTypeAt(0)
src/kits/debugger/value/value_nodes/BListValueNode.cpp
370
CompoundType* objectType = dynamic_cast<CompoundType*>(fType);
src/kits/debugger/value/value_nodes/BMessageValueNode.cpp
173
CompoundType* baseType = dynamic_cast<CompoundType*>(fType);
src/kits/debugger/value/value_nodes/BMessageValueNode.cpp
330
CompoundType* messageType = dynamic_cast<CompoundType*>(fType);
src/kits/debugger/value/value_nodes/BMessageValueNode.cpp
73
CompoundType* type = dynamic_cast<CompoundType*>(fParent->GetType());
src/kits/debugger/value/value_nodes/CompoundValueNode.cpp
153
CompoundType* type)