HomeSort by relevance Sort by last modified time
    Searched refs:structType (Results 1 - 14 of 14) sorted by null

  /external/deqp/framework/opengl/
gluVarType.hpp 36 class StructType;
55 explicit VarType (const StructType* structPtr); //!< Struct type constructor.
68 const StructType* getStructPtr (void) const { DE_ASSERT(isStructType()); return m_data.structPtr; }
110 const StructType* structPtr;
140 class StructType
146 StructType (const char* typeName) : m_typeName(typeName) {}
147 ~StructType (void) {}
162 bool operator== (const StructType& other) const;
163 bool operator!= (const StructType& other) const;
294 DeclareStructTypePtr (const StructType* structPtr_, int indentLevel_) : structPtr(structPtr_), indentLevel(indentLevel_) {
    [all...]
gluVarType.cpp 56 VarType::VarType (const StructType* structPtr)
100 for (StructType::ConstIterator iter = m_data.structPtr->begin(); iter != m_data.structPtr->end(); iter++)
152 // StructType implementation.
154 void StructType::addMember (const char* name, const VarType& type)
159 bool StructType::operator== (const StructType& other) const
164 bool StructType::operator!= (const StructType& other) const
377 const StructType* structPtr = curType->getStructPtr();
412 for (StructType::ConstIterator memberIter = decl.structPtr->begin(); memberIter != decl.structPtr->end(); memberIt (…)
    [all...]
  /external/deqp/modules/gles31/functional/
es31fProgramUniformTests.cpp 65 using glu::StructType;
227 const StructType& structType = *type.getStructPtr();
228 for (int i = 0; i < structType.getNumMembers(); i++)
229 if (typeContainsMatchingBasicType(structType.getMember(i).getType(), predicate))
248 const StructType& structType = *type.getStructPtr();
249 for (int i = 0; i < structType.getNumMembers(); i++)
250 getDistinctSamplerTypes(dst, structType.getMember(i).getType());
263 const StructType& structType = *type.getStructPtr()
    [all...]
es31fUniformLocationTests.cpp 278 std::set<const glu::StructType*> declaredStructs;
305 const glu::StructType* const structType = uniformInfo.type.getStructPtr();
306 if (!declaredStructs.count(structType))
309 vertDecl << glu::declare(structType, 0) << ";\n";
312 fragDecl << glu::declare(structType, 0) << ";\n";
314 declaredStructs.insert(structType);
851 StructType* structProto = new StructType("S");
922 StructType* testTypes[]
    [all...]
es31fProgramInterfaceDefinitionUtil.cpp 86 const glu::StructType* structType = type.getStructPtr();
87 for (int ndx = 0; ndx < structType->getNumMembers(); ++ndx)
88 generateVariableTypeResourceNames(resources, name + "." + structType->getMember(ndx).getName(), structType->getMember(ndx).getType(), childFlags);
157 bool operator() (const glu::StructType* type) { return type->hasTypeName() && (deStringEqual(m_name, type->getTypeName()) == DE_TRUE); }
162 static void collectNamedStructureDefinitions (std::vector<const glu::StructType*>& dst, const glu::VarType& type)
173 std::vector<const glu::StructType*>::iterator where = std::find_if(dst.begin(), dst.end(), StructNameEqualPredicate(type.getStructPtr()->getTypeName()));
195 std::vector<const glu::StructType*> namedStructs;
    [all...]
es31fTessellationTests.cpp 218 const glu::StructType& structType = *type.getStructPtr();
220 for (int i = 0; i < structType.getNumMembers(); i++)
221 result += numBasicSubobjects(structType.getMember(i).getType());
    [all...]
es31fSSBOLayoutTests.cpp 43 using glu::StructType;
236 glu::StructType& structType = m_interface.allocStruct((string("s") + genName('A', 'Z', m_structNdx)).c_str());
242 structType.addMember((string("m") + (char)('A' + ndx)).c_str(), memberTypes[ndx]);
245 return glu::VarType(&structType);
363 StructType& typeS = m_interface.allocStruct("S");
396 StructType& typeS = m_interface.allocStruct("S");
431 StructType& typeS = m_interface.allocStruct("S");
436 StructType& typeT = m_interface.allocStruct("T");
471 StructType& typeS = m_interface.allocStruct("S")
    [all...]
  /external/deqp/modules/glshared/
glsRandomUniformBlockCase.cpp 173 StructType& structType = m_interface.allocStruct((string("s") + genName('A', 'Z', m_structNdx)).c_str());
184 structType.addMember((string("m") + (char)('A' + ndx)).c_str(), memberTypes[ndx], flags);
187 return VarType(&structType);
glsUniformBlockCase.cpp 143 VarType::VarType (const StructType* structPtr)
179 // StructType implementation.
181 void StructType::addMember (const char* name, const VarType& type, deUint32 flags)
309 for (std::vector<StructType*>::iterator i = m_structs.begin(); i != m_structs.end(); i++)
316 StructType& ShaderInterface::allocStruct (const char* name)
319 m_structs.push_back(new StructType(name));
329 bool operator() (const StructType* type) const
335 const StructType* ShaderInterface::findStruct (const char* name) const
337 std::vector<StructType*>::const_iterator pos = std::find_if(m_structs.begin(), m_structs.end(), StructNameEquals(name));
341 void ShaderInterface::getNamedStructs (std::vector<const StructType*>& structs) cons
    [all...]
  /external/deqp/modules/gles2/functional/
es2fUniformApiTests.cpp 64 using glu::StructType;
163 const StructType& structType = *type.getStructPtr();
164 for (int i = 0; i < structType.getNumMembers(); i++)
165 if (typeContainsMatchingBasicType(structType.getMember(i).getType(), predicate))
184 const StructType& structType = *type.getStructPtr();
185 for (int i = 0; i < structType.getNumMembers(); i++)
186 getDistinctSamplerTypes(dst, structType.getMember(i).getType());
199 const StructType& structType = *type.getStructPtr()
    [all...]
  /external/deqp/modules/gles3/functional/
es3fUniformApiTests.cpp 64 using glu::StructType;
223 const StructType& structType = *type.getStructPtr();
224 for (int i = 0; i < structType.getNumMembers(); i++)
225 if (typeContainsMatchingBasicType(structType.getMember(i).getType(), predicate))
244 const StructType& structType = *type.getStructPtr();
245 for (int i = 0; i < structType.getNumMembers(); i++)
246 getDistinctSamplerTypes(dst, structType.getMember(i).getType());
259 const StructType& structType = *type.getStructPtr()
    [all...]
  /external/yaffs2/yaffs2/
yaffs_guts.h 493 int structType;
754 int StructType;
767 int structType;
785 int structType;
yaffs_guts.c     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
tdh.h 81 } structType;

Completed in 280 milliseconds