Home
last modified time | relevance | path

Searched refs:isUserProvided (Results 1 – 22 of 22) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/cppcoreguidelines/
H A DProTypeMemberInitCheck.cpp275 allOf(isUserProvided(), in registerMatchers()
278 isDefaultConstructor(), unless(isUserProvided()), in registerMatchers()
302 isDefaultConstructor(), unless(isUserProvided()))))); in registerMatchers()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/fuchsia/
H A DMultipleInheritanceCheck.cpp58 return M->isUserProvided() && !M->isPure() && !M->isStatic(); in isCurrentClassInterface()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DConvertMemberFunctionsToStatic.cpp77 isDefinition(), isUserProvided(), in registerMatchers()
H A DMakeMemberFunctionConstCheck.cpp224 isDefinition(), isUserProvided(), in registerMatchers()
H A DIdentifierNamingCheck.cpp1268 if (Decl->isMain() || !Decl->isUserProvided() || in findStyleKind()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/
H A DUseEqualsDefaultCheck.cpp261 !SpecialFunctionDecl->isUserProvided() || !SpecialFunctionDecl->hasBody()) in check()
/llvm-project-15.0.7/clang/lib/AST/
H A DDeclCXX.cpp782 if (Constructor->isUserProvided()) in addedMember()
809 : (Constructor->isUserProvided() || Constructor->isExplicit())) in addedMember()
1370 if (DD->isUserProvided()) in addedEligibleSpecialMemberFunction()
1387 if (!MD->isImplicit() && !MD->isUserProvided()) { in addedEligibleSpecialMemberFunction()
1405 if (!MD->isUserProvided()) in addedEligibleSpecialMemberFunction()
1411 assert(!D->isImplicit() && !D->isUserProvided()); in finishedDefaultedOrDeletedMember()
H A DRecordLayoutBuilder.cpp2343 if (!MD->isUserProvided()) in computeKeyFunction()
H A DASTContext.cpp11351 if (!MD->isUserProvided()) in basicGVALinkageForFunction()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedObjectChecker.cpp144 if (!CtorDecl->isUserProvided()) in checkEndFunction()
/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersNarrowingTest.cpp2372 cxxConstructorDecl(isUserProvided()))); in TEST_P()
2374 cxxConstructorDecl(isUserProvided()))); in TEST_P()
2376 cxxConstructorDecl(isUserProvided()))); in TEST_P()
2378 matches("struct S { S(); };", cxxConstructorDecl(isUserProvided()))); in TEST_P()
2380 cxxConstructorDecl(isUserProvided()))); in TEST_P()
/llvm-project-15.0.7/clang/lib/Analysis/
H A DPathDiagnostic.cpp947 if (ExtendedDescription && !MD->isUserProvided()) { in describeCodeDecl()
965 if (!MD->isUserProvided()) { in describeCodeDecl()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaCUDA.cpp134 } else if ((D->isImplicit() || !D->isUserProvided()) && in IdentifyCUDATarget()
H A DSemaDeclCXX.cpp6073 if (MD->isUserProvided()) { in ReferenceDllExportedMembers()
6276 if (Method->isUserProvided()) in checkClassLevelCodeSegAttribute()
6913 if (!M->isImplicit() && !M->isUserProvided()) { in CheckCompletedCXXClass()
6928 CSM == CXXDestructor) && M->isUserProvided()) { in CheckCompletedCXXClass()
9518 if (!DefCtor->isUserProvided()) in findTrivialSpecialMember()
9667 else if (Selected->isUserProvided()) { in checkTrivialSubobjectCall()
9758 assert(!MD->isUserProvided() && CSM != CXXInvalid && "not special enough"); in SpecialMemberIsTrivial()
14442 bool UDOIsUserProvided = UserDeclaredOperation->isUserProvided(); in diagnoseDeprecatedCopyOperation()
H A DSemaType.cpp9080 Diag(Dtor->getLocation(), Dtor->isUserProvided() in RequireLiteralType()
9084 if (!Dtor->isUserProvided()) in RequireLiteralType()
H A DSemaDecl.cpp9516 if (Parent->isInterface() && cast<CXXMethodDecl>(NewFD)->isUserProvided()) in ActOnFunctionDeclarator()
H A DSemaExpr.cpp17926 if (Func->isImplicitlyInstantiable() || !Func->isUserProvided()) in isImplicitlyDefinableConstexprFunction()
/llvm-project-15.0.7/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp466 REGISTER_MATCHER(isUserProvided); in RegistryMaps()
/llvm-project-15.0.7/clang-tools-extra/clang-doc/
H A DSerialize.cpp464 !MD->isUserProvided()) in parseBases()
/llvm-project-15.0.7/clang/include/clang/ASTMatchers/
H A DASTMatchers.h6188 AST_MATCHER(CXXMethodDecl, isUserProvided) { in AST_MATCHER() argument
6189 return Node.isUserProvided(); in AST_MATCHER()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DDecl.h2250 bool isUserProvided() const { in isUserProvided() function
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp1106 if (Ctor->isUserProvided()) in isTrivialForAArch64MSVC()