Lines Matching refs:isFunctionPointer
789 static if (isFunctionPointer!T) in fqnType()
1183 static if (!isFunctionPointer!func && !isDelegate!func
2142 if (isFunctionPointer!T || isDelegate!T)
2231 if (isFunctionPointer!T || isDelegate!T)
2672 static if (is(T[0] foo : U*, U) && !isFunctionPointer!(T[0]))
2768 static if (is(T[0] foo : U*, U) && !isFunctionPointer!(T[0]))
3100 else static if (isFunctionPointer!T)
6583 template isFunctionPointer(T...)
6589 enum bool isFunctionPointer = true;
6591 enum bool isFunctionPointer = false;
6594 enum bool isFunctionPointer = false;
6604 static assert( isFunctionPointer!fpfoo);
6605 static assert( isFunctionPointer!(void function()));
6608 static assert(!isFunctionPointer!dgbar);
6609 static assert(!isFunctionPointer!(void delegate()));
6610 static assert(!isFunctionPointer!foo);
6611 static assert(!isFunctionPointer!bar);
6613 static assert( isFunctionPointer!((int a) {}));