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

Lines Matching refs:ic

27     int ic[] = {0, 1, 2, 3, 4, 5, 0, 1, 2, 3};
32 return (std::find_first_of(FI(std::begin(ic)), FI(std::end(ic)), FI(std::begin(ia)), FI(std::end(ia))) == FI(ic+1))
33 && (std::find_first_of(FI(std::begin(ic)), FI(std::end(ic)), FI(std::begin(ib)), FI(std::end(ib))) == FI(std::end(ic)))
34 && (std::find_first_of(BI(std::begin(ic)), BI(std::end(ic)), BI(std::begin(ia)), BI(std::end(ia))) == BI(ic+1))
35 && (std::find_first_of(BI(std::begin(ic)), BI(std::end(ic)), BI(std::begin(ib)), BI(std::end(ib))) == BI(std::end(ic)))
36 && (std::find_first_of(RI(std::begin(ic)), RI(std::end(ic)), RI(std::begin(ia)), RI(std::end(ia))) == RI(ic+1))
37 && (std::find_first_of(RI(std::begin(ic)), RI(std::end(ic)), RI(std::begin(ib)), RI(std::end(ib))) == RI(std::end(ic)))
53 int ic[] = {7};
56 forward_iterator<const int*>(ic),
57 forward_iterator<const int*>(ic + 1)) ==
61 forward_iterator<const int*>(ic),
62 forward_iterator<const int*>(ic)) ==
66 forward_iterator<const int*>(ic),
67 forward_iterator<const int*>(ic+1)) ==