Home
last modified time | relevance | path

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

123

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DAnyCall.h39 Destructor, enumerator
93 AnyCall(const CXXDestructorDecl *D) : E(nullptr), D(D), K(Destructor) {} in AnyCall()
103 K = Destructor; in AnyCall()
178 case Destructor: in getReturnType()
/netbsd-src/external/gpl3/binutils.old/dist/zlib/contrib/dotzlib/DotZLib/
H A DCodecBase.cs118 #region Destructor & IDisposable stuff
H A DGZipStream.cs112 #region Destructor & IDispose stuff
/netbsd-src/external/gpl3/binutils/dist/zlib/contrib/dotzlib/DotZLib/
H A DCodecBase.cs118 #region Destructor & IDisposable stuff
H A DGZipStream.cs112 #region Destructor & IDispose stuff
/netbsd-src/external/gpl3/gdb.old/dist/zlib/contrib/dotzlib/DotZLib/
H A DCodecBase.cs118 #region Destructor & IDisposable stuff
H A DGZipStream.cs112 #region Destructor & IDispose stuff
/netbsd-src/external/gpl3/gdb/dist/zlib/contrib/dotzlib/DotZLib/
H A DCodecBase.cs118 #region Destructor & IDisposable stuff
H A DGZipStream.cs112 #region Destructor & IDispose stuff
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDeclCXX.cpp10350 bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) { in CheckDestructor() argument
10351 CXXRecordDecl *RD = Destructor->getParent(); in CheckDestructor()
10353 if (!Destructor->getOperatorDelete() && Destructor->isVirtual()) { in CheckDestructor()
10356 if (!Destructor->isImplicit()) in CheckDestructor()
10357 Loc = Destructor->getLocation(); in CheckDestructor()
10375 ContextRAII SwitchContext(*this, Destructor); in CheckDestructor()
10392 Destructor->setOperatorDelete(OperatorDelete, ThisArg); in CheckDestructor()
13322 CXXDestructorDecl *Destructor = in DeclareImplicitDestructor() local
13328 Destructor->setAccess(AS_public); in DeclareImplicitDestructor()
13329 Destructor->setDefaulted(); in DeclareImplicitDestructor()
[all …]
H A DSemaExprCXX.cpp987 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) { in CheckCXXThrowOperand() local
988 MarkFunctionReferenced(E->getExprLoc(), Destructor); in CheckCXXThrowOperand()
989 CheckDestructorAccess(E->getExprLoc(), Destructor, in CheckCXXThrowOperand()
991 if (DiagnoseUseOfDecl(Destructor, E->getExprLoc())) in CheckCXXThrowOperand()
4989 CXXDestructorDecl *Destructor = Self.LookupDestructor(RD); in EvaluateUnaryTypeTrait() local
4990 if (!Destructor) in EvaluateUnaryTypeTrait()
4995 if (Destructor->isDeleted()) in EvaluateUnaryTypeTrait()
4997 if (C.getLangOpts().AccessControl && Destructor->getAccess() != AS_public) in EvaluateUnaryTypeTrait()
5000 auto *CPT = Destructor->getType()->castAs<FunctionProtoType>(); in EvaluateUnaryTypeTrait()
5144 if (CXXDestructorDecl *Destructor = Self.LookupDestructor(RD)) in EvaluateUnaryTypeTrait() local
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Index/
H A DIndexSymbol.cpp266 Info.Kind = SymbolKind::Destructor; in getSymbolInfo()
296 Info.Kind = SymbolKind::Destructor; in getSymbolInfo()
525 case SymbolKind::Destructor: return "destructor"; in getSymbolKindString()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Index/
H A DIndexSymbol.h52 Destructor, enumerator
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DExecutionUtils.cpp175 int LocalCXXRuntimeOverridesBase::CXAAtExitOverride(DestructorPtr Destructor, in CXAAtExitOverride() argument
180 CXXDestructorDataPairs.push_back(std::make_pair(Destructor, Arg)); in CXAAtExitOverride()
/netbsd-src/external/gpl2/gettext/dist/gettext-runtime/libasprintf/
H A Dautosprintf.h.in50 /* Destructor: frees the temporarily allocated string. */
/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DLibASTImporter.rst153 `-Destructor simple irrelevant trivial needs_implicit
180 | `-Destructor simple irrelevant trivial needs_implicit
364 | | | `-Destructor simple irrelevant trivial needs_implicit
374 | `-Destructor simple irrelevant trivial needs_implicit
490 | `-Destructor simple irrelevant trivial needs_implicit
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A DExecutionUtils.h188 static int CXAAtExitOverride(DestructorPtr Destructor, void *Arg,
/netbsd-src/external/bsd/kyua-cli/dist/utils/
H A Dauto_array.ipp90 /// Destructor for auto_array objects.
H A Doptional.ipp78 /// Destructor.
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/
H A Dtypeinfo91 /** Destructor first. Being the first non-inline virtual function, this
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
H A Dtypeinfo95 /** Destructor first. Being the first non-inline virtual function, this
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/
H A Doptional218 // [X.Y.4.2] Destructor.
618 // [X.Y.4.2] Destructor is implicit, implemented in _Optional_base.
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/
H A Doptional222 // [X.Y.4.2] Destructor.
622 // [X.Y.4.2] Destructor is implicit, implemented in _Optional_base.
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExprCXX.h1382 const CXXDestructorDecl *Destructor; variable
1385 : Destructor(destructor) {} in CXXTemporary()
1389 const CXXDestructorDecl *Destructor);
1391 const CXXDestructorDecl *getDestructor() const { return Destructor; } in getDestructor()
1394 Destructor = Dtor; in setDestructor()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/
H A Doptional399 // Destructor needs to destroy the contained value:
864 // Destructor is implicit, implemented in _Optional_base.

123