HomeSort by: relevance | last modified time | path
    Searched refs:pure_ (Results 1 - 20 of 20) sorted by relevancy

  /src/external/bsd/byacc/dist/test/
run_make.sh 61 ${REF_DIR}/pure_*)
102 ${TEST_DIR}/pure_*)
159 pure_*)
run_test.sh 242 ${TEST_DIR}/pure_*)
244 prefix=`echo "$prefix" | sed -e 's/^pure_//'`
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
astenums.d 83 pure_ = 0x4000_0000, /// `pure` function
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.return_ | STC.tls | STC.gshared |
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 |
clone.d 67 s2 |= STC.pure_;
76 StorageClass stc = (sa & (STC.pure_ | STC.nothrow_ | STC.nogc)) | (so & STC.disable);
268 StorageClass stc = STC.safe | STC.nothrow_ | STC.pure_ | STC.nogc;
869 StorageClass stc = STC.safe | STC.nothrow_ | STC.pure_ | STC.nogc;
1001 stc = STC.safe | STC.nothrow_ | STC.pure_ | STC.nogc;
1176 StorageClass stc = STC.safe | STC.nothrow_ | STC.pure_ | STC.nogc;
1224 StorageClass stc = STC.safe | STC.nothrow_ | STC.pure_ | STC.nogc;
1433 stc = STC.safe | STC.nothrow_ | STC.pure_ | STC.nogc;
tokens.h 237 pure_, member in class:TOK
tokens.d 228 pure_,
546 TOK.pure_,
752 TOK.pure_: "pure",
parse.d 657 case TOK.pure_:
658 stc = STC.pure_;
1331 case TOK.pure_:
1332 stc = STC.pure_;
4214 case TOK.pure_:
4215 stc = STC.pure_;
5228 t == TOK.shared_ || t == TOK.nothrow_ || t == TOK.pure_)
5782 case TOK.pure_:
7383 case TOK.pure_:
7738 case TOK.pure_
    [all...]
dsymbolsem.d 951 sc.stc &= ~(STC.TYPECTOR | STC.pure_ | STC.nothrow_ | STC.nogc | STC.ref_ | STC.disable);
3152 sc.stc |= STC.pure_;
6525 if (ds.storage_class & (STC.ref_ | STC.nothrow_ | STC.nogc | STC.pure_ | STC.disable))
6530 sc2.stc |= ds.storage_class & (STC.ref_ | STC.nothrow_ | STC.nogc | STC.pure_ | STC.shared_ | STC.disable);
6655 const storage_class = sc.stc & (STC.deprecated_ | STC.ref_ | STC.nothrow_ | STC.nogc | STC.pure_ | STC.shared_ | STC.disable);
6709 if (storage_class & (STC.ref_ | STC.nothrow_ | STC.nogc | STC.pure_ | STC.shared_ | STC.disable))
6714 sc2.stc |= storage_class & (STC.ref_ | STC.nothrow_ | STC.nogc | STC.pure_ | STC.shared_ | STC.disable);
mtype.d 726 stc |= STC.pure_;
4239 if (stc & STC.pure_)
4453 if ((stc & STC.pure_ && !t.purity) ||
4478 if (stc & STC.pure_)
semantic3.d 1431 (puErr ? STC.pure_ : 0) |
hdrgen.d 2922 SCstring(STC.pure_, Token.toString(TOK.pure_)),
statementsem.d 1666 StorageClass stc = mergeFuncAttrs(STC.safe | STC.pure_ | STC.nogc, fs.func);
3936 if (!(cas.stc & STC.pure_) && sc.func.setImpure())
expressionsem.d 4388 auto tf = new TypeFunction(ParameterList(), tc, LINK.d, STC.safe | STC.pure_);
5333 if (sc2.stc & (STC.pure_ | STC.nothrow_ | STC.nogc))
5335 sc2.stc &= ~(STC.pure_ | STC.nothrow_ | STC.nogc);
typesem.d 1185 if (sc.stc & STC.pure_)
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
utf.d 475 static assert((functionAttributes!({ stride(str, 0); }) & FunctionAttribute.pure_) != 0);
476 static assert((functionAttributes!({ stride(str); }) & FunctionAttribute.pure_) != 0);
585 static assert((functionAttributes!(() => stride(str, 0)) & FunctionAttribute.pure_) != 0);
586 static assert((functionAttributes!(() => stride(str) ) & FunctionAttribute.pure_) != 0);
675 static assert((functionAttributes!(() => stride(str, 0)) & FunctionAttribute.pure_) != 0);
676 static assert((functionAttributes!(() => stride(str) ) & FunctionAttribute.pure_) != 0);
833 static assert((functionAttributes!({ strideBack(str, 0); }) & FunctionAttribute.pure_) != 0);
834 static assert((functionAttributes!({ strideBack(str); }) & FunctionAttribute.pure_) != 0);
931 static assert((functionAttributes!(() => strideBack(str, 0)) & FunctionAttribute.pure_) != 0);
932 static assert((functionAttributes!(() => strideBack(str) ) & FunctionAttribute.pure_) != 0)
    [all...]
traits.d 784 (attrs & FA.pure_ ? " pure" : "")
1558 pure_ = 1 << 0, /// ditto
1596 static assert(functionAttributes!func & FA.pure_);
1664 static assert(functionAttributes!(S.pureF) == (FA.pure_ | FA.system));
1665 static assert(functionAttributes!(typeof(S.pureF)) == (FA.pure_ | 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));
1693 static assert(functionAttributes!(S2.pure_const) == (FA.const_ | FA.pure_ | FA.system));
1694 static assert(functionAttributes!(typeof(S2.pure_const)) == (FA.const_ | FA.pure_ | FA.system));
1696 static assert(functionAttributes!(S2.pure_sharedconst) == (FA.const_ | FA.shared_ | FA.pure_ | FA.system))
    [all...]
parallelism.d 147 functionAttributes!(typeof(&impl)) | FunctionAttribute.pure_);
475 (functionAttributes!(Args[0]) & FunctionAttribute.pure_) != 0;
typecons.d 5596 if (atts & FA.pure_ ) poatts ~= " pure";
5989 if (fa & FunctionAttribute.pure_) r ~= "pure ";
9443 static if (attributes & FunctionAttribute.pure_)
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/
typecons.d 346 if (fa & FunctionAttribute.pure_) r ~= "pure ";
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/
ir.d 573 enum attrs = functionAttributes!T | FunctionAttribute.pure_;

Completed in 148 milliseconds