Searched refs:isSet (Results 1 - 25 of 34) sorted by relevance

12

/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUArgumentUsageInfo.h59 bool isSet() const { function in struct:llvm::ArgDescriptor
64 return isSet();
H A DAMDGPUArgumentUsageInfo.cpp28 if (!isSet()) {
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp76 if (!SS.isSet() || SS.isInvalid())
168 if (!SS.isSet() || SS.isInvalid())
395 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
398 } else if (SS.isSet()) {
504 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
507 } else if (SS.isSet()) {
823 } else if (SS.isSet())
1021 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
1070 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
1097 assert(SS.isSet()
[all...]
H A DSemaExprMember.cpp202 if (SS.isSet()) Range.setBegin(SS.getRange().getBegin());
655 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0);
663 if (SS.isSet()) {
751 (SS.isSet() && isDependentScopeSpecifier(SS)))
994 DeclContext *DC = (SS.isSet()
1036 if ((SS.isSet() || !BaseExpr ||
1689 if (SS.isSet() && SS.isInvalid())
1710 = (!SS.isSet() ? nullptr : FindFirstQualifierInScope(S, SS.getScopeRep()));
H A DSemaTemplate.cpp284 if (SS.isSet() && !SS.isInvalid()) {
354 if (!SS || !SS->isSet() || !isDependentScopeSpecifier(*SS) ||
999 if (SS.isSet())
1154 SS.isSet() ? SS.getWithLocInContext(Context) : NestedNameSpecifierLoc(),
1709 if (SS.isSet())
1828 if (!SS.isSet()) {
1949 (SS.isSet() && SemanticContext && SemanticContext->isRecord() &&
1956 if (SS.isSet()) {
3913 if (!IsCtorOrDtorName && !IsClassName && SS.isSet()) {
4703 SourceRange(SS.isSet()
[all...]
H A DSemaDecl.cpp689 if (!SS || !SS->isSet()) {
718 tmpSS.isSet() ? &tmpSS : SS, false, false, nullptr,
743 if (!SS || (!SS->isSet() && !SS->isInvalid()))
862 if (getLangOpts().CPlusPlus && SS.isSet() &&
5736 else if (D.getCXXScopeSpec().isSet()) {
5799 if (!D.getCXXScopeSpec().isSet()) {
6124 if (D.getCXXScopeSpec().isSet()) {
6306 if (!SS.isSet()) return;
7410 D.getCXXScopeSpec().isSet()) {
7418 } else if (D.getCXXScopeSpec().isSet()) {
[all...]
H A DSemaExprCXX.cpp328 SS.isSet() ? SS.getScopeRep()->getPrefix() : nullptr) {
368 if (SS.isSet()) {
7540 if (!SS.isSet()) {
7558 ((SS.isSet() && !computeDeclContext(SS, false)) ||
7559 (!SS.isSet() && ObjectType->isDependentType()))) {
H A DSemaLookup.cpp2456 if (SS && SS->isSet()) {
4914 } else if (SS && SS->isSet()) {
4928 (IsUnqualifiedLookup || (SS && SS->isSet()));
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h87 bool isSet() const { return Block != nullptr; } function in class:llvm::VPBuilder::VPInsertPoint
95 if (IP.isSet())
/netbsd-current/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(testPai
[all...]
/netbsd-current/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(testPai
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DCOFF.h313 assert(isSet() && "COFFSymbolRef points to nothing!");
318 assert(isSet() && "COFFSymbolRef points to nothing!");
323 assert(isSet() && "COFFSymbolRef points to nothing!");
334 assert(isSet() && "COFFSymbolRef points to nothing!");
339 assert(isSet() && "COFFSymbolRef points to nothing!");
344 assert(isSet() && "COFFSymbolRef points to nothing!");
434 bool isSet() const { return CS16 || CS32; } function in class:llvm::object::COFFSymbolRef
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclTemplate.h340 bool isSet() const { return !ValueOrInherited.isNull(); } function
369 assert(!isSet() && "default argument already set");
377 if (!isSet())
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; } function in class:clang::analyze_format_string::OptionalFlag
/netbsd-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DAttributes.cpp2140 if (AttrClass::isSet(Caller, AttrClass::getKind()) &&
2141 !AttrClass::isSet(Callee, AttrClass::getKind()))
2152 if (!AttrClass::isSet(Caller, AttrClass::getKind()) &&
2153 AttrClass::isSet(Callee, AttrClass::getKind()))
2260 static bool isSet(const Function &Fn, function in struct:EnumAttr
2275 static bool isSet(const Function &Fn, function in struct:StrBoolAttr
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFastISel.cpp74 assert(!isSet() && "Can't change kind with non-zero base");
108 bool isSet() const { return IsBaseSet; } function in class:__anon2663::final::Address
322 if (Addr.isSet()) {
369 if (Addr.isSet()) {
/netbsd-current/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseExprCXX.cpp512 if (MemberOfUnknownSpecialization && (ObjectType || SS.isSet()) &&
2763 if (TemplateKWLoc && (ObjectType || SS.isSet())) {
2840 if (SS.isSet()) {
2871 if (TemplateKWLoc && (ObjectType || SS.isSet()))
2912 (AllowDestructorName || SS.isSet()) && Tok.is(tok::tilde)) {
2962 if (SS.isSet()) {
2972 !SS.isSet()) {
H A DParseDecl.cpp2222 if (D.getCXXScopeSpec().isSet()) {
2233 if (D.getCXXScopeSpec().isSet())
4472 if (Spec.isSet() && Tok.isNot(tok::identifier)) {
4642 if (!getLangOpts().CPlusPlus11 || !SS.isSet()) {
5392 if (SS.isSet() && Actions.ShouldEnterDeclaratorScope(getCurScope(), SS))
6011 } else if (D.getCXXScopeSpec().isSet()) {
6117 if (D.getCXXScopeSpec().isSet()) {
H A DParseTemplate.cpp1452 if (SS.isSet() && Tok.is(tok::kw_template)) {
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DDeclSpec.h60 /// isSet() is deprecated because it mostly corresponded to "valid" but was
210 bool isSet() const { return getScopeRep() != nullptr; } function in class:clang::CXXScopeSpec
1743 bool isSet() const { return LSquareLoc.isValid(); } function in class:clang::DecompositionDeclarator
2185 return BindingGroup.isSet();
/netbsd-current/external/apache2/llvm/dist/clang/tools/clang-format/
H A DClangFormat.cpp399 nullptr, WNoErrorList.isSet(WNoError::Unknown));
/netbsd-current/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-current/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp1180 ComputeIP.isSet() ? LocationDescription(ComputeIP, Loc.DL) : Loc;
1231 LocationDescription LoopLoc = ComputeIP.isSet() ? Loc.IP : Builder.saveIP();
1575 if (ComputeIP.isSet())
2088 if (!IP.isSet())
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Parse/
H A DParser.h2930 assert(SS.isSet() && "C++ scope was not set!");
2941 assert(SS.isSet() && "C++ scope was cleared ?");
/netbsd-current/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())

Completed in 715 milliseconds

12