Home
last modified time | relevance | path

Searched refs:isAssociativeArray (Results 1 – 24 of 24) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/format/internal/
H A Dread.d17 import std.traits : isAggregateType, isArray, isAssociativeArray,
232 && (isArray!T || isAssociativeArray!T || is(T == enum)))
327 else static if (isAssociativeArray!T) in unformatRange()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dinit.h80 bool isAssociativeArray() const;
H A Dinit.d184 bool isAssociativeArray() const pure in isAssociativeArray() function
H A Dinitsem.d294 if (t.ty == Taarray || i.isAssociativeArray()) in initializerSemantic()
974 if (init.isAssociativeArray()) in inferType()
H A Dtraits.d565 if (e.ident == Id.isAssociativeArray) in semanticTraits()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dinit.h99 bool isAssociativeArray();
H A Dinit.c145 bool ArrayInitializer::isAssociativeArray() in isAssociativeArray() function
H A Dinitsem.c229 if (t->ty == Taarray || i->isAssociativeArray()) in visit()
558 if (init->isAssociativeArray()) in visit()
H A Dtraits.c522 else if (e->ident == Id::isAssociativeArray) in semanticTraits()
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/
H A Dhash.d119 else static if (__traits(isAssociativeArray, T)) in canBitwiseHash()
639 size_t hashOf(T)(T aa) if (!is(T == enum) && __traits(isAssociativeArray, T))
655 size_t hashOf(T)(T aa, size_t seed) if (!is(T == enum) && __traits(isAssociativeArray, T))
H A Dtraits.d352 __traits(isAssociativeArray, T) || is (T == class) || is(T == interface); in hasIndirections()
372 …enum hasUnsharedIndirections = isDelegate!T || __traits(isAssociativeArray, T); // TODO: how to ha… in hasUnsharedIndirections()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dtraits.d857 else static if (isAssociativeArray!T) in fqnType()
3001 else static if (isAssociativeArray!(T))
3174 else static if (isAssociativeArray!T)
6109 static if (__traits(isAssociativeArray, X))
6151 __traits(isAssociativeArray, X) || is(X == typeof(null)))
7054 enum bool isAssociativeArray(T) = __traits(isAssociativeArray, T);
7061 static assert( isAssociativeArray!(int[string]));
7062 static assert( isAssociativeArray!(S[S]));
7063 static assert(!isAssociativeArray!(string[]));
7064 static assert(!isAssociativeArray!S);
[all …]
H A Dvariant.d520 else static if (isAssociativeArray!(A)) in VariantN()
540 … else static if (isAssociativeArray!(A) && is(typeof((*zis)[A.init.keys[0]] = A.init.values[0]))) in VariantN()
576 static if (isArray!(A) || isAssociativeArray!(A)) in VariantN()
H A Dgetopt.d940 else static if (isAssociativeArray!(typeof(*receiver))) in handleOption()
H A Dconv.d1728 if (!isImplicitlyConvertible!(S, T) && isAssociativeArray!S &&
1729 isAssociativeArray!T && !is(T == enum))
4358 isAssociativeArray!Target && !is(Target == enum))
H A Dtypecons.d2240 if (is(T == class) || is(T == interface) || isAssociativeArray!T)
2316 if (is(T == class) || is(T == interface) || isDynamicArray!T || isAssociativeArray!T)
2466 if (is(T == class) || is(T == interface) || isDynamicArray!T || isAssociativeArray!T)
H A Darray.d805 if (isAssociativeArray!AA)
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dtraits.d765 else static if (isAssociativeArray!T) in fqnType()
2676 else static if (isAssociativeArray!(T[0]))
2772 else static if (isAssociativeArray!(T[0]))
3104 isAssociativeArray!T || is (T == class) || is(T == interface);
6260 enum bool isAssociativeArray(T) = __traits(isAssociativeArray, T);
6274 static assert( isAssociativeArray!(Q!T));
6275 static assert(!isAssociativeArray!(SubTypeOf!(Q!T)));
6279 static assert(!isAssociativeArray!Foo);
6280 static assert(!isAssociativeArray!int);
6281 static assert(!isAssociativeArray!(int[]));
[all …]
H A Dvariant.d422 else static if (isAssociativeArray!(A)) in VariantN()
442 else static if (isAssociativeArray!(A)) in VariantN()
477 static if (isArray!(A) || isAssociativeArray!(A)) in VariantN()
H A Dformat.d4624 static if (isAssociativeArray!T)
4673 static if (isAssociativeArray!T)
5129 if (isInputRange!Range && isAssociativeArray!T && !is(T == enum))
5226 else static if (isAssociativeArray!T)
H A Dgetopt.d937 else static if (isAssociativeArray!(typeof(*receiver))) in handleOption()
H A Dconv.d1576 if (isAssociativeArray!S &&
1577 isAssociativeArray!T && !is(T == enum))
3608 isAssociativeArray!Target && !is(Target == enum))
H A Dtypecons.d1918 if (is(T == class) || is(T == interface) || isAssociativeArray!T)
1977 if (is(T == class) || is(T == interface) || isDynamicArray!T || isAssociativeArray!T)
2048 if (is(T == class) || is(T == interface) || isDynamicArray!T || isAssociativeArray!T)
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/algorithm/
H A Dsearching.d1302 static if (is(T == class) || is(T == interface) || isDynamicArray!T || isAssociativeArray!T) in RebindableOrUnqual()