Home | History | Annotate | Download | only in alg.find.first.of

Lines Matching refs:ic

29     int ic[] = {0, 1, 2, 3, 4, 5, 0, 1, 2, 3};
34 return (std::find_first_of(FI(std::begin(ic)), FI(std::end(ic)), FI(std::begin(ia)), FI(std::end(ia)), eq) == FI(ic+1))
35 && (std::find_first_of(FI(std::begin(ic)), FI(std::end(ic)), FI(std::begin(ib)), FI(std::end(ib)), eq) == FI(std::end(ic)))
36 && (std::find_first_of(BI(std::begin(ic)), BI(std::end(ic)), BI(std::begin(ia)), BI(std::end(ia)), eq) == BI(ic+1))
37 && (std::find_first_of(BI(std::begin(ic)), BI(std::end(ic)), BI(std::begin(ib)), BI(std::end(ib)), eq) == BI(std::end(ic)))
38 && (std::find_first_of(RI(std::begin(ic)), RI(std::end(ic)), RI(std::begin(ia)), RI(std::end(ia)), eq) == RI(ic+1))
39 && (std::find_first_of(RI(std::begin(ic)), RI(std::end(ic)), RI(std::begin(ib)), RI(std::end(ib)), eq) == RI(std::end(ic)))
56 int ic[] = {7};
59 forward_iterator<const int*>(ic),
60 forward_iterator<const int*>(ic + 1),
65 forward_iterator<const int*>(ic),
66 forward_iterator<const int*>(ic),
71 forward_iterator<const int*>(ic),
72 forward_iterator<const int*>(ic+1),