Home
last modified time | relevance | path

Searched refs:Cfile (Results 1 – 13 of 13) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dimportc.d42 if (!(sc.flags & SCOPE.Cfile)) in cAdjustParamType()
78 if (!(sc.flags & SCOPE.Cfile)) in arrayFuncConv()
147 if (!(sc.flags & SCOPE.Cfile)) in carraySemantic()
H A Ddscope.d62 Cfile = 0x0800, /// C semantics apply enumerator
77 SCOPE.printf | SCOPE.scanf | SCOPE.Cfile;
178 sc.flags |= SCOPE.Cfile; in createGlobal()
460 else if (sc.flags & SCOPE.Cfile && sc.scopesym.isStructDeclaration()) in searchScopes()
656 if (!(flags & SCOPE.Cfile))
H A Dinitsem.d377 if (i.dim > edim && !(tsa.isIncomplete() && (sc.flags & SCOPE.Cfile))) in initializerSemantic()
428 if (i.exp.implicitConvTo(t) && !(sc.flags & SCOPE.Cfile)) in initializerSemantic()
436 if (sc.flags & SCOPE.Cfile) in initializerSemantic()
509 if (sc.flags & SCOPE.Cfile && in initializerSemantic()
522 if (sc.flags & SCOPE.Cfile && i.exp.isStringExp() && in initializerSemantic()
586 else if (sc.flags & SCOPE.Cfile && i.exp.isStringExp() && in initializerSemantic()
H A Dexpressionsem.d1248 else if (sc && sc.flags & SCOPE.Cfile && e1.isVarExp() && !e2)
2999 if (sc && sc.flags & SCOPE.Cfile) in visit()
3024 if (sc && sc.flags & SCOPE.Cfile) in visit()
3036 if (sc && sc.flags & SCOPE.Cfile) in visit()
3238 auto e = initializerToExpression(init, t, (sc.flags & SCOPE.Cfile) != 0); in visit()
4236 if (sc.flags & SCOPE.Cfile) in visit()
4418 else if (exp.e1.op == EXP.type && (sc && sc.flags & SCOPE.Cfile)) in visit()
5223 if (sc.flags & SCOPE.Cfile) in visit()
5256 if (v && (sc.flags & SCOPE.Cfile)) in visit()
5294 if (!(sc.flags & SCOPE.Cfile)) in visit()
[all …]
H A Ddsymbolsem.d143 if (sc.flags & SCOPE.Cfile && n == 0) // C11 6.7.5-6 allows 0 for alignment in getAlignment()
421 … dsym.type = dsym._init.initializerToExpression(null, (sc.flags & SCOPE.Cfile) != 0).type; in visit()
531 …oidInitializer()) ? dsym._init.initializerToExpression(null, (sc.flags & SCOPE.Cfile) != 0) : null; in visit()
888 if (sc.flags & SCOPE.Cfile && !dsym._init) in visit()
953 if (sc.flags & SCOPE.Cfile && in visit()
983 … e = dsym._init.initializerToExpression(null, (sc.flags & SCOPE.Cfile) != 0); in visit()
988 … e = dsym._init.initializerToExpression(null, (sc.flags & SCOPE.Cfile) != 0); in visit()
998 else if (sc.flags & SCOPE.Cfile && dsym.type.isTypeSArray() && in visit()
1066 sc.flags & SCOPE.Cfile) in visit()
2115 if (!(sc.flags & SCOPE.Cfile)) // C enum remains incomplete until members are done in visit()
[all …]
H A Dstatementsem.d129 if (sc.flags & SCOPE.Cfile) in checkAssignmentAsCondition()
217 if (!(sc.flags & SCOPE.Cfile) && discardValue(s.exp)) in package()
2321 … if (!ss.isFinal && (!ss._body || !ss._body.isErrorStatement()) && !(sc.flags & SCOPE.Cfile)) in package()
2329 if (sc.flags & SCOPE.Cfile) in package()
2375 if (!(sc.flags & SCOPE.Cfile) && ss.checkLabel()) in package()
3860 else if (!(sc.flags & SCOPE.Cfile) && gs.checkLabel()) in package()
H A Dsemantic3.d222 if (sc.flags & SCOPE.Cfile && funcdecl.isCMain() && f.next.ty == Tint32) in visit()
816 … if ((blockexit & BE.fallthru) && f.next.ty != Tvoid && !inlineAsm && !(sc.flags & SCOPE.Cfile)) in visit()
H A Ddsymbol.d821 if (sc.flags & SCOPE.Cfile && !this.isImport()) in addMember()
842 … !(sc && sc.flags & SCOPE.Cfile) && (ident == Id.__xalignof || ident == Id._mangleof)) in addMember()
H A Ddcast.d71 … if (const match = (sc && sc.flags & SCOPE.Cfile) ? e.cimplicitConvTo(t) : e.implicitConvTo(t)) in implicitCastTo()
1850 (!sc || !(sc.flags & SCOPE.Cfile))) in visitString()
2888 if (sc && sc.flags & SCOPE.Cfile) in typeMerge()
3664 if (global.params.fix16997 || sc.flags & SCOPE.Cfile) in fix16997()
H A Dclone.d812 if (sc.flags & SCOPE.Cfile) in buildXtoHash()
H A Dexpression.d3351 if (sc.flags & SCOPE.Cfile) in toLvalue()
4819 if (sc && sc.flags & SCOPE.Cfile) in toLvalue()
5396 if (sc && sc.flags & SCOPE.Cfile) in toLvalue()
H A Dtypesem.d1631 !(sc.flags & SCOPE.Cfile)) in typeSemantic()
3912 if (!(sc.flags & SCOPE.Cfile) && ident == Id._mangleof) in dotExp()
H A Dmtype.d4805 … m = (sc && sc.flags & SCOPE.Cfile) ? arg.cimplicitConvTo(tprm) : arg.implicitConvTo(tprm);