Searched refs:Destructor (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/third_party/skia/src/core/
H A DSkTLS.h81 static void Destructor(void* ptr);
H A DSkTLS.cpp38 void SkTLS::Destructor(void* ptr) { function in class:SkTLS
40 SkDebugf("SkTLS::Destructor(%p)\n", ptr);
/external/chromium_org/third_party/skia/src/ports/
H A DSkTLS_pthread.cpp16 (void)pthread_key_create(&gSkTLSKey, SkTLS::Destructor);
H A DSkTLS_win.cpp53 SkTLS::Destructor(ptr);
/external/skia/src/core/
H A DSkTLS.h81 static void Destructor(void* ptr);
H A DSkTLS.cpp38 void SkTLS::Destructor(void* ptr) { function in class:SkTLS
40 SkDebugf("SkTLS::Destructor(%p)\n", ptr);
/external/skia/src/ports/
H A DSkTLS_pthread.cpp16 (void)pthread_key_create(&gSkTLSKey, SkTLS::Destructor);
H A DSkTLS_win.cpp53 SkTLS::Destructor(ptr);
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DCodecBase.cs118 #region Destructor & IDisposable stuff
H A DGZipStream.cs112 #region Destructor & IDispose stuff
/external/clang/test/CodeGenCXX/
H A Dpredefined-expr.cpp37 // CHECK: private unnamed_addr constant [12 x i8] c"~Destructor\00"
38 // CHECK: private unnamed_addr constant [30 x i8] c"NS::Destructor::~Destructor()\00"
271 class Destructor { class in namespace:NS
273 ~Destructor() {
480 NS::Destructor destructor;
/external/chromium_org/third_party/skia/src/xml/
H A DSkJSDisplayable.cpp62 static void Destructor(JSContext *cx, JSObject *obj);
209 gDisplayableClasses[type].finalize = SkJSDisplayable::Destructor;
214 void SkJSDisplayable::Destructor(JSContext *cx, JSObject *obj) { function in class:SkJSDisplayable
/external/skia/src/xml/
H A DSkJSDisplayable.cpp62 static void Destructor(JSContext *cx, JSObject *obj);
209 gDisplayableClasses[type].finalize = SkJSDisplayable::Destructor;
214 void SkJSDisplayable::Destructor(JSContext *cx, JSObject *obj) { function in class:SkJSDisplayable
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp5945 bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) { argument
5946 CXXRecordDecl *RD = Destructor->getParent();
5948 if (!Destructor->getOperatorDelete() && Destructor->isVirtual()) {
5951 if (!Destructor->isImplicit())
5952 Loc = Destructor->getLocation();
5965 Destructor->setOperatorDelete(OperatorDelete);
8365 CXXDestructorDecl *Destructor local
8369 Destructor->setAccess(AS_public);
8370 Destructor
8399 DefineImplicitDestructor(SourceLocation CurrentLocation, CXXDestructorDecl *Destructor) argument
8460 AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl, CXXDestructorDecl *Destructor) argument
[all...]
H A DSemaExprCXX.cpp680 CXXDestructorDecl *Destructor = LookupDestructor(RD);
681 if (!Destructor)
684 MarkFunctionReferenced(E->getExprLoc(), Destructor);
685 CheckDestructorAccess(E->getExprLoc(), Destructor,
687 if (DiagnoseUseOfDecl(Destructor, E->getExprLoc()))
3422 if (CXXDestructorDecl *Destructor = Self.LookupDestructor(RD))
3423 return Destructor->isVirtual();
4873 CXXDestructorDecl *Destructor = IsDecltype ? 0 : LookupDestructor(RD); local
4875 if (Destructor) {
4876 MarkFunctionReferenced(E->getExprLoc(), Destructor);
5029 CXXDestructorDecl *Destructor = LookupDestructor(RD); local
[all...]
H A DSemaInit.cpp5804 CXXDestructorDecl *Destructor local
5806 S.CheckDestructorAccess(CurInit.get()->getLocStart(), Destructor,
5808 S.MarkFunctionReferenced(CurInit.get()->getLocStart(), Destructor);
5809 if (S.DiagnoseUseOfDecl(Destructor, CurInit.get()->getLocStart()))
H A DSemaTemplateInstantiateDecl.cpp1575 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
1578 Destructor->isInlineSpecified(),
H A DSemaDecl.cpp7408 } else if (CXXDestructorDecl *Destructor =
7410 CXXRecordDecl *Record = Destructor->getParent();
9543 if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(dcl)) {
9544 if (!Destructor->getParent()->isDependentType())
9545 CheckDestructor(Destructor);
9547 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
9548 Destructor->getParent());
H A DSemaExpr.cpp10994 } else if (CXXDestructorDecl *Destructor =
10996 if (Destructor->isDefaulted() && !Destructor->isDeleted() &&
10997 !Destructor->isUsed(false))
10998 DefineImplicitDestructor(Loc, Destructor);
10999 if (Destructor->isVirtual())
11000 MarkVTableUsed(Loc, Destructor->getParent());
H A DTreeTransform.h7558 if (CXXDestructorDecl *Destructor = SemaRef.LookupDestructor(Record)) {
7559 SemaRef.MarkFunctionReferenced(E->getLocStart(), Destructor);
/external/chromium/webkit/glue/media/
H A Dsimple_data_source_unittest.cc213 EXPECT_CALL(*callback, Destructor());
/external/valgrind/unittest/
H A Dposix_tests.cc1164 void Destructor(void *ptr) {
1181 pthread_key_create(&key, Destructor);
/external/clang/include/clang/AST/
H A DExprCXX.h988 const CXXDestructorDecl *Destructor; member in class:clang::CXXTemporary
991 : Destructor(destructor) { }
995 const CXXDestructorDecl *Destructor);
997 const CXXDestructorDecl *getDestructor() const { return Destructor; }
999 Destructor = Dtor;
/external/clang/lib/AST/
H A DExprCXX.cpp721 const CXXDestructorDecl *Destructor) {
722 return new (C) CXXTemporary(Destructor);
720 Create(ASTContext &C, const CXXDestructorDecl *Destructor) argument
/external/clang/include/clang/Sema/
H A DSema.h3806 CXXDestructorDecl *Destructor);
3813 CXXDestructorDecl *Destructor);
4717 bool CheckDestructor(CXXDestructorDecl *Destructor);

Completed in 3251 milliseconds