Home
last modified time | relevance | path

Searched refs:inObject (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddclass.d199 … this(const ref Loc loc, Identifier id, BaseClasses* baseclasses, Dsymbols* members, bool inObject) in this() argument
234 if (!inObject) in this()
240 if (!inObject) in this()
246 if (!inObject) in this()
252 if (!inObject) in this()
258 if (!inObject) in this()
264 if (!inObject) in this()
276 if (!inObject) in this()
282 if (!inObject) in this()
288 if (!inObject) in this()
[all …]
H A Ddstruct.d221 extern (D) this(const ref Loc loc, Identifier id, bool inObject) in this() argument
229 if (inObject) in this()
236 static StructDeclaration create(const ref Loc loc, Identifier id, bool inObject) in create() argument
238 return new StructDeclaration(loc, id, inObject); in create()
H A Daggregate.h188 static StructDeclaration *create(const Loc &loc, Identifier *id, bool inObject);
281 …create(const Loc &loc, Identifier *id, BaseClasses *baseclasses, Dsymbols *members, bool inObject);
H A Dparse.d3278 bool inObject = md && !md.packages && md.id == Id.object; in parseAggregate() local
3279 a = new AST.ClassDeclaration(loc, id, baseclasses, members, inObject); in parseAggregate()
3285 bool inObject = md && !md.packages && md.id == Id.object; in parseAggregate() local
3286 a = new AST.StructDeclaration(loc, id, inObject); in parseAggregate()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddclass.c43 …assDeclaration(Loc loc, Identifier *id, BaseClasses *baseclasses, Dsymbols *members, bool inObject) in ClassDeclaration() argument
88 if (!inObject) in ClassDeclaration()
95 if (!inObject) in ClassDeclaration()
102 if (!inObject) in ClassDeclaration()
109 if (!inObject) in ClassDeclaration()
116 if (!inObject) in ClassDeclaration()
123 if (!inObject) in ClassDeclaration()
137 if (!inObject) in ClassDeclaration()
144 if (!inObject) in ClassDeclaration()
151 if (!inObject) in ClassDeclaration()
[all …]
H A Daggregate.h203 StructDeclaration(Loc loc, Identifier *id, bool inObject);
204 static StructDeclaration *create(Loc loc, Identifier *id, bool inObject);
298 …ation(Loc loc, Identifier *id, BaseClasses *baseclasses, Dsymbols *members, bool inObject = false);
299 …ation *create(Loc loc, Identifier *id, BaseClasses *baseclasses, Dsymbols *members, bool inObject);
H A Ddstruct.c981 StructDeclaration::StructDeclaration(Loc loc, Identifier *id, bool inObject) in StructDeclaration() argument
1001 if (inObject) in StructDeclaration()
1008 StructDeclaration *StructDeclaration::create(Loc loc, Identifier *id, bool inObject) in create() argument
1010 return new StructDeclaration(loc, id, inObject); in create()
H A Dparse.c2284 bool inObject = md && !md->packages && md->id == Id::object; in parseAggregate() local
2285 a = new ClassDeclaration(loc, id, baseclasses, NULL, inObject); in parseAggregate()
2295 bool inObject = md && !md->packages && md->id == Id::object; in parseAggregate() local
2296 a = new StructDeclaration(loc, id, inObject); in parseAggregate()