Home
last modified time | relevance | path

Searched refs:getTypeSpecType (Results 1 – 14 of 14) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp1280 switch (DS.getTypeSpecType()) { in ConvertDeclSpecToType()
1300 << DS.getSpecifierName(DS.getTypeSpecType(), in ConvertDeclSpecToType()
1307 << DS.getSpecifierName(DS.getTypeSpecType(), in ConvertDeclSpecToType()
1761 << DS.getSpecifierName(DS.getTypeSpecType(), in ConvertDeclSpecToType()
5981 if (DS.getTypeSpecType() == TST_typename) { in VisitElaboratedTypeLoc()
5997 assert(DS.getTypeSpecType() == TST_typename); in VisitDependentNameTypeLoc()
6005 assert(DS.getTypeSpecType() == TST_typename); in VisitDependentTemplateSpecializationTypeLoc()
6013 assert(DS.getTypeSpecType() == TST_auto || in VisitAutoTypeLoc()
6014 DS.getTypeSpecType() == TST_decltype_auto || in VisitAutoTypeLoc()
6015 DS.getTypeSpecType() == TST_auto_type || in VisitAutoTypeLoc()
[all …]
H A DDeclSpec.cpp343 switch (DS.getTypeSpecType()) { in isDeclarationOfFunction()
1105 writtenBS.Type = getTypeSpecType(); in SaveWrittenBuiltinSpecs()
1437 TST tst = getTypeSpecType(); in isMissingDeclaratorOk()
H A DSemaCXXScopeSpec.cpp863 if (SS.isInvalid() || DS.getTypeSpecType() == DeclSpec::TST_error) in ActOnCXXNestedNameSpecifierDecltype()
866 assert(DS.getTypeSpecType() == DeclSpec::TST_decltype); in ActOnCXXNestedNameSpecifierDecltype()
H A DSemaTemplateVariadic.cpp861 switch (DS.getTypeSpecType()) { in containsUnexpandedParameterPacks()
H A DSemaDecl.cpp4639 if (DS.getTypeSpecType() == DeclSpec::TST_class || in ParsedFreeStandingDeclSpec()
4640 DS.getTypeSpecType() == DeclSpec::TST_struct || in ParsedFreeStandingDeclSpec()
4641 DS.getTypeSpecType() == DeclSpec::TST_interface || in ParsedFreeStandingDeclSpec()
4642 DS.getTypeSpecType() == DeclSpec::TST_union || in ParsedFreeStandingDeclSpec()
4643 DS.getTypeSpecType() == DeclSpec::TST_enum) { in ParsedFreeStandingDeclSpec()
4765 DS.getTypeSpecType() == DeclSpec::TST_typename) { in ParsedFreeStandingDeclSpec()
4786 if (DS.getTypeSpecType() == DeclSpec::TST_error || in ParsedFreeStandingDeclSpec()
4876 DeclSpec::TST TypeSpecType = DS.getTypeSpecType(); in ParsedFreeStandingDeclSpec()
5569 switch (DS.getTypeSpecType()) { in RebuildDeclaratorInCurrentInstantiation()
13579 if (DeclSpec::isDeclRep(DS.getTypeSpecType())) { in FinalizeDeclaratorGroup()
[all …]
H A DSemaExprCXX.cpp461 if (DS.getTypeSpecType() == DeclSpec::TST_error) in getDestructorTypeForDecltype()
464 if (DS.getTypeSpecType() == DeclSpec::TST_decltype_auto) { in getDestructorTypeForDecltype()
469 assert(DS.getTypeSpecType() == DeclSpec::TST_decltype && in getDestructorTypeForDecltype()
7720 if (DS.getTypeSpecType() == DeclSpec::TST_decltype_auto) { in ActOnPseudoDestructorExpr()
H A DSemaCodeComplete.cpp4291 (DS.getTypeSpecType() == DeclSpec::TST_class || in CodeCompleteDeclSpec()
4292 DS.getTypeSpecType() == DeclSpec::TST_struct)) in CodeCompleteDeclSpec()
4318 DS.getTypeSpecType() == DeclSpec::TST_typename && in CodeCompleteDeclSpec()
H A DSemaDeclCXX.cpp818 if (DS.getTypeSpecType() != DeclSpec::TST_auto || in ActOnDecompositionDeclarator()
4216 } else if (DS.getTypeSpecType() == TST_decltype) { in BuildMemInitializer()
4218 } else if (DS.getTypeSpecType() == TST_decltype_auto) { in BuildMemInitializer()
10821 Diagnoser.check(DS.getTypeSpecTypeLoc(), DS.getTypeSpecType()); in CheckDeductionGuideDeclarator()
11629 switch (DS.getTypeSpecType()) { in ActOnUsingEnumDeclaration()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h476 TST getTypeSpecType() const { return (TST)TypeSpecType; } in getTypeSpecType() function
622 return getTypeSpecType() != DeclSpec::TST_unspecified || in hasTypeSpecifier()
1896 InvalidType(DS.getTypeSpecType() == DeclSpec::TST_error), in Declarator()
2558 return InvalidType || DS.getTypeSpecType() == DeclSpec::TST_error; in isInvalidType()
/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp1105 if (DS.getTypeSpecType() == TST_error) { in AnnotateExistingDecltypeSpecifier()
1118 DS.getTypeSpecType() == TST_decltype ? DS.getRepAsExpr() : in AnnotateExistingDecltypeSpecifier()
1119 DS.getTypeSpecType() == TST_decltype_auto ? ExprResult() : in AnnotateExistingDecltypeSpecifier()
1845 if (!Name && !TemplateId && (DS.getTypeSpecType() == DeclSpec::TST_error || in ParseClassSpecifier()
1847 if (DS.getTypeSpecType() != DeclSpec::TST_error) { in ParseClassSpecifier()
4000 D.getDeclSpec().getTypeSpecType() == TST_auto) { in ParseTrailingRequiresClause()
H A DParser.cpp1077 DeclSpec::isDeclRep(DS.getTypeSpecType()) in ParseDeclOrFunctionDefInternal()
1079 LengthOfTSTToken(DS.getTypeSpecType())) in ParseDeclOrFunctionDefInternal()
H A DParseDecl.cpp2985 << DeclSpec::getSpecifierName(DS.getTypeSpecType(), PPol) << tok::semi; in DiagnoseMissingSemiAfterTagDefinition()
3334 if (DS.getTypeSpecType() == TST_bool && in ParseDeclarationSpecifiers()
3914 DS.getTypeSpecType() != DeclSpec::TST_unspecified && in ParseDeclarationSpecifiers()
6002 D.getDeclSpec().getTypeSpecType() != TST_auto)) { in ParseDirectDeclarator()
6636 if (D.getDeclSpec().getTypeSpecType() == TST_auto) in ParseFunctionDeclarator()
H A DParseTemplate.cpp971 if (DS.getTypeSpecType() == DeclSpec::TST_unspecified) { in ParseNonTypeTemplateParameter()
H A DParseExprCXX.cpp221 if (DS.getTypeSpecType() == DeclSpec::TST_decltype_auto || in ParseOptionalCXXScopeSpecifier()
1736 if (DS.getTypeSpecType() == TST_error) in ParseCXXPseudoDestructor()