Lines Matching refs:namespaces
97 std::vector<Namespace> namespaces; in TEST() local
99 namespaces.emplace_back(CreateNamespaceWithLinks( in TEST()
101 namespaces.emplace_back(CreateNamespaceWithLinks( in TEST()
103 namespaces.emplace_back(CreateNamespaceWithPaths("namespace2", false, false)); in TEST()
105 Section section("test_section", std::move(namespaces)); in TEST()
115 std::vector<Namespace> namespaces; in TEST() local
116 namespaces.emplace_back(CreateNamespaceWithPaths("default", false, false)); in TEST()
118 Section section("test_section", std::move(namespaces)); in TEST()
126 std::vector<Namespace> namespaces; in TEST() local
127 Namespace& foo = namespaces.emplace_back("foo"); in TEST()
130 Namespace& bar = namespaces.emplace_back("bar"); in TEST()
132 Namespace& baz = namespaces.emplace_back("baz"); in TEST()
135 Section section("section", std::move(namespaces)); in TEST()
156 std::vector<Namespace> namespaces; in TEST() local
157 Namespace& foo1 = namespaces.emplace_back("foo1"); in TEST()
159 Namespace& foo2 = namespaces.emplace_back("foo2"); in TEST()
161 Namespace& bar = namespaces.emplace_back("bar"); in TEST()
164 Section section("section", std::move(namespaces)); in TEST()
174 std::vector<Namespace> namespaces; in TEST() local
175 Namespace& foo = namespaces.emplace_back("foo"); in TEST()
178 Section section("section", std::move(namespaces)); in TEST()
188 std::vector<Namespace> namespaces; in TEST() local
189 Namespace& foo = namespaces.emplace_back("foo"); in TEST()
192 Section section("section", std::move(namespaces)); in TEST()
214 std::vector<Namespace> namespaces; in TEST() local
215 Namespace& default_ns = namespaces.emplace_back("default"); in TEST()
218 Section section("section", std::move(namespaces)); in TEST()