HomeSort by relevance Sort by last modified time
    Searched refs:copy_n (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/stlport/test/unit/
istmit_test.cpp 90 istream_char_ite ite = copy_n(copy_n(istream_char_ite(istr),
94 copy_n(ite, 2, back_inserter(chars));
103 copy_n(istream_int_ite(istr), 2, back_inserter(ints));
109 copy_n(istream_string_ite(istr), 2, back_inserter(strings));
116 * in the previous copy_n call, this value is returned in the pair
117 * returned by copy_n but is lost as this istream_iterator is not used.
118 * copy_n and istream_iterator can only be combined safely if:
120 * the istream_iterator returned by copy_n (see previous test with "aabbcd")
125 copy_n(istream_int_ite(istr), 2, back_inserter(ints))
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
istmit_test.cpp 90 istream_char_ite ite = copy_n(copy_n(istream_char_ite(istr),
94 copy_n(ite, 2, back_inserter(chars));
103 copy_n(istream_int_ite(istr), 2, back_inserter(ints));
109 copy_n(istream_string_ite(istr), 2, back_inserter(strings));
116 * in the previous copy_n call, this value is returned in the pair
117 * returned by copy_n but is lost as this istream_iterator is not used.
118 * copy_n and istream_iterator can only be combined safely if:
120 * the istream_iterator returned by copy_n (see previous test with "aabbcd")
125 copy_n(istream_int_ite(istr), 2, back_inserter(ints))
    [all...]
  /ndk/tests/device/test-stlport/unit/
istmit_test.cpp 90 istream_char_ite ite = copy_n(copy_n(istream_char_ite(istr),
94 copy_n(ite, 2, back_inserter(chars));
103 copy_n(istream_int_ite(istr), 2, back_inserter(ints));
109 copy_n(istream_string_ite(istr), 2, back_inserter(strings));
116 * in the previous copy_n call, this value is returned in the pair
117 * returned by copy_n but is lost as this istream_iterator is not used.
118 * copy_n and istream_iterator can only be combined safely if:
120 * the istream_iterator returned by copy_n (see previous test with "aabbcd")
125 copy_n(istream_int_ite(istr), 2, back_inserter(ints))
    [all...]
  /external/libcxx/test/algorithms/alg.modifying.operations/alg.copy/
Android.mk 19 test_name := algorithms/alg.modifying.operations/alg.copy/copy_n
20 test_src := copy_n.pass.cpp
copy_n.pass.cpp 14 // copy_n(InIter first, InIter::difference_type n, OutIter result);
31 OutIter r = std::copy_n(InIter(ia), N/2, OutIter(ib));
  /external/chromium_org/third_party/cld/base/
stl_decl_msvc.h 32 // copy_n isn't to be found anywhere in MSVC's STL
35 copy_n(InputIterator in, Size count, OutputIterator out) { function
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.copy/
copy_n.pass.cpp 14 // copy_n(InIter first, InIter::difference_type n, OutIter result);
31 OutIter r = std::copy_n(InIter(ia), N/2, OutIter(ib));
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/api/
device.cpp 58 std::copy_n(devs.begin(),
memory.cpp 182 std::copy_n(formats.begin(), std::min((cl_uint)formats.size(), count),
  /external/mesa3d/src/gallium/state_trackers/clover/api/
device.cpp 58 std::copy_n(devs.begin(),
memory.cpp 182 std::copy_n(formats.begin(), std::min((cl_uint)formats.size(), count),
  /art/compiler/dex/
local_value_numbering.cc 388 std::copy_n(other.unresolved_ifield_version_, kFieldTypeCount, unresolved_ifield_version_);
389 std::copy_n(other.unresolved_sfield_version_, kFieldTypeCount, unresolved_sfield_version_);
435 std::copy_n(cmp->unresolved_ifield_version_, kFieldTypeCount, unresolved_ifield_version_);
436 std::copy_n(cmp->unresolved_sfield_version_, kFieldTypeCount, unresolved_sfield_version_);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/bits/
algorithmfwd.h 52 copy_n (C++0x)
224 copy_n(_IIter, _Size, _OIter);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
algorithmfwd.h 50 copy_n (C++0x)
221 copy_n(_IIter, _Size, _OIter);
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
algorithmfwd.h 50 copy_n (C++0x)
221 copy_n(_IIter, _Size, _OIter);
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
algorithmfwd.h 50 copy_n (C++0x)
221 copy_n(_IIter, _Size, _OIter);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
algorithmfwd.h 50 copy_n (C++0x)
221 copy_n(_IIter, _Size, _OIter);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
algorithmfwd.h 52 copy_n (C++0x)
224 copy_n(_IIter, _Size, _OIter);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
algorithmfwd.h 52 copy_n (C++0x)
224 copy_n(_IIter, _Size, _OIter);
  /external/stlport/stlport/stl/
_algobase.h 370 // copy_n (not part of the C++ standard)
399 copy_n(_InputIter __first, _Size __count, _OutputIter __result) { function
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_algobase.h 370 // copy_n (not part of the C++ standard)
399 copy_n(_InputIter __first, _Size __count, _OutputIter __result) { function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
algorithmfwd.h 54 copy_n (C++0x)
226 copy_n(_IIter, _Size, _OIter);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
algorithmfwd.h 54 copy_n (C++0x)
226 copy_n(_IIter, _Size, _OIter);
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_algobase.h 370 // copy_n (not part of the C++ standard)
399 copy_n(_InputIter __first, _Size __count, _OutputIter __result) { function
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_algobase.h 370 // copy_n (not part of the C++ standard)
399 copy_n(_InputIter __first, _Size __count, _OutputIter __result) { function

Completed in 748 milliseconds

1 2 3