Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp76 if (!SS.isSet() || SS.isInvalid()) in computeDeclContext()
168 if (!SS.isSet() || SS.isInvalid()) in isDependentScopeSpecifier()
395 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist"); in isNonTypeNestedNameSpecifier()
398 } else if (SS.isSet()) { in isNonTypeNestedNameSpecifier()
504 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist"); in BuildCXXNestedNameSpecifier()
507 } else if (SS.isSet()) { in BuildCXXNestedNameSpecifier()
823 } else if (SS.isSet()) in BuildCXXNestedNameSpecifier()
1021 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); in ShouldEnterDeclaratorScope()
1070 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); in ActOnCXXEnterDeclaratorScope()
1097 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); in ActOnCXXExitDeclaratorScope()
H A DSemaExprMember.cpp202 if (SS.isSet()) Range.setBegin(SS.getRange().getBegin()); in diagnoseInstanceReference()
655 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0); in LookupMemberExprInRecord()
663 if (SS.isSet()) { in LookupMemberExprInRecord()
751 (SS.isSet() && isDependentScopeSpecifier(SS))) in BuildMemberReferenceExpr()
994 DeclContext *DC = (SS.isSet() in BuildMemberReferenceExpr()
1036 if ((SS.isSet() || !BaseExpr || in BuildMemberReferenceExpr()
1689 if (SS.isSet() && SS.isInvalid()) in ActOnMemberAccessExpr()
1710 = (!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()
1154 SS.isSet() ? SS.getWithLocInContext(Context) : NestedNameSpecifierLoc(), in BuildTypeConstraint()
1709 if (SS.isSet()) in SetNestedNameSpecifier()
1828 if (!SS.isSet()) { in CheckClassTemplate()
1949 (SS.isSet() && SemanticContext && SemanticContext->isRecord() && in CheckClassTemplate()
1956 if (SS.isSet()) { in CheckClassTemplate()
3913 if (!IsCtorOrDtorName && !IsClassName && SS.isSet()) { in ActOnTemplateIdType()
4703 SourceRange(SS.isSet() ? SS.getBeginLoc() : ConceptNameInfo.getLoc(), in CheckConceptTemplateId()
[all …]
H A DSemaDecl.cpp689 if (!SS || !SS->isSet()) { in DiagnoseUnknownTypeName()
718 tmpSS.isSet() ? &tmpSS : SS, false, false, nullptr, in DiagnoseUnknownTypeName()
743 if (!SS || (!SS->isSet() && !SS->isInvalid())) in DiagnoseUnknownTypeName()
862 if (getLangOpts().CPlusPlus && SS.isSet() && in ClassifyName()
5736 else if (D.getCXXScopeSpec().isSet()) { in HandleDeclarator()
5799 if (!D.getCXXScopeSpec().isSet()) { in HandleDeclarator()
6124 if (D.getCXXScopeSpec().isSet()) { in ActOnTypedefDeclarator()
6306 if (!SS.isSet()) return; in SetNestedNameSpecifier()
7410 D.getCXXScopeSpec().isSet()) { in ActOnVariableDeclarator()
7418 } else if (D.getCXXScopeSpec().isSet()) { in ActOnVariableDeclarator()
[all …]
H A DSemaLookup.cpp2456 if (SS && SS->isSet()) { in LookupParsedName()
4914 } else if (SS && SS->isSet()) { in makeTypoCorrectionConsumer()
4928 (IsUnqualifiedLookup || (SS && SS->isSet())); in makeTypoCorrectionConsumer()
H A DSemaExprCXX.cpp328 SS.isSet() ? SS.getScopeRep()->getPrefix() : nullptr) { in getDestructorName()
368 if (SS.isSet()) { in getDestructorName()
7540 if (!SS.isSet()) { in ActOnPseudoDestructorExpr()
7558 ((SS.isSet() && !computeDeclContext(SS, false)) || in ActOnPseudoDestructorExpr()
7559 (!SS.isSet() && ObjectType->isDependentType()))) { in ActOnPseudoDestructorExpr()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dsocket.d2333 int isSet(socket_t s) const pure nothrow @nogc
2351 int isSet(Socket s) const pure nothrow @nogc
2353 return isSet(s.sock);
2397 foreach (fd; fds) assert(!set.isSet(fd));
2399 foreach (fd; fds) assert(set.isSet(fd));
2404 assert(cast(bool) set.isSet(fd) == cast(bool)(() @trusted => FD_ISSET(fd, fdset))());
2408 assert(set.isSet(fd));
2410 assert(!set.isSet(fd));
2470 assert(writeSet.isSet(testPair[0]));
2471 assert(writeSet.isSet(testPair[1]));
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dsocket.d2355 int isSet(socket_t s) const pure nothrow @nogc
2373 int isSet(Socket s) const pure nothrow @nogc
2375 return isSet(s.sock);
2419 foreach (fd; fds) assert(!set.isSet(fd));
2421 foreach (fd; fds) assert(set.isSet(fd));
2426 assert(cast(bool) set.isSet(fd) == cast(bool)(() @trusted => FD_ISSET(fd, fdset))());
2430 assert(set.isSet(fd));
2432 assert(!set.isSet(fd));
2501 assert(writeSet.isSet(testPair[0]));
2502 assert(writeSet.isSet(testPair[1]));
[all …]
/netbsd-src/external/apache2/llvm/dist/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
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h87 bool isSet() const { return Block != nullptr; } in isSet() function
95 if (IP.isSet()) in restoreIP()
/netbsd-src/external/apache2/llvm/dist/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
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DAttributes.cpp2140 if (AttrClass::isSet(Caller, AttrClass::getKind()) && in setAND()
2141 !AttrClass::isSet(Callee, AttrClass::getKind())) in setAND()
2152 if (!AttrClass::isSet(Caller, AttrClass::getKind()) && in setOR()
2153 AttrClass::isSet(Callee, AttrClass::getKind())) in setOR()
2260 static bool isSet(const Function &Fn, in isSet() function
2275 static bool isSet(const Function &Fn, in isSet() function
/netbsd-src/external/apache2/llvm/dist/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 __anon625239370111::WebAssemblyFastISel::Address
322 if (Addr.isSet()) { in computeAddress()
369 if (Addr.isSet()) { in computeAddress()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseExprCXX.cpp512 if (MemberOfUnknownSpecialization && (ObjectType || SS.isSet()) && in ParseOptionalCXXScopeSpecifier()
2763 if (TemplateKWLoc && (ObjectType || SS.isSet())) { in ParseUnqualifiedId()
2840 if (SS.isSet()) { in ParseUnqualifiedId()
2871 if (TemplateKWLoc && (ObjectType || SS.isSet())) in ParseUnqualifiedId()
2912 (AllowDestructorName || SS.isSet()) && Tok.is(tok::tilde)) { in ParseUnqualifiedId()
2962 if (SS.isSet()) { in ParseUnqualifiedId()
2972 !SS.isSet()) { in ParseUnqualifiedId()
H A DParseDecl.cpp2222 if (D.getCXXScopeSpec().isSet()) { in ParseDeclarationAfterDeclaratorAndAttributes()
2233 if (D.getCXXScopeSpec().isSet()) in ParseDeclarationAfterDeclaratorAndAttributes()
4472 if (Spec.isSet() && Tok.isNot(tok::identifier)) { in ParseEnumSpecifier()
4642 if (!getLangOpts().CPlusPlus11 || !SS.isSet()) { in ParseEnumSpecifier()
5392 if (SS.isSet() && Actions.ShouldEnterDeclaratorScope(getCurScope(), SS)) in isConstructorDeclarator()
6011 } else if (D.getCXXScopeSpec().isSet()) { in ParseDirectDeclarator()
6117 if (D.getCXXScopeSpec().isSet()) { in ParseDirectDeclarator()
H A DParseTemplate.cpp1452 if (SS.isSet() && Tok.is(tok::kw_template)) { in ParseTemplateTemplateArgument()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-format/
H A DClangFormat.cpp399 nullptr, WNoErrorList.isSet(WNoError::Unknown)); in format()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp1180 ComputeIP.isSet() ? LocationDescription(ComputeIP, Loc.DL) : Loc; in createCanonicalLoop()
1231 LocationDescription LoopLoc = ComputeIP.isSet() ? Loc.IP : Builder.saveIP(); in createCanonicalLoop()
1575 if (ComputeIP.isSet()) in collapseLoops()
2088 if (!IP.isSet()) in createCopyinClauseBlocks()
/netbsd-src/external/apache2/llvm/dist/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; }
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenFunction.h1774 if (CGF.Builder.saveIP().isSet())
1790 assert(AllocaIP.isSet() &&
1821 assert((!AllocaIP.isSet() ||
1826 if (AllocaIP.isSet())
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Parse/
H A DParser.h2930 assert(SS.isSet() && "C++ scope was not set!"); in EnterDeclaratorScope()
2941 assert(SS.isSet() && "C++ scope was cleared ?"); in ~DeclaratorScopeObj()

12