/external/llvm/test/Transforms/MemCpyOpt/ |
D | loadstore-sret.ll | 7 %"class.std::auto_ptr" = type { i32* } 10 define void @_Z3foov(%"class.std::auto_ptr"* noalias nocapture sret %agg.result) ssp { 12 %temp.lvalue = alloca %"class.std::auto_ptr", align 8 13 ; CHECK: call void @_Z3barv(%"class.std::auto_ptr"* sret %agg.result) 14 call void @_Z3barv(%"class.std::auto_ptr"* sret %temp.lvalue) 15 …%tmp.i.i = getelementptr inbounds %"class.std::auto_ptr", %"class.std::auto_ptr"* %temp.lvalue, i6… 18 …%tmp.i.i4 = getelementptr inbounds %"class.std::auto_ptr", %"class.std::auto_ptr"* %agg.result, i6… 25 declare void @_Z3barv(%"class.std::auto_ptr"* nocapture sret) nounwind
|
/external/llvm/test/Transforms/DeadStoreElimination/ |
D | 2011-09-06-EndOfFunction.ll | 6 %"class.std::auto_ptr" = type { i32* } 9 define void @_Z3foov(%"class.std::auto_ptr"* noalias nocapture sret %agg.result) uwtable ssp { 11 %temp.lvalue = alloca %"class.std::auto_ptr", align 8 12 call void @_Z3barv(%"class.std::auto_ptr"* sret %temp.lvalue) 13 …%_M_ptr.i.i = getelementptr inbounds %"class.std::auto_ptr", %"class.std::auto_ptr"* %temp.lvalue,… 17 …%_M_ptr.i.i4 = getelementptr inbounds %"class.std::auto_ptr", %"class.std::auto_ptr"* %agg.result,… 23 declare void @_Z3barv(%"class.std::auto_ptr"* sret)
|
/external/swiftshader/third_party/LLVM/test/Transforms/MemCpyOpt/ |
D | loadstore-sret.ll | 7 %"class.std::auto_ptr" = type { i32* } 10 define void @_Z3foov(%"class.std::auto_ptr"* noalias nocapture sret %agg.result) ssp { 12 %temp.lvalue = alloca %"class.std::auto_ptr", align 8 13 ; CHECK: call void @_Z3barv(%"class.std::auto_ptr"* sret %agg.result) 14 call void @_Z3barv(%"class.std::auto_ptr"* sret %temp.lvalue) 15 %tmp.i.i = getelementptr inbounds %"class.std::auto_ptr"* %temp.lvalue, i64 0, i32 0 18 %tmp.i.i4 = getelementptr inbounds %"class.std::auto_ptr"* %agg.result, i64 0, i32 0 25 declare void @_Z3barv(%"class.std::auto_ptr"* sret)
|
/external/swiftshader/third_party/LLVM/test/Transforms/DeadStoreElimination/ |
D | 2011-09-06-EndOfFunction.ll | 6 %"class.std::auto_ptr" = type { i32* } 9 define void @_Z3foov(%"class.std::auto_ptr"* noalias nocapture sret %agg.result) uwtable ssp { 11 %temp.lvalue = alloca %"class.std::auto_ptr", align 8 12 call void @_Z3barv(%"class.std::auto_ptr"* sret %temp.lvalue) 13 %_M_ptr.i.i = getelementptr inbounds %"class.std::auto_ptr"* %temp.lvalue, i64 0, i32 0 17 %_M_ptr.i.i4 = getelementptr inbounds %"class.std::auto_ptr"* %agg.result, i64 0, i32 0 23 declare void @_Z3barv(%"class.std::auto_ptr"* sret)
|
/external/clang/test/SemaCXX/ |
D | conversion-function.cpp | 248 struct auto_ptr { struct 251 auto_ptr(auto_ptr&); 252 auto_ptr(auto_ptr_ref); 253 explicit auto_ptr(int *); 259 X(auto_ptr); 263 X x(auto_ptr(new int)); in f() 264 return X(auto_ptr(new int)); in f() 267 auto_ptr foo();
|
/external/swiftshader/third_party/LLVM/tools/llvm-link/ |
D | llvm-link.cpp | 55 static inline std::auto_ptr<Module> LoadFile(const char *argv0, in LoadFile() 61 return std::auto_ptr<Module>(); in LoadFile() 70 if (Result) return std::auto_ptr<Module>(Result); // Load successful! in LoadFile() 73 return std::auto_ptr<Module>(); in LoadFile() 88 std::auto_ptr<Module> Composite(LoadFile(argv[0], in main() 97 std::auto_ptr<Module> M(LoadFile(argv[0], in main()
|
/external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/ |
D | convert_to_auto_ptr.pass.cpp | 23 std::auto_ptr<B> 26 return std::auto_ptr<B>(new B(1)); in source() 32 std::auto_ptr<A> ap2(source()); in test()
|
D | convert_to_auto_ptr_ref.pass.cpp | 27 std::auto_ptr<B> ap1(p1); in test() 29 std::auto_ptr<A> ap2(apr); in test()
|
D | convert_from_auto_ptr_ref.pass.cpp | 28 std::auto_ptr<B> ap1(p1); in test() 30 std::auto_ptr<A> ap2(apr); in test()
|
/external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/ |
D | assignment.pass.cpp | 28 std::auto_ptr<A> ap1(p1); in test() 30 std::auto_ptr<A> ap2(p2); in test() 34 std::auto_ptr<A>& apr = ap2 = ap1; in test()
|
D | assignment.fail.cpp | 26 const std::auto_ptr<A> ap1(p1); in test() 28 std::auto_ptr<A> ap2(p2); in test() 32 std::auto_ptr<A>& apr = ap2 = ap1; in test()
|
D | convert_assignment.pass.cpp | 28 std::auto_ptr<B> ap1(p1); in test() 30 std::auto_ptr<A> ap2(p2); in test() 35 std::auto_ptr<A>& apr = ap2 = ap1; in test()
|
D | convert_assignment.fail.cpp | 26 const std::auto_ptr<B> ap1(p1); in test() 28 std::auto_ptr<A> ap2(p2); in test() 33 std::auto_ptr<A>& apr = ap2 = ap1; in test()
|
D | pointer.pass.cpp | 28 std::auto_ptr<A> ap(p); in test() 34 std::auto_ptr<A> ap; in test()
|
D | explicit.fail.cpp | 26 std::auto_ptr<A> ap = p; in test() 32 std::auto_ptr<A> ap; in test()
|
D | copy.fail.cpp | 26 const std::auto_ptr<A> ap1(p); in test() 27 std::auto_ptr<A> ap2(ap1); in test()
|
D | copy.pass.cpp | 28 std::auto_ptr<A> ap1(p); in test() 29 std::auto_ptr<A> ap2(ap1); in test()
|
D | convert.pass.cpp | 28 std::auto_ptr<B> ap1(p); in test() 29 std::auto_ptr<A> ap2(ap1); in test()
|
D | convert.fail.cpp | 26 const std::auto_ptr<B> ap1(p); in test() 27 std::auto_ptr<A> ap2(ap1); in test()
|
/external/clang/test/Analysis/diagnostics/Inputs/include/ |
D | report-issues-within-main-file.h | 2 class auto_ptr { 6 auto_ptr(_Tp* __p = 0) throw() : _M_ptr(__p) { } in throw() 7 ~auto_ptr() { delete _M_ptr; } in ~auto_ptr()
|
/external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.members/ |
D | reset.pass.cpp | 28 std::auto_ptr<A> ap(p); in test() 36 std::auto_ptr<A> ap(p); in test() 44 std::auto_ptr<A> ap(p); in test()
|
/external/clang/test/CodeGenCXX/ |
D | 2010-07-23-DeclLoc.cpp | 14 template<typename _Tp> class auto_ptr { class 18 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { } in auto_ptr() function in std::auto_ptr 78 std::auto_ptr< TRawSymbolOwnerData<SIZE> > data(new TRawSymbolOwnerData<SIZE>()); in create_symbol_owner_data_arch_specific() 79 std::auto_ptr< TExtendedMachOHeader<SIZE_AND_ENDIANNESS> > header; in create_symbol_owner_data_arch_specific()
|
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/ |
D | auto_ptr_Y.pass.cpp | 47 std::auto_ptr<A> pA(new A); in main() 64 std::auto_ptr<A> pA; in main() 81 std::auto_ptr<A> pA(new A); in main() 98 std::auto_ptr<A> pA; in main()
|
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/ |
D | auto_pointer.pass.cpp | 51 std::auto_ptr<B> ap(p); in main() 62 std::auto_ptr<B> ap(p); in main() 76 std::auto_ptr<B>&& in main()
|
/external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/ |
D | element_type.pass.cpp | 29 static_assert((std::is_same<typename std::auto_ptr<T>::element_type, T>::value), ""); in test() 30 std::auto_ptr<T> p; in test()
|