Searched refs:OldType (Results 1 - 6 of 6) sorted by relevance

/external/eigen/Eigen/src/Core/
H A DMathFunctions.h314 template<typename OldType, typename NewType>
317 static inline NewType run(const OldType& x)
325 template<typename OldType, typename NewType>
326 inline NewType cast(const OldType& x)
328 return cast_impl<OldType, NewType>::run(x);
/external/clang/lib/Sema/
H A DSemaOverload.cpp1004 const FunctionProtoType *OldType = cast<FunctionProtoType>(OldQType); local
1011 (OldType->getNumParams() != NewType->getNumParams() ||
1012 OldType->isVariadic() != NewType->isVariadic() ||
1013 !FunctionParamTypesAreEqual(OldType, NewType)))
1032 OldType->getReturnType() != NewType->getReturnType()))
2608 bool Sema::FunctionParamTypesAreEqual(const FunctionProtoType *OldType, argument
2611 for (FunctionProtoType::param_type_iterator O = OldType->param_type_begin(),
2613 E = OldType->param_type_end();
2618 *ArgPos = O - OldType->param_type_begin();
H A DSemaDecl.cpp1731 QualType OldType; local
1733 OldType = OldTypedef->getUnderlyingType();
1735 OldType = Context.getTypeDeclType(Old);
1749 if (OldType != NewType &&
1750 !OldType->isDependentType() &&
1752 !Context.hasSameType(OldType, NewType)) {
1755 << Kind << NewType << OldType; local
2479 const FunctionType *OldType = cast<FunctionType>(OldQType); local
2481 FunctionType::ExtInfo OldTypeInfo = OldType->getExtInfo();
2523 << OldType
[all...]
H A DSemaDeclCXX.cpp635 QualType OldType = Old->getType(); local
641 OldType = OldType->getAs<ReferenceType>()->getPointeeType();
644 OldType = OldType->getAs<PointerType>()->getPointeeType();
647 OldType = OldType->getAs<MemberPointerType>()->getPointeeType();
657 OldType->getAs<FunctionProtoType>(), Old->getLocation(),
H A DTreeTransform.h4389 QualType OldType = ParamTypes[i]; local
4394 = dyn_cast<PackExpansionType>(OldType)) {
4444 OldType = Expansion->getPattern();
4447 NewType = getDerived().TransformType(OldType);
4449 NewType = getDerived().TransformType(OldType);
/external/clang/include/clang/Sema/
H A DSema.h2076 bool FunctionParamTypesAreEqual(const FunctionProtoType *OldType,

Completed in 164 milliseconds