| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | astenums.d | 82 nothrow_ = 0x2000_0000, /// `nothrow` meaning never throws exceptions enumerator 118 FUNCATTR = (STC.ref_ | STC.nothrow_ | STC.nogc | STC.pure_ | STC.property | STC.live | 126 …STC.immutable_ | STC.shared_ | STC.wild | STC.nothrow_ | STC.nogc | STC.pure_ | STC.ref_ | STC.ret… 134 … STC.nothrow_ | STC.pure_ | STC.safe | STC.trusted | STC.system), /// for a FuncDeclaration 160 STC.wild | STC.nothrow_ | STC.nogc | STC.pure_ | STC.ref_ | STC.return_ | STC.tls |
|
| H A D | clone.d | 69 s2 |= STC.nothrow_; in mergeFuncAttrs() 76 StorageClass stc = (sa & (STC.pure_ | STC.nothrow_ | STC.nogc)) | (so & STC.disable); in mergeFuncAttrs() 268 StorageClass stc = STC.safe | STC.nothrow_ | STC.pure_ | STC.nogc; in buildOpAssign() 820 …auto tf = new TypeFunction(ParameterList(parameters), Type.thash_t, LINK.d, STC.nothrow_ | STC.tru… in buildXtoHash() 869 StorageClass stc = STC.safe | STC.nothrow_ | STC.pure_ | STC.nogc; in buildDtors() 1001 stc = STC.safe | STC.nothrow_ | STC.pure_ | STC.nogc; in buildDtors() 1176 StorageClass stc = STC.safe | STC.nothrow_ | STC.pure_ | STC.nogc; in buildInv() 1224 StorageClass stc = STC.safe | STC.nothrow_ | STC.pure_ | STC.nogc; in buildPostBlit() 1433 stc = STC.safe | STC.nothrow_ | STC.pure_ | STC.nogc; in buildPostBlit()
|
| H A D | tokens.d | 229 nothrow_, enumerator 547 TOK.nothrow_, 753 TOK.nothrow_: "nothrow",
|
| H A D | blockexit.d | 509 if (!(s.stc & STC.nothrow_)) in blockExit() 511 if (mustNotThrow && !(s.stc & STC.nothrow_)) in blockExit()
|
| H A D | tokens.h | 238 nothrow_, enumerator
|
| H A D | parse.d | 653 case TOK.nothrow_: 654 stc = STC.nothrow_; 1327 case TOK.nothrow_: 1328 stc = STC.nothrow_; 4210 case TOK.nothrow_: 4211 stc = STC.nothrow_; 5228 t == TOK.shared_ || t == TOK.nothrow_ || t == TOK.pure_) 5781 case TOK.nothrow_: 7384 case TOK.nothrow_: 7737 case TOK.nothrow_: in skipAttributes()
|
| H A D | dsymbolsem.d | 951 … sc.stc &= ~(STC.TYPECTOR | STC.pure_ | STC.nothrow_ | STC.nogc | STC.ref_ | STC.disable); in visit() 3146 sc.stc |= STC.nothrow_; in funcDeclarationSemantic() 6525 if (ds.storage_class & (STC.ref_ | STC.nothrow_ | STC.nogc | STC.pure_ | STC.disable)) in aliasSemantic() 6530 …sc2.stc |= ds.storage_class & (STC.ref_ | STC.nothrow_ | STC.nogc | STC.pure_ | STC.shared_ | STC.… in aliasSemantic() 6655 …const storage_class = sc.stc & (STC.deprecated_ | STC.ref_ | STC.nothrow_ | STC.nogc | STC.pure_ |… in aliasAssignSemantic() 6709 … if (storage_class & (STC.ref_ | STC.nothrow_ | STC.nogc | STC.pure_ | STC.shared_ | STC.disable)) in aliasAssignSemantic() 6714 …sc2.stc |= storage_class & (STC.ref_ | STC.nothrow_ | STC.nogc | STC.pure_ | STC.shared_ | STC.dis… in aliasAssignSemantic()
|
| H A D | mtype.d | 729 stc |= STC.nothrow_; 4241 if (stc & STC.nothrow_) 4454 (stc & STC.nothrow_ && !t.isnothrow) || in addStorageClass() 4480 if (stc & STC.nothrow_) in addStorageClass()
|
| H A D | hdrgen.d | 2920 SCstring(STC.nothrow_, Token.toString(TOK.nothrow_)), in stcToString()
|
| H A D | statementsem.d | 3424 …laration fdenter = FuncDeclaration.genCfunc(enterArgs, Type.tvoid, Id.criticalenter, STC.nothrow_); in package() 3434 …Declaration fdexit = FuncDeclaration.genCfunc(exitArgs, Type.tvoid, Id.criticalexit, STC.nothrow_); in package()
|
| H A D | typesem.d | 1187 if (sc.stc & STC.nothrow_) in typeSemantic()
|
| H A D | expressionsem.d | 5333 if (sc2.stc & (STC.pure_ | STC.nothrow_ | STC.nogc)) in visit() 5335 sc2.stc &= ~(STC.pure_ | STC.nothrow_ | STC.nogc); in visit()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| H A D | traits.d | 235 'b': FunctionAttribute.nothrow_, 694 attrs & FA.nothrow_ ? " nothrow" : "", in fqnType() 1395 nothrow_ = 1 << 1, /// ditto 1484 static assert(functionAttributes!(S.nothrowF) == (FA.nothrow_ | FA.system)); 1485 static assert(functionAttributes!(typeof(S.nothrowF)) == (FA.nothrow_ | FA.system)); 1507 static assert(functionAttributes!(pure_nothrow) == (FA.pure_ | FA.nothrow_ | FA.system)); 1508 … static assert(functionAttributes!(typeof(pure_nothrow)) == (FA.pure_ | FA.nothrow_ | FA.system)); 1510 static assert(functionAttributes!(safe_nothrow) == (FA.safe | FA.nothrow_)); 1511 static assert(functionAttributes!(typeof(safe_nothrow)) == (FA.safe | FA.nothrow_)); 1531 static assert(functionAttributes!((int a) { }) == (FA.pure_ | FA.nothrow_ | FA.nogc | FA.safe)); [all …]
|
| H A D | typecons.d | 4377 if (atts & FA.nothrow_) poatts ~= " nothrow"; 4720 if (fa & FunctionAttribute.nothrow_) r ~= "nothrow "; 7735 static if (attributes & FunctionAttribute.nothrow_)
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
| H A D | traits.d | 785 ~ (attrs & FA.nothrow_ ? " nothrow" : "") in fqnType() 1559 nothrow_ = 1 << 1, /// ditto 1649 static assert(functionAttributes!(S.nothrowF) == (FA.nothrow_ | FA.system)); 1650 static assert(functionAttributes!(typeof(S.nothrowF)) == (FA.nothrow_ | FA.system)); 1675 static assert(functionAttributes!(pure_nothrow) == (FA.pure_ | FA.nothrow_ | FA.system)); 1676 … static assert(functionAttributes!(typeof(pure_nothrow)) == (FA.pure_ | FA.nothrow_ | FA.system)); 1678 static assert(functionAttributes!(safe_nothrow) == (FA.safe | FA.nothrow_)); 1679 static assert(functionAttributes!(typeof(safe_nothrow)) == (FA.safe | FA.nothrow_)); 1699 static assert(functionAttributes!((int a) { }) == (FA.pure_ | FA.nothrow_ | FA.nogc | FA.safe)); 1700 …static assert(functionAttributes!(typeof((int a) { })) == (FA.pure_ | FA.nothrow_ | FA.nogc | FA.s… [all …]
|
| H A D | typecons.d | 5597 if (atts & FA.nothrow_) poatts ~= " nothrow"; 5990 if (fa & FunctionAttribute.nothrow_) r ~= "nothrow "; 9445 static if (attributes & FunctionAttribute.nothrow_)
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/experimental/ |
| H A D | typecons.d | 347 if (fa & FunctionAttribute.nothrow_) r ~= "nothrow "; in wrapperSignature()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/ |
| H A D | typecons.d | 346 if (fa & FunctionAttribute.nothrow_) r ~= "nothrow "; in wrapperSignature()
|
| /netbsd-src/external/apache2/llvm/dist/libcxx/docs/ |
| H A D | Cxx2aStatusIssuesStatus.csv | 145 "`2899 <https://wg21.link/LWG2899>`__","``is_(nothrow_)move_constructible``\ and ``tuple``\ , ``op…
|