Home
last modified time | relevance | path

Searched defs:isAuto (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddeclaration.h147 bool isAuto() { return (storage_class & STCauto) != 0; } in isAuto() function
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddeclaration.h140 bool isAuto() const { return (storage_class & STCauto) != 0; } in isAuto() function
H A Ddeclaration.d474 final bool isAuto() const pure nothrow @nogc @safe in isAuto() function
H A Dtypesem.d1275 const isAuto = fparam.storageClass & (STC.auto_ | STC.autoref); in typeSemantic() local