• Home
  • Raw
  • Download

Lines Matching refs:getSequence

228         TIntermTyped* object = lhsAsAggregate->getSequence()[0]->getAsTyped();  in lValueErrorCheck()
282 loadOp->getSequence().push_back(object); in handleLvalue()
283 loadOp->getSequence().push_back(intermediate.addSymbol(*coord->getAsSymbolNode())); in handleLvalue()
294 storeOp->getSequence().push_back(object); in handleLvalue()
295 storeOp->getSequence().push_back(coord); in handleLvalue()
296 storeOp->getSequence().push_back(intermediate.addSymbol(*rhsTmp)); in handleLvalue()
345 const TIntermSequence& seq = asAggregate->getSequence(); in handleLvalue()
375 TIntermTyped* object = lhsAsAggregate->getSequence()[0]->getAsTyped(); in handleLvalue()
376 TIntermTyped* coord = lhsAsAggregate->getSequence()[1]->getAsTyped(); in handleLvalue()
738 load->getSequence().push_back(base); in handleBracketOperator()
739 load->getSequence().push_back(index); in handleBracketOperator()
744 load->getSequence().push_back(mipsOperatorMipArg.back().mipLevel); in handleBracketOperator()
747 load->getSequence().push_back(intermediate.addConstantUnion(0, loc, true)); in handleBracketOperator()
1741 const TIntermSequence& sequence = it->args->getSequence(); in handleEntryPointAttributes()
3071 …st TIntermSequence& swizzle = left->getAsBinaryNode()->getRight()->getAsAggregate()->getSequence(); in handleAssignToMatrixSwizzle()
3149 txcombine->getSequence().push_back(argTex); in handleSamplerTextureCombine()
3150 txcombine->getSequence().push_back(argSampler); in handleSamplerTextureCombine()
3308 if (argAggregate->getSequence().empty()) in decomposeStructBufferMethods()
3310 if (argAggregate->getSequence()[0]) in decomposeStructBufferMethods()
3311 bufferObj = argAggregate->getSequence()[0]->getAsTyped(); in decomposeStructBufferMethods()
3331 counterIncrement->getSequence().push_back(counter); in decomposeStructBufferMethods()
3332 counterIncrement->getSequence().push_back(incrementValue); in decomposeStructBufferMethods()
3345 … TIntermTyped* argIndex = makeIntegerIndex(argAggregate->getSequence()[1]->getAsTyped()); // index in decomposeStructBufferMethods()
3377 … TIntermTyped* argIndex = makeIntegerIndex(argAggregate->getSequence()[1]->getAsTyped()); // index in decomposeStructBufferMethods()
3444 … TIntermTyped* argIndex = makeIntegerIndex(argAggregate->getSequence()[1]->getAsTyped()); // index in decomposeStructBufferMethods()
3445 TIntermTyped* argValue = argAggregate->getSequence()[2]->getAsTyped(); // value in decomposeStructBufferMethods()
3510 const int numArgs = (int)argAggregate->getSequence().size(); in decomposeStructBufferMethods()
3511 … TIntermTyped* argNumItems = argAggregate->getSequence()[1]->getAsTyped(); // out num items in decomposeStructBufferMethods()
3512 …TIntermTyped* argStride = numArgs > 2 ? argAggregate->getSequence()[2]->getAsTyped() : nullptr; … in decomposeStructBufferMethods()
3561 TIntermSequence& sequence = argAggregate->getSequence(); in decomposeStructBufferMethods()
3598 TIntermTyped* rValue = argAggregate->getSequence()[1]->getAsTyped(); in decomposeStructBufferMethods()
3728 conversionAggregate->getSequence().push_back(shadowCopy); in decomposeSampleMethods()
3772 conversionAggregate->getSequence().push_back(memberAssign); in decomposeSampleMethods()
3777 conversionAggregate->getSequence().push_back(intermediate.addSymbol(*structVar, loc)); in decomposeSampleMethods()
3810 if (argAggregate->getSequence().size() == 0 || in decomposeSampleMethods()
3811 argAggregate->getSequence()[0] == nullptr || in decomposeSampleMethods()
3812 argAggregate->getSequence()[0]->getAsTyped()->getBasicType() != EbtSampler) in decomposeSampleMethods()
3822 if (argAggregate->getSequence().size() == 4) in decomposeSampleMethods()
3829 TIntermTyped *argSamp = argAggregate->getSequence()[0]->getAsTyped(); // sampler in decomposeSampleMethods()
3830 TIntermTyped *argCoord = argAggregate->getSequence()[1]->getAsTyped(); // coord in decomposeSampleMethods()
3851 constructCoord->getSequence().push_back(argCoord); in decomposeSampleMethods()
3856 tex->getSequence().push_back(argSamp); // sampler in decomposeSampleMethods()
3857 tex->getSequence().push_back(constructCoord); // coordinate in decomposeSampleMethods()
3858 tex->getSequence().push_back(argLod); // lod in decomposeSampleMethods()
3867 TIntermTyped* arg0 = argAggregate->getSequence()[0]->getAsTyped(); // sampler in decomposeSampleMethods()
3868 TIntermTyped* arg1 = argAggregate->getSequence()[1]->getAsTyped(); // coord in decomposeSampleMethods()
3887 constructCoord->getSequence().push_back(arg1); in decomposeSampleMethods()
3895 tex->getSequence().push_back(arg0); // sampler in decomposeSampleMethods()
3896 tex->getSequence().push_back(constructCoord); // coordinate in decomposeSampleMethods()
3897 tex->getSequence().push_back(bias); // bias in decomposeSampleMethods()
3908 TIntermTyped* argTex = argAggregate->getSequence()[0]->getAsTyped(); in decomposeSampleMethods()
3909 TIntermTyped* argSamp = argAggregate->getSequence()[1]->getAsTyped(); in decomposeSampleMethods()
3910 TIntermTyped* argCoord = argAggregate->getSequence()[2]->getAsTyped(); in decomposeSampleMethods()
3918 argBias = argAggregate->getSequence()[nextArg++]->getAsTyped(); in decomposeSampleMethods()
3922 … if ((int)argAggregate->getSequence().size() == (nextArg+1)) { // last parameter is offset form in decomposeSampleMethods()
3924 argOffset = argAggregate->getSequence()[nextArg++]->getAsTyped(); in decomposeSampleMethods()
3930 txsample->getSequence().push_back(txcombine); in decomposeSampleMethods()
3931 txsample->getSequence().push_back(argCoord); in decomposeSampleMethods()
3934 txsample->getSequence().push_back(argBias); in decomposeSampleMethods()
3937 txsample->getSequence().push_back(argOffset); in decomposeSampleMethods()
3946 TIntermTyped* argTex = argAggregate->getSequence()[0]->getAsTyped(); in decomposeSampleMethods()
3947 TIntermTyped* argSamp = argAggregate->getSequence()[1]->getAsTyped(); in decomposeSampleMethods()
3948 TIntermTyped* argCoord = argAggregate->getSequence()[2]->getAsTyped(); in decomposeSampleMethods()
3949 TIntermTyped* argDDX = argAggregate->getSequence()[3]->getAsTyped(); in decomposeSampleMethods()
3950 TIntermTyped* argDDY = argAggregate->getSequence()[4]->getAsTyped(); in decomposeSampleMethods()
3956 if (argAggregate->getSequence().size() == 6) { // last parameter is offset form in decomposeSampleMethods()
3958 argOffset = argAggregate->getSequence()[5]->getAsTyped(); in decomposeSampleMethods()
3964 txsample->getSequence().push_back(txcombine); in decomposeSampleMethods()
3965 txsample->getSequence().push_back(argCoord); in decomposeSampleMethods()
3966 txsample->getSequence().push_back(argDDX); in decomposeSampleMethods()
3967 txsample->getSequence().push_back(argDDY); in decomposeSampleMethods()
3970 txsample->getSequence().push_back(argOffset); in decomposeSampleMethods()
3986 TIntermTyped* argTex = argAggregate->getSequence()[0]->getAsTyped(); in decomposeSampleMethods()
3995 const int numArgs = (int)argAggregate->getSequence().size(); in decomposeSampleMethods()
4029 sizeQuery->getSequence().push_back(argTex); in decomposeSampleMethods()
4034 TIntermTyped* queryLod = mipQuery ? argAggregate->getSequence()[1]->getAsTyped() : in decomposeSampleMethods()
4036 sizeQuery->getSequence().push_back(queryLod); in decomposeSampleMethods()
4067 … TIntermTyped* outParam = argAggregate->getSequence()[outParamBase + compNum]->getAsTyped(); in decomposeSampleMethods()
4075 … TIntermTyped* outParam = argAggregate->getSequence()[outParamBase + numDims]->getAsTyped(); in decomposeSampleMethods()
4078 levelsQuery->getSequence().push_back(argTex); in decomposeSampleMethods()
4088 … TIntermTyped* outParam = argAggregate->getSequence()[outParamBase + numDims]->getAsTyped(); in decomposeSampleMethods()
4091 samplesQuery->getSequence().push_back(argTex); in decomposeSampleMethods()
4111 TIntermTyped* argTex = argAggregate->getSequence()[0]->getAsTyped(); in decomposeSampleMethods()
4112 TIntermTyped* argSamp = argAggregate->getSequence()[1]->getAsTyped(); in decomposeSampleMethods()
4113 TIntermTyped* argCoord = argAggregate->getSequence()[2]->getAsTyped(); in decomposeSampleMethods()
4114 TIntermTyped* argCmpVal = argAggregate->getSequence()[3]->getAsTyped(); in decomposeSampleMethods()
4130 if (argAggregate->getSequence().size() > 4) in decomposeSampleMethods()
4131 argOffset = argAggregate->getSequence()[4]->getAsTyped(); in decomposeSampleMethods()
4147 coordWithCmp->getSequence().push_back(argCoord); in decomposeSampleMethods()
4149 coordWithCmp->getSequence().push_back(argCmpVal); in decomposeSampleMethods()
4160 txsample->getSequence().push_back(txcombine); in decomposeSampleMethods()
4161 txsample->getSequence().push_back(coordWithCmp); in decomposeSampleMethods()
4164 txsample->getSequence().push_back(argCmpVal); in decomposeSampleMethods()
4168 … txsample->getSequence().push_back(intermediate.addConstantUnion(0.0, EbtFloat, loc, true)); in decomposeSampleMethods()
4172 txsample->getSequence().push_back(argOffset); in decomposeSampleMethods()
4183 TIntermTyped* argTex = argAggregate->getSequence()[0]->getAsTyped(); in decomposeSampleMethods()
4184 TIntermTyped* argCoord = argAggregate->getSequence()[1]->getAsTyped(); in decomposeSampleMethods()
4215 const int numArgs = (int)argAggregate->getSequence().size(); in decomposeSampleMethods()
4225 txfetch->getSequence().push_back(argTex); in decomposeSampleMethods()
4226 txfetch->getSequence().push_back(coordSwizzle); in decomposeSampleMethods()
4230 TIntermTyped* argSampleIdx = argAggregate->getSequence()[2]->getAsTyped(); in decomposeSampleMethods()
4231 txfetch->getSequence().push_back(argSampleIdx); in decomposeSampleMethods()
4238 txfetch->getSequence().push_back(lodComponent); in decomposeSampleMethods()
4244 argOffset = argAggregate->getSequence()[offsetPos]->getAsTyped(); in decomposeSampleMethods()
4245 txfetch->getSequence().push_back(argOffset); in decomposeSampleMethods()
4255 TIntermTyped* argTex = argAggregate->getSequence()[0]->getAsTyped(); in decomposeSampleMethods()
4256 TIntermTyped* argSamp = argAggregate->getSequence()[1]->getAsTyped(); in decomposeSampleMethods()
4257 TIntermTyped* argCoord = argAggregate->getSequence()[2]->getAsTyped(); in decomposeSampleMethods()
4258 TIntermTyped* argLod = argAggregate->getSequence()[3]->getAsTyped(); in decomposeSampleMethods()
4262 const int numArgs = (int)argAggregate->getSequence().size(); in decomposeSampleMethods()
4265 argOffset = argAggregate->getSequence()[4]->getAsTyped(); in decomposeSampleMethods()
4272 txsample->getSequence().push_back(txcombine); in decomposeSampleMethods()
4273 txsample->getSequence().push_back(argCoord); in decomposeSampleMethods()
4274 txsample->getSequence().push_back(argLod); in decomposeSampleMethods()
4277 txsample->getSequence().push_back(argOffset); in decomposeSampleMethods()
4286 TIntermTyped* argTex = argAggregate->getSequence()[0]->getAsTyped(); in decomposeSampleMethods()
4287 TIntermTyped* argSamp = argAggregate->getSequence()[1]->getAsTyped(); in decomposeSampleMethods()
4288 TIntermTyped* argCoord = argAggregate->getSequence()[2]->getAsTyped(); in decomposeSampleMethods()
4292 if (argAggregate->getSequence().size() > 3) in decomposeSampleMethods()
4293 argOffset = argAggregate->getSequence()[3]->getAsTyped(); in decomposeSampleMethods()
4300 txgather->getSequence().push_back(txcombine); in decomposeSampleMethods()
4301 txgather->getSequence().push_back(argCoord); in decomposeSampleMethods()
4305 txgather->getSequence().push_back(argOffset); in decomposeSampleMethods()
4351 TIntermTyped* argTex = argAggregate->getSequence()[arg++]->getAsTyped(); in decomposeSampleMethods()
4352 TIntermTyped* argSamp = argAggregate->getSequence()[arg++]->getAsTyped(); in decomposeSampleMethods()
4353 TIntermTyped* argCoord = argAggregate->getSequence()[arg++]->getAsTyped(); in decomposeSampleMethods()
4361 const int argSize = (int)argAggregate->getSequence().size(); in decomposeSampleMethods()
4390 argCmp = argOffset = argAggregate->getSequence()[arg++]->getAsTyped(); in decomposeSampleMethods()
4395 argOffset = argAggregate->getSequence()[arg++]->getAsTyped(); in decomposeSampleMethods()
4402 argOffsets[offsetNum] = argAggregate->getSequence()[arg++]->getAsTyped(); in decomposeSampleMethods()
4417 txgather->getSequence().push_back(txcombine); in decomposeSampleMethods()
4418 txgather->getSequence().push_back(argCoord); in decomposeSampleMethods()
4431 initList->getSequence().push_back(argOffsets[offsetNum]); in decomposeSampleMethods()
4438 txgather->getSequence().push_back(argCmp); in decomposeSampleMethods()
4442 txgather->getSequence().push_back(argOffset); in decomposeSampleMethods()
4446 txgather->getSequence().push_back(argChannel); in decomposeSampleMethods()
4458 TIntermTyped* argTex = argAggregate->getSequence()[0]->getAsTyped(); in decomposeSampleMethods()
4459 TIntermTyped* argSamp = argAggregate->getSequence()[1]->getAsTyped(); in decomposeSampleMethods()
4460 TIntermTyped* argCoord = argAggregate->getSequence()[2]->getAsTyped(); in decomposeSampleMethods()
4465 txquerylod->getSequence().push_back(txcombine); in decomposeSampleMethods()
4466 txquerylod->getSequence().push_back(argCoord); in decomposeSampleMethods()
4485 TIntermTyped* argTex = argAggregate->getSequence()[0]->getAsTyped(); in decomposeSampleMethods()
4486 TIntermTyped* argSampIdx = argAggregate->getSequence()[1]->getAsTyped(); in decomposeSampleMethods()
4489 samplesQuery->getSequence().push_back(argTex); in decomposeSampleMethods()
4548 argAggregate ? argAggregate->getSequence()[0]->getAsTyped() : in decomposeSampleMethods()
4555 if (argAggregate != nullptr && argAggregate->getSequence().size() > 1) in decomposeSampleMethods()
4595 TIntermTyped* data = argAggregate->getSequence()[1]->getAsTyped(); in decomposeGeometryMethods()
4647 atomic->getSequence().push_back(loadOp->getSequence()[0]); in decomposeIntrinsic()
4648 atomic->getSequence().push_back(loadOp->getSequence()[1]); in decomposeIntrinsic()
4690 TIntermTyped* arg0 = argAggregate->getSequence()[1]->getAsTyped(); in decomposeIntrinsic()
4691 TIntermTyped* arg1 = argAggregate->getSequence()[0]->getAsTyped(); in decomposeIntrinsic()
4742 clamp->getSequence().push_back(arg0); in decomposeIntrinsic()
4743 clamp->getSequence().push_back(intermediate.addConstantUnion(0, type0, loc, true)); in decomposeIntrinsic()
4744 clamp->getSequence().push_back(intermediate.addConstantUnion(1, type0, loc, true)); in decomposeIntrinsic()
4756 TIntermTyped* arg0 = argAggregate->getSequence()[0]->getAsTyped(); in decomposeIntrinsic()
4757 TIntermTyped* arg1 = argAggregate->getSequence()[1]->getAsTyped(); in decomposeIntrinsic()
4758 TIntermTyped* arg2 = argAggregate->getSequence()[2]->getAsTyped(); in decomposeIntrinsic()
4787 less->getSequence().push_back(arg0); in decomposeIntrinsic()
4810 … less->getSequence().push_back(intermediate.addConstantUnion(zeros, arg0->getType(), loc, true)); in decomposeIntrinsic()
4849 TIntermTyped* arg0 = argAggregate->getSequence()[0]->getAsTyped(); in decomposeIntrinsic()
4850 TIntermTyped* arg1 = argAggregate->getSequence()[1]->getAsTyped(); in decomposeIntrinsic()
4863 dst->getSequence().push_back(intermediate.addConstantUnion(1.0, EbtFloat, loc, true)); in decomposeIntrinsic()
4864 dst->getSequence().push_back(handleBinaryMath(loc, "mul", EOpMul, src0y, src1y)); in decomposeIntrinsic()
4865 dst->getSequence().push_back(src0z); in decomposeIntrinsic()
4866 dst->getSequence().push_back(src1w); in decomposeIntrinsic()
4882 TIntermTyped* arg0 = argAggregate->getSequence()[0]->getAsTyped(); // dest in decomposeIntrinsic()
4883 TIntermTyped* arg1 = argAggregate->getSequence()[1]->getAsTyped(); // value in decomposeIntrinsic()
4886 if (argAggregate->getSequence().size() > 2) in decomposeIntrinsic()
4887 arg2 = argAggregate->getSequence()[2]->getAsTyped(); in decomposeIntrinsic()
4899 atomic->getSequence().push_back(arg1); in decomposeIntrinsic()
4901 if (argAggregate->getSequence().size() > 2) { in decomposeIntrinsic()
4909 if (argAggregate->getSequence().size() > 2) { in decomposeIntrinsic()
4911 atomic->getSequence().push_back(arg0); in decomposeIntrinsic()
4912 atomic->getSequence().push_back(arg1); in decomposeIntrinsic()
4927 TIntermTyped* arg0 = argAggregate->getSequence()[0]->getAsTyped(); // dest in decomposeIntrinsic()
4928 TIntermTyped* arg1 = argAggregate->getSequence()[1]->getAsTyped(); // cmp in decomposeIntrinsic()
4929 TIntermTyped* arg2 = argAggregate->getSequence()[2]->getAsTyped(); // value in decomposeIntrinsic()
4930 TIntermTyped* arg3 = argAggregate->getSequence()[3]->getAsTyped(); // orig in decomposeIntrinsic()
4941 atomic->getSequence().push_back(arg0); in decomposeIntrinsic()
4944 atomic->getSequence().push_back(arg1); in decomposeIntrinsic()
4945 atomic->getSequence().push_back(arg2); in decomposeIntrinsic()
4960 TIntermTyped* arg0 = argAggregate->getSequence()[0]->getAsTyped(); // value in decomposeIntrinsic()
4961 TIntermTyped* arg1 = argAggregate->getSequence()[1]->getAsTyped(); // offset in decomposeIntrinsic()
4975 interp->getSequence().push_back(arg0); in decomposeIntrinsic()
4976 interp->getSequence().push_back(floatOffset); in decomposeIntrinsic()
4988 TIntermTyped* n_dot_l = argAggregate->getSequence()[0]->getAsTyped(); in decomposeIntrinsic()
4989 TIntermTyped* n_dot_h = argAggregate->getSequence()[1]->getAsTyped(); in decomposeIntrinsic()
4990 TIntermTyped* m = argAggregate->getSequence()[2]->getAsTyped(); in decomposeIntrinsic()
4995 dst->getSequence().push_back(intermediate.addConstantUnion(1.0, EbtFloat, loc, true)); in decomposeIntrinsic()
5000 diffuse->getSequence().push_back(n_dot_l); in decomposeIntrinsic()
5001 diffuse->getSequence().push_back(zero); in decomposeIntrinsic()
5004 dst->getSequence().push_back(diffuse); in decomposeIntrinsic()
5008 min_ndot->getSequence().push_back(n_dot_l); in decomposeIntrinsic()
5009 min_ndot->getSequence().push_back(n_dot_h); in decomposeIntrinsic()
5016 dst->getSequence().push_back(intermediate.addSelection(compare, zero, n_dot_h_m, loc)); in decomposeIntrinsic()
5019 dst->getSequence().push_back(intermediate.addConstantUnion(1.0, EbtFloat, loc, true)); in decomposeIntrinsic()
5031 TIntermTyped* arg0 = argAggregate->getSequence()[0]->getAsTyped(); in decomposeIntrinsic()
5032 TIntermTyped* arg1 = argAggregate->getSequence()[1]->getAsTyped(); in decomposeIntrinsic()
5041 uint64->getSequence().push_back(arg0); in decomposeIntrinsic()
5042 uint64->getSequence().push_back(arg1); in decomposeIntrinsic()
5096 result->getSequence().push_back(lowOrder); in decomposeIntrinsic()
5140 vec2ComponentAndZero->getSequence().push_back(component); in decomposeIntrinsic()
5141 vec2ComponentAndZero->getSequence().push_back(zero); in decomposeIntrinsic()
5151 result->getSequence().push_back(packOp); in decomposeIntrinsic()
5350 if (aggregate && aggregate->getSequence().size() > 0 && aggregate->getSequence()[0]) in handleFunctionCall()
5351 arg0 = aggregate->getSequence()[0]->getAsTyped(); in handleFunctionCall()
5490 …arguments->getAsAggregate()->getSequence().insert(arguments->getAsAggregate()->getSequence().begin… in pushFrontArguments()
5504 if (argAggregate == nullptr || argAggregate->getSequence().size() != 2) { in addGenMulArgumentConversion()
5510 TIntermTyped* arg0 = argAggregate->getSequence()[0]->getAsTyped(); in addGenMulArgumentConversion()
5511 TIntermTyped* arg1 = argAggregate->getSequence()[1]->getAsTyped(); in addGenMulArgumentConversion()
5561 if (arg0 != argAggregate->getSequence()[0] || arg1 != argAggregate->getSequence()[1]) in addGenMulArgumentConversion()
5565 argAggregate->getSequence()[0] = arg0; in addGenMulArgumentConversion()
5566 argAggregate->getSequence()[1] = arg1; in addGenMulArgumentConversion()
5587 aggregate->getSequence()[paramNum] = arg; in addInputArgumentConversions()
5602 aggregate->getSequence()[param]->getAsTyped() : in addInputArgumentConversions()
5661 aggregate->getSequence()[paramNum] = arg; in expandArguments()
5677 … auto it = aggregate->getSequence().erase(aggregate->getSequence().begin() + paramNum); in expandArguments()
5678 aggregate->getSequence().insert(it, args.begin(), args.end()); in expandArguments()
5692 … aggregate->getSequence()[param + functionParamNumberOffset]->getAsTyped() : in expandArguments()
5732 …TIntermSequence& arguments = argSequence.empty() ? intermNode.getAsAggregate()->getSequence() : ar… in addOutputArgumentConversions()
5816 std::any_of(aggregate->getSequence().begin(), in addStructBuffArguments()
5817 aggregate->getSequence().end(), in addStructBuffArguments()
5828 for (int param = 0; param < int(aggregate->getSequence().size()); ++param) { in addStructBuffArguments()
5829 argsWithCounterBuffers.push_back(aggregate->getSequence()[param]); in addStructBuffArguments()
5831 if (hasStructBuffCounter(aggregate->getSequence()[param]->getAsTyped()->getType())) { in addStructBuffArguments()
5832 const TIntermSymbol* blockSym = aggregate->getSequence()[param]->getAsSymbolNode(); in addStructBuffArguments()
5851 aggregate->getSequence().swap(argsWithCounterBuffers); in addStructBuffArguments()
5870 argp = &callNode.getAsAggregate()->getSequence(); in builtInOpCheck()
7553 … promote->getAsAggregate()->getSequence().swap(args->getAsAggregate()->getSequence()); in findFunction()
7563 … promote->getAsAggregate()->getSequence().swap(args->getAsAggregate()->getSequence()); in findFunction()
7572 for (int arg = 0; arg < int(args->getAsAggregate()->getSequence().size()); ++arg) { in findFunction()
7575 … param.type->shallowCopy(args->getAsAggregate()->getSequence()[arg]->getAsTyped()->getType()); in findFunction()
8037 arrayType.changeOuterArraySize((int)initList->getSequence().size()); in convertInitializerList()
8040 if (arrayType.isArrayOfArrays() && initList->getSequence().size() > 0) { in convertInitializerList()
8041 TIntermTyped* firstInit = initList->getSequence()[0]->getAsTyped(); in convertInitializerList()
8052 lengthenList(loc, initList->getSequence(), arrayType.getOuterArraySize(), scalarInit); in convertInitializerList()
8057 initList->getSequence()[i] = convertInitializerList(loc, elementType, in convertInitializerList()
8058 … initList->getSequence()[i]->getAsTyped(), scalarInit); in convertInitializerList()
8059 if (initList->getSequence()[i] == nullptr) in convertInitializerList()
8066 for (size_t i = initList->getSequence().size(); i < type.getStruct()->size(); ++i) { in convertInitializerList()
8074 …lengthenList(loc, initList->getSequence(), static_cast<int>(type.getStruct()->size()), scalarInit); in convertInitializerList()
8076 if (type.getStruct()->size() != initList->getSequence().size()) { in convertInitializerList()
8081 initList->getSequence()[i] = convertInitializerList(loc, *(*type.getStruct())[i].type, in convertInitializerList()
8082 … initList->getSequence()[i]->getAsTyped(), scalarInit); in convertInitializerList()
8083 if (initList->getSequence()[i] == nullptr) in convertInitializerList()
8087 if (type.computeNumComponents() == (int)initList->getSequence().size()) { in convertInitializerList()
8093 lengthenList(loc, initList->getSequence(), type.getMatrixCols(), scalarInit); in convertInitializerList()
8095 if (type.getMatrixCols() != (int)initList->getSequence().size()) { in convertInitializerList()
8101 initList->getSequence()[i] = convertInitializerList(loc, vectorType, in convertInitializerList()
8102 … initList->getSequence()[i]->getAsTyped(), scalarInit); in convertInitializerList()
8103 if (initList->getSequence()[i] == nullptr) in convertInitializerList()
8109 lengthenList(loc, initList->getSequence(), type.getVectorSize(), scalarInit); in convertInitializerList()
8112 if (type.getVectorSize() != (int)initList->getSequence().size()) { in convertInitializerList()
8119 lengthenList(loc, initList->getSequence(), 1, scalarInit); in convertInitializerList()
8121 if ((int)initList->getSequence().size() != 1) { in convertInitializerList()
8133 if (initList->getSequence().size() == 1) in convertInitializerList()
8134 emulatedConstructorArguments = initList->getSequence()[0]->getAsTyped(); in convertInitializerList()
8266 …TIntermSequence& sequenceVector = aggrNode->getSequence(); // Stores the information about the … in addConstructor()
9176 body->getSequence() = *switchSequenceStack.back(); in addSwitch()
9688 TIntermSequence& epBodySeq = entryPointFunctionBody->getAsAggregate()->getSequence(); in addPatchConstantInvocation()
10009 append->node->getSequence()[0] = in finalizeAppendMethods()
10012 append->node->getSequence()[0]->getAsTyped()); in finalizeAppendMethods()