Lines Matching refs:models
2728 std::vector<std::unique_ptr<PartitioningModel>>* models) { in createControlFlowModelForCachingTests() argument
2729 CHECK(models != nullptr); in createControlFlowModelForCachingTests()
2763 models->clear(); in createControlFlowModelForCachingTests()
2764 models->push_back(std::move(mainModel)); in createControlFlowModelForCachingTests()
2765 models->push_back(std::move(trueModel)); in createControlFlowModelForCachingTests()
2766 models->push_back(std::move(falseModel)); in createControlFlowModelForCachingTests()
3060 std::vector<std::unique_ptr<PartitioningModel>> models; in TEST_F() local
3061 createControlFlowModelForCachingTests(&models); in TEST_F()
3062 const auto& main = *models[0]; in TEST_F()
3178 std::vector<std::unique_ptr<PartitioningModel>> models; in createIfModel() local
3179 models.push_back(std::move(mainModel)); in createIfModel()
3180 models.push_back(std::move(thenModel)); in createIfModel()
3181 models.push_back(std::move(elseModel)); in createIfModel()
3182 return std::move(models); in createIfModel()
3204 std::vector<std::unique_ptr<PartitioningModel>> models; in createWhileModel() local
3205 models.push_back(std::move(mainModel)); in createWhileModel()
3206 models.push_back(std::move(condModel)); in createWhileModel()
3207 models.push_back(std::move(bodyModel)); in createWhileModel()
3208 return std::move(models); in createWhileModel()
3218 const auto models = createIfModel(); in TEST_F() local
3224 ASSERT_EQ(models[0]->partitionTheWork(devices, ExecutePreference::PREFER_LOW_POWER, in TEST_F()
3231 const auto models = createWhileModel(); in TEST_F() local
3238 ASSERT_EQ(models[0]->partitionTheWork(devices, ExecutePreference::PREFER_LOW_POWER, in TEST_F()
3246 const auto models = createIfModel(); in TEST_F() local
3257 ASSERT_EQ(models[0]->partitionTheWork(devices, ExecutePreference::PREFER_LOW_POWER, in TEST_F()
3264 const auto models = createWhileModel(); in TEST_F() local
3275 ASSERT_EQ(models[0]->partitionTheWork(devices, ExecutePreference::PREFER_LOW_POWER, in TEST_F()
3290 const auto models = createIfModel(dimensionedMain, dimensionedThen, dimensionedElse); in testIfUnknownSize() local
3302 ASSERT_EQ(models[0]->partitionTheWork(devices, ExecutePreference::PREFER_LOW_POWER, in testIfUnknownSize()
3333 const auto models = createWhileModel(dimensionedMain, dimensionedCond, dimensionedBody); in testWhileUnknownSize() local
3345 ASSERT_EQ(models[0]->partitionTheWork(devices, ExecutePreference::PREFER_LOW_POWER, in testWhileUnknownSize()