Searched refs:testMap (Results 1 – 5 of 5) sorted by relevance
25 std::unordered_map<std::string, TestScene::Info>& TestScene::testMap() { in testMap() function in android::uirenderer::test::TestScene26 static std::unordered_map<std::string, TestScene::Info> testMap; in testMap() local27 return testMap; in testMap()31 testMap()[info.name] = info; in registerScene()
70 static std::unordered_map<std::string, Info>& testMap();
76 for (auto&& test : TestScene::testMap()) { in listTests()312 auto pos = TestScene::testMap().find(test); in parseOptions()313 if (pos == TestScene::testMap().end()) { in parseOptions()321 for (auto& iter : TestScene::testMap()) { in parseOptions()
98 std::unique_ptr<TestScene> scene(TestScene::testMap()[sceneName].createScene(opts)); in getSyncedSceneNode()
59 public void testMap() { in testMap() method in TransformationsTest