Home
last modified time | relevance | path

Searched refs:isRecord (Results 1 – 25 of 42) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenInstAlias.h62 bool isRecord() const { return Kind == K_Record; } in isRecord() function
67 assert(isRecord()); in getName()
71 assert(isRecord()); in getRecord()
H A DCodeGenInstAlias.cpp151 if (!isRecord()) in getMINumOperands()
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DDescriptor.cpp434 if (isRecord()) in getType()
509 if (isRecord()) { in hasTrivialDtor()
520 bool Descriptor::isUnion() const { return isRecord() && ElemRecord->isUnion(); } in isUnion()
H A DDisasm.cpp387 else if (isRecord()) in dump()
426 } else if (isRecord()) { in dumpFull()
H A DDescriptor.h278 bool isRecord() const { return !IsArray && ElemRecord; } in isRecord() function
H A DInterp.cpp1119 assert(Desc->isRecord()); in runRecordDestructor()
1151 assert(Desc->isRecord() || Desc->isCompositeArray()); in RunDestructors()
1158 assert(ElemDesc->isRecord()); in RunDestructors()
1168 assert(Desc->isRecord()); in RunDestructors()
H A DInterpBuiltinBitCast.cpp126 if (FieldDesc->isRecord()) { in enumerateData()
H A DInterpBuiltin.cpp2118 if (Desc->isRecord()) in computeFullDescSize()
2847 if (Desc->isRecord()) { in zeroAll()
2898 assert(SrcDesc->isRecord()); in copyRecord()
2963 if (DestDesc->isRecord()) in copyComposite()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp681 if (CurContext->isRecord()) { in isMicrosoftMissingTypename()
3492 if (DC->isRecord()) in haveIncompatibleLanguageLinkages()
4003 if (!isFriend && NewMethod->getLexicalDeclContext()->isRecord() && in MergeFunctionDecl()
4711 !(Old->getLexicalDeclContext()->isRecord() && in MergeVarDecl()
4712 !New->getLexicalDeclContext()->isRecord())) { in MergeVarDecl()
5195 Record->getDeclContext()->isRecord()) { in ParsedFreeStandingDeclSpec()
5219 if (!getLangOpts().CPlusPlus && CurContext->isRecord() && in ParsedFreeStandingDeclSpec()
5377 Owner->isRecord() ? Sema::LookupMemberName in CheckAnonMemberRedeclaration()
5391 (Owner->isFunctionOrMethod() || Owner->isRecord())) { in CheckAnonMemberRedeclaration()
5392 if (!Owner->isRecord()) in CheckAnonMemberRedeclaration()
[all …]
H A DSemaCXXScopeSpec.cpp488 !(LookupCtx && LookupCtx->isRecord() && in BuildCXXNestedNameSpecifier()
H A DSemaTemplateInstantiateDecl.cpp46 if (DC->isRecord()) in isDeclWithinFunction()
2490 } else if (InstTemplate->getDeclContext()->isRecord() && in VisitFunctionTemplateDecl()
3003 if (Function->isOverloadedOperator() && !DC->isRecord() && in VisitFunctionDecl()
3914 bool CheckRedeclaration = Owner->isRecord(); in VisitUsingDecl()
4398 assert(ClassTemplate->getDeclContext()->isRecord() && in VisitClassTemplateSpecializationDecl()
6337 Var->getLexicalDeclContext()->isRecord()) { in InstantiateVariableDefinition()
H A DSemaLambda.cpp320 if (LexicalDC->isRecord()) in getCurrentMangleNumberContext()
326 if (Var->getDeclContext()->isRecord() && IsInNonspecializedTemplate) in getCurrentMangleNumberContext()
H A DSemaDeclCXX.cpp11569 if (!DC || !DC->isRecord()) { in CheckExplicitObjectMemberFunction()
12693 if (!getLangOpts().CPlusPlus11 && CurContext->isRecord()) in CheckUsingShadowDecl()
12806 if (CurContext->isRecord()) in CheckUsingShadowDecl()
13066 if (CurContext->isRecord()) in BuildUsingDeclaration()
13155 if (CurContext->isRecord()) { in BuildUsingDeclaration()
13305 if (CurContext->getRedeclContext()->isRecord()) { in BuildUsingEnumDeclaration()
13407 if (!CurContext->getRedeclContext()->isRecord()) { in CheckUsingDeclRedeclaration()
13505 if (!CurContext->isRecord()) { in CheckUsingDeclQualifier()
13515 if (NamedContext ? !NamedContext->getRedeclContext()->isRecord() in CheckUsingDeclQualifier()
13601 if (!NamedContext->isRecord()) { in CheckUsingDeclQualifier()
[all …]
H A DSemaTemplate.cpp2081 (SS.isSet() && SemanticContext && SemanticContext->isRecord() && in CheckClassTemplate()
2156 NewTemplate->getDeclContext()->isRecord()) in CheckClassTemplate()
4315 << /*is definition*/ (SC != SC_Extern && !CurContext->isRecord()) in ActOnVarTemplateSpecialization()
7725 assert(VD->getDeclContext()->isRecord() && in BuildExpressionFromDeclTemplateArgument()
8348 if (S.getLangOpts().MicrosoftExt && !DC->isRecord()) in CheckTemplateSpecializationScope()
8358 if (DC->isRecord()) in CheckTemplateSpecializationScope()
9817 if (CurContext->isRecord()) { in CheckExplicitInstantiationScope()
H A DSemaTemplateDeductionGuide.cpp93 while (DC->isRecord()) { in mightReferToOuterTemplateParameters()
H A DSemaExceptionSpec.cpp261 return DC->isRecord() && cast<RecordDecl>(DC)->isBeingDefined(); in exceptionSpecNotKnownYet()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclBase.cpp1318 getLexicalParent()->getRedeclContext()->isRecord()) in getLookupParent()
2051 while ((SkipRecords && Ctx->isRecord()) || Ctx->isTransparentContext()) in getRedeclContext()
2068 while (DC->isRecord()) { in getOuterLexicalRecordContext()
H A DExprClassification.cpp568 if (isa<VarDecl>(Member) && Member->getDeclContext()->isRecord()) in ClassifyMemberExpr()
H A DCommentSema.cpp663 if ((!Ctx || !Ctx->isRecord()) && in checkDeprecatedCommand()
H A DDecl.cpp1110 !getDeclContext()->isRecord()) in isPlaceholderVar()
1551 if (D->getDeclContext()->isRecord()) in computeLVForDecl()
2216 if (DC->isRecord()) in getDeclLanguageLinkage()
2232 if (DC->isRecord()) { in isDeclExternC()
H A DASTStructuralEquivalence.cpp1791 (!D1->getDeclContext()->isRecord() || !D2->getDeclContext()->isRecord())) in IsStructurallyEquivalent()
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DVisitor.cpp221 if (D->getDeclContext()->isRecord()) in VisitVarDecl()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclBase.h2193 bool isRecord() const {
H A DDecl.h405 return DC->isRecord(); in isCXXClassMember()
1264 return getKind() != Decl::ParmVar && getDeclContext()->isRecord(); in isStaticDataMember()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp858 if (parent->isRecord()) { in CreateFunctionDecl()

12