Searched refs:checkModifiable (Results 1 - 7 of 7) sorted by relevance

/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dexpression.h191 virtual int checkModifiable(Scope *sc, int flag = 0);
605 int checkModifiable(Scope *sc, int flag);
822 int checkModifiable(Scope *sc, int flag);
899 int checkModifiable(Scope *sc, int flag);
996 int checkModifiable(Scope *sc, int flag);
1078 int checkModifiable(Scope *sc, int flag);
1097 int checkModifiable(Scope *sc, int flag);
1422 int checkModifiable(Scope *sc, int flag);
H A Dexpression.c2227 int Expression::checkModifiable(Scope *, int) function in class:Expression
2237 if (checkModifiable(sc) == 1)
4426 int VarExp::checkModifiable(Scope *sc, int flag) function in class:VarExp
4428 //printf("VarExp::checkModifiable %s", toChars());
5194 // should check e1->checkModifiable() ?
5392 int DotVarExp::checkModifiable(Scope *sc, int flag) function in class:DotVarExp
5394 //printf("DotVarExp::checkModifiable %s %s\n", toChars(), type->toChars());
5402 return e1->checkModifiable(sc, flag);
5678 int PtrExp::checkModifiable(Scope *sc, int flag) function in class:PtrExp
5687 return ae->e1->checkModifiable(s
5836 int SliceExp::checkModifiable(Scope *sc, int flag) function in class:SliceExp
6081 int CommaExp::checkModifiable(Scope *sc, int flag) function in class:CommaExp
6143 int IndexExp::checkModifiable(Scope *sc, int flag) function in class:IndexExp
6637 int CondExp::checkModifiable(Scope *sc, int flag) function in class:CondExp
[all...]
H A Dstatementsem.c1101 if (fs->aggr->checkModifiable(sc2, 1) == 2)
H A Dexpressionsem.c5518 if (exp->op == TOKassign && exp->e1->checkModifiable(sc) == 2)
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dexpression.d91 /// Return value for `checkModifiable`
1003 if (checkModifiable(this, sc) == Modifiable.yes)
4604 // should check e1.checkModifiable() ?
7048 extern(D) Modifiable checkModifiable(Expression exp, Scope* sc, ModifyFlags flag = ModifyFlags.none)
7055 //printf("VarExp::checkModifiable %s", varExp.toChars());
7062 //printf("DotVarExp::checkModifiable %s %s\n", dotVarExp.toChars(), dotVarExp.type.toChars());
7135 return dotVarExp.e1.checkModifiable(sc, flag);
7145 return ae.e1.checkModifiable(sc, flag);
7152 //printf("SliceExp::checkModifiable %s\n", sliceExp.toChars());
7156 return e1.checkModifiable(s
[all...]
H A Dstatementsem.d1032 if (fs.aggr.checkModifiable(sc2, ModifyFlags.noError) == Modifiable.initialization)
H A Dexpressionsem.d9026 && exp.e1.checkModifiable(sc) == Modifiable.initialization)

Completed in 265 milliseconds