Home
last modified time | relevance | path

Searched refs:isAggregateType (Results 1 – 25 of 46) sorted by relevance

12

/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/format/internal/
H A Dread.d17 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 Dtraits.d392 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 Ddassert.d178 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 DAnalysis.cpp429 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 DAMDGPULateCodeGenPrepare.cpp117 if (Ty->isAggregateType()) in canWidenScalarExtLoad()
H A DAMDGPULowerKernelArguments.cpp138 bool DoShiftOpt = Size < 32 && !ArgTy->isAggregateType(); in runOnFunction()
H A DAMDGPURewriteOutArguments.cpp134 if (DestEltTy->isAggregateType()) in checkArgumentUses()
H A DAMDGPUPromoteAlloca.cpp463 if (FromTy->isAggregateType() || ToTy->isAggregateType() || in tryPromoteAllocaToVector()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/FuzzMutate/
H A DOpDescriptor.h174 return V->getType()->isAggregateType(); in anyAggregateType()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dtraits.d749 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 Dmeta.d250 import std.traits : isAggregateType, Unqual;
253 if (!isAggregateType!T || is(Unqual!T == T))
H A Dstdio.d1404 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 Dprimitives.d414 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 DType.h265 bool isAggregateType() const { in isAggregateType() function
/netbsd-src/external/apache2/llvm/dist/llvm/lib/FuzzMutate/
H A DOperations.cpp183 assert(T->isAggregateType() && "Not a struct or array"); in getAggregateNumElements()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dtraits.d840 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 Dmeta.d80 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 DCanonicalType.h287 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isAggregateType)
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp628 if (!T->isAggregateType()) in unpackLoadToAggregate()
1160 if (!T->isAggregateType()) in unpackStoreToAggregate()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp676 if (T->isAggregateType()) { in processStore()
817 if (T->isAggregateType()) { in processStore()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp364 } else if (Ty->isAggregateType() || Ty->isVectorTy() || Ty->isIntegerTy(128)) { in printReturnValStr()
1461 if (Ty->isAggregateType() || Ty->isVectorTy() || Ty->isIntegerTy(128)) { in emitFunctionParamList()
H A DNVPTXISelLowering.cpp1280 } 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 DMipsCallLowering.cpp342 if (T->isAggregateType()) in isSupportedReturnType()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
H A DBPFISelLowering.cpp514 if (MF.getFunction().getReturnType()->isAggregateType()) { in LowerReturn()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DVectorUtils.cpp196 if (!PtrTy || PtrTy->isAggregateType()) in getStrideFromPointer()

12