/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaCXXScopeSpec.cpp | 56 if (!SS.isSet() || SS.isInvalid()) in computeDeclContext() 167 if (!SS.isSet() || SS.isInvalid()) in isDependentScopeSpecifier() 429 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist"); in BuildCXXNestedNameSpecifier() 432 } else if (SS.isSet()) { in BuildCXXNestedNameSpecifier() 764 } else if (SS.isSet()) in BuildCXXNestedNameSpecifier() 978 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); in ShouldEnterDeclaratorScope() 1021 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); in ActOnCXXEnterDeclaratorScope() 1043 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); in ActOnCXXExitDeclaratorScope()
|
H A D | SemaExprMember.cpp | 229 if (SS.isSet()) Range.setBegin(SS.getRange().getBegin()); in diagnoseInstanceReference() 719 QualType ObjectType = SS.isSet() ? QualType() : RTy; in LookupMemberExprInRecord() 733 DeclContext *DC = SS.isSet() ? SemaRef.computeDeclContext(SS) in LookupMemberExprInRecord() 759 << Typo << DC << (SS.isSet() ? SS.getRange() : BaseRange); in LookupMemberExprInRecord() 990 (SS.isSet() ? SS.getScopeRep()->isDependent() in BuildMemberReferenceExpr() 1056 (SS.isSet() ? computeDeclContext(SS) : computeDeclContext(BaseType)); in BuildMemberReferenceExpr() 1065 << (SS.isSet() in BuildMemberReferenceExpr() 1078 if ((SS.isSet() || !BaseExpr || in BuildMemberReferenceExpr() 1774 = (!SS.isSet() ? nullptr : FindFirstQualifierInScope(S, SS.getScopeRep())); in ActOnMemberAccessExpr()
|
H A D | SemaTemplate.cpp | 363 if (!SS || !SS->isSet() || !isDependentScopeSpecifier(*SS) || in DiagnoseUnknownTemplateName() 1131 SS.isSet() ? SS.getWithLocInContext(Context) : NestedNameSpecifierLoc(), in BuildTypeConstraint() 1761 if (SS.isSet()) in SetNestedNameSpecifier() 1916 if (!SS.isSet()) { in CheckClassTemplate() 2038 (SS.isSet() && SemanticContext && SemanticContext->isRecord() && in CheckClassTemplate() 2046 if (SS.isSet()) { in CheckClassTemplate() 3563 if (!IsCtorOrDtorName && !IsClassName && SS.isSet()) { in ActOnTemplateIdType() 4376 SourceRange(SS.isSet() ? SS.getBeginLoc() : ConceptNameInfo.getLoc(), in CheckConceptTemplateId() 4382 SS.isSet() ? SS.getWithLocInContext(Context) : NestedNameSpecifierLoc{}, in CheckConceptTemplateId() 8092 if (SS.isSet()) { in ActOnClassTemplateSpecialization() [all …]
|
H A D | SemaDecl.cpp | 710 if (!SS || !SS->isSet()) { in DiagnoseUnknownTypeName() 739 tmpSS.isSet() ? &tmpSS : SS, false, false, nullptr, in DiagnoseUnknownTypeName() 764 if (!SS || (!SS->isSet() && !SS->isInvalid())) in DiagnoseUnknownTypeName() 868 if (getLangOpts().CPlusPlus && SS.isSet() && in ClassifyName() 6223 else if (D.getCXXScopeSpec().isSet()) { in HandleDeclarator() 6290 if (!D.getCXXScopeSpec().isSet()) { in HandleDeclarator() 6617 if (D.getCXXScopeSpec().isSet()) { in ActOnTypedefDeclarator() 6808 if (!SS.isSet()) return; in SetNestedNameSpecifier() 7975 D.getCXXScopeSpec().isSet()) { in ActOnVariableDeclarator() 7983 } else if (D.getCXXScopeSpec().isSet() && in ActOnVariableDeclarator() [all …]
|
H A D | SemaExprCXX.cpp | 336 SS.isSet() ? SS.getScopeRep()->getPrefix() : nullptr) { in getDestructorName() 376 if (SS.isSet()) { in getDestructorName() 8186 if (!SS.isSet()) { in ActOnPseudoDestructorExpr() 8204 ((SS.isSet() && !computeDeclContext(SS, false)) || in ActOnPseudoDestructorExpr() 8205 (!SS.isSet() && ObjectType->isDependentType()))) { in ActOnPseudoDestructorExpr()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUArgumentUsageInfo.h | 57 bool isSet() const { in isSet() function 62 return isSet();
|
H A D | AMDGPUArgumentUsageInfo.cpp | 28 if (!isSet()) { in print()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | COFF.h | 313 assert(isSet() && "COFFSymbolRef points to nothing!"); in getStringTableOffset() 318 assert(isSet() && "COFFSymbolRef points to nothing!"); in getValue() 323 assert(isSet() && "COFFSymbolRef points to nothing!"); in getSectionNumber() 334 assert(isSet() && "COFFSymbolRef points to nothing!"); in getType() 339 assert(isSet() && "COFFSymbolRef points to nothing!"); in getStorageClass() 344 assert(isSet() && "COFFSymbolRef points to nothing!"); in getNumberOfAuxSymbols() 434 bool isSet() const { return CS16 || CS32; } in isSet() function
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | LoopVectorizationPlanner.h | 104 bool isSet() const { return Block != nullptr; } in isSet() function 112 if (IP.isSet()) in restoreIP()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | DeclTemplate.h | 326 bool isSet() const { return !ValueOrInherited.isNull(); } in isSet() function 355 assert(!isSet() && "default argument already set"); in set() 362 if (!isSet()) in setInherited() 1225 bool hasDefaultArgument() const { return DefaultArgument.isSet(); } 1230 return DefaultArgument.isSet() ? *DefaultArgument.get() : NoneLoc; 1431 bool hasDefaultArgument() const { return DefaultArgument.isSet(); } 1436 return DefaultArgument.isSet() ? *DefaultArgument.get() : NoneLoc; 1707 bool hasDefaultArgument() const { return DefaultArgument.isSet(); } 1712 return DefaultArgument.isSet() ? *DefaultArgument.get() : NoneLoc;
|
H A D | FormatString.h | 38 bool isSet() const { return flag; } in isSet() function
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGCleanup.cpp | 739 if (NormalDeactivateOrigIP.isSet()) in PopCleanupBlock() 781 if (NormalDeactivateOrigIP.isSet()) in PopCleanupBlock() 785 if (NormalDeactivateOrigIP.isSet()) in PopCleanupBlock() 1011 if (NormalDeactivateOrigIP.isSet()) in PopCleanupBlock()
|
H A D | CodeGenFunction.h | 1971 if (CGF.Builder.saveIP().isSet()) 2000 assert(AllocaIP.isSet() && 2029 assert((!AllocaIP.isSet() || 2034 if (AllocaIP.isSet())
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyFastISel.cpp | 75 assert(!isSet() && "Can't change kind with non-zero base"); in setKind() 109 bool isSet() const { return IsBaseSet; } in isSet() function in __anon626f7eac0111::WebAssemblyFastISel::Address 330 if (Addr.isSet()) { in computeAddress() 377 if (Addr.isSet()) { in computeAddress()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Attributes.cpp | 2230 if (AttrClass::isSet(Caller, AttrClass::getKind()) && in setAND() 2231 !AttrClass::isSet(Callee, AttrClass::getKind())) in setAND() 2242 if (!AttrClass::isSet(Caller, AttrClass::getKind()) && in setOR() 2243 AttrClass::isSet(Callee, AttrClass::getKind())) in setOR() 2346 static bool isSet(const Function &Fn, in isSet() function 2361 static bool isSet(const Function &Fn, in isSet() function
|
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseExprCXX.cpp | 560 if (MemberOfUnknownSpecialization && (ObjectType || SS.isSet()) && in ParseOptionalCXXScopeSpecifier() 2980 if (TemplateKWLoc && (ObjectType || SS.isSet())) { in ParseUnqualifiedId() 3068 if (SS.isSet()) { in ParseUnqualifiedId() 3099 if (TemplateKWLoc && (ObjectType || SS.isSet())) in ParseUnqualifiedId() 3140 (AllowDestructorName || SS.isSet()) && Tok.is(tok::tilde)) { in ParseUnqualifiedId() 3190 if (SS.isSet()) { in ParseUnqualifiedId() 3200 !SS.isSet()) { in ParseUnqualifiedId()
|
H A D | ParseDecl.cpp | 2665 if (D.getCXXScopeSpec().isSet()) { in ParseDeclarationAfterDeclaratorAndAttributes() 2678 if (D.getCXXScopeSpec().isSet()) in ParseDeclarationAfterDeclaratorAndAttributes() 5300 if (Spec.isSet() && Tok.isNot(tok::identifier)) { in ParseEnumSpecifier() 5476 if (!getLangOpts().CPlusPlus11 || !SS.isSet()) { in ParseEnumSpecifier() 6297 if (SS.isSet() && Actions.ShouldEnterDeclaratorScope(getCurScope(), SS)) in isConstructorDeclarator() 6312 ImplicitTypenameContext ITC = IsFriend && !SS.isSet() in isConstructorDeclarator() 6960 } else if (D.getCXXScopeSpec().isSet()) { in ParseDirectDeclarator() 7069 if (D.getCXXScopeSpec().isSet()) { in ParseDirectDeclarator() 7172 if (D.getCXXScopeSpec().isSet()) in ParseDirectDeclarator()
|
H A D | ParseTemplate.cpp | 1413 if (SS.isSet() && Tok.is(tok::kw_template)) { in ParseTemplateTemplateArgument()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | DeclSpec.h | 228 bool isSet() const { return getScopeRep() != nullptr; } in isSet() function 1832 bool isSet() const { return LSquareLoc.isValid(); } in isSet() function 2327 return BindingGroup.isSet(); in isDecompositionDeclarator()
|
/freebsd/contrib/llvm-project/clang/tools/clang-format/ |
H A D | ClangFormat.cpp | 456 nullptr, WNoErrorList.isSet(WNoError::Unknown)); in format()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | CommandLine.h | 1803 template <class T> bool isSet(const T &V) { 1828 template <class T> bool isSet(const T &V) { return (Bits & Bit(V)) != 0; }
|
/freebsd/contrib/llvm-project/clang/include/clang/Parse/ |
H A D | Parser.h | 3177 assert(SS.isSet() && "C++ scope was not set!"); in EnterDeclaratorScope() 3188 assert(SS.isSet() && "C++ scope was cleared ?"); in ~DeclaratorScopeObj() 3242 D.getCXXScopeSpec().isSet() && in ParseParameterDeclarationClause()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | AsmPrinter.cpp | 1350 return {PgoAnalysisMapFeatures.isSet(PGOMapFeaturesEnum::FuncEntryCount), in getBBAddrMapFeature() 1351 PgoAnalysisMapFeatures.isSet(PGOMapFeaturesEnum::BBFreq), in getBBAddrMapFeature() 1352 PgoAnalysisMapFeatures.isSet(PGOMapFeaturesEnum::BrProb), in getBBAddrMapFeature()
|
/freebsd/contrib/bsnmp/tests/ |
H A D | catch.hpp | 7928 static bool isSet; member 7943 static bool isSet; member 10676 isSet = true; in FatalConditionHandler() 10688 if (isSet) { in reset() 10692 isSet = false; in reset() 10700 bool FatalConditionHandler::isSet = false; member in Catch::FatalConditionHandler 10742 isSet = true; in FatalConditionHandler() 10762 if( isSet ) { in reset() 10769 isSet = false; in reset() 10773 bool FatalConditionHandler::isSet = false; member in Catch::FatalConditionHandler
|
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
H A D | OMPIRBuilder.cpp | 87 if (!IP1.isSet() || !IP2.isSet()) in isConflictIP() 3916 ComputeIP.isSet() ? LocationDescription(ComputeIP, Loc.DL) : Loc; in createCanonicalLoop() 3966 LocationDescription LoopLoc = ComputeIP.isSet() ? Loc.IP : Builder.saveIP(); in createCanonicalLoop() 4730 if (ComputeIP.isSet()) in collapseLoops() 5817 if (!IP.isSet()) in createCopyinClauseBlocks()
|