Lines Matching refs:EltTys
603 std::vector<Type*> EltTys; in ParseTypeTableBody() local
606 EltTys.push_back(T); in ParseTypeTableBody()
610 if (EltTys.size() != Record.size()-1) in ParseTypeTableBody()
612 ResultTy = StructType::get(Context, EltTys, Record[0]); in ParseTypeTableBody()
636 SmallVector<Type*, 8> EltTys; in ParseTypeTableBody() local
639 EltTys.push_back(T); in ParseTypeTableBody()
643 if (EltTys.size() != Record.size()-1) in ParseTypeTableBody()
645 Res->setBody(EltTys, Record[0]); in ParseTypeTableBody()
809 std::vector<Type*> EltTys; in ParseOldTypeTable() local
812 EltTys.push_back(Elt); in ParseOldTypeTable()
817 if (EltTys.size() != Record.size()-1) in ParseOldTypeTable()
820 cast<StructType>(TypeList[NextTypeID])->setBody(EltTys, Record[0]); in ParseOldTypeTable()