Home | History | Annotate | Download | only in Sema

Lines Matching refs:FromType

3076   QualType FromType = From->getType();
3101 if (Context.hasSameType(FromType, Context.OverloadTy)) {
3112 FromType = From->getType();
3123 QualType InitialFromType = FromType;
3127 if (const AtomicType *FromAtomic = FromType->getAs<AtomicType>()) {
3128 FromType = FromAtomic->getValueType().getUnqualifiedType();
3129 From = ImplicitCastExpr::Create(Context, FromType, CK_AtomicToNonAtomic,
3139 FromType = From->getType();
3144 FromType = Context.getArrayDecayedType(FromType);
3145 From = ImpCastExprToType(From, FromType, CK_ArrayToPointerDecay,
3150 FromType = Context.getPointerType(FromType);
3151 From = ImpCastExprToType(From, FromType, CK_FunctionToPointerDecay,
3201 assert(FromType->castAs<EnumType>()->getDecl()->isFixed() &&
3327 FromType = Context.FloatTy;
3331 ScalarTypeToBooleanCastKind(FromType),