Home
last modified time | relevance | path

Searched refs:isDelegate (Results 1 – 11 of 11) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/
H A Dtraits.d351 enum hasIndirections = isPointer!T || isDelegate!T || isDynamicArray!T || in hasIndirections()
372 …enum hasUnsharedIndirections = isDelegate!T || __traits(isAssociativeArray, T); // TODO: how to ha… in hasUnsharedIndirections()
448 template isDelegate(T...)
454 enum bool isDelegate = true; variable
459 enum bool isDelegate = is(W == delegate); variable
462 enum bool isDelegate = false; variable
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dtraits.d1183 static if (!isFunctionPointer!func && !isDelegate!func
2142 if (isFunctionPointer!T || isDelegate!T)
2165 static if (isDelegate!T)
2231 if (isFunctionPointer!T || isDelegate!T)
3002 enum isAliasingDelegate = isDelegate!T
3103 enum hasIndirections = isPointer!T || isDelegate!T || isDynamicArray!T ||
3221 enum bool unsharedDelegate = isDelegate!T
6619 template isDelegate(T...)
6625 enum bool isDelegate = true;
6630 enum bool isDelegate = is(W == delegate);
[all …]
H A Dconcurrency.d164 static assert(isFunctionPointer!t1 || isDelegate!t1); in checkops()
176 static assert(isFunctionPointer!t2 || isDelegate!t2); in checkops()
H A Dvariant.d487 static if (!isFunctionPointer!A && !isDelegate!A) in VariantN()
H A Dformat.d3976 if (isDelegate!T)
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dtraits.d1317 static if (!isFunctionPointer!func && !isDelegate!func
2331 if (isFunctionPointer!T || isDelegate!T)
2354 static if (isDelegate!T)
2422 if (isFunctionPointer!T || isDelegate!T)
3323 enum isAliasingDelegate = isDelegate!T
3603 enum bool unsharedDelegate = isDelegate!T
7455 enum bool isDelegate(alias T) = is(typeof(T) == delegate) || is(T == delegate);
7465 assert(isDelegate!dg);
7466 assert(isDelegate!(int delegate()));
7467 assert(isDelegate!(typeof(&func)));
[all …]
H A Dconcurrency.d236 static assert(isFunctionPointer!t1 || isDelegate!t1, in checkops()
H A Dvariant.d586 static if (!isFunctionPointer!A && !isDelegate!A) in VariantN()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExprObjC.h1404 void setDelegateInitCall(bool isDelegate) { IsDelegateInitCall = isDelegate; } in setDelegateInitCall() argument
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/format/internal/
H A Dwrite.d3253 if (isDelegate!T)
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/range/
H A Dpackage.d11519 import std.traits : isDelegate, isFunctionPointer;
11532 static if (isFunctionPointer!_fun || isDelegate!_fun)