Home
last modified time | relevance | path

Searched refs:getKeyword (Results 1 – 18 of 18) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DTypeProperties.td436 let Read = [{ node->getKeyword() }];
520 let Read = [{ node->getKeyword() }];
665 let Read = [{ node->getKeyword() }];
786 let Read = [{ node->getKeyword() }];
H A DType.h5025 return getKeyword() == AutoTypeKeyword::DecltypeAuto;
5028 AutoTypeKeyword getKeyword() const {
5033 Profile(ID, Context, getDeducedType(), getKeyword(), isDependentType(),
5366 ElaboratedTypeKeyword getKeyword() const {
5465 Profile(ID, getKeyword(), NNS, NamedType, getOwnedTagDecl());
5525 Profile(ID, getKeyword(), NNS, Name);
5597 Profile(ID, Context, getKeyword(), NNS, Name, {getArgs(), getNumArgs()});
H A DTypeLoc.h2061 return getTypePtr()->getKeyword(); in getAutoKeyword()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DTypePrinter.cpp1143 switch (T->getKeyword()) { in printAutoBefore()
1498 OS << TypeWithKeyword::getKeywordName(T->getKeyword()); in printElaboratedBefore()
1499 if (T->getKeyword() != ETK_None) in printElaboratedBefore()
1536 OS << TypeWithKeyword::getKeywordName(T->getKeyword()); in printDependentNameBefore()
1537 if (T->getKeyword() != ETK_None) in printDependentNameBefore()
1553 OS << TypeWithKeyword::getKeywordName(T->getKeyword()); in printDependentTemplateSpecializationBefore()
1554 if (T->getKeyword() != ETK_None) in printDependentTemplateSpecializationBefore()
H A DQualTypeNames.cpp445 Keyword = ETypeInput->getKeyword(); in getFullyQualifiedType()
H A DODRHash.cpp859 ID.AddInteger((unsigned)T->getKeyword()); in VisitAutoType()
1068 ID.AddInteger(T->getKeyword()); in VisitTypeWithKeyword()
H A DType.cpp1182 return Ctx.getAutoType(deducedType, T->getKeyword(), in SUGARED_TYPE_CLASS()
2915 Keyword = Elab->getKeyword(); in isElaboratedTypeSpecifier()
2917 Keyword = DepName->getKeyword(); in isElaboratedTypeSpecifier()
2920 Keyword = DepTST->getKeyword(); in isElaboratedTypeSpecifier()
H A DASTStructuralEquivalence.cpp1087 if (Elab1->getKeyword() != Elab2->getKeyword()) in IsStructurallyEquivalent()
H A DJSONNodeDumper.cpp685 switch (AT->getKeyword()) { in VisitAutoType()
H A DItaniumMangle.cpp3826 switch (T->getKeyword()) { in mangleType()
3921 assert(T->getKeyword() != AutoTypeKeyword::GNUAutoType && in mangleType()
H A DASTImporter.cpp1394 *ToDeducedTypeOrErr, T->getKeyword(), /*IsDependent*/false, in VisitAutoType()
1528 return Importer.getToContext().getElaboratedType(T->getKeyword(), in VisitElaboratedType()
1560 T->getKeyword(), *ToQualifierOrErr, ToName, ToPack); in VisitDependentTemplateSpecializationType()
1579 return Importer.getToContext().getDependentNameType(T->getKeyword(), in VisitDependentNameType()
H A DMicrosoftMangle.cpp2600 assert(AT->getKeyword() != AutoTypeKeyword::GNUAutoType && in mangleFunctionType()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DCodeCompleteConsumer.h927 const char *getKeyword() const { in getKeyword() function
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp3392 (Auto && Auto->getKeyword() != AutoTypeKeyword::GNUAutoType); in GetDeclSpecTypeForDeclarator()
3413 Auto->getKeyword() != AutoTypeKeyword::Auto) { in GetDeclSpecTypeForDeclarator()
3425 Auto->getKeyword() != AutoTypeKeyword::Auto) { in GetDeclSpecTypeForDeclarator()
3543 switch (Auto->getKeyword()) { in GetDeclSpecTypeForDeclarator()
5013 cast<AutoType>(T)->getKeyword() != in GetFullTypeForDeclarator()
H A DTreeTransform.h4803 T = SemaRef.Context.getAutoType(Deduced, AutoTy->getKeyword(), in RebuildQualifiedType()
6567 Result = getDerived().RebuildAutoType(NewDeduced, T->getKeyword(), NewCD, in TransformAutoType()
6662 TL.getTypePtr()->getKeyword(), in TransformDependentTemplateSpecializationType()
6723 if (T->getKeyword() != ETK_None && T->getKeyword() != ETK_Typename) { in TransformElaboratedType()
6732 << ElaboratedType::getTagTypeKindForKeyword(T->getKeyword()); in TransformElaboratedType()
6743 T->getKeyword(), in TransformElaboratedType()
6863 = getDerived().RebuildDependentNameType(T->getKeyword(), in TransformDependentNameType()
6923 T->getKeyword(), QualifierLoc, TL.getTemplateKeywordLoc(), in TransformDependentTemplateSpecializationType()
H A DSemaTemplateDeduction.cpp4611 Replacement, TL.getTypePtr()->getKeyword(), Replacement.isNull(), in TransformAutoType()
H A DSemaTemplate.cpp5312 if (ETLoc.getTypePtr()->getKeyword() != ETK_None) in convertTypeTemplateArgumentToTemplate()
H A DSemaDecl.cpp13615 << (AT ? (unsigned)AT->getKeyword() : 3) << Deduced in BuildDeclaratorGroup()