Searched refs:CurTy (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/Support/
H A DGetElementPtrTypeIterator.h29 Type *CurTy; member in class:llvm::generic_gep_type_iterator
35 I.CurTy = Ty;
41 I.CurTy = 0;
54 return CurTy;
58 CompositeType *CT = cast<CompositeType>(CurTy);
69 if (CompositeType *CT = dyn_cast<CompositeType>(CurTy)) {
70 CurTy = CT->getTypeAtIndex(getOperand());
72 CurTy = 0;
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp956 Type *CurTy = Type::getInt32Ty(Context); local
983 V = UndefValue::get(CurTy);
990 CurTy = TypeList[Record[0]];
993 V = Constant::getNullValue(CurTy);
996 if (!CurTy->isIntegerTy() || Record.empty())
998 V = ConstantInt::get(CurTy, DecodeSignRotatedValue(Record[0]));
1001 if (!CurTy->isIntegerTy() || Record.empty())
1005 cast<IntegerType>(CurTy)->getBitWidth());
1013 if (CurTy->isHalfTy())
1015 else if (CurTy
[all...]
/external/clang/lib/AST/
H A DType.cpp229 const Type *CurTy = Qs.strip(Cur); local
230 switch (CurTy->getTypeClass()) {
234 const Class##Type *Ty = cast<Class##Type>(CurTy); \

Completed in 104 milliseconds