Home
last modified time | relevance | path

Searched refs:isCopyConstructor (Results 1 – 19 of 19) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DGTestChecker.cpp204 if (CtorDecl->isCopyConstructor() && ParamCount == 1) { in checkPostCall()
H A DIterator.cpp40 if (Ctor->isCopyConstructor()) { in isIterator()
H A DSmartPtrModeling.cpp215 if (CC->getDecl()->isCopyConstructor()) in evalCall()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclCXX.cpp787 if (Constructor->isCopyConstructor(Quals)) { in addedMember()
1398 if (Constructor->isCopyConstructor()) in finishedDefaultedOrDeletedMember()
1447 if (Constructor->isCopyConstructor()) in setTrivialForCallFlags()
2662 CXXConstructorDecl::isCopyConstructor(unsigned &TypeQuals) const { in isCopyConstructor() function in CXXConstructorDecl
/netbsd-src/external/apache2/llvm/dist/clang/lib/Index/
H A DIndexSymbol.cpp259 if (CD->isCopyConstructor()) in getSymbolInfo()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp117 unless(anyOf(hasMethod(cxxConstructorDecl(isCopyConstructor(), in __anon78d823ce0602()
H A DThreadSafety.cpp2109 if (D && D->isCopyConstructor()) { in VisitCXXConstructExpr()
2129 if (!CopyCtor && Ctor->isCopyConstructor()) in findConstructorForByValueReturn()
H A DPathDiagnostic.cpp957 else if (CD->isCopyConstructor()) in describeCodeDecl()
H A DConsumed.cpp789 } else if (Constructor->isCopyConstructor()) { in VisitCXXConstructExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclCXX.h2580 bool isCopyConstructor(unsigned &TypeQuals) const;
2585 bool isCopyConstructor() const { in isCopyConstructor() function
2587 return isCopyConstructor(TypeQuals); in isCopyConstructor()
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp396 REGISTER_MATCHER(isCopyConstructor); in RegistryMaps()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h7219 AST_MATCHER(CXXConstructorDecl, isCopyConstructor) { in AST_MATCHER() argument
7220 return Node.isCopyConstructor(); in AST_MATCHER()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDeclCXX.cpp3784 if (E->getConstructor()->isCopyConstructor()) { in VisitCXXConstructExpr()
4872 else if (Generated && Ctor->isCopyConstructor()) in BaseAndFieldInfo()
6415 if (Ctor->isCopyConstructor()) in getDefaultedFunctionKind()
6525 if (CD->isCopyConstructor() && !CD->isDeleted()) { in canPassInRegisters()
14027 if (I->isCopyConstructor()) { in diagnoseDeprecatedCopyOperation()
14736 CopyConstructor->isCopyConstructor() && in DefineImplicitCopyConstructor()
H A DSemaStmt.cpp3137 if (!CE->getConstructor()->isCopyConstructor()) in DiagnoseForRangeConstVariableCopies()
H A DSemaOverload.cpp1360 if (Constructor->isCopyConstructor() && in TryUserDefinedConversion()
10103 assert(Ctor->isCopyConstructor() && in ClassifyOverloadCandidate()
H A DSemaExprCXX.cpp5086 if (Constructor->isCopyConstructor(FoundTQs)) { in EvaluateUnaryTypeTrait()
H A DSemaDecl.cpp1638 return CD->isCopyConstructor(); in IsDisallowedCopyOrAssign()
11538 if (E->getConstructor()->isCopyConstructor()) { in VisitCXXConstructExpr()
H A DSemaExpr.cpp16971 } else if (Constructor->isCopyConstructor()) { in MarkFunctionReferenced()
17566 if (Ctor->isCopyConstructor()) in canCaptureVariableByCopy()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp8541 return (Constructor && Constructor->isCopyConstructor()) ? 1 : 0; in clang_CXXConstructor_isCopyConstructor()