Searched defs:FromType (Results 1 - 12 of 12) sorted by relevance

/external/llvm/lib/Target/NVPTX/
H A DNVPTX.h114 enum FromType { enum in namespace:llvm::NVPTX::PTXLdStInstCode
/external/chromium/testing/gmock/test/
H A Dgmock-actions_test.cc519 class FromType { class in namespace:__anon3129
521 FromType(bool* is_converted) : converted_(is_converted) {} function in class:__anon3129::FromType
527 GTEST_DISALLOW_ASSIGN_(FromType);
532 ToType(const FromType& x) { *x.converted() = true; }
537 FromType x(&converted);
/external/clang/include/clang/Sema/
H A DOverload.h195 /// FromType - The type that this conversion is converting
523 QualType FromType, QualType ToType) {
525 Bad.init(Failure, FromType, ToType);
522 setBad(BadConversionSequence::FailureKind Failure, QualType FromType, QualType ToType) argument
/external/clang/lib/AST/
H A DASTDiagnostic.cpp232 static bool FormatTemplateTypeDiff(ASTContext &Context, QualType FromType,
258 QualType FromType = local
259 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.FromType));
263 if (FormatTemplateTypeDiff(Context, FromType, ToType, TDT.PrintTree,
278 Val = TDT.PrintFromType ? TDT.FromType : TDT.ToType;
390 /// FromType - When single type printing is selected, this is the type to be
393 QualType FromType; member in class:__anon3470::TemplateDiff
395 /// ToType - The type that FromType is compared to. Only in tree printing
423 /// FromType, ToType - The type arguments.
424 QualType FromType, ToTyp member in struct:__anon3470::TemplateDiff::DiffTree::DiffNode
472 SetNode(QualType FromType, QualType ToType) argument
561 GetNode(QualType &FromType, QualType &ToType) argument
771 QualType FromType, ToType; local
1001 QualType FromType, ToType; local
1081 PrintTypeNames(QualType FromType, QualType ToType, bool FromDefault, bool ToDefault, bool Same) argument
1196 TemplateDiff(ASTContext &Context, QualType FromType, QualType ToType, bool PrintTree, bool PrintFromType, bool ElideType, bool ShowColor) argument
1255 FormatTemplateTypeDiff(ASTContext &Context, QualType FromType, QualType ToType, bool PrintTree, bool PrintFromType, bool ElideType, bool ShowColors, std::string &S) argument
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp766 Type *FromType = FromVal->getType(); local
767 if (FromType == ToType && Offset == 0)
772 if (VectorType *VTy = dyn_cast<VectorType>(FromType)) {
773 unsigned FromTypeSize = TD.getTypeAllocSize(FromType);
/external/clang/lib/Sema/
H A DSemaCast.cpp972 QualType FromType = SrcExpr->getType(); local
975 FromType = FromType.getUnqualifiedType();
980 ToType, FromType,
H A DSemaExprObjC.cpp3145 QualType FromType = SubExpr->getType(); local
3153 } else if (T->isObjCARCBridgableType() && FromType->isCARCBridgableType()) {
3165 << FromType
3173 << FromType << br
3187 } else if (T->isCARCBridgableType() && FromType->isObjCARCBridgableType()) {
3199 SubExpr = ImplicitCastExpr::Create(Context, FromType,
3207 << (FromType->isBlockPointerType()? 1 : 0)
3208 << FromType
3227 << FromType << T << Kind
H A DSemaTemplateDeduction.cpp3335 QualType FromType = Conv->getConversionType(); local
3338 QualType P = Context.getCanonicalType(FromType);
H A DSemaExprCXX.cpp2501 QualType FromType = From->getType(); local
2529 if (Context.hasSameType(FromType, Context.OverloadTy)) {
2540 FromType = From->getType();
2551 FromType = FromType.getUnqualifiedType();
2559 FromType = Context.getArrayDecayedType(FromType);
2560 From = ImpCastExprToType(From, FromType, CK_ArrayToPointerDecay,
2565 FromType = Context.getPointerType(FromType);
[all...]
H A DSemaInit.cpp5567 QualType FromType = Args[0]->getType(); local
5572 << FromType
5574 S.HandleFunctionTypeMismatch(PDiag, FromType, DestType);
H A DSemaExpr.cpp2042 QualType FromType = From->getType(); local
2047 if (FromType->getAs<PointerType>()) {
2049 FromRecordType = FromType->getPointeeType();
2053 FromRecordType = FromType;
2062 if (FromType->getAs<PointerType>()) {
2063 FromRecordType = FromType->getPointeeType();
2066 FromRecordType = FromType;
2074 if (DestType->isDependentType() || FromType->isDependentType())
2125 FromType = QType;
2161 FromType
[all...]
H A DSemaOverload.cpp224 // Note that FromType has not necessarily been transformed by the
226 // check for their presence as well as checking whether FromType is
246 QualType FromType = getFromType(); local
249 // Note that FromType has not necessarily been transformed by the
253 FromType = Context.getArrayDecayedType(FromType);
255 if (Second == ICK_Pointer_Conversion && FromType->isAnyPointerType())
303 QualType FromType = getToType(0); local
313 if (FromType->isRealFloatingType() && ToType->isIntegralType(Ctx)) {
315 } else if (FromType
1161 QualType FromType = From->getType(); local
1236 IsNoReturnConversion(QualType FromType, QualType ToType, QualType &ResultTy) argument
1287 IsVectorConversion(ASTContext &Context, QualType FromType, QualType ToType, ImplicitConversionKind &ICK) argument
1346 QualType FromType = From->getType(); local
1645 IsIntegralPromotion(Expr *From, QualType FromType, QualType ToType) argument
1778 IsFloatingPointPromotion(QualType FromType, QualType ToType) argument
1810 IsComplexPromotion(QualType FromType, QualType ToType) argument
1904 IsPointerConversion(Expr *From, QualType FromType, QualType ToType, bool InOverloadResolution, QualType& ConvertedType, bool &IncompatibleObjC) argument
2057 isObjCPointerConversion(QualType FromType, QualType ToType, QualType& ConvertedType, bool &IncompatibleObjC) argument
2253 isObjCWritebackConversion(QualType FromType, QualType ToType, QualType &ConvertedType) argument
2311 IsBlockPointerConversion(QualType FromType, QualType ToType, QualType& ConvertedType) argument
2413 HandleFunctionTypeMismatch(PartialDiagnostic &PDiag, QualType FromType, QualType ToType) argument
2524 QualType FromType = (*N); local
2560 QualType FromType = From->getType(); local
2627 IsMemberPointerConversion(Expr *From, QualType FromType, QualType ToType, bool InOverloadResolution, QualType &ConvertedType) argument
2674 QualType FromType = From->getType(); local
2737 IsQualificationConversion(QualType FromType, QualType ToType, bool CStyle, bool &ObjCLifetimeConversion) argument
4598 QualType FromType = OrigFromType; local
[all...]

Completed in 434 milliseconds