Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/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()
845 } else if (SS.isSet()) in BuildCXXNestedNameSpecifier()
1042 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); in ShouldEnterDeclaratorScope()
1091 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); in ActOnCXXEnterDeclaratorScope()
1118 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); in ActOnCXXExitDeclaratorScope()
H A DSemaExprMember.cpp203 if (SS.isSet()) Range.setBegin(SS.getRange().getBegin()); in diagnoseInstanceReference()
657 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0); in LookupMemberExprInRecord()
665 if (SS.isSet()) { in LookupMemberExprInRecord()
753 (SS.isSet() && isDependentScopeSpecifier(SS))) in BuildMemberReferenceExpr()
996 DeclContext *DC = (SS.isSet() in BuildMemberReferenceExpr()
1038 if ((SS.isSet() || !BaseExpr || in BuildMemberReferenceExpr()
1710 if (SS.isSet() && SS.isInvalid()) in ActOnMemberAccessExpr()
1734 = (!SS.isSet() ? nullptr : FindFirstQualifierInScope(S, SS.getScopeRep())); in ActOnMemberAccessExpr()
H A DSemaTemplate.cpp291 if (SS.isSet() && !SS.isInvalid()) { in isTemplateName()
359 if (!SS || !SS->isSet() || !isDependentScopeSpecifier(*SS) || in DiagnoseUnknownTemplateName()
1005 if (SS.isSet()) in ActOnTemplateTypeArgument()
1160 SS.isSet() ? SS.getWithLocInContext(Context) : NestedNameSpecifierLoc(), in BuildTypeConstraint()
1808 if (SS.isSet()) in SetNestedNameSpecifier()
1927 if (!SS.isSet()) { in CheckClassTemplate()
2048 (SS.isSet() && SemanticContext && SemanticContext->isRecord() && in CheckClassTemplate()
2055 if (SS.isSet()) { in CheckClassTemplate()
4084 if (!IsCtorOrDtorName && !IsClassName && SS.isSet()) { in ActOnTemplateIdType()
4891 SourceRange(SS.isSet() ? SS.getBeginLoc() : ConceptNameInfo.getLoc(), in CheckConceptTemplateId()
[all …]
H A DSemaDecl.cpp751 if (!SS || !SS->isSet()) { in DiagnoseUnknownTypeName()
780 tmpSS.isSet() ? &tmpSS : SS, false, false, nullptr, in DiagnoseUnknownTypeName()
805 if (!SS || (!SS->isSet() && !SS->isInvalid())) in DiagnoseUnknownTypeName()
909 if (getLangOpts().CPlusPlus && SS.isSet() && in ClassifyName()
6252 else if (D.getCXXScopeSpec().isSet()) { in HandleDeclarator()
6315 if (!D.getCXXScopeSpec().isSet()) { in HandleDeclarator()
6640 if (D.getCXXScopeSpec().isSet()) { in ActOnTypedefDeclarator()
6822 if (!SS.isSet()) return; in SetNestedNameSpecifier()
7973 D.getCXXScopeSpec().isSet()) { in ActOnVariableDeclarator()
7981 } else if (D.getCXXScopeSpec().isSet()) { in ActOnVariableDeclarator()
[all …]
H A DSemaLookup.cpp2723 if (SS && SS->isSet()) { in LookupParsedName()
5248 } else if (SS && SS->isSet()) { in makeTypoCorrectionConsumer()
5262 (IsUnqualifiedLookup || (SS && SS->isSet())); in makeTypoCorrectionConsumer()
H A DSemaExprCXX.cpp334 SS.isSet() ? SS.getScopeRep()->getPrefix() : nullptr) { in getDestructorName()
374 if (SS.isSet()) { in getDestructorName()
7849 if (!SS.isSet()) { in ActOnPseudoDestructorExpr()
7867 ((SS.isSet() && !computeDeclContext(SS, false)) || in ActOnPseudoDestructorExpr()
7868 (!SS.isSet() && ObjectType->isDependentType()))) { in ActOnPseudoDestructorExpr()
H A DSema.cpp2704 assert(D.getCXXScopeSpec().isSet() && in isDeclaratorFunctionLike()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h89 bool isSet() const { return Block != nullptr; } in isSet() function
97 if (IP.isSet()) in restoreIP()
/openbsd-src/gnu/llvm/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()
376 if (!isSet()) in setInherited()
1272 bool hasDefaultArgument() const { return DefaultArgument.isSet(); }
1486 bool hasDefaultArgument() const { return DefaultArgument.isSet(); }
1742 bool hasDefaultArgument() const { return DefaultArgument.isSet(); }
1747 return DefaultArgument.isSet() ? *DefaultArgument.get() : NoneLoc;
H A DFormatString.h38 bool isSet() const { return flag; } in isSet() function
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DAttributes.cpp1959 if (AttrClass::isSet(Caller, AttrClass::getKind()) && in setAND()
1960 !AttrClass::isSet(Callee, AttrClass::getKind())) in setAND()
1971 if (!AttrClass::isSet(Caller, AttrClass::getKind()) && in setOR()
1972 AttrClass::isSet(Callee, AttrClass::getKind())) in setOR()
2075 static bool isSet(const Function &Fn, in isSet() function
2090 static bool isSet(const Function &Fn, in isSet() function
/openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFastISel.cpp75 assert(!isSet() && "Can't change kind with non-zero base"); in setKind()
109 bool isSet() const { return IsBaseSet; } in isSet() function in __anona62ec1030111::WebAssemblyFastISel::Address
326 if (Addr.isSet()) { in computeAddress()
373 if (Addr.isSet()) { in computeAddress()
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseExprCXX.cpp514 if (MemberOfUnknownSpecialization && (ObjectType || SS.isSet()) && in ParseOptionalCXXScopeSpecifier()
2861 if (TemplateKWLoc && (ObjectType || SS.isSet())) { in ParseUnqualifiedId()
2939 if (SS.isSet()) { in ParseUnqualifiedId()
2970 if (TemplateKWLoc && (ObjectType || SS.isSet())) in ParseUnqualifiedId()
3011 (AllowDestructorName || SS.isSet()) && Tok.is(tok::tilde)) { in ParseUnqualifiedId()
3061 if (SS.isSet()) { in ParseUnqualifiedId()
3071 !SS.isSet()) { in ParseUnqualifiedId()
H A DParseDecl.cpp2337 if (D.getCXXScopeSpec().isSet()) { in ParseDeclarationAfterDeclaratorAndAttributes()
2348 if (D.getCXXScopeSpec().isSet()) in ParseDeclarationAfterDeclaratorAndAttributes()
4731 if (Spec.isSet() && Tok.isNot(tok::identifier)) { in ParseEnumSpecifier()
4907 if (!getLangOpts().CPlusPlus11 || !SS.isSet()) { in ParseEnumSpecifier()
5698 if (SS.isSet() && Actions.ShouldEnterDeclaratorScope(getCurScope(), SS)) in isConstructorDeclarator()
6332 } else if (D.getCXXScopeSpec().isSet()) { in ParseDirectDeclarator()
6438 if (D.getCXXScopeSpec().isSet()) { in ParseDirectDeclarator()
6541 if (D.getCXXScopeSpec().isSet()) in ParseDirectDeclarator()
H A DParseTemplate.cpp1503 if (SS.isSet() && Tok.is(tok::kw_template)) { in ParseTemplateTemplateArgument()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DDeclSpec.h211 bool isSet() const { return getScopeRep() != nullptr; } in isSet() function
1766 bool isSet() const { return LSquareLoc.isValid(); } in isSet() function
2248 return BindingGroup.isSet(); in isDecompositionDeclarator()
/openbsd-src/gnu/llvm/clang/tools/clang-format/
H A DClangFormat.cpp443 nullptr, WNoErrorList.isSet(WNoError::Unknown)); in format()
/openbsd-src/gnu/llvm/clang/include/clang/Parse/
H A DParser.h3031 assert(SS.isSet() && "C++ scope was not set!"); in EnterDeclaratorScope()
3042 assert(SS.isSet() && "C++ scope was cleared ?"); in ~DeclaratorScopeObj()
3096 D.getCXXScopeSpec().isSet() && in ParseParameterDeclarationClause()
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DCommandLine.h1794 template <class T> bool isSet(const T &V) {
1819 template <class T> bool isSet(const T &V) { return (Bits & Bit(V)) != 0; }
/openbsd-src/gnu/llvm/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp71 if (!IP1.isSet() || !IP2.isSet()) in isConflictIP()
2046 ComputeIP.isSet() ? LocationDescription(ComputeIP, Loc.DL) : Loc; in createCanonicalLoop()
2097 LocationDescription LoopLoc = ComputeIP.isSet() ? Loc.IP : Builder.saveIP(); in createCanonicalLoop()
2636 if (ComputeIP.isSet()) in collapseLoops()
3687 if (!IP.isSet()) in createCopyinClauseBlocks()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCodeGenFunction.h1824 if (CGF.Builder.saveIP().isSet())
1853 assert(AllocaIP.isSet() &&
1882 assert((!AllocaIP.isSet() ||
1887 if (AllocaIP.isSet())
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DIRBuilder.h256 bool isSet() const { return (Block != nullptr); } in isSet() function
276 if (IP.isSet()) in restoreIP()

12