Lines Matching defs:element
609 // Popping again on an empty Vector should fail, and the result element
611 int element = 1;
612 EXPECT_FALSE(a.PopFront(&element));
613 EXPECT_EQ(1, element);
618 // PopFront() should pop the element in the front of the Vector.
619 EXPECT_TRUE(a.PopFront(&element));
620 EXPECT_EQ(3, element);
622 // After popping the last element, the Vector should be empty.
699 // Swaps an element with itself.
853 "Invalid first swap element -1: must be in range \\[0, 2\\]");
856 "Invalid first swap element 3: must be in range \\[0, 2\\]");
859 "Invalid second swap element -1: must be in range \\[0, 2\\]");
862 "Invalid second swap element 3: must be in range \\[0, 2\\]");