| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | escape.c | 972 DotVarExp *dve = (DotVarExp *)e->e1; in escapeByValue() local 973 FuncDeclaration *fd = dve->var->isFuncDeclaration(); in escapeByValue() 978 dve->e1->accept(this); in escapeByValue() 980 escapeByRef(dve->e1, er); in escapeByValue() 982 else if (dve->var->storage_class & STCreturn || tf->isreturn) in escapeByValue() 984 if (dve->var->storage_class & STCscope) in escapeByValue() 985 dve->e1->accept(this); in escapeByValue() 986 else if (dve->var->storage_class & STCref) in escapeByValue() 987 escapeByRef(dve->e1, er); in escapeByValue() 1179 DotVarExp *dve = (DotVarExp *)e->e1; in escapeByRef() local [all …]
|
| H A D | safe.c | 38 DotVarExp *dve = (DotVarExp *)e; in checkUnsafeAccess() local 39 if (VarDeclaration *v = dve->var->isVarDeclaration()) in checkUnsafeAccess()
|
| H A D | expressionsem.c | 3112 DotVarExp *dve; in visit() local 3117 dve = (DotVarExp *)(exp->e1); in visit() 3119 s = dve->var; in visit() 3124 dve = NULL; in visit() 3192 dve->var = exp->f; in visit() 3376 DotVarExp *dve = (DotVarExp *)exp->e1; in visit() local 3377 … exp->f = resolveFuncCall(exp->loc, sc, dve->var, tiargs, dve->e1->type, exp->arguments, 2); in visit() 3382 dve->var = exp->f; in visit() 3383 dve->type = exp->f->type; in visit() 3384 dve->hasOverloads = false; in visit() [all …]
|
| H A D | traits.c | 826 DotVarExp *dve = (DotVarExp *)ex; in semanticTraits() local 827 f = dve->var->isFuncDeclaration(); in semanticTraits() 828 if (dve->e1->op == TOKdottype || dve->e1->op == TOKthis) in semanticTraits() 831 ex = dve->e1; in semanticTraits()
|
| H A D | expression.c | 371 DotVarExp *dve = (DotVarExp *)e1; variable 372 s = dve->var->isFuncDeclaration(); 374 tthis = dve->e1->type; 618 DotVarExp *dve = (DotVarExp *)e1; in resolvePropertiesOnly() local 619 fd = dve->var->isFuncDeclaration(); in resolvePropertiesOnly() 1253 DotVarExp *dve = (DotVarExp *)ce->e1; in valueNoDtor() local 1254 if (dve->var->isCtorDeclaration()) in valueNoDtor() 1257 if (dve->e1->op == TOKcomma) in valueNoDtor() 1259 CommaExp *comma = (CommaExp *)dve->e1; in valueNoDtor() 5614 DotVarExp *dve = (DotVarExp *)ae1; variable [all …]
|
| H A D | dinterpret.c | 3602 DotVarExp *dve = (DotVarExp*)e1x; variable 3603 Expression *ex = dve->e1; 3607 VarDeclaration *v = dve->var->isVarDeclaration(); 4628 DotVarExp *dve = (DotVarExp *)ecall; in visit() local 4631 pthis = dve->e1; in visit() 4632 fd = dve->var->isFuncDeclaration(); in visit() 4636 pthis = ((DotTypeExp *)dve->e1)->e1; in visit()
|
| H A D | mtype.c | 8610 DotVarExp *dve = new DotVarExp(e->loc, e, sym->vthis); in dotExp() local 8611 dve->type = cdp->type->addMod(e->type->mod); in dotExp() 8612 return dve; in dotExp() 8642 DotVarExp *dve = new DotVarExp(e->loc, e, sym->vthis); in dotExp() local 8643 dve->type = sym->vthis->type->addMod(e->type->mod); in dotExp() 8644 return dve; in dotExp()
|
| H A D | dcast.c | 847 DotVarExp *dve = (DotVarExp *)e->e1; in implicitConvTo() local 848 Type *targ = dve->e1->type; in implicitConvTo()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | escape.d | 476 DotVarExp dve = ce.e1.isDotVarExp(); in checkConstructorEscape() local 477 CtorDeclaration ctor = dve.var.isCtorDeclaration(); in checkConstructorEscape() 496 if (checkParamArgumentReturn(sc, dve.e1, arg, p, gag)) in checkConstructorEscape() 1736 DotVarExp dve = e.e1.isDotVarExp(); in visit() local 1737 FuncDeclaration fd = dve.var.isFuncDeclaration(); in visit() 1770 dve.e1.accept(this); in visit() 1780 dve.e1.accept(this); in visit() 1783 escapeByRef(dve.e1, er, live); in visit() 1790 … StorageClass stc = dve.var.storage_class & (STC.return_ | STC.scope_ | STC.ref_); in visit() 1796 dve.e1.accept(this); in visit() [all …]
|
| H A D | safe.d | 51 DotVarExp dve = cast(DotVarExp)e; in checkUnsafeAccess() local 52 if (VarDeclaration v = dve.var.isVarDeclaration()) in checkUnsafeAccess()
|
| H A D | traits.d | 83 if (auto dve = e.isDotVarExp()) in getDsymbolWithoutExpCtx() local 84 return dve.var; in getDsymbolWithoutExpCtx() 1082 else if (auto dve = ex.isDotVarExp) in semanticTraits() local 1084 if (dve.var.isFuncDeclaration() || dve.var.isOverDeclaration()) in semanticTraits() 1085 f = dve.var; in semanticTraits() 1086 if (dve.e1.op == EXP.dotType || dve.e1.op == EXP.this_) in semanticTraits() 1089 ex = dve.e1; in semanticTraits()
|
| H A D | expressionsem.d | 793 DotVarExp dve = e1.isDotVarExp(); in resolvePropertiesOnly() local 794 return handleFuncDecl(dve.var.isFuncDeclaration()); in resolvePropertiesOnly() 1242 DotVarExp dve = e1.isDotVarExp(); 1243 s = dve.var; 1245 tthis = dve.e1.type; 4645 DotVarExp dve; in visit() local 4650 dve = cast(DotVarExp)exp.e1; in visit() 4652 s = dve.var; in visit() 4657 dve = null; in visit() 4720 dve.var = exp.f; in visit() [all …]
|
| H A D | expression.d | 420 if (auto dve = ce.e1.isDotVarExp()) in valueNoDtor() local 422 if (dve.var.isCtorDeclaration()) in valueNoDtor() 425 if (auto comma = dve.e1.isCommaExp()) in valueNoDtor() 1008 if (auto dve = this.isDotVarExp()) in modifiableLvalue() local 1010 if (isNeedThisScope(sc, dve.var)) in modifiableLvalue() 5105 if (auto dve = e1.isDotVarExp()) in isLvalue() local 5106 if (dve.var.isCtorDeclaration()) in isLvalue() 5169 if (auto dve = ae1.isDotVarExp()) variable 5172 *hasOverloads = dve.hasOverloads; 5173 return dve.var.isFuncDeclaration(); [all …]
|
| H A D | ctfeexpr.d | 401 else if (auto dve = e.isDotVarExp()) in copyLiteral() local 403 emplaceExp!(DotVarExp)(&ue, e.loc, dve.e1, dve.var, dve.hasOverloads); in copyLiteral() 721 if (auto dve = e.isDotVarExp()) in getAggregateFromPointer() local 723 auto ex = dve.e1; in getAggregateFromPointer() 724 const v = dve.var.isVarDeclaration(); in getAggregateFromPointer()
|
| H A D | optimize.d | 482 if (auto dve = e.isDotVarExp()) in Expression_optimize() local 484 auto v = dve.var.isVarDeclaration(); in Expression_optimize() 488 if (getVarAndOffset(dve.e1, var, eint, offset)) in Expression_optimize()
|
| H A D | opover.d | 862 auto dve = ae.e1.isDotVarExp(); in visitBin() local 863 if (auto ad = dve.var.isMember2()) in visitBin() 869 if (dve.var == ad.aliasthis.sym) in visitBin()
|
| H A D | dinterpret.d | 3282 else if (auto dve = e.isDotVarExp()) in findParentVar() local 3283 e = dve.e1; in findParentVar() 3743 if (auto dve = e1x.isDotVarExp()) variable 3745 auto ex = dve.e1; 3749 auto v = dve.var.isVarDeclaration(); 3799 else if (auto dve = e1.isDotVarExp()) in assignToLvalue() local 3804 auto ex = dve.e1; in assignToLvalue() 4743 if (auto dve = ecall.isDotVarExp()) in visit() local 4746 pthis = dve.e1; in visit() 4747 fd = dve.var.isFuncDeclaration(); in visit()
|
| H A D | typesem.d | 4334 auto dve = new DotVarExp(e.loc, e, mt.sym.vthis); in dotExp() local 4335 dve.type = cdp.type.addMod(e.type.mod); in dotExp() 4336 return dve; in dotExp() 4367 auto dve = new DotVarExp(e.loc, e, mt.sym.vthis); in dotExp() local 4368 dve.type = mt.sym.vthis.type.addMod(e.type.mod); in dotExp() 4369 return dve; in dotExp()
|
| H A D | dtoh.d | 2354 if (auto dve = exp.isDotVarExp()) 2355 source = dve.var.type;
|
| H A D | dcast.d | 901 if (auto dve = e.e1.isDotVarExp()) in implicitConvTo() local 905 Type targ = dve.e1.type; in implicitConvTo()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/ |
| H A D | toir.cc | 994 if (DotVarExp *dve = (s->exp->isCallExp () in visit() local 998 if (dve->var->isCtorDeclaration ()) in visit() 1000 if (CommaExp *ce = dve->e1->isCommaExp ()) in visit() 1020 sle = dve->e1->isStructLiteralExp (); in visit()
|
| H A D | expr.cc | 1657 DotVarExp *dve = e1b->isDotVarExp (); in visit() local 1660 if (dve->e1->op == EXP::structLiteral) in visit() 1662 StructLiteralExp *sle = dve->e1->isStructLiteralExp (); in visit() 1666 FuncDeclaration *fd = dve->var->isFuncDeclaration (); in visit() 1678 tree thisexp = build_expr (dve->e1); in visit()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/ |
| H A D | expr.cc | 1747 DotVarExp *dve = (DotVarExp *) e1b; in visit() local 1750 if (dve->e1->op == TOKstructliteral) in visit() 1752 StructLiteralExp *sle = (StructLiteralExp *) dve->e1; in visit() 1756 FuncDeclaration *fd = dve->var->isFuncDeclaration (); in visit() 1768 tree thisexp = build_expr (dve->e1); in visit()
|
| /netbsd-src/external/gpl2/grep/dist/po/ |
| H A D | sl.po | 257 "manj kot dve DATOTEKI, privzamemo izbiro -h. Izhodna koda je ni�, �e smo VZOREC\n"
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-runtime/po/ |
| H A D | sl.po | 704 #~ msgstr "potrebni sta natančno dve vhodni datoteki" 720 #~ "Preverimo, če dve podani datoteki v obliki Uniforum vsebujeta isti nabor\n" 775 #~ msgstr "podani morata biti vsaj dve datoteki" 1757 #~ "Združi dve datoteki .po v obliki Uniforum. Datoteka def.po je obstoječa\n"
|