Searched refs:FromType (Results 1 - 25 of 25) sorted by relevance

/external/v8/src/
H A Dproperty-details-inl.h16 Representation Representation::FromType(Type* type) { function in class:v8::internal::Representation
H A Dhydrogen-types.cc16 HType HType::FromType(typename T::TypeHandle type) { function in class:v8::internal::HType
33 HType HType::FromType<Type>(Type* type);
38 HType HType::FromType<HeapType>(Handle<HeapType> type);
H A Dhydrogen-types.h65 static HType FromType(typename T::TypeHandle type) WARN_UNUSED_RESULT;
H A Dproperty-details.h90 static Representation FromType(Type* type);
H A Dhydrogen.cc6054 field_type_ = HType::FromType<HeapType>(field_type);
9931 Representation rep = Representation::FromType(expr->type());
10272 Representation left_rep = Representation::FromType(left_type);
10273 Representation right_rep = Representation::FromType(right_type);
10289 left_rep = Representation::FromType(left_type);
10298 right_rep = Representation::FromType(right_type);
10383 Representation result_rep = Representation::FromType(result_type);
10796 Representation left_rep = Representation::FromType(left_type);
10797 Representation right_rep = Representation::FromType(right_type);
10798 Representation combined_rep = Representation::FromType(combined_typ
[all...]
/external/clang/lib/AST/
H A DASTDiagnostic.cpp251 static bool FormatTemplateTypeDiff(ASTContext &Context, QualType FromType,
275 QualType FromType = local
276 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.FromType));
280 if (FormatTemplateTypeDiff(Context, FromType, ToType, TDT.PrintTree,
295 Val = TDT.PrintFromType ? TDT.FromType : TDT.ToType;
414 /// FromType - When single type printing is selected, this is the type to be
417 QualType FromType; member in class:__anon811::TemplateDiff
419 /// ToType - The type that FromType is compared to. Only in tree printing
465 /// FromType, ToType - The type arguments.
466 QualType FromType, ToTyp member in struct:__anon811::TemplateDiff::DiffTree::DiffNode
537 SetNode(QualType FromType, QualType ToType) argument
634 GetNode(QualType &FromType, QualType &ToType) argument
880 QualType FromType = GetType(FromIter, FromDefaultTypeDecl); local
1382 QualType FromType, ToType; local
1492 PrintTypeNames(QualType FromType, QualType ToType, bool FromDefault, bool ToDefault, bool Same) argument
1798 TemplateDiff(raw_ostream &OS, ASTContext &Context, QualType FromType, QualType ToType, bool PrintTree, bool PrintFromType, bool ElideType, bool ShowColor) argument
1863 FormatTemplateTypeDiff(ASTContext &Context, QualType FromType, QualType ToType, bool PrintTree, bool PrintFromType, bool ElideType, bool ShowColors, raw_ostream &OS) argument
[all...]
/external/clang/lib/Sema/
H A DSemaOverload.cpp207 // Note that FromType has not necessarily been transformed by the
209 // check for their presence as well as checking whether FromType is
229 QualType FromType = getFromType(); local
232 // Note that FromType has not necessarily been transformed by the
236 FromType = Context.getArrayDecayedType(FromType);
238 if (Second == ICK_Pointer_Conversion && FromType->isAnyPointerType())
286 QualType FromType = getToType(0); local
291 if (FromType->isRealFloatingType())
293 if (FromType
1215 QualType FromType = From->getType(); local
1295 IsNoReturnConversion(QualType FromType, QualType ToType, QualType &ResultTy) argument
1346 IsVectorConversion(Sema &S, QualType FromType, QualType ToType, ImplicitConversionKind &ICK) argument
1404 QualType FromType = From->getType(); local
1704 IsIntegralPromotion(Expr *From, QualType FromType, QualType ToType) argument
1853 IsFloatingPointPromotion(QualType FromType, QualType ToType) argument
1886 IsComplexPromotion(QualType FromType, QualType ToType) argument
1980 IsPointerConversion(Expr *From, QualType FromType, QualType ToType, bool InOverloadResolution, QualType& ConvertedType, bool &IncompatibleObjC) argument
2133 isObjCPointerConversion(QualType FromType, QualType ToType, QualType& ConvertedType, bool &IncompatibleObjC) argument
2329 isObjCWritebackConversion(QualType FromType, QualType ToType, QualType &ConvertedType) argument
2387 IsBlockPointerConversion(QualType FromType, QualType ToType, QualType& ConvertedType) argument
2489 HandleFunctionTypeMismatch(PartialDiagnostic &PDiag, QualType FromType, QualType ToType) argument
2606 QualType FromType = From->getType(); local
2673 IsMemberPointerConversion(Expr *From, QualType FromType, QualType ToType, bool InOverloadResolution, QualType &ConvertedType) argument
2720 QualType FromType = From->getType(); local
2795 IsQualificationConversion(QualType FromType, QualType ToType, bool CStyle, bool &ObjCLifetimeConversion) argument
4741 TryObjectArgumentInitialization(Sema &S, QualType FromType, Expr::Classification FromClassification, CXXMethodDecl *Method, CXXRecordDecl *ActingContext) argument
[all...]
H A DSemaExprCXX.cpp2808 QualType FromType = From->getType(); local
2833 if (Context.hasSameType(FromType, Context.OverloadTy)) {
2844 FromType = From->getType();
2858 if (const AtomicType *FromAtomic = FromType->getAs<AtomicType>()) {
2859 FromType = FromAtomic->getValueType().getUnqualifiedType();
2860 From = ImplicitCastExpr::Create(Context, FromType, CK_AtomicToNonAtomic,
2870 FromType = From->getType();
2875 FromType = Context.getArrayDecayedType(FromType);
2876 From = ImpCastExprToType(From, FromType, CK_ArrayToPointerDeca
[all...]
H A DSemaExprObjC.cpp3937 QualType FromType = SubExpr->getType(); local
3945 } else if (T->isObjCARCBridgableType() && FromType->isCARCBridgableType()) {
3957 << FromType
3965 << FromType << br
3979 } else if (T->isCARCBridgableType() && FromType->isObjCARCBridgableType()) {
3991 SubExpr = ImplicitCastExpr::Create(Context, FromType,
3999 << (FromType->isBlockPointerType()? 1 : 0)
4000 << FromType
4019 << FromType << T << Kind
H A DSemaCast.cpp1143 QualType FromType = SrcExpr->getType(); local
1146 FromType = FromType.getUnqualifiedType();
1151 ToType, FromType,
H A DSemaExpr.cpp2527 QualType FromType = From->getType(); local
2532 if (FromType->getAs<PointerType>()) {
2534 FromRecordType = FromType->getPointeeType();
2538 FromRecordType = FromType;
2547 if (FromType->getAs<PointerType>()) {
2548 FromRecordType = FromType->getPointeeType();
2551 FromRecordType = FromType;
2559 if (DestType->isDependentType() || FromType->isDependentType())
2609 FromType = QType;
2645 FromType
[all...]
H A DSemaTemplateDeduction.cpp3711 QualType FromType = ConversionGeneric->getConversionType(); local
3714 QualType P = Context.getCanonicalType(FromType);
H A DSemaInit.cpp6736 QualType FromType = Args[0]->getType(); local
6741 << FromType
6743 S.HandleFunctionTypeMismatch(PDiag, FromType, DestType);
/external/llvm/lib/Target/NVPTX/
H A DNVPTX.h125 enum FromType { enum in namespace:llvm::NVPTX::PTXLdStInstCode
H A DNVPTXISelDAGToDAG.cpp891 unsigned int FromType; local
896 FromType = NVPTX::PTXLdStInstCode::Signed;
898 FromType = NVPTX::PTXLdStInstCode::Float;
900 FromType = NVPTX::PTXLdStInstCode::Unsigned;
966 getI32Imm(VecType), getI32Imm(FromType),
1019 getI32Imm(VecType), getI32Imm(FromType),
1121 getI32Imm(VecType), getI32Imm(FromType),
1223 getI32Imm(VecType), getI32Imm(FromType),
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers.h102 const TypeDescriptor &FromType; member in struct:__ubsan::FloatCastOverflowData
H A Dubsan_handlers.cc302 << Value(Data->FromType, From) << Data->FromType << Data->ToType;
/external/clang/include/clang/Sema/
H A DOverload.h183 /// FromType - The type that this conversion is converting
505 QualType FromType, QualType ToType) {
507 Bad.init(Failure, FromType, ToType);
504 setBad(BadConversionSequence::FailureKind Failure, QualType FromType, QualType ToType) argument
H A DSema.h2030 bool IsIntegralPromotion(Expr *From, QualType FromType, QualType ToType);
2031 bool IsFloatingPointPromotion(QualType FromType, QualType ToType);
2032 bool IsComplexPromotion(QualType FromType, QualType ToType);
2033 bool IsPointerConversion(Expr *From, QualType FromType, QualType ToType,
2036 bool isObjCPointerConversion(QualType FromType, QualType ToType,
2038 bool isObjCWritebackConversion(QualType FromType, QualType ToType,
2040 bool IsBlockPointerConversion(QualType FromType, QualType ToType,
2046 QualType FromType, QualType ToType);
2053 bool IsMemberPointerConversion(Expr *From, QualType FromType, QualType ToType,
2060 bool IsQualificationConversion(QualType FromType, QualTyp
[all...]
/external/google-breakpad/src/testing/test/
H A Dgmock-actions_test.cc519 class FromType { class in namespace:__anon5283
521 explicit FromType(bool* is_converted) : converted_(is_converted) {} function in class:__anon5283::FromType
527 GTEST_DISALLOW_ASSIGN_(FromType);
533 ToType(const FromType& x) { *x.converted() = true; } // NOLINT
538 FromType x(&converted);
/external/clang/lib/Basic/
H A DDiagnostic.cpp852 TDT.FromType = getRawArg(ArgNo);
897 TDT.FromType));
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp773 Type *FromType = FromVal->getType(); local
774 if (FromType == ToType && Offset == 0)
779 if (VectorType *VTy = dyn_cast<VectorType>(FromType)) {
780 unsigned FromTypeSize = DL.getTypeAllocSize(FromType);
/external/clang/include/clang/Basic/
H A DDiagnostic.h1385 intptr_t FromType;
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp391 bool SystemZTargetLowering::isTruncateFree(Type *FromType, Type *ToType) const { argument
392 if (!FromType->isIntegerTy() || !ToType->isIntegerTy())
394 unsigned FromBits = FromType->getPrimitiveSizeInBits();
636 bool SystemZTargetLowering::allowTruncateForTailCall(Type *FromType, argument
638 return isTruncateFree(FromType, ToType);
/external/v8/test/cctest/
H A Dtest-types.cc1940 HType htype1 = HType::FromType<Type>(type1);
1941 HType htype2 = HType::FromType<Type>(type2);

Completed in 4943 milliseconds