HomeSort by: relevance | last modified time | path
    Searched refs:scope_ (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
astenums.d 69 scope_ = 0x8_0000, /// `scope`
72 scopeinferred = 0x20_0000, /// `scope` has been inferred and should not be part of mangling, `scope_` must also be set
124 (STC.auto_ | STC.scope_ | STC.static_ | STC.extern_ | STC.const_ | STC.final_ | STC.abstract_ | STC.synchronized_ |
132 flowThruFunction = ~(STC.auto_ | STC.scope_ | STC.static_ | STC.extern_ | STC.abstract_ | STC.deprecated_ | STC.override_ |
150 return (stc & (STC.scope_ | STC.return_)) == (STC.scope_ | STC.return_) &&
157 (STC.auto_ | STC.scope_ | STC.static_ | STC.extern_ | STC.const_ | STC.final_ |
tokens.h 219 scope_, member in class:TOK
414 scope_, member in class:EXP
parse.d 637 case TOK.scope_:
638 stc = STC.scope_;
1204 const Redundant = (STC.const_ | STC.scope_ |
1215 (orig & STC.scope_) ? "scope".ptr : "ref".ptr);
1229 const(char*) stc_str = (orig & STC.scope_) ? "scope".ptr : "ref".ptr;
1337 if (peekNext() == TOK.scope_)
1341 case TOK.scope_:
1342 stc = STC.scope_;
2731 enum VarArgsStc = STC.const_ | STC.immutable_ | STC.shared_ | STC.scope_ | STC.return_ | STC.returnScope;
2825 case TOK.scope_
    [all...]
escape.d 446 const byRef = param.isReference() && !(param.storageClass & STC.scope_)
664 va.storage_class |= STC.scope_ | STC.scopeinferred;
697 va.storage_class |= STC.scope_ | STC.scopeinferred;
730 va.storage_class |= STC.scope_ | STC.scopeinferred;
815 va.storage_class |= STC.scope_ | STC.scopeinferred;
860 /* Don't infer STC.scope_ for va, because then a closure
864 //va.storage_class |= STC.scope_ | STC.scopeinferred;
918 va.storage_class |= STC.scope_ | STC.scopeinferred;
1762 stc |= STC.scope_;
1790 StorageClass stc = dve.var.storage_class & (STC.return_ | STC.scope_ | STC.ref_)
    [all...]
tokens.d 210 scope_,
404 scope_,
511 TOK.scope_,
717 TOK.scope_: "scope",
attrib.d 247 if (stc & (STC.auto_ | STC.scope_ | STC.static_ | STC.extern_ | STC.manifest))
248 scstc &= ~(STC.auto_ | STC.scope_ | STC.static_ | STC.extern_ | STC.manifest);
249 if (stc & (STC.auto_ | STC.scope_ | STC.static_ | STC.manifest | STC.gshared))
250 scstc &= ~(STC.auto_ | STC.scope_ | STC.static_ | STC.manifest | STC.gshared);
foreachvar.d 214 if (s.exp.op == EXP.scope_ || s.exp.op == EXP.type)
cparse.d 162 if (flags & ParseStatementFlags.scope_)
167 if (!(flags & (ParseStatementFlags.scope_ | ParseStatementFlags.curlyScope)))
189 s = cparseStatement(ParseStatementFlags.curly | ParseStatementFlags.scope_);
335 if (flags & ParseStatementFlags.scope_)
373 if (flags & (ParseStatementFlags.scope_ | ParseStatementFlags.curlyScope))
386 auto _body = cparseStatement(ParseStatementFlags.scope_, null, &endloc);
401 auto _body = cparseStatement(ParseStatementFlags.scope_);
449 auto _body = cparseStatement(ParseStatementFlags.scope_, null, &endloc);
460 auto ifbody = cparseStatement(ParseStatementFlags.scope_);
465 elsebody = cparseStatement(ParseStatementFlags.scope_);
    [all...]
semantic3.d 479 stc |= STC.scope_;
483 if ((funcdecl.flags & FUNCFLAG.inferScope) && !(fparam.storageClass & STC.scope_))
486 stc |= fparam.storageClass & (STC.IOR | STC.return_ | STC.scope_ | STC.lazy_ | STC.final_ | STC.TYPECTOR | STC.nodtor | STC.returnScope);
1319 // Infer STC.scope_
1330 v.storage_class |= STC.scope_ | STC.scopeinferred;
1331 p.storageClass |= STC.scope_ | STC.scopeinferred;
1340 funcdecl.vthis.storage_class |= STC.scope_ | STC.scopeinferred;
mtype.d 682 StorageClass stc1 = t1.isScopeQual ? STC.scope_ : 0;
683 StorageClass stc2 = t2.isScopeQual ? STC.scope_ : 0;
4258 if (stc & STC.scope_)
4366 * STC.scope_ and STC.return_ should be OR'd in.
4372 * storage class with STC.scope_ or STC.return_ OR'd in
4383 return stc | STC.scope_;
4385 if (stc & (STC.scope_ | STC.return_ | STC.lazy_) || purity == PURE.impure)
4444 return stc | STC.scope_ | STC.return_ | STC.returnScope;
4446 return stc | STC.scope_;
4451 //printf("addStorageClass(%llx) %d\n", stc, (stc & STC.scope_) != 0)
    [all...]
dmangle.d 991 stc &= ~(STC.scope_ | STC.scopeinferred);
1013 stc &= ~(STC.out_ | STC.scope_ | STC.ref_ | STC.return_);
1017 if (stc & STC.scope_)
typesem.d 1199 if (sc.stc & STC.scope_)
1454 if (!(fparam.storageClass & STC.scope_))
1455 fparam.storageClass |= STC.scope_ | STC.scopeinferred; // 'return' implies 'scope'
1511 fparam.storageClass &= ~STC.scope_;
1517 fparam.storageClass &= ~(STC.return_ | STC.scope_ | STC.returnScope);
1842 case EXP.scope_:
2371 * scope_ = the scope from which the property is being accessed. Used for visibility checks only.
2378 Expression getProperty(Type t, Scope* scope_, const ref Loc loc, Identifier ident, int flag)
2442 if (s && !symbolIsVisible(scope_, s))
2456 if (auto dsym = mt.toDsymbol(scope_))
    [all...]
clone.d 323 swap.storage_class |= STC.scope_;
652 case EXP.scope_:
1413 dd.storage_class |= STC.inference | STC.scope_;
1507 fparams.push(new Parameter(paramStc | STC.ref_ | STC.return_ | STC.scope_, structType, Id.p, null, null));
statementsem.d 1027 fs.value.storage_class |= p.storageClass & (STC.scope_ | STC.IOR | STC.TYPECTOR);
1078 tmp.storage_class |= STC.scope_;
1287 ve.storage_class |= p.storageClass & (STC.scope_ | STC.IOR | STC.TYPECTOR);
1622 StorageClass stc = STC.ref_ | (p.storageClass & STC.scope_);
1631 stc = (prm.storageClass & STC.ref_) | (p.storageClass & STC.scope_);
1658 v.storage_class |= STC.temp | (stc & STC.scope_);
3461 if (ws.exp.op == EXP.scope_)
4065 stc |= STC.scope_;
4080 if (global.params.ehnogc && stc & STC.scope_)
4400 else if (e.op == EXP.scope_)
    [all...]
dsymbolsem.d 708 dsym.storage_class |= STC.scope_;
710 if (dsym.storage_class & STC.scope_)
725 dsym.storage_class &= ~STC.scope_; // silently ignore; may occur in generic code
845 if (!(dsym.storage_class & STC.scope_))
1081 if (ei && (ei.exp.op != EXP.scope_ ? true : !ei.exp.isScopeExp().sds.isPackage()))
1455 sc.stc &= ~(STC.auto_ | STC.scope_ | STC.static_ | STC.gshared);
2123 if (sc.stc & STC.scope_)
3144 sc.stc |= STC.scope_;
3179 sc.stc |= STC.scope_;
3182 if (sc.stc & STC.scope_ && ad && ad.isStructDeclaration() && !ad.type.hasPointers()
    [all...]
ob.d 1474 else if (p.storageClass & STC.scope_)
1508 if (tf.parameterList.stc & STC.scope_)
2180 else if (p.storageClass & STC.scope_)
2218 if (tf.parameterList.stc & STC.scope_)
hdrgen.d 2570 case EXP.scope_: return visitScope(e.isScopeExp());
2839 stc &= ~(STC.scope_ | STC.scopeinferred);
2868 stc &= ~(STC.out_ | STC.scope_ | STC.ref_ | STC.return_);
2904 SCstring(STC.scope_, Token.toString(TOK.scope_)),
3203 STC.return_ | STC.returninferred | STC.scope_ | STC.scopeinferred | STC.out_ | STC.ref_ | STC.returnScope)))
4014 EXP.scope_ : "scope",
declaration.d 481 return (storage_class & STC.scope_) != 0;
1479 if (storage_class & (STC.auto_ | STC.scope_) && !(storage_class & STC.parameter))
expressionsem.d 2043 else if (!(pStc & (STC.scope_ | STC.lazy_)))
2323 (parameter ? parameter.storageClass : tf.parameterList.stc) & (STC.scope_),
6860 else if (exp.e1.op == EXP.scope_)
6914 ve2.var.storage_class |= STC.scope_;
9969 auto vd = copyToTemp(STC.scope_, "__setctor", ae.e2);
11361 if (e2x.op == EXP.type || e2x.op == EXP.scope_)
12280 case EXP.scope_: return dotMangleof(exp.loc, sc, exp.e1.isScopeExp().sds);
13022 if (exp.type.hasPointers() && v.storage_class & STC.scope_ &&
func.d 563 vthis.storage_class |= STC.scope_;
567 if (flags & FUNCFLAG.inferScope && !(vthis.storage_class & STC.scope_))
1351 // Initialize for inferring STC.scope_
dsymbol.d 1866 if (e.op == EXP.scope_)
dtemplate.d 860 /* Don't need to set STC.scope_ because this will only
2285 else if (ea && ea.op == EXP.scope_)
6705 if (ea.op == EXP.scope_)
7578 if (e.op == EXP.tuple || e.op == EXP.scope_ ||
8113 else if (ea && ea.op == EXP.scope_)
traits.d 1498 if (stc & STC.scope_ && !(stc & STC.scopeinferred))
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/linux/
tipc.d 55 byte scope_;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
traits.d 718 psc & PSC.scope_ ? "scope " : "",
1140 scope_ = 0x10, /// ditto
1190 static assert(pstc[2] == STC.scope_);
1215 case "scope": result |= scope_; break;
1265 static assert(test_pstc[0] == STC.scope_);
1571 scope_ = 1 << 13, /// ditto
1736 case "scope": res |= scope_; break;
2487 & ~FA.shared_ & ~FA.system & ~FA.return_ & ~FA.scope_;
5557 ((uprStc & STC.scope_) >= (lwrStc & STC.scope_)) &
    [all...]

Completed in 55 milliseconds

1 2