Searched refs:drop_while (Results 1 – 6 of 6) sorted by relevance
116 EXPECT_EQ(Expected, AR1.drop_while([](const int &N) { return N % 2 == 1; })); in TEST()118 EXPECT_EQ(AR1, AR1.drop_while([](const int &N) { return N < 0; })); in TEST()120 AR1.drop_while([](const int &N) { return N > 0; })); in TEST()
1042 StringRef Taken = Test.drop_while([](char c) { return ::isdigit(c); }); in TEST()1048 Taken = Test.drop_while([](char c) { return true; }); in TEST()1055 Taken = EmptyString.drop_while([](char c) { return true; }); in TEST()
193 template <class PredicateT> ArrayRef<T> drop_while(PredicateT Pred) const { in drop_while() function368 MutableArrayRef<T> drop_while(PredicateT Pred) const { in drop_while() function
652 StringRef drop_while(function_ref<bool(char)> F) const { in drop_while() function
201 template <class PredicateT> ArrayRef<T> drop_while(PredicateT Pred) const { in drop_while() function375 MutableArrayRef<T> drop_while(PredicateT Pred) const { in drop_while() function
663 StringRef drop_while(function_ref<bool(char)> F) const { in drop_while() function