Home | History | Annotate | Download | only in tests

Lines Matching defs:container

84     TContainer container;
85 // The default constructor may or may not init to empty, depending on the type of container.
87 container.reset((TCount)1);
88 REPORTER_ASSERT(reporter, container.get());
90 container.reset((TCount)kStackPreallocCount);
91 REPORTER_ASSERT(reporter, container.get());
93 container.reset((TCount)kStackPreallocCount + 1);
94 REPORTER_ASSERT(reporter, container.get());
96 container.reset((TCount)0);
97 REPORTER_ASSERT(reporter, !container.get());