Lines Matching refs:thenModel
3163 auto thenModel = createBranchOrBodyModel(dimensionedThen); in createIfModel() local
3171 mainModel->addIfOperation(opnd0, *thenModel, *elseModel, {opnd1, opnd2}, {opnd3}); in createIfModel()
3178 models.push_back(std::move(thenModel)); in createIfModel()
3478 auto thenModel = std::make_unique<PartitioningModel>(); in TEST_F() local
3479 const uint32_t thenOpnd0 = thenModel->addFloatOperand(); in TEST_F()
3480 const uint32_t thenOpnd1 = thenModel->addFloatOperand(); in TEST_F()
3481 const uint32_t thenOpnd2 = thenModel->addOperation2To1V1_0(0, thenOpnd0, thenOpnd1); in TEST_F()
3482 thenModel->identifyInputsAndOutputs({thenOpnd0, thenOpnd1}, {thenOpnd2}); in TEST_F()
3483 thenModel->finish(); in TEST_F()
3484 EXPECT_TRUE(thenModel->isValid()); in TEST_F()
3498 mModel->addIfOperation(mainOpnd0, *thenModel, *elseModel, {mainOpnd1, mainOpnd2}, {mainOpnd3}); in TEST_F()
3614 auto thenModel = std::make_unique<PartitioningModel>(); in TEST_F() local
3615 const uint32_t thenOpnd0 = thenModel->addFloatOperand(); in TEST_F()
3616 const uint32_t thenOpnd1 = thenModel->addFloatOperand(); in TEST_F()
3617 const uint32_t thenOpnd2 = thenModel->addOperation2To1V1_0(0, thenOpnd0, thenOpnd1); in TEST_F()
3618 thenModel->identifyInputsAndOutputs({thenOpnd0, thenOpnd1}, {thenOpnd2}); in TEST_F()
3619 thenModel->finish(); in TEST_F()
3620 EXPECT_TRUE(thenModel->isValid()); in TEST_F()
3635 bodyModel->addIfOperation(bodyOpnd2, *thenModel, *elseModel, {bodyOpnd0, bodyOpnd1}, in TEST_F()