| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/format/internal/ |
| H A D | read.d | 17 import std.traits : isAggregateType, isArray, isAssociativeArray, 176 if (isInputRange!Range && is(StringTypeOf!T) && !isAggregateType!T && !is(T == enum)) 231 if (isInputRange!Range && !is(StringTypeOf!T) && !isAggregateType!T
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/ |
| H A D | traits.d | 392 enum bool isAggregateType(T) = is(T == struct) || is(T == union) || 395 enum bool isPointer(T) = is(T == U*, U) && !isAggregateType!T; 397 enum bool isDynamicArray(T) = is(DynamicArrayTypeOf!T) && !isAggregateType!T; 424 if (isAggregateType!T)
|
| H A D | dassert.d | 178 import core.internal.traits: isAggregateType; in miniFormat() 335 else static if (is(V : U[], U) && !isAggregateType!V) in miniFormat()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | Analysis.cpp | 429 while (DeeperType->isAggregateType()) { in advanceToNextLeafType() 471 ->isAggregateType()) { in firstRealType() 489 ->isAggregateType()); in nextRealType()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULateCodeGenPrepare.cpp | 117 if (Ty->isAggregateType()) in canWidenScalarExtLoad()
|
| H A D | AMDGPULowerKernelArguments.cpp | 138 bool DoShiftOpt = Size < 32 && !ArgTy->isAggregateType(); in runOnFunction()
|
| H A D | AMDGPURewriteOutArguments.cpp | 134 if (DestEltTy->isAggregateType()) in checkArgumentUses()
|
| H A D | AMDGPUPromoteAlloca.cpp | 463 if (FromTy->isAggregateType() || ToTy->isAggregateType() || in tryPromoteAllocaToVector()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/FuzzMutate/ |
| H A D | OpDescriptor.h | 174 return V->getType()->isAggregateType(); in anyAggregateType()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| H A D | traits.d | 749 else static if (isAggregateType!T || is(T == enum)) in fqnType() 5111 private template AliasThisTypeOf(T) if (isAggregateType!T) 5537 enum bool isBoolean(T) = is(BooleanTypeOf!T) && !isAggregateType!T; 5562 enum bool isIntegral(T) = is(IntegralTypeOf!T) && !isAggregateType!T; 5748 enum bool isScalarType(T) = is(T : real) && !isAggregateType!T; 5902 enum bool isSomeChar(T) = is(CharTypeOf!T) && !isAggregateType!T; 5955 enum bool isSomeString(T) = is(StringTypeOf!T) && !isAggregateType!T && !isStaticArray!T; 5993 enum bool isNarrowString(T) = (is(T : const char[]) || is(T : const wchar[])) && !isAggregateType!T… 6089 (isAggregateType!T || isStaticArray!T || is(T == enum)) 6200 enum bool isDynamicArray(T) = is(DynamicArrayTypeOf!T) && !isAggregateType!T; [all …]
|
| H A D | meta.d | 250 import std.traits : isAggregateType, Unqual; 253 if (!isAggregateType!T || is(Unqual!T == T))
|
| H A D | stdio.d | 1404 import std.traits : isBoolean, isIntegral, isAggregateType; 1409 static if (isAggregateType!A || is(A == enum)) 3579 import std.traits : isAggregateType; 3590 !isAggregateType!(typeof(args[0])))
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/range/ |
| H A D | primitives.d | 414 static if (isAutodecodableString!E && !isAggregateType!E && ( in put() 1097 && !(isAutodecodableString!R && !isAggregateType!R) 1107 import std.traits : isAggregateType, isAutodecodableString; 1119 …static assert(!(isAutodecodableString!R && !isAggregateType!R)); // narrow strings cannot be index… 1568 !(isAutodecodableString!R && !isAggregateType!R); 1679 && !(isAutodecodableString!R && !isAggregateType!R)
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | Type.h | 265 bool isAggregateType() const { in isAggregateType() function
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/FuzzMutate/ |
| H A D | Operations.cpp | 183 assert(T->isAggregateType() && "Not a struct or array"); in getAggregateNumElements()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
| H A D | traits.d | 840 else static if (isAggregateType!T || is(T == enum)) in fqnType() 6810 (isAggregateType!T || isStaticArray!T || is(T == enum)) 7097 enum bool isBuiltinType(T) = is(BuiltinTypeOf!T) && !isAggregateType!T; 7188 enum bool isAggregateType(T) = is(T == struct) || is(T == union) || 7199 static assert( isAggregateType!C); 7200 static assert( isAggregateType!U); 7201 static assert( isAggregateType!S); 7202 static assert( isAggregateType!I); 7203 static assert(!isAggregateType!void); 7204 static assert(!isAggregateType!string); [all …]
|
| H A D | meta.d | 80 import std.traits : isAggregateType, Unqual, isIterable; 236 if (!isAggregateType!T || is(Unqual!T == T))
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | CanonicalType.h | 287 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isAggregateType)
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineLoadStoreAlloca.cpp | 628 if (!T->isAggregateType()) in unpackLoadToAggregate() 1160 if (!T->isAggregateType()) in unpackStoreToAggregate()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | MemCpyOptimizer.cpp | 676 if (T->isAggregateType()) { in processStore() 817 if (T->isAggregateType()) { in processStore()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXAsmPrinter.cpp | 364 } else if (Ty->isAggregateType() || Ty->isVectorTy() || Ty->isIntegerTy(128)) { in printReturnValStr() 1461 if (Ty->isAggregateType() || Ty->isVectorTy() || Ty->isIntegerTy(128)) { in emitFunctionParamList()
|
| H A D | NVPTXISelLowering.cpp | 1280 } else if (retTy->isAggregateType() || retTy->isVectorTy() || in getPrototype() 1302 if (Ty->isAggregateType() || Ty->isVectorTy() || Ty->isIntegerTy(128)) { in getPrototype() 1456 if (Ty->isAggregateType() || Ty->isVectorTy() || Ty->isIntegerTy(128)) { in LowerCall() 2500 if (Ty->isAggregateType() || Ty->isIntegerTy(128)) { in LowerFormalArguments()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| H A D | MipsCallLowering.cpp | 342 if (T->isAggregateType()) in isSupportedReturnType()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/ |
| H A D | BPFISelLowering.cpp | 514 if (MF.getFunction().getReturnType()->isAggregateType()) { in LowerReturn()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | VectorUtils.cpp | 196 if (!PtrTy || PtrTy->isAggregateType()) in getStrideFromPointer()
|