Lines Matching refs:strongStack
150 MT::StrongScopeStack<MT::ScopeStackEntry, 64> strongStack; in SUITE() local
153 int parentId = strongStack.Top(); in SUITE()
156 MT::ScopeStackEntry* pInstance = strongStack.Push(parentId, MT::invalidStorageId); in SUITE()
164 int stackTopId = strongStack.Top(); in SUITE()
166 CHECK(strongStack.Get(stackTopId) == pInstance); in SUITE()
170 MT::ScopeStackEntry* pInstance2 = strongStack.Push(stackTopId, testStorageId); in SUITE()
176 int stackTopId2 = strongStack.Top(); in SUITE()
179 CHECK(strongStack.Get(stackTopId2) == pInstance2); in SUITE()
181 strongStack.Pop(); in SUITE()
183 int _stackTopId = strongStack.Top(); in SUITE()
186 strongStack.Pop(); in SUITE()
187 CHECK(strongStack.Top() == MT::invalidStackId); in SUITE()
190 CHECK(strongStack.Get(stackTopId) == pInstance); in SUITE()
191 CHECK(strongStack.Get(stackTopId2) == pInstance2); in SUITE()
200 MT::ScopeStackEntry* pInstance3 = strongStack.Push(parentId, MT::invalidStorageId); in SUITE()