/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/ |
D | assignment.fail.cpp | 28 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()
|
D | assignment.pass.cpp | 28 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()
|
D | convert_assignment.fail.cpp | 28 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()
|
D | convert_assignment.pass.cpp | 28 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()
|
D | copy.pass.cpp | 27 std::auto_ptr<A> ap2(ap1); in test() local 29 assert(ap2.get() == p); in test()
|
D | copy.fail.cpp | 27 std::auto_ptr<A> ap2(ap1); in test() local 29 assert(ap2.get() == p); in test()
|
D | convert.pass.cpp | 27 std::auto_ptr<A> ap2(ap1); in test() local 29 assert(ap2.get() == p); in test()
|
D | convert.fail.cpp | 27 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/ |
D | assign_from_auto_ptr_ref.pass.cpp | 28 std::auto_ptr<A> ap2(new A(2)); in test() local 29 ap2 = apr; in test() 31 assert(ap2.get() == p1); in test()
|
D | convert_from_auto_ptr_ref.pass.cpp | 28 std::auto_ptr<A> ap2(apr); in test() local 29 assert(ap2.get() == p1); in test()
|
D | convert_to_auto_ptr.pass.cpp | 30 std::auto_ptr<A> ap2(source()); in test() local
|
/ndk/sources/android/support/src/stdio/ |
D | vfwprintf.c | 383 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 …]
|
D | vfprintf.c | 697 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/ |
D | allocate.pass.cpp | 57 A* ap2 = a.allocate(3, (const void*)5); in main() local 60 a.deallocate(ap2, 3); in main()
|