Searched refs:STCin (Results 1 - 13 of 13) sorted by relevance

/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddmangle.c822 switch (p->storageClass & (STCin | STCout | STCref | STClazy))
825 case STCin:
H A Ddeclaration.h49 #define STCin 0x800LL // in parameter macro
97 STCout | STCin |
156 bool isIn() { return (storage_class & STCin) != 0; }
H A Dstatementsem.c1094 var->storage_class |= p->storageClass & (STCin | STCout | STCref | STC_TYPECTOR);
1318 ve->storage_class |= p->storageClass & (STCin | STCout | STCref | STC_TYPECTOR);
1573 params->push(new Parameter(STCin, Type::tsize_t, NULL, NULL));
1638 params->push(new Parameter(STCin, tn->arrayOf(), NULL, NULL));
H A Dparse.c974 (storageClass & STCin && stc & (STCconst | STCscope)) ||
975 (stc & STCin && storageClass & (STCconst | STCscope)))
2020 case TOKin: stc = STCin; goto L2;
2034 { stc = storageClass & (STCin | STCout | STCref | STClazy);
2037 !(stc == (STCin | STCref)))
H A Dtraits.c1092 else if (stc & STCin)
H A Dhdrgen.c3111 else if (p->storageClass & STCin)
3288 { STCin, TOKin, NULL },
H A Dmtype.c1159 if (stc & (STCconst | STCin))
4833 fparams->push(new Parameter(STCin, this, NULL, NULL));
5776 fparam->storageClass &= ~(STC_TYPECTOR | STCin);
9494 const StorageClass stc = STCref | STCin | STCout | STClazy;
H A Ddeclaration.c1377 (!(storage_class & (STCfield | STCin | STCforeach | STCparameter | STCresult))
H A Ddtemplate.c797 fparam->storageClass &= (STCin | STCout | STCref | STClazy | STCfinal | STC_TYPECTOR | STCnodtor);
3556 fparam->storageClass &= ~(STC_TYPECTOR | STCin);
H A Dfunc.c1598 stc |= fparam->storageClass & (STCin | STCout | STCref | STCreturn | STCscope | STClazy | STCfinal | STC_TYPECTOR | STCnodtor);
H A Dexpression.c1951 Parameter *arg = new Parameter(STCin, (*arguments)[nparams + i]->type, NULL, NULL);
H A Dexpressionsem.c2005 args->push(new Parameter(STCin, b->type, NULL, NULL));
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddeclaration.h49 #define STCin 0x800ULL /// `in` parameter macro
149 bool isIn() const { return (storage_class & STCin) != 0; }

Completed in 433 milliseconds