| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CXXDeleteChecker.cpp | 120 if (!BaseClass->hasDefinition() || !DerivedClass->hasDefinition()) in checkTypedDeleteExpr() 150 if (!BaseClass->hasDefinition() || !DerivedClass->hasDefinition()) in checkTypedDeleteExpr()
|
| H A D | DynamicTypeChecker.cpp | 139 static bool hasDefinition(const ObjCObjectPointerType *ObjPtr) { in hasDefinition() function 173 if (!hasDefinition(DynObjCType) || !hasDefinition(StaticObjCType)) in checkPostStmt()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclObjC.h | 1361 if (!hasDefinition()) in protocol_begin() 1372 if (!hasDefinition()) in protocol_end() 1390 if (!hasDefinition()) in protocol_loc_begin() 1401 if (!hasDefinition()) in protocol_loc_end() 1420 if (!hasDefinition()) in all_referenced_protocol_begin() 1433 if (!hasDefinition()) in all_referenced_protocol_end() 1571 if (!hasDefinition()) in getSuperClassTInfo() 1782 if (!hasDefinition()) in getCategoryListRaw() 1874 if (!hasDefinition()) in getEndOfDefinitionLoc() 2160 if (!hasDefinition()) in protocol_begin() [all …]
|
| H A D | DeclCXX.h | 571 bool hasDefinition() const { return DefinitionData || dataPtr(); } in hasDefinition() function 591 return !hasDefinition() || isDynamicClass() || hasAnyDependentBases(); in mayBeDynamicClass() 597 return !hasDefinition() || !isDynamicClass() || hasAnyDependentBases(); in mayBeNonDynamicClass()
|
| H A D | Decl.h | 1297 DefinitionKind hasDefinition(ASTContext &) const; 1298 DefinitionKind hasDefinition() const { in hasDefinition() function 1299 return hasDefinition(getASTContext()); in hasDefinition()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 353 if (!hasDefinition()) in getSuperClass() 386 if (!hasDefinition()) in FindPropertyVisibleInPrimaryClass() 641 if (!hasDefinition()) in lookupInstanceVariable() 672 if (!hasDefinition()) in lookupInheritedClass() 707 if (!hasDefinition()) in lookupMethod() 761 if (!hasDefinition()) in lookupPrivateMethod() 809 if (!hasDefinition()) in hasODRHash() 1680 if (!hasDefinition()) in all_declared_ivar_begin() 1757 if (!hasDefinition()) in FindCategoryDeclaration() 1797 if (!hasDefinition()) in ClassImplementsProtocol() [all …]
|
| H A D | MicrosoftCXXABI.cpp | 223 if (!hasDefinition() || isParsingBaseSpecifiers()) in calculateInheritanceModel() 241 (hasDefinition() && isPolymorphic()); in nullFieldOffsetIsZero()
|
| H A D | CXXInheritance.cpp | 262 if (!BaseRecord->hasDefinition() || in lookupInBases()
|
| H A D | DeclCXX.cpp | 494 assert(hasDefinition() && "ODRHash only for records with definitions"); in getODRHash() 1088 if (FieldType->hasDefinition() && !FieldType->allowConstDefaultInit()) in addedMember() 1554 if (!hasDefinition()) in isCLike() 2002 assert(hasDefinition() && "checking for interface-like without a definition"); in isInterfaceLike()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
| H A D | PtrTypesSemantics.cpp | 24 assert(R->hasDefinition()); in hasPublicMethodInBaseClass() 49 if (!R->hasDefinition()) in hasPublicMethodInBase()
|
| H A D | NoUncountedMembersChecker.cpp | 79 if (MemberCXXRD->hasDefinition()) { in visitRecordDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | CocoaConventions.cpp | 87 if (!ID->hasDefinition()) in isCocoaObjectRef()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
| H A D | SystemZ.cpp | 207 if (CXXRD->hasDefinition()) in GetSingleElementType() 513 if (CXXRD->hasDefinition()) in isVectorTypeBased()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaFixItUtils.cpp | 213 if (!RD || !RD->hasDefinition()) in getFixItZeroInitializerForType()
|
| H A D | SemaCXXScopeSpec.cpp | 134 if (PartialSpec->hasDefinition() && in computeDeclContext() 559 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() || in BuildCXXNestedNameSpecifier()
|
| H A D | SemaDeclObjC.cpp | 65 if (!resultClass->hasDefinition()) { in checkInitMethod() 1086 else if (!IDecl->hasDefinition()) in ActOnStartClassInterface() 1209 if (!PDecl->hasDefinition()) in CheckForwardProtocolDeclarationForCircularDependency() 1296 if (!PDecl->hasDefinition() || in NestedProtocolHasNoDefinition() 1922 if (IDecl && IDecl->hasDefinition()) { in ActOnStartCategoryImplementation() 2030 if (SDecl && !SDecl->hasDefinition()) in ActOnStartClassImplementation() 2071 if (!IDecl->hasDefinition()) in ActOnStartClassImplementation() 4341 if (!protocol->hasDefinition()) in searchFrom() 4373 if (!iface->hasDefinition()) in searchFrom()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Index/ |
| H A D | IndexTypeSourceInfo.cpp | 225 if (!RD->hasDefinition()) in VisitDependentNameTypeLoc()
|
| H A D | IndexBody.cpp | 183 if (!RD->hasDefinition()) in indexDependentReference()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Interpreter/ |
| H A D | CodeCompletion.cpp | 342 << " has def?: " << Record->hasDefinition() in completeVisibleDeclsMap()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGCUDANV.cpp | 1048 registerDeviceVar(D, GV, !D->hasDefinition(), in handleVarRegistration() 1064 registerDeviceSurf(D, GV, !D->hasDefinition(), SurfType.getSExtValue()); in handleVarRegistration() 1072 registerDeviceTex(D, GV, !D->hasDefinition(), TexType.getSExtValue(), in handleVarRegistration()
|
| H A D | ItaniumCXXABI.cpp | 801 if (RD->hasDefinition()) { in EmitLoadOfMemberFunctionPointer() 2949 if (VD->hasDefinition() && in EmitThreadLocalInitFuncs() 2966 if (!VD->hasDefinition()) { in EmitThreadLocalInitFuncs() 2997 } else if (VD->hasDefinition()) { in EmitThreadLocalInitFuncs() 3032 if (CGM.getTriple().isOSAIX() && VD->hasDefinition() && in EmitThreadLocalInitFuncs() 3455 if (!RD->hasDefinition()) in ShouldUseExternalRTTIDescriptor() 3622 if (!RD->hasDefinition() || !RD->getNumBases()) { in BuildVTablePointer() 3888 if (!RD->hasDefinition() || !RD->getNumBases()) { in BuildTypeInfo()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | Store.cpp | 339 if (!TargetType->isVoidType() && MRClass->hasDefinition()) { in evalBaseToDerived()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangASTImporter.cpp | 976 if (!to_objc_interface->hasDefinition()) in ImportDefinitionTo() 1153 (to_interface_decl->hasDefinition() ? " HasDefinition" : "")); in Imported()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ARCMigrate/ |
| H A D | Transforms.cpp | 58 if (!AllowOnUnknownClass && !Class->hasDefinition()) in canApplyWeak()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Registry.cpp | 312 REGISTER_MATCHER(hasDefinition); in RegistryMaps()
|