Searched refs:FIt (Results 1 – 5 of 5) sorted by relevance
/external/llvm-project/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.move/ |
D | uninitialized_move.pass.cpp | 83 using FIt = forward_iterator<Counted*>; in test_counted() typedef 88 auto ret = std::uninitialized_move(It(values), It(values + 1), FIt(p)); in test_counted() 89 assert(ret == FIt(p +1)); in test_counted() 94 ret = std::uninitialized_move(It(values+1), It(values+N), FIt(p+1)); in test_counted() 95 assert(ret == FIt(p + N)); in test_counted()
|
D | uninitialized_move_n.pass.cpp | 83 using FIt = forward_iterator<Counted*>; in test_counted() typedef 88 auto ret = std::uninitialized_move_n(It(values), 1, FIt(p)); in test_counted() 90 assert(ret.second == FIt(p +1)); in test_counted() 95 ret = std::uninitialized_move_n(It(values+1), N-1, FIt(p+1)); in test_counted() 97 assert(ret.second == FIt(p + N)); in test_counted()
|
/external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.move/ |
D | uninitialized_move.pass.cpp | 84 using FIt = forward_iterator<Counted*>; in test_counted() typedef 89 auto ret = std::uninitialized_move(It(values), It(values + 1), FIt(p)); in test_counted() 90 assert(ret == FIt(p +1)); in test_counted() 95 ret = std::uninitialized_move(It(values+1), It(values+N), FIt(p+1)); in test_counted() 96 assert(ret == FIt(p + N)); in test_counted()
|
D | uninitialized_move_n.pass.cpp | 84 using FIt = forward_iterator<Counted*>; in test_counted() typedef 89 auto ret = std::uninitialized_move_n(It(values), 1, FIt(p)); in test_counted() 91 assert(ret.second == FIt(p +1)); in test_counted() 96 ret = std::uninitialized_move_n(It(values+1), N-1, FIt(p+1)); in test_counted() 98 assert(ret.second == FIt(p + N)); in test_counted()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaDeclCXX.cpp | 11138 auto FIt = Info->Record->field_begin(), FEnd = Info->Record->field_end(); in CheckComparisonCategoryType() local 11139 if (std::distance(FIt, FEnd) != 1 || in CheckComparisonCategoryType() 11140 !FIt->getType()->isIntegralOrEnumerationType()) { in CheckComparisonCategoryType()
|