Home
last modified time | relevance | path

Searched refs:componentKind (Results 1 – 2 of 2) sorted by relevance

/haiku/headers/private/debugger/model/
H A DTypeComponentPath.h29 type_component_kind componentKind; member
34 componentKind(TYPE_COMPONENT_UNDEFINED) in TypeComponent()
43 componentKind(other.componentKind), in TypeComponent()
51 return componentKind != TYPE_COMPONENT_UNDEFINED; in IsValid()
57 this->componentKind = TYPE_COMPONENT_BASE_TYPE;
66 this->componentKind = TYPE_COMPONENT_DATA_MEMBER; in SetToDataMember()
74 this->componentKind = TYPE_COMPONENT_ARRAY_ELEMENT; in SetToArrayElement()
82 this->componentKind = TYPE_COMPONENT_ARRAY_ELEMENT; in SetToArrayElement()
99 componentKind = other.componentKind;
/haiku/src/kits/debugger/model/
H A DTypeComponentPath.cpp23 return componentKind == TYPE_COMPONENT_ARRAY_ELEMENT in HasPrefix()
24 && other.componentKind == TYPE_COMPONENT_ARRAY_ELEMENT in HasPrefix()
32 uint32 hash = ((uint32)index << 8) | (componentKind << 4) | typeKind; in HashValue()
78 switch (componentKind) { in Dump()
98 return componentKind == other.componentKind in operator ==()