OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SubTypeAccess
(Results
1 - 2
of
2
) sorted by null
/external/deqp/framework/opengl/
gluVarTypeUtil.cpp
83
//
SubTypeAccess
85
SubTypeAccess
::
SubTypeAccess
(const VarType& type)
gluVarTypeUtil.hpp
125
class
SubTypeAccess
128
SubTypeAccess
(const VarType& type);
130
SubTypeAccess
& member (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::STRUCT_MEMBER, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access struct element.
131
SubTypeAccess
& element (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::ARRAY_ELEMENT, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access array element.
132
SubTypeAccess
& column (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::MATRIX_COLUMN, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access column.
133
SubTypeAccess
& component (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::VECTOR_COMPONENT, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access component.
134
SubTypeAccess
& parent (void) { DE_ASSERT(!m_path.empty()); m_path.pop_back(); return *this; }
136
SubTypeAccess
member (int ndx) const { return
SubTypeAccess
(*this).member(ndx); }
137
SubTypeAccess
element (int ndx) const { return SubTypeAccess(*this).element(ndx);
[
all
...]
Completed in 96 milliseconds