Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Parse/
H A DParser.cpp1743 if (SS.isNotEmpty()) in TryAnnotateName()
1759 if (SS.isNotEmpty()) in TryAnnotateName()
1793 if (SS.isNotEmpty()) in TryAnnotateName()
1809 if (SS.isNotEmpty()) in TryAnnotateName()
1822 if (SS.isNotEmpty()) in TryAnnotateName()
1829 if (SS.isNotEmpty()) in TryAnnotateName()
1864 if (SS.isNotEmpty()) in TryAnnotateName()
2028 if (SS.isNotEmpty()) // it was a C++ qualified type name. in TryAnnotateTypeOrScopeTokenAfterScopeSpec()
H A DParseTemplate.cpp405 if (SS.isNotEmpty()) in ParseConceptDefinition()
753 if (SS.isNotEmpty()) in TryAnnotateTypeConstraint()
769 if (SS.isNotEmpty()) in TryAnnotateTypeConstraint()
1367 if (SS.isNotEmpty()) in AnnotateTemplateIdToken()
1444 if (SS.isNotEmpty()) // it was a C++ qualified type name. in AnnotateTemplateIdTokenAsType()
H A DParseDeclCXX.cpp636 D.SS.isNotEmpty() && LastII == Tok.getIdentifierInfo() && in ParseUsingDeclarator()
875 SourceRange(D.TypenameLoc, D.SS.isNotEmpty() ? D.SS.getEndLoc() in ParseAliasDeclarationAfterDeclarator()
877 else if (D.SS.isNotEmpty()) in ParseAliasDeclarationAfterDeclarator()
1216 if (SS.isNotEmpty()) in ParseBaseTypeSpecifier()
1687 if (SS.isNotEmpty()) in ParseClassSpecifier()
H A DParseExpr.cpp2155 if (SS.isNotEmpty()) in ParsePostfixExpressionSuffix()
2219 getLangOpts().MicrosoftExt && SS.isNotEmpty(), in ParsePostfixExpressionSuffix()
H A DParseDecl.cpp5907 if (SS.isNotEmpty()) { in ParseDeclaratorInternal()
6234 if (D.getCXXScopeSpec().isNotEmpty()) { in ParseDirectDeclarator()
H A DParseExprCXX.cpp3014 if (SS.isNotEmpty()) in ParseUnqualifiedId()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DIncludeFixer.cpp395 if (SS && SS->isNotEmpty()) { // "::" or "ns::" in extractUnresolvedNameCheaply()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaDecl.cpp305 } else if (SS && SS->isNotEmpty()) { in getTypeName()
529 if (SS && SS->isNotEmpty() && !IsCtorOrDtorName && in getTypeName()
1122 if (SS.isNotEmpty()) in ClassifyName()
5050 if (Tag && SS.isNotEmpty() && !Tag->isCompleteDefinition() && in ParsedFreeStandingDeclSpec()
7826 D.getCXXScopeSpec().isNotEmpty() || in ActOnVariableDeclarator()
9836 D.getCXXScopeSpec().isNotEmpty() || in ActOnFunctionDeclarator()
16181 (SS.isNotEmpty() && TUK != TUK_Reference)) { in ActOnTag()
16316 if (Name && SS.isNotEmpty()) { in ActOnTag()
16618 SS.isNotEmpty() || isMemberSpecialization)) { in ActOnTag()
16823 SS.isNotEmpty() || isMemberSpecialization)) { in ActOnTag()
[all …]
H A DSemaTemplate.cpp424 } else if (SS.isNotEmpty()) { in LookupTemplateName()
1751 if (SS.isNotEmpty() && !SS.isInvalid()) { in CheckClassTemplate()
4055 if (SS.isNotEmpty() && !IsCtorOrDtorName) { in ActOnTemplateIdType()
4904 if (SS.isNotEmpty()) in ActOnTemplateName()
4932 if (!AllowInjectedClassName && SS.isNotEmpty() && LookupRD && in ActOnTemplateName()
H A DSemaLookup.cpp5279 SS && SS->isNotEmpty()); in makeTypoCorrectionConsumer()
H A DSemaDeclCXX.cpp2418 if (SS && SS->isNotEmpty()) { in getCurrentClass()
16811 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?"); in ActOnTemplatedFriendTag()
H A DSemaExprCXX.cpp102 if (SS.isNotEmpty() && RequireCompleteDeclContext(SS, CurClass)) in getConstructorName()
H A DSemaType.cpp6139 if (DS.getTypeSpecScope().isNotEmpty()) in VisitAutoTypeLoc()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DDeclSpec.h192 bool isNotEmpty() const { return !isEmpty(); } in isNotEmpty() function