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

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
tokens.h 175 delegate_, member in class:TOK
406 delegate_, member in class:EXP
delegatize.d 53 auto fld = new FuncLiteralDeclaration(loc, loc, tf, TOK.delegate_, null);
295 fld.tok = TOK.delegate_;
tokens.d 166 delegate_,
396 delegate_,
488 TOK.delegate_,
694 TOK.delegate_: "delegate",
ctfeexpr.d 360 if (e.op == EXP.function_ || e.op == EXP.delegate_ || e.op == EXP.symbolOffset || e.op == EXP.null_ || e.op == EXP.variable || e.op == EXP.dotVariable || e.op == EXP.int64 || e.op == EXP.float64 || e.op == EXP.char_ || e.op == EXP.complex80 || e.op == EXP.void_ || e.op == EXP.vector || e.op == EXP.typeid_)
1022 if (e.op == EXP.null_ || e.op == EXP.string_ || e.op == EXP.function_ || e.op == EXP.delegate_ || e.op == EXP.arrayLiteral || e.op == EXP.structLiteral || e.op == EXP.assocArrayLiteral || e.op == EXP.classReference)
1233 assert(e1.op == EXP.delegate_ && e2.op == EXP.delegate_);
1873 case EXP.delegate_:
parse.d 3926 case TOK.delegate_:
3946 t = save == TOK.delegate_ ? new AST.TypeDelegate(tf) : new AST.TypePointer(tf); // pointer to function
4787 token.value != TOK.delegate_ &&
4804 token.value == TOK.delegate_ ||
4947 case TOK.delegate_:
5001 save = TOK.delegate_;
5652 case TOK.delegate_:
7309 case TOK.delegate_:
8240 || token.value == TOK.delegate_ || token.value == TOK.return_
8391 case TOK.delegate_
    [all...]
semantic3.d 366 if (fld.tok == TOK.delegate_)
374 fld.tok = TOK.delegate_;
expression.d 1665 inout(DelegateExp) isDelegateExp() { return op == EXP.delegate_ ? cast(typeof(return))this : null; }
3775 TOK tok; // TOK.reserved, TOK.delegate_, TOK.function_
3815 else if (fd.tok == TOK.delegate_)
3890 if (tok == TOK.delegate_)
3992 if (tok == TOK.delegate_ ||
4983 super(loc, EXP.delegate_, __traits(classInstanceSize, DelegateExp), e);
7212 EXP.dotVariable, EXP.dotTemplateInstance, EXP.delegate_, EXP.dotType, EXP.call,
escape.d 1547 if (e.fd.tok == TOK.delegate_)
initsem.d 253 const tok = (t.ty == Tdelegate) ? TOK.delegate_ : TOK.function_;
opover.d 1579 assert(tab.ty == Tdelegate && fes.aggr.op == EXP.delegate_);
optimize.d 1318 case EXP.delegate_:
dcast.d 1465 case EXP.delegate_ : return visitDelegate(e.isDelegateExp());
2648 case EXP.delegate_ : return visitDelegate(e.isDelegateExp());
hdrgen.d 2593 case EXP.delegate_: return visitDelegate(e.isDelegateExp());
4070 EXP.delegate_ : "delegate",
statementsem.d 1417 if (fs.aggr.op == EXP.delegate_ && (cast(DelegateExp)fs.aggr).func.isNested() &&
1670 auto fld = new FuncLiteralDeclaration(fs.loc, fs.endloc, tf, TOK.delegate_, fs);
func.d 3670 TOK tok; // TOK.function_ or TOK.delegate_
3706 return tok == TOK.delegate_ ? super.isThis() : null;
expressionsem.d 4071 if ((exp.fd.isNested() && exp.fd.tok == TOK.delegate_) || (exp.tok == TOK.reserved && exp.fd.treq && exp.fd.treq.ty == Tdelegate))
4085 exp.fd.tok = TOK.delegate_;
5630 case TOK.delegate_:
dinterpret.d 6776 case EXP.delegate_:
dsymbolsem.d 3027 fld.tok = TOK.delegate_;

Completed in 85 milliseconds