Home
last modified time | relevance | path

Searched refs:ap2 (Results 1 – 14 of 14) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/
Dassignment.fail.cpp28 std::auto_ptr<A> ap2(p2); in test() local
31 assert(ap2.get() == p2); in test()
32 std::auto_ptr<A>& apr = ap2 = ap1; in test()
33 assert(&apr == &ap2); in test()
36 assert(ap2.get() == p1); in test()
Dassignment.pass.cpp28 std::auto_ptr<A> ap2(p2); in test() local
31 assert(ap2.get() == p2); in test()
32 std::auto_ptr<A>& apr = ap2 = ap1; in test()
33 assert(&apr == &ap2); in test()
36 assert(ap2.get() == p1); in test()
Dconvert_assignment.fail.cpp28 std::auto_ptr<A> ap2(p2); in test() local
32 assert(ap2.get() == p2); in test()
33 std::auto_ptr<A>& apr = ap2 = ap1; in test()
34 assert(&apr == &ap2); in test()
38 assert(ap2.get() == p1); in test()
Dconvert_assignment.pass.cpp28 std::auto_ptr<A> ap2(p2); in test() local
32 assert(ap2.get() == p2); in test()
33 std::auto_ptr<A>& apr = ap2 = ap1; in test()
34 assert(&apr == &ap2); in test()
38 assert(ap2.get() == p1); in test()
Dcopy.pass.cpp27 std::auto_ptr<A> ap2(ap1); in test() local
29 assert(ap2.get() == p); in test()
Dcopy.fail.cpp27 std::auto_ptr<A> ap2(ap1); in test() local
29 assert(ap2.get() == p); in test()
Dconvert.pass.cpp27 std::auto_ptr<A> ap2(ap1); in test() local
29 assert(ap2.get() == p); in test()
Dconvert.fail.cpp27 std::auto_ptr<A> ap2(ap1); in test() local
29 assert(ap2.get() == p); in test()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/
Dassign_from_auto_ptr_ref.pass.cpp28 std::auto_ptr<A> ap2(new A(2)); in test() local
29 ap2 = apr; in test()
31 assert(ap2.get() == p1); in test()
Dconvert_from_auto_ptr_ref.pass.cpp28 std::auto_ptr<A> ap2(apr); in test() local
29 assert(ap2.get() == p1); in test()
Dconvert_to_auto_ptr.pass.cpp30 std::auto_ptr<A> ap2(source()); in test() local
/ndk/sources/android/support/src/stdio/
Dvfwprintf.c383 va_list ap2; in vfwprintf() local
389 va_copy(ap2, ap); in vfwprintf()
391 if (wprintf_core(0, fmt, &ap2, nl_arg, nl_type) < 0) { in vfwprintf()
392 va_end(ap2); in vfwprintf()
395 ret = wprintf_core(out, fmt, &ap2, nl_arg, nl_type); in vfwprintf()
396 va_end(ap2); in vfwprintf()
402 va_list ap2; in vswprintf() local
408 va_copy(ap2, ap); in vswprintf()
409 ret = wprintf_core(out, fmt, &ap2, nl_arg, nl_type); in vswprintf()
410 va_end(ap2); in vswprintf()
[all …]
Dvfprintf.c697 va_list ap2; in vfprintf() local
704 va_copy(ap2, ap); in vfprintf()
705 ret = printf_core(0, fmt, &ap2, nl_arg, nl_type); in vfprintf()
706 va_end(ap2); in vfprintf()
710 va_copy(ap2, ap); in vfprintf()
711 ret = printf_core(out, fmt, &ap2, nl_arg, nl_type); in vfprintf()
712 va_end(ap2); in vfprintf()
718 va_list ap2; in vsnprintf() local
738 va_copy(ap2, ap); in vsnprintf()
739 r = printf_core(out, fmt, &ap2, nl_arg, nl_type); in vsnprintf()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.members/
Dallocate.pass.cpp57 A* ap2 = a.allocate(3, (const void*)5); in main() local
60 a.deallocate(ap2, 3); in main()