Searched refs:getNumTypeObjects (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaType.cpp | 69 if (D.getNumTypeObjects() == 0) in isOmittedBlockReturnType() 72 if (D.getNumTypeObjects() == 1 && in isOmittedBlockReturnType() 225 chunkIndex(declarator.getNumTypeObjects()), parsedNoDeref(false) {} in TypeProcessingState() 236 return chunkIndex == declarator.getNumTypeObjects(); in isProcessingDeclSpec() 244 assert(idx <= declarator.getNumTypeObjects()); in setCurrentChunkIndex() 422 assert(i <= declarator.getNumTypeObjects()); in maybeMovePastReturnType() 551 for (unsigned i = 0, e = declarator.getNumTypeObjects(); i != e; ++i) { in distributeObjCPointerTypeAttrFromDeclarator() 642 for (unsigned i = 0, e = declarator.getNumTypeObjects(); i != e; ++i) { in distributeFunctionTypeAttrToInnermost() 763 if (!declarator.getNumTypeObjects() && declSpecType->isFunctionType()) in maybeSynthesizeBlockSignature() 797 assert(state.getCurrentChunkIndex() == declarator.getNumTypeObjects() - 1); in maybeSynthesizeBlockSignature() [all …]
|
H A D | SemaLambda.cpp | 933 if (ParamInfo.getNumTypeObjects() == 0) { in getLambdaType() 1399 if (ParamInfo.getNumTypeObjects() == 0) { in ActOnStartOfLambdaDefinition() 1416 LSI->ExplicitParams = ParamInfo.getNumTypeObjects() != 0; in ActOnStartOfLambdaDefinition()
|
H A D | SemaTemplateVariadic.cpp | 943 for (unsigned I = 0, N = D.getNumTypeObjects(); I != N; ++I) { in containsUnexpandedParameterPacks()
|
H A D | SemaDeclCXX.cpp | 413 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) { in CheckExtraCXXDefaultArguments() 839 D.hasGroupingParens() || D.getNumTypeObjects() > 1 || in ActOnDecompositionDeclarator() 840 (D.getNumTypeObjects() == 1 && in ActOnDecompositionDeclarator() 844 (D.getNumTypeObjects() && in ActOnDecompositionDeclarator()
|
H A D | SemaDeclAttr.cpp | 7231 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) in checkUnusedDeclAttributes() 7370 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i) { in ProcessDeclAttributes()
|
H A D | SemaExprCXX.cpp | 1914 if (D.getNumTypeObjects() > 0 && in ActOnCXXNew() 1933 for (unsigned I = 0, N = D.getNumTypeObjects(); I < N; ++I) { in ActOnCXXNew()
|
H A D | SemaDecl.cpp | 5995 for (unsigned I = 0, E = D.getNumTypeObjects(); I != E; ++I) { in RebuildDeclaratorInCurrentInstantiation() 7178 for (unsigned I = 0, E = PD.getNumTypeObjects(); I != E; ++I) { in hasParsedAttr() 15672 if (D.getNumTypeObjects()) { in canDelayFunctionBody() 15673 const auto &Outer = D.getTypeObject(D.getNumTypeObjects() - 1); in canDelayFunctionBody()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | DeclSpec.h | 2394 unsigned getNumTypeObjects() const { return DeclTypeInfo.size(); } in getNumTypeObjects() function 2599 for (unsigned I = 0, N = getNumTypeObjects(); I != N; ++I) in isFunctionDeclaratorAFunctionDeclaration() 2695 for (unsigned i = 0, e = getNumTypeObjects(); i != e; ++i) in hasAttributes()
|
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseDecl.cpp | 6606 const unsigned NumTypes = D.getNumTypeObjects(); in isPipeDeclarator() 6785 if (D.getNumTypeObjects() > 0) { in ParseDeclaratorInternal() 6787 DeclaratorChunk& InnerChunk = D.getTypeObject(D.getNumTypeObjects() - 1); in ParseDeclaratorInternal() 7145 if (D.hasName() && !D.getNumTypeObjects()) in ParseDirectDeclarator() 7949 ParmDeclarator.getNumTypeObjects() == 0) { in ParseParameterDeclarationClause() 8240 if (TempDeclarator.getNumTypeObjects() == 0) in ParseMisplacedBracketDeclarator() 8245 if (D.getNumTypeObjects() != 0) { in ParseMisplacedBracketDeclarator() 8246 switch (D.getTypeObject(D.getNumTypeObjects() - 1).Kind) { in ParseMisplacedBracketDeclarator() 8269 for (unsigned i = 0, e = TempDeclarator.getNumTypeObjects(); i < e; ++i) { in ParseMisplacedBracketDeclarator()
|
H A D | ParseObjc.cpp | 422 if (D.getNumTypeObjects() > 0) { in addContextSensitiveTypeNullability() 1291 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) in takeDeclAttributes()
|