/external/llvm/include/llvm/IR/ |
D | GetElementPtrTypeIterator.h | 73 CompositeType *CT = cast<CompositeType>(CurTy.getPointer()); in getIndexedType() 86 } else if (CompositeType *CT = 87 dyn_cast<CompositeType>(CurTy.getPointer())) {
|
D | DerivedTypes.h | 148 class CompositeType : public Type { 150 explicit CompositeType(LLVMContext &C, TypeID tid) : Type(C, tid) {} in CompositeType() function 190 class StructType : public CompositeType { 194 : CompositeType(C, StructTyID), SymbolTableEntry(nullptr) {} in StructType() 305 class SequentialType : public CompositeType { 312 : CompositeType(ElType->getContext(), TID), ContainedType(ElType) { in SequentialType()
|
/external/guice/core/src/com/google/inject/internal/ |
D | MoreTypes.java | 139 } else if (type instanceof CompositeType) { in isFullySpecified() 140 return ((CompositeType) type).isFullySpecified(); in isFullySpecified() 146 return ((CompositeType) canonicalize(type)).isFullySpecified(); in isFullySpecified() 160 } else if (type instanceof CompositeType) { in canonicalize() 356 implements ParameterizedType, Serializable, CompositeType { 445 implements GenericArrayType, Serializable, CompositeType { 481 public static class WildcardTypeImpl implements WildcardType, Serializable, CompositeType { 547 private interface CompositeType { interface in MoreTypes
|
/external/llvm/lib/CodeGen/ |
D | Analysis.cpp | 377 static bool indexReallyValid(CompositeType *T, unsigned Idx) { in indexReallyValid() 401 static bool advanceToNextLeafType(SmallVectorImpl<CompositeType *> &SubTypes, in advanceToNextLeafType() 419 CompositeType *CT = cast<CompositeType>(DeeperType); in advanceToNextLeafType() 443 SmallVectorImpl<CompositeType *> &SubTypes, in firstRealType() 449 indexReallyValid(cast<CompositeType>(Next), 0)) { in firstRealType() 450 SubTypes.push_back(cast<CompositeType>(Next)); in firstRealType() 452 Next = cast<CompositeType>(Next)->getTypeAtIndex(0U); in firstRealType() 472 static bool nextRealType(SmallVectorImpl<CompositeType *> &SubTypes, in nextRealType() 577 SmallVector<CompositeType *, 4> RetSubTypes, CallSubTypes; in returnTypeIsEligibleForTailCall()
|
/external/deqp/external/vulkancts/ |
D | gen_framework.py | 175 class CompositeType: class 185 names = {CompositeType.CLASS_STRUCT: 'struct', CompositeType.CLASS_UNION: 'union'} 325 return CompositeType(type, name, members) 328 typeMap = { 'struct': CompositeType.CLASS_STRUCT, 'union': CompositeType.CLASS_UNION } 861 return type.typeClass == CompositeType.CLASS_STRUCT and \
|
/external/llvm/lib/IR/ |
D | Type.cpp | 626 Type *CompositeType::getTypeAtIndex(const Value *V) const { in getTypeAtIndex() 637 Type *CompositeType::getTypeAtIndex(unsigned Idx) const{ in getTypeAtIndex() 646 bool CompositeType::indexValid(const Value *V) const { in indexValid() 663 bool CompositeType::indexValid(unsigned Idx) const { in indexValid()
|
D | Instructions.cpp | 1552 CompositeType *CT = dyn_cast<CompositeType>(Agg); in getIndexedTypeInternal() 1899 Agg = cast<CompositeType>(Agg)->getTypeAtIndex(Index); in getIndexedType()
|
D | ConstantFold.cpp | 2174 Prev = Ty, Ty = cast<CompositeType>(Ty)->getTypeAtIndex(Idxs[i]), ++i) { in ConstantFoldGetElementPtrImpl()
|
/external/llvm/bindings/go/llvm/ |
D | DIBuilderBindings.cpp | 76 LLVMMetadataRef CompositeType, int IsLocalToUnit, int IsDefinition, in LLVMDIBuilderCreateFunction() argument 81 unwrap<DISubroutineType>(CompositeType), in LLVMDIBuilderCreateFunction()
|
D | DIBuilderBindings.h | 57 LLVMMetadataRef CompositeType, int IsLocalToUnit, int IsDefinition,
|
/external/llvm/lib/Transforms/IPO/ |
D | StripSymbols.cpp | 153 if (isa<CompositeType>(C->getType())) in RemoveDeadConstant()
|
D | ArgumentPromotion.cpp | 144 if (!isa<CompositeType>(type)) in isDenselyPacked() 820 ElTy = cast<CompositeType>(ElTy)->getTypeAtIndex(*II); in DoPromotion()
|
D | GlobalOpt.cpp | 145 if (isa<CompositeType>(InnerTy)) in isLeakCheckerRoot()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 1819 isa<CompositeType>(SrcElTy) && !SrcElTy->isPointerTy() && in visitBitCast() 1821 SrcElTy = cast<CompositeType>(SrcElTy)->getTypeAtIndex(0U); in visitBitCast()
|
D | InstructionCombining.cpp | 1439 if (CompositeType *CT = dyn_cast<CompositeType>(CurTy)) { in visitGetElementPtrInst()
|
/external/testng/lib-supplied/ |
D | guice-2.0.jar | META-INF/
META-INF/MANIFEST.MF
LICENSE
NOTICE
org/
org/testng/
... |
/external/llvm/lib/Transforms/Scalar/ |
D | ScalarReplAggregates.cpp | 2101 GepTy = cast<CompositeType>(GepTy)->getTypeAtIndex(0U); in RewriteGEP()
|