Home
last modified time | relevance | path

Searched refs:STCfield (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddeclaration.c1238 storage_class |= STCfield; in semantic()
1286 … if (storage_class & (STCstatic | STCextern | STCtls | STCgshared | STCmanifest | STCfield) || in semantic()
1334 …if (storage_class & (STCfield | STCout | STCref | STCstatic | STCmanifest | STCtls | STCgshared) |… in semantic()
1355 …ge_class & (STCstatic | STCextern | STCtls | STCgshared | STCmanifest | STCfield | STCparameter)) … in semantic()
1377 (!(storage_class & (STCfield | STCin | STCforeach | STCparameter | STCresult)) in semantic()
2107 if (storage_class & (STCnodtor | STCref | STCout | STCfield)) in callScopeDtor()
H A Ddeclaration.h44 #define STCfield 0x40LL macro
154 bool isField() { return (storage_class & STCfield) != 0; } in isField()
H A Dcppmangle.c552 if (!(d->storage_class & (STCextern | STCfield | STCgshared))) in mangle_variable()
H A Ddstruct.c926 vthis->storage_class |= STCfield; in makeNested()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddeclaration.h43 #define STCfield 0x40ULL /// is field of struct, union or class macro
147 bool isField() const { return (storage_class & STCfield) != 0; } in isField()