Home
last modified time | relevance | path

Searched refs:getStruct (Results 1 – 17 of 17) sorted by relevance

/external/chromium_org/third_party/angle/src/compiler/translator/
DStructureHLSL.cpp92 TStructure *structure = type.getStruct(); in postPaddingString()
175 const TStructure *fieldStruct = fieldType.getStruct(); in define()
207 if (type.getStruct() && mStructNames.find(name) != mStructNames.end()) in addConstructor()
220 const TStructure* structure = type.getStruct(); in addConstructor()
266 if (ctorType.getStruct()) in addConstructor()
290 if (ctorType.getStruct()) in addConstructor()
362 if (ctorType.getStruct()) in addConstructor()
441 if (ctorType.getStruct()) in addConstructor()
DRewriteElseBlocks.cpp124 TString typeString = mFunctionType->getStruct() ? mFunctionType->getStruct()->name() : in rewriteSelection()
DOutputGLSLBase.cpp89 if (type.getBasicType() == EbtStruct && !structDeclared(type.getStruct())) in writeVariableType()
91 TStructure *structure = type.getStruct(); in writeVariableType()
139 const TStructure *structure = type.getStruct(); in writeConstantUnion()
284 const TStructure *structure = node->getLeft()->getType().getStruct(); in visitBinary()
713 out << hashName(type.getStruct()->name()) << "("; in visitAggregate()
954 out << hashName(type.getStruct()->name()); in getTypeName()
DRegenerateStructNames.cpp15 TStructure *userType = type->getStruct(); in visitSymbol()
DUniformHLSL.cpp39 TStructure *structure = fieldType.getStruct(); in InterfaceBlockFieldTypeString()
143 const TStructure *structure = type.getStruct(); in uniformsHeader()
DUtilsHLSL.cpp92 const TStructure* structure = type.getStruct(); in TypeString()
DOutputHLSL.cpp263 if (fieldType.getStruct()) in structInitializerString()
265 init += structInitializerString(indent + 1, *fieldType.getStruct(), fieldName); in structInitializerString()
290 const TStructure &structure = *structNode->getType().getStruct(); in header()
1585 const TStructure* structure = node->getLeft()->getType().getStruct(); in visitBinary()
1668 const TStructure &structure = *node->getLeft()->getType().getStruct(); in visitBinary()
1854 TStructure *structure = variable->getType().getStruct(); in visitAggregate()
1986 TStructure *structure = symbol->getType().getStruct(); in visitAggregate()
2202 const TString &structName = StructNameString(*node->getType().getStruct()); in visitAggregate()
2828 const TStructure* structure = type.getStruct(); in writeConstantUnion()
DIntermediate.cpp127 if (left->getType().getStruct() || right->getType().getStruct()) in addAssign()
DParseContext.cpp536 …if (op == EOpConstructStruct && !type->isArray() && type->getStruct()->fields().size() != function… in constructorErrorCheck()
679 const TFieldList& fields = type.getStruct()->fields(); in containsSampler()
1613 const TFieldList &fields = type->getStruct()->fields(); in addConstructor()
1785 const TFieldList& fields = node->getType().getStruct()->fields(); in addConstStruct()
1993 << field.type()->getStruct()->name().c_str() in structNestingErrorCheck()
2116 if (baseType.getStruct()) in addIndexExpression()
2118 TType copyOfType(baseType.getStruct()); in addIndexExpression()
2230 const TFieldList& fields = baseExpression->getType().getStruct()->fields(); in addFieldSelectionExpression()
2500 type->setStruct(typeSpecifier.userDef->getStruct()); in addStructDeclaratorList()
DTypes.cpp54 structure = p.userDef->getStruct(); in TType()
Dutil.cpp287 const TStructure *structure = type.getStruct(); in traverse()
DTypes.h373 TStructure *getStruct() const in getStruct() function
DVariableInfo.cpp277 ASSERT(!type.getStruct()); in visitVariable()
DIntermNode.cpp68 const TFieldList &fields = leftNodeType.getStruct()->fields(); in CompareStruct()
/external/llvm/lib/Object/
DMachOObjectFile.cpp239 T getStruct(const MachOObjectFile *O, const char *P) { in getStruct() function
280 return getStruct<nlist_base>(O, P); in getSymbolTableEntryBase()
1376 getStruct<MachO::dylib_command>(this, Libraries[Index]); in getLibraryShortNameByIndex()
1385 getStruct<MachO::dylib_command>(this, Libraries[i]); in getLibraryShortNameByIndex()
1760 Load.C = getStruct<MachO::load_command>(this, Load.Ptr); in getFirstLoadCommandInfo()
1768 Next.C = getStruct<MachO::load_command>(this, Next.Ptr); in getNextLoadCommandInfo()
1773 return getStruct<MachO::section>(this, Sections[DRI.d.a]); in getSection()
1777 return getStruct<MachO::section_64>(this, Sections[DRI.d.a]); in getSection64()
1783 return getStruct<MachO::section>(this, Sec); in getSection()
1789 return getStruct<MachO::section_64>(this, Sec); in getSection64()
[all …]
/external/deqp/modules/glshared/
DglsUniformBlockCase.cpp446 …for (StructType::ConstIterator memberIter = type.getStruct().begin(); memberIter != type.getStruct in computeStd140BaseAlignment()
570 …for (StructType::ConstIterator memberIter = type.getStruct().begin(); memberIter != type.getStruct in computeStd140Layout()
754 …for (StructType::ConstIterator iter = type.getStruct().begin(); iter != type.getStruct().end(); ++… in collectUniqueBasicTypes()
881 generateLocalDeclaration(src, curType->getStruct(), indentLevel+1); in generateDeclaration()
891 generateLocalDeclaration(src, type.getStruct(), indentLevel+1); in generateDeclaration()
1042 …for (StructType::ConstIterator memberIter = type.getStruct().begin(); memberIter != type.getStruct in generateCompareSrc()
DglsUniformBlockCase.hpp91 const StructType& getStruct (void) const { return *m_data.structPtr; } in getStruct() function in deqp::gls::ub::VarType