Lines Matching refs:thenModel
3165 auto thenModel = createBranchOrBodyModel(dimensionedThen); in createIfModel() local
3173 mainModel->addIfOperation(opnd0, *thenModel, *elseModel, {opnd1, opnd2}, {opnd3}); in createIfModel()
3180 models.push_back(std::move(thenModel)); in createIfModel()
3480 auto thenModel = std::make_unique<PartitioningModel>(); in TEST_F() local
3481 const uint32_t thenOpnd0 = thenModel->addFloatOperand(); in TEST_F()
3482 const uint32_t thenOpnd1 = thenModel->addFloatOperand(); in TEST_F()
3483 const uint32_t thenOpnd2 = thenModel->addOperation2To1V1_0(0, thenOpnd0, thenOpnd1); in TEST_F()
3484 thenModel->identifyInputsAndOutputs({thenOpnd0, thenOpnd1}, {thenOpnd2}); in TEST_F()
3485 thenModel->finish(); in TEST_F()
3486 EXPECT_TRUE(thenModel->isValid()); in TEST_F()
3500 mModel->addIfOperation(mainOpnd0, *thenModel, *elseModel, {mainOpnd1, mainOpnd2}, {mainOpnd3}); in TEST_F()
3616 auto thenModel = std::make_unique<PartitioningModel>(); in TEST_F() local
3617 const uint32_t thenOpnd0 = thenModel->addFloatOperand(); in TEST_F()
3618 const uint32_t thenOpnd1 = thenModel->addFloatOperand(); in TEST_F()
3619 const uint32_t thenOpnd2 = thenModel->addOperation2To1V1_0(0, thenOpnd0, thenOpnd1); in TEST_F()
3620 thenModel->identifyInputsAndOutputs({thenOpnd0, thenOpnd1}, {thenOpnd2}); in TEST_F()
3621 thenModel->finish(); in TEST_F()
3622 EXPECT_TRUE(thenModel->isValid()); in TEST_F()
3637 bodyModel->addIfOperation(bodyOpnd2, *thenModel, *elseModel, {bodyOpnd0, bodyOpnd1}, in TEST_F()