Home | History | Annotate | Download | only in tests

Lines Matching refs:insert

61     res = s.insert(10);
70 // insert was a success.
76 // Try to insert the same element again, this time it should fail.
77 res = s.insert(10);
78 // insert was a failure.
81 // Insert should return an iterator pointing to the element
100 res = s.insert(str);
109 // insert was a success.
115 // Try to insert an element equivalent.
116 res = s.insert(str_equiv);
118 // insert did not happen since there is one string equivalent