Home
last modified time | relevance | path

Searched refs:allocationList (Results 1 – 2 of 2) sorted by relevance

/external/angle/src/libANGLE/
DHandleAllocator_unittest.cpp21 std::set<GLuint> allocationList; in TEST() local
24 allocationList.insert(id); in TEST()
27 for (GLuint id : allocationList) in TEST()
33 for (size_t allocationNum = 0; allocationNum < allocationList.size() * 2; ++allocationNum) in TEST()
36 EXPECT_EQ(0u, allocationList.count(handle)); in TEST()
46 std::set<GLuint> allocationList; in TEST() local
52 if (allocationList.count(randomHandle) == 0) in TEST()
55 allocationList.insert(randomHandle); in TEST()
62 EXPECT_EQ(0u, allocationList.count(normalHandle)); in TEST()
63 allocationList.insert(normalHandle); in TEST()
/external/llvm-project/flang/lib/Semantics/
Dtools.cpp832 const auto &allocationList{std::get<std::list<parser::Allocation>>(stmt.t)}; in operator ()() local
833 for (const auto &allocation : allocationList) { in operator ()()