Lines Matching full:allowed
6 // trivial constructor -- allowed
14 __device__ EC() {} // -- allowed in EC()
15 __device__ EC(int) {} // -- not allowed in EC()
20 __device__ ~ED() {} // -- allowed in ~ED()
24 __device__ ECD() {} // -- allowed in ECD()
25 __device__ ~ECD() {} // -- allowed in ~ECD()
28 // empty templated constructor -- allowed with no arguments
33 // undefined constructor -- not allowed
39 // undefined destructor -- not allowed
45 // empty constructor w/ initializer list -- not allowed
51 // non-empty constructor -- not allowed
57 // non-empty destructor -- not allowed
63 // no-constructor, virtual method -- not allowed
69 // virtual destructor -- not allowed.
74 // dynamic in-class field initializer -- not allowed
88 // undefined templated constructor -- not allowed
93 // non-empty templated constructor -- not allowed
99 // Regular base class -- allowed
102 // Incapsulated object of allowed class -- allowed
107 // array of allowed objects -- allowed
118 // .. though passing arguments is not allowed.
123 // Virtual base class -- not allowed
127 // not allowed
138 // not allowed