Searched refs:Deleter (Results 76 - 96 of 96) sorted by relevance

1234

/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
H A Dmove_convert08.fail.cpp49 const std::unique_ptr<B[], Deleter<B[]> > s(new B);
51 std::unique_ptr<A[], Deleter<A[]> > s2(s);
H A Dmove_convert11.fail.cpp49 const std::unique_ptr<B[], Deleter<B[]> > s(new B);
51 std::unique_ptr<A[], Deleter<A[]> > s2 = s;
H A Dmove_convert14.fail.cpp49 std::unique_ptr<B[], Deleter<B[]> > s(new B);
51 std::unique_ptr<A[], Deleter<A[]> > s2(std::move(s));
H A Dmove_convert17.fail.cpp49 std::unique_ptr<B[], Deleter<B[]> > s(new B);
51 std::unique_ptr<A[], Deleter<A[]> > s2 = std::move(s);
H A Dmove02.pass.cpp60 std::unique_ptr<A[], Deleter<A[]> >
63 return std::unique_ptr<A[], Deleter<A[]> >(new A[3]);
66 void sink2(std::unique_ptr<A[], Deleter<A[]> > p)
H A Dmove01.pass.cpp62 std::unique_ptr<A[], Deleter<A[]> > s(new A[3], Deleter<A[]>(5));
64 std::unique_ptr<A[], Deleter<A[]> > s2 = std::move(s);
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
H A Dmove_convert02.fail.cpp47 std::unique_ptr<B, Deleter<B> > s(new B);
49 std::unique_ptr<A, Deleter<A> > s2;
H A Dmove_convert05.fail.cpp47 const std::unique_ptr<B, Deleter<B> > s(new B);
49 std::unique_ptr<A, Deleter<A> > s2;
H A Dmove01.pass.cpp48 std::unique_ptr<A, Deleter<A> > s1(new A, Deleter<A>(5));
50 std::unique_ptr<A, Deleter<A> > s2(new A);
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
H A Dauto_pointer02.fail.cpp42 struct Deleter struct
53 std::unique_ptr<A, Deleter> up(ap);
H A Dmove_convert02.fail.cpp49 std::unique_ptr<B, Deleter<B> > s(new B);
51 std::unique_ptr<A, Deleter<A> > s2(s);
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/
H A Dmove01.pass.cpp49 std::unique_ptr<A[], Deleter<A[]> > s1(new A[4], Deleter<A[]>(5));
52 std::unique_ptr<A[], Deleter<A[]> > s2(new A[5]);
/external/chromium_org/content/renderer/media/android/
H A Dstream_texture_factory.h39 struct Deleter { struct in class:content::StreamTextureProxy
44 typedef scoped_ptr<StreamTextureProxy, StreamTextureProxy::Deleter>
/external/chromium_org/ui/wm/core/
H A Ddefault_activation_client.cc14 class DefaultActivationClient::Deleter : public aura::WindowObserver { class in class:wm::DefaultActivationClient
16 Deleter(DefaultActivationClient* client, aura::Window* root_window) function in class:wm::DefaultActivationClient::Deleter
23 virtual ~Deleter() {}
36 DISALLOW_COPY_AND_ASSIGN(Deleter);
45 new Deleter(this, root_window);
H A Ddefault_activation_client.h50 class Deleter;
/external/clang/test/Analysis/
H A Ddtor.cpp35 SmartPointer Deleter(mem);
46 SmartPointer Deleter(mem);
63 Subclass Deleter(mem);
80 MultipleInheritance Deleter(mem, 0);
91 MultipleInheritance Deleter(0, mem);
102 MultipleInheritance Deleter(mem, mem);
120 SmartPointerMember Deleter(mem);
/external/chromium_org/media/base/android/
H A Dmedia_source_player.h233 scoped_ptr<AudioDecoderJob, MediaDecoderJob::Deleter> audio_decoder_job_;
234 scoped_ptr<VideoDecoderJob, MediaDecoderJob::Deleter> video_decoder_job_;
H A Dmedia_decoder_job.h30 struct Deleter { struct in class:media::MediaDecoderJob
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dcache_test.cc30 static void Deleter(const Slice& key, void* v) { function in class:leveldb::CacheTest
59 &CacheTest::Deleter));
/external/chromium_org/base/files/
H A Dfile_path_watcher_browsertest.cc269 class Deleter : public TestDelegateBase { class in namespace:base::__anon2250
271 Deleter(FilePathWatcher* watcher, MessageLoop* loop) function in class:base::__anon2250::Deleter
275 virtual ~Deleter() {}
288 DISALLOW_COPY_AND_ASSIGN(Deleter);
295 scoped_ptr<Deleter> deleter(new Deleter(watcher, &loop_));
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc7566 THREADED_TEST(Deleter) {

Completed in 462 milliseconds

1234