Home | History | Annotate | Download | only in AST

Lines Matching refs:ResultType

1383       QualType ResultType = getObjCGCQualType(Pointee, GCAttr);
1384 return getPointerType(ResultType);
5838 QualType ResultType = mergeTypes(LHSPointee, RHSPointee, false,
5840 if (ResultType.isNull()) return QualType();
5841 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
5843 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
5845 return getPointerType(ResultType);
5856 QualType ResultType = mergeTypes(LHSPointee, RHSPointee, OfBlockPointer,
5858 if (ResultType.isNull()) return QualType();
5859 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType))
5861 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType))
5863 return getBlockPointerType(ResultType);
5874 QualType ResultType = mergeTypes(LHSValue, RHSValue, false,
5876 if (ResultType.isNull()) return QualType();
5877 if (getCanonicalType(LHSValue) == getCanonicalType(ResultType))
5879 if (getCanonicalType(RHSValue) == getCanonicalType(ResultType))
5881 return getAtomicType(ResultType);
5897 QualType ResultType = mergeTypes(LHSElem, RHSElem, false, Unqualified);
5898 if (ResultType.isNull()) return QualType();
5899 if (LCAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
5901 if (RCAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
5903 if (LCAT) return getConstantArrayType(ResultType, LCAT->getSize(),
5905 if (RCAT) return getConstantArrayType(ResultType, RCAT->getSize(),
5909 if (LVAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType))
5911 if (RVAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType))
5925 if (getCanonicalType(LHSElem) == getCanonicalType(ResultType)) return LHS;
5926 if (getCanonicalType(RHSElem) == getCanonicalType(ResultType)) return RHS;
5927 return getIncompleteArrayType(ResultType,
6025 QualType ResultType
6028 return ResultType;