Home
last modified time | relevance | path

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

12

/external/llvm/utils/TableGen/
DCodeGenInstruction.h323 bool isRecord() const { return Kind == K_Record; } in isRecord() function
327 StringRef getName() const { assert(isRecord()); return Name; } in getName()
328 Record *getRecord() const { assert(isRecord()); return R; } in getRecord()
DCodeGenInstruction.cpp558 if (!isRecord()) in getMINumOperands()
DAsmMatcherEmitter.cpp1604 if (CGA.ResultOperands[i].isRecord() && in buildAliasOperandReference()
/external/clang/lib/Sema/
DSemaDecl.cpp540 if (CurContext->isRecord()) { in isMicrosoftMissingTypename()
2586 if (DC->isRecord()) in haveIncompatibleLanguageLinkages()
2916 if (!isFriend && NewMethod->getLexicalDeclContext()->isRecord() && in MergeFunctionDecl()
3530 !(Old->getLexicalDeclContext()->isRecord() && in MergeVarDecl()
3531 !New->getLexicalDeclContext()->isRecord())) { in MergeVarDecl()
3806 Record->getDeclContext()->isRecord()) in ParsedFreeStandingDeclSpec()
3820 if (!getLangOpts().CPlusPlus && CurContext->isRecord() && in ParsedFreeStandingDeclSpec()
4278 Owner->isRecord()) in BuildAnonymousStructOrUnion()
4283 if (!Record->isUnion() && !Owner->isRecord()) { in BuildAnonymousStructOrUnion()
4718 if (Cur->isRecord()) { in diagnoseQualifiedDeclaration()
[all …]
DSemaLambda.cpp247 while (!(DC->isFunctionOrMethod() || DC->isRecord() || DC->isFileContext())) in createLambdaClosureType()
297 if (LexicalDC->isRecord()) in getCurrentMangleNumberContext()
300 if (Var->getDeclContext()->isRecord()) in getCurrentMangleNumberContext()
DSemaTemplateInstantiateDecl.cpp33 if (DC->isRecord()) in isDeclWithinFunction()
1261 } else if (InstTemplate->getDeclContext()->isRecord() && in VisitFunctionTemplateDecl()
1642 if (Function->isOverloadedOperator() && !DC->isRecord() && in VisitFunctionDecl()
2299 bool CheckRedeclaration = Owner->isRecord(); in VisitUsingDecl()
2498 assert(ClassTemplate->getDeclContext()->isRecord() && in VisitClassTemplateSpecializationDecl()
3965 Var->getLexicalDeclContext()->isRecord()) { in InstantiateVariableDefinition()
DSemaTemplate.cpp1069 (SS.isSet() && SemanticContext && SemanticContext->isRecord() && in CheckClassTemplate()
1127 if (!Invalid && TUK != TUK_Friend && NewTemplate->getDeclContext()->isRecord()) in CheckClassTemplate()
2555 << /*is definition*/(SC != SC_Extern && !CurContext->isRecord()) in ActOnVarTemplateSpecialization()
5391 if (VD->getDeclContext()->isRecord() && in BuildExpressionFromDeclTemplateArgument()
5890 if (S.CurContext->isRecord() && !IsPartialSpecialization) { in CheckTemplateSpecializationScope()
5905 if (S.CurContext->isRecord() && in CheckTemplateSpecializationScope()
7176 if (CurContext->isRecord()) { in CheckExplicitInstantiationScope()
DSemaCXXScopeSpec.cpp542 !(LookupCtx && LookupCtx->isRecord() && in BuildCXXNestedNameSpecifier()
DSemaDeclCXX.cpp7749 if (!getLangOpts().CPlusPlus11 && CurContext->isRecord()) { in CheckUsingShadowDecl()
7822 if (CurContext->isRecord()) in CheckUsingShadowDecl()
8077 assert(CurContext->isRecord() && "scope not record in instantiation"); in BuildUsingDeclaration()
8136 if (CurContext->isRecord()) { in BuildUsingDeclaration()
8287 if (!CurContext->getRedeclContext()->isRecord()) in CheckUsingDeclRedeclaration()
8339 if (!CurContext->isRecord()) { in CheckUsingDeclQualifier()
8346 if (!NamedContext || NamedContext->isRecord()) { in CheckUsingDeclQualifier()
8417 if (!NamedContext->isRecord()) { in CheckUsingDeclQualifier()
12584 while (DC->isRecord()) in ActOnFriendFunctionDecl()
12680 if (!DC->isRecord()) { in ActOnFriendFunctionDecl()
[all …]
DSemaExprMember.cpp536 if (!DC->isRecord()) in CheckQualifiedMemberReference()
DSemaCodeComplete.cpp727 if (DC->isRecord() || isa<ObjCContainerDecl>(DC)) in getBasePriority()
3159 if (S.CurContext->isRecord()) in mapCodeCompletionContext()
DSemaLookup.cpp2315 while (Ctx->isRecord() || Ctx->isTransparentContext() || in CollectEnclosingNamespace()
DSemaStmt.cpp3764 while (!(DC->isFunctionOrMethod() || DC->isRecord() || DC->isFileContext())) in CreateCapturedStmtRecordDecl()
DSemaOverload.cpp917 (OldIsUsingDecl || NewIsUsingDecl) && CurContext->isRecord() && in CheckOverload()
10789 assert(!(*I)->getDeclContext()->isRecord()); in AddOverloadedCallCandidates()
/external/clang/lib/AST/
DDeclBase.cpp852 getLexicalParent()->getRedeclContext()->isRecord()) in getLookupParent()
1510 while (DC->isRecord()) { in getOuterLexicalRecordContext()
DExprClassification.cpp486 if (isa<VarDecl>(Member) && Member->getDeclContext()->isRecord()) in ClassifyMemberExpr()
DDecl.cpp1321 if (D->getDeclContext()->isRecord()) in computeLVForDecl()
1865 if (DC->isRecord()) in getDeclLanguageLinkage()
1881 if (DC->isRecord()) { in isDeclExternC()
3622 return isImplicit() && getDeclName() && getDeclContext()->isRecord() && in isInjectedClassName()
DCommentSema.cpp687 if ((!Ctx || !Ctx->isRecord()) && in checkDeprecatedCommand()
DItaniumMangle.cpp1240 Context->getDeclContext()->isRecord()) { in mangleUnqualifiedBlock()
1273 Context->getDeclContext()->isRecord()) { in mangleLambda()
/external/clang/include/clang/AST/
DDeclBase.h1268 bool isRecord() const { in isRecord() function
DDecl.h256 return DC->isRecord(); in isCXXClassMember()
987 return getKind() != Decl::ParmVar && getDeclContext()->isRecord(); in isStaticDataMember()
/external/clang/lib/Parse/
DParseExpr.cpp2188 while (CodeDC->isRecord() || isa<EnumDecl>(CodeDC)) { in ParseParenExpression()
DParseDecl.cpp5563 Actions.CurContext->isRecord()); in ParseFunctionDeclarator()
/external/clang/lib/CodeGen/
DCodeGenModule.cpp2192 if (First->getDeclContext()->isRecord() || !First->isInExternCContext()) in MaybeHandleStaticInExternC()
DCGDebugInfo.cpp2485 if (DC->isRecord()) in collectVarDeclProps()

12