Home
last modified time | relevance | path

Searched refs:isNotEmpty (Results 1 – 13 of 13) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParser.cpp1691 if (SS.isNotEmpty()) in TryAnnotateName()
1707 if (SS.isNotEmpty()) in TryAnnotateName()
1741 if (SS.isNotEmpty()) in TryAnnotateName()
1757 if (SS.isNotEmpty()) in TryAnnotateName()
1770 if (SS.isNotEmpty()) in TryAnnotateName()
1777 if (SS.isNotEmpty()) in TryAnnotateName()
1812 if (SS.isNotEmpty()) in TryAnnotateName()
1976 if (SS.isNotEmpty()) // it was a C++ qualified type name. in TryAnnotateTypeOrScopeTokenAfterScopeSpec()
H A DParseTemplate.cpp382 if (SS.isNotEmpty()) in ParseConceptDefinition()
729 if (SS.isNotEmpty()) in TryAnnotateTypeConstraint()
745 if (SS.isNotEmpty()) in TryAnnotateTypeConstraint()
1335 if (SS.isNotEmpty()) in AnnotateTemplateIdToken()
1412 if (SS.isNotEmpty()) // it was a C++ qualified type name. in AnnotateTemplateIdTokenAsType()
H A DParseDeclCXX.cpp628 D.SS.isNotEmpty() && LastII == Tok.getIdentifierInfo() && in ParseUsingDeclarator()
862 D.SS.isNotEmpty() ? D.SS.getEndLoc() : D.TypenameLoc)); in ParseAliasDeclarationAfterDeclarator()
863 else if (D.SS.isNotEmpty()) in ParseAliasDeclarationAfterDeclarator()
1197 if (SS.isNotEmpty()) in ParseBaseTypeSpecifier()
1700 if (SS.isNotEmpty()) in ParseClassSpecifier()
H A DParseExpr.cpp2123 if (SS.isNotEmpty()) in ParsePostfixExpressionSuffix()
2187 getLangOpts().MicrosoftExt && SS.isNotEmpty(), in ParsePostfixExpressionSuffix()
H A DParseDecl.cpp5743 if (SS.isNotEmpty()) { in ParseDeclaratorInternal()
6066 if (D.getCXXScopeSpec().isNotEmpty()) { in ParseDirectDeclarator()
H A DParseExprCXX.cpp2970 if (SS.isNotEmpty()) in ParseUnqualifiedId()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp303 } else if (SS && SS->isNotEmpty()) { in getTypeName()
512 if (SS && SS->isNotEmpty() && !IsCtorOrDtorName && in getTypeName()
1110 if (SS.isNotEmpty()) in ClassifyName()
1141 if (SS.isNotEmpty()) in ClassifyName()
1193 if (SS.isNotEmpty()) in ClassifyName()
4707 if (Tag && SS.isNotEmpty() && !Tag->isCompleteDefinition() && in ParsedFreeStandingDeclSpec()
7452 D.getCXXScopeSpec().isNotEmpty() || in ActOnVariableDeclarator()
9393 D.getCXXScopeSpec().isNotEmpty() || in ActOnFunctionDeclarator()
15565 (SS.isNotEmpty() && TUK != TUK_Reference)) { in ActOnTag()
15697 if (Name && SS.isNotEmpty()) { in ActOnTag()
[all …]
H A DSemaTemplate.cpp419 } else if (SS.isNotEmpty()) { in LookupTemplateName()
1746 if (SS.isNotEmpty() && !SS.isInvalid()) { in CheckClassTemplate()
3997 if (SS.isNotEmpty() && !IsCtorOrDtorName) { in ActOnTemplateIdType()
4846 if (SS.isNotEmpty()) in ActOnTemplateName()
4874 if (!AllowInjectedClassName && SS.isNotEmpty() && LookupRD && in ActOnTemplateName()
H A DSemaLookup.cpp4964 SS && SS->isNotEmpty()); in makeTypoCorrectionConsumer()
H A DSemaDeclCXX.cpp2384 if (SS && SS->isNotEmpty()) { in getCurrentClass()
16555 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?"); in ActOnTemplatedFriendTag()
H A DSemaExprCXX.cpp99 if (SS.isNotEmpty() && RequireCompleteDeclContext(SS, CurClass)) in getConstructorName()
H A DSemaType.cpp6023 if (DS.getTypeSpecScope().isNotEmpty()) in VisitAutoTypeLoc()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h192 bool isNotEmpty() const { return !isEmpty(); } in isNotEmpty() function