Home
last modified time | relevance | path

Searched refs:isSet (Results 1 – 25 of 33) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp76 if (!SS.isSet() || SS.isInvalid()) in computeDeclContext()
168 if (!SS.isSet() || SS.isInvalid()) in isDependentScopeSpecifier()
409 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist"); in isNonTypeNestedNameSpecifier()
412 } else if (SS.isSet()) { in isNonTypeNestedNameSpecifier()
518 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist"); in BuildCXXNestedNameSpecifier()
521 } else if (SS.isSet()) { in BuildCXXNestedNameSpecifier()
837 } else if (SS.isSet()) in BuildCXXNestedNameSpecifier()
1035 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); in ShouldEnterDeclaratorScope()
1084 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); in ActOnCXXEnterDeclaratorScope()
1111 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); in ActOnCXXExitDeclaratorScope()
H A DSemaExprMember.cpp202 if (SS.isSet()) Range.setBegin(SS.getRange().getBegin()); in diagnoseInstanceReference()
656 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0); in LookupMemberExprInRecord()
664 if (SS.isSet()) { in LookupMemberExprInRecord()
752 (SS.isSet() && isDependentScopeSpecifier(SS))) in BuildMemberReferenceExpr()
995 DeclContext *DC = (SS.isSet() in BuildMemberReferenceExpr()
1037 if ((SS.isSet() || !BaseExpr || in BuildMemberReferenceExpr()
1690 if (SS.isSet() && SS.isInvalid()) in ActOnMemberAccessExpr()
1711 = (!SS.isSet() ? nullptr : FindFirstQualifierInScope(S, SS.getScopeRep())); in ActOnMemberAccessExpr()
H A DSemaTemplate.cpp284 if (SS.isSet() && !SS.isInvalid()) { in isTemplateName()
354 if (!SS || !SS->isSet() || !isDependentScopeSpecifier(*SS) || in DiagnoseUnknownTemplateName()
999 if (SS.isSet()) in ActOnTemplateTypeArgument()
1709 if (SS.isSet()) in SetNestedNameSpecifier()
1828 if (!SS.isSet()) { in CheckClassTemplate()
1956 if (SS.isSet()) { in CheckClassTemplate()
3913 if (!IsCtorOrDtorName && !IsClassName && SS.isSet()) { in ActOnTemplateIdType()
8444 if (TemplateParameterLists.size() > 1 && SS.isSet()) { in ActOnClassTemplateSpecialization()
9467 if (!SS.isSet()) in ScopeSpecifierHasTemplateId()
9633 SS.isSet(), TSK)) in ActOnExplicitInstantiation()
[all …]
H A DSemaDecl.cpp697 if (!SS || !SS->isSet()) { in DiagnoseUnknownTypeName()
870 if (getLangOpts().CPlusPlus && SS.isSet() && in ClassifyName()
5799 else if (D.getCXXScopeSpec().isSet()) { in HandleDeclarator()
5862 if (!D.getCXXScopeSpec().isSet()) { in HandleDeclarator()
6187 if (D.getCXXScopeSpec().isSet()) { in ActOnTypedefDeclarator()
6369 if (!SS.isSet()) return; in SetNestedNameSpecifier()
7476 D.getCXXScopeSpec().isSet()) { in ActOnVariableDeclarator()
7484 } else if (D.getCXXScopeSpec().isSet()) { in ActOnVariableDeclarator()
9776 if (D.getCXXScopeSpec().isSet()) { in ActOnFunctionDeclarator()
13678 if (D.getCXXScopeSpec().isSet()) { in CheckFunctionOrTemplateParamDeclarator()
[all …]
H A DSemaLookup.cpp2456 if (SS && SS->isSet()) { in LookupParsedName()
4924 } else if (SS && SS->isSet()) { in makeTypoCorrectionConsumer()
4938 (IsUnqualifiedLookup || (SS && SS->isSet())); in makeTypoCorrectionConsumer()
H A DSemaExprCXX.cpp328 SS.isSet() ? SS.getScopeRep()->getPrefix() : nullptr) { in getDestructorName()
368 if (SS.isSet()) { in getDestructorName()
7588 if (!SS.isSet()) { in ActOnPseudoDestructorExpr()
7606 ((SS.isSet() && !computeDeclContext(SS, false)) || in ActOnPseudoDestructorExpr()
7607 (!SS.isSet() && ObjectType->isDependentType()))) { in ActOnPseudoDestructorExpr()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUArgumentUsageInfo.h59 bool isSet() const { in isSet() function
64 return isSet();
H A DAMDGPUArgumentUsageInfo.cpp28 if (!isSet()) { in print()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DCOFF.h313 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-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h87 bool isSet() const { return Block != nullptr; } in isSet() function
95 if (IP.isSet()) in restoreIP()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDeclTemplate.h340 bool isSet() const { return !ValueOrInherited.isNull(); } in isSet() function
369 assert(!isSet() && "default argument already set"); in set()
377 if (!isSet()) in setInherited()
1245 bool hasDefaultArgument() const { return DefaultArgument.isSet(); }
1459 bool hasDefaultArgument() const { return DefaultArgument.isSet(); }
1715 bool hasDefaultArgument() const { return DefaultArgument.isSet(); }
1720 return DefaultArgument.isSet() ? *DefaultArgument.get() : NoneLoc;
H A DFormatString.h37 bool isSet() const { return flag; } in isSet() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DAttributes.cpp1940 if (AttrClass::isSet(Caller, AttrClass::getKind()) && in setAND()
1941 !AttrClass::isSet(Callee, AttrClass::getKind())) in setAND()
1952 if (!AttrClass::isSet(Caller, AttrClass::getKind()) && in setOR()
1953 AttrClass::isSet(Callee, AttrClass::getKind())) in setOR()
2050 static bool isSet(const Function &Fn, in isSet() function
2065 static bool isSet(const Function &Fn, in isSet() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFastISel.cpp74 assert(!isSet() && "Can't change kind with non-zero base"); in setKind()
108 bool isSet() const { return IsBaseSet; } in isSet() function in __anon65c867600111::WebAssemblyFastISel::Address
325 if (Addr.isSet()) { in computeAddress()
372 if (Addr.isSet()) { in computeAddress()
/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp512 if (MemberOfUnknownSpecialization && (ObjectType || SS.isSet()) && in ParseOptionalCXXScopeSpecifier()
2764 if (TemplateKWLoc && (ObjectType || SS.isSet())) { in ParseUnqualifiedId()
2841 if (SS.isSet()) { in ParseUnqualifiedId()
2872 if (TemplateKWLoc && (ObjectType || SS.isSet())) in ParseUnqualifiedId()
2913 (AllowDestructorName || SS.isSet()) && Tok.is(tok::tilde)) { in ParseUnqualifiedId()
2963 if (SS.isSet()) { in ParseUnqualifiedId()
2973 !SS.isSet()) { in ParseUnqualifiedId()
H A DParseDecl.cpp2229 if (D.getCXXScopeSpec().isSet()) { in ParseDeclarationAfterDeclaratorAndAttributes()
2240 if (D.getCXXScopeSpec().isSet()) in ParseDeclarationAfterDeclaratorAndAttributes()
4485 if (Spec.isSet() && Tok.isNot(tok::identifier)) { in ParseEnumSpecifier()
4655 if (!getLangOpts().CPlusPlus11 || !SS.isSet()) { in ParseEnumSpecifier()
5407 if (SS.isSet() && Actions.ShouldEnterDeclaratorScope(getCurScope(), SS)) in isConstructorDeclarator()
6028 } else if (D.getCXXScopeSpec().isSet()) { in ParseDirectDeclarator()
6134 if (D.getCXXScopeSpec().isSet()) { in ParseDirectDeclarator()
H A DParseTemplate.cpp1452 if (SS.isSet() && Tok.is(tok::kw_template)) { in ParseTemplateTemplateArgument()
/freebsd-13.1/contrib/llvm-project/clang/tools/clang-format/
H A DClangFormat.cpp399 nullptr, WNoErrorList.isSet(WNoError::Unknown)); in format()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h210 bool isSet() const { return getScopeRep() != nullptr; } in isSet() function
1743 bool isSet() const { return LSquareLoc.isValid(); } in isSet() function
2185 return BindingGroup.isSet(); in isDecompositionDeclarator()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp1193 ComputeIP.isSet() ? LocationDescription(ComputeIP, Loc.DL) : Loc; in createCanonicalLoop()
1244 LocationDescription LoopLoc = ComputeIP.isSet() ? Loc.IP : Builder.saveIP(); in createCanonicalLoop()
1586 if (ComputeIP.isSet()) in collapseLoops()
2099 if (!IP.isSet()) in createCopyinClauseBlocks()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DCommandLine.h1754 template <class T> bool isSet(const T &V) {
1777 template <class T> bool isSet(const T &V) { return (Bits & Bit(V)) != 0; }
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.h1774 if (CGF.Builder.saveIP().isSet())
1790 assert(AllocaIP.isSet() &&
1821 assert((!AllocaIP.isSet() ||
1826 if (AllocaIP.isSet())
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2958 assert(SS.isSet() && "C++ scope was not set!"); in EnterDeclaratorScope()
2969 assert(SS.isSet() && "C++ scope was cleared ?"); in ~DeclaratorScopeObj()
/freebsd-13.1/contrib/bsnmp/tests/
H A Dcatch.hpp7928 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-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRBuilder.h264 bool isSet() const { return (Block != nullptr); } in isSet() function
284 if (IP.isSet()) in restoreIP()

12