Home
last modified time | relevance | path

Searched refs:IIter (Results 1 – 5 of 5) sorted by relevance

/external/libcxx/test/std/strings/basic.string/string.modifiers/string_assign/
Diterator.pass.cpp171 typedef input_iterator<TIter> IIter; in main() typedef
173 test_exceptions(S(), IIter(TIter(s, s+10, 4, TIter::TAIncrement)), IIter()); in main()
174 test_exceptions(S(), IIter(TIter(s, s+10, 5, TIter::TADereference)), IIter()); in main()
175 test_exceptions(S(), IIter(TIter(s, s+10, 6, TIter::TAComparison)), IIter()); in main()
/external/libcxx/test/std/strings/basic.string/string.modifiers/string_append/
Diterator.pass.cpp170 typedef input_iterator<TIter> IIter; in main() typedef
172 test_exceptions(S(), IIter(TIter(s, s+10, 4, TIter::TAIncrement)), IIter()); in main()
173 test_exceptions(S(), IIter(TIter(s, s+10, 5, TIter::TADereference)), IIter()); in main()
174 test_exceptions(S(), IIter(TIter(s, s+10, 6, TIter::TAComparison)), IIter()); in main()
/external/libcxx/test/std/strings/basic.string/string.modifiers/string_insert/
Diter_iter_iter.pass.cpp151 typedef input_iterator<TIter> IIter; in main() typedef
153 test_exceptions(S(), 0, IIter(TIter(s, s+10, 4, TIter::TAIncrement)), IIter()); in main()
154 test_exceptions(S(), 0, IIter(TIter(s, s+10, 5, TIter::TADereference)), IIter()); in main()
155 test_exceptions(S(), 0, IIter(TIter(s, s+10, 6, TIter::TAComparison)), IIter()); in main()
/external/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/
Diter_iter_iter_iter.pass.cpp999 typedef input_iterator<TIter> IIter; in main() typedef
1001 …test_exceptions(S("abcdefghijklmnopqrst"), 10, 5, IIter(TIter(s, s+10, 4, TIter::TAIncrement)), II… in main()
1002 …test_exceptions(S("abcdefghijklmnopqrst"), 10, 5, IIter(TIter(s, s+10, 5, TIter::TADereference)), in main()
1003 …test_exceptions(S("abcdefghijklmnopqrst"), 10, 5, IIter(TIter(s, s+10, 6, TIter::TAComparison)), I… in main()
/external/clang/lib/AST/
DASTImporter.cpp258 template<typename IIter, typename OIter>
259 void ImportArray(IIter Ibegin, IIter Iend, OIter Obegin) { in ImportArray()
268 template<typename IIter, typename OIter>
269 bool ImportArrayChecked(IIter Ibegin, IIter Iend, OIter Obegin) { in ImportArrayChecked()