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

/external/chromium_org/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;
418 /// FromType - When single type printing is selected, this is the type to be
421 QualType FromType; member in class:__anon17714::TemplateDiff
423 /// ToType - The type that FromType is compared to. Only in tree printing
469 /// FromType, ToType - The type arguments.
470 QualType FromType, ToTyp member in struct:__anon17714::TemplateDiff::DiffTree::DiffNode
537 SetNode(QualType FromType, QualType ToType) argument
628 GetNode(QualType &FromType, QualType &ToType) argument
883 QualType FromType, ToType; local
1270 QualType FromType, ToType; local
1379 PrintTypeNames(QualType FromType, QualType ToType, bool FromDefault, bool ToDefault, bool Same) argument
1665 TemplateDiff(raw_ostream &OS, ASTContext &Context, QualType FromType, QualType ToType, bool PrintTree, bool PrintFromType, bool ElideType, bool ShowColor) argument
1730 FormatTemplateTypeDiff(ASTContext &Context, QualType FromType, QualType ToType, bool PrintTree, bool PrintFromType, bool ElideType, bool ShowColors, raw_ostream &OS) argument
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A Dvertexconversion.h90 template <class FromType, std::size_t ScaleBits>
97 static float convert(FromType x)
99 const float divisor = 1.0f / static_cast<float>(static_cast<FromType>(1) << ScaleBits);
/external/clang/lib/Sema/
H A DSemaOverload.cpp241 // Note that FromType has not necessarily been transformed by the
243 // check for their presence as well as checking whether FromType is
263 QualType FromType = getFromType(); local
266 // Note that FromType has not necessarily been transformed by the
270 FromType = Context.getArrayDecayedType(FromType);
272 if (Second == ICK_Pointer_Conversion && FromType->isAnyPointerType())
320 QualType FromType = getToType(0); local
330 if (FromType->isRealFloatingType() && ToType->isIntegralType(Ctx)) {
332 } else if (FromType
1247 QualType FromType = From->getType(); local
1327 IsNoReturnConversion(QualType FromType, QualType ToType, QualType &ResultTy) argument
1378 IsVectorConversion(Sema &S, QualType FromType, QualType ToType, ImplicitConversionKind &ICK) argument
1436 QualType FromType = From->getType(); local
1735 IsIntegralPromotion(Expr *From, QualType FromType, QualType ToType) argument
1882 IsFloatingPointPromotion(QualType FromType, QualType ToType) argument
1915 IsComplexPromotion(QualType FromType, QualType ToType) argument
2009 IsPointerConversion(Expr *From, QualType FromType, QualType ToType, bool InOverloadResolution, QualType& ConvertedType, bool &IncompatibleObjC) argument
2162 isObjCPointerConversion(QualType FromType, QualType ToType, QualType& ConvertedType, bool &IncompatibleObjC) argument
2358 isObjCWritebackConversion(QualType FromType, QualType ToType, QualType &ConvertedType) argument
2416 IsBlockPointerConversion(QualType FromType, QualType ToType, QualType& ConvertedType) argument
2518 HandleFunctionTypeMismatch(PartialDiagnostic &PDiag, QualType FromType, QualType ToType) argument
2635 QualType FromType = From->getType(); local
2702 IsMemberPointerConversion(Expr *From, QualType FromType, QualType ToType, bool InOverloadResolution, QualType &ConvertedType) argument
2749 QualType FromType = From->getType(); local
2824 IsQualificationConversion(QualType FromType, QualType ToType, bool CStyle, bool &ObjCLifetimeConversion) argument
4718 TryObjectArgumentInitialization(Sema &S, QualType FromType, Expr::Classification FromClassification, CXXMethodDecl *Method, CXXRecordDecl *ActingContext) argument
[all...]
H A DSemaExprCXX.cpp2701 QualType FromType = From->getType(); local
2729 if (Context.hasSameType(FromType, Context.OverloadTy)) {
2740 FromType = From->getType();
2759 FromType = FromType.getUnqualifiedType();
2767 FromType = Context.getArrayDecayedType(FromType);
2768 From = ImpCastExprToType(From, FromType, CK_ArrayToPointerDecay,
2773 FromType = Context.getPointerType(FromType);
[all...]
H A DSemaExprObjC.cpp3876 QualType FromType = SubExpr->getType(); local
3884 } else if (T->isObjCARCBridgableType() && FromType->isCARCBridgableType()) {
3896 << FromType
3904 << FromType << br
3918 } else if (T->isCARCBridgableType() && FromType->isObjCARCBridgableType()) {
3930 SubExpr = ImplicitCastExpr::Create(Context, FromType,
3938 << (FromType->isBlockPointerType()? 1 : 0)
3939 << FromType
3958 << FromType << T << Kind
H A DSemaCast.cpp1106 QualType FromType = SrcExpr->getType(); local
1109 FromType = FromType.getUnqualifiedType();
1114 ToType, FromType,
H A DSemaExpr.cpp2447 QualType FromType = From->getType(); local
2452 if (FromType->getAs<PointerType>()) {
2454 FromRecordType = FromType->getPointeeType();
2458 FromRecordType = FromType;
2467 if (FromType->getAs<PointerType>()) {
2468 FromRecordType = FromType->getPointeeType();
2471 FromRecordType = FromType;
2479 if (DestType->isDependentType() || FromType->isDependentType())
2529 FromType = QType;
2565 FromType
[all...]
H A DSemaTemplateDeduction.cpp3753 QualType FromType = ConversionGeneric->getConversionType(); local
3756 QualType P = Context.getCanonicalType(FromType);
H A DSemaInit.cpp6601 QualType FromType = Args[0]->getType(); local
6606 << FromType
6608 S.HandleFunctionTypeMismatch(PDiag, FromType, DestType);
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cc236 << Value(Data->FromType, From) << Data->FromType << Data->ToType;
243 << Value(Data->FromType, From) << Data->FromType << Data->ToType;
H A Dubsan_handlers.h100 const TypeDescriptor &FromType; member in struct:__ubsan::FloatCastOverflowData
/external/llvm/lib/Target/NVPTX/
H A DNVPTX.h124 enum FromType { enum in namespace:llvm::NVPTX::PTXLdStInstCode
H A DNVPTXISelDAGToDAG.cpp665 unsigned int FromType; local
670 FromType = NVPTX::PTXLdStInstCode::Signed;
672 FromType = NVPTX::PTXLdStInstCode::Float;
674 FromType = NVPTX::PTXLdStInstCode::Unsigned;
740 getI32Imm(VecType), getI32Imm(FromType),
794 getI32Imm(VecType), getI32Imm(FromType),
897 getI32Imm(VecType), getI32Imm(FromType),
999 getI32Imm(VecType), getI32Imm(FromType),
/external/clang/include/clang/Sema/
H A DOverload.h197 /// FromType - The type that this conversion is converting
520 QualType FromType, QualType ToType) {
522 Bad.init(Failure, FromType, ToType);
519 setBad(BadConversionSequence::FailureKind Failure, QualType FromType, QualType ToType) argument
H A DSema.h2064 bool IsIntegralPromotion(Expr *From, QualType FromType, QualType ToType);
2065 bool IsFloatingPointPromotion(QualType FromType, QualType ToType);
2066 bool IsComplexPromotion(QualType FromType, QualType ToType);
2067 bool IsPointerConversion(Expr *From, QualType FromType, QualType ToType,
2070 bool isObjCPointerConversion(QualType FromType, QualType ToType,
2072 bool isObjCWritebackConversion(QualType FromType, QualType ToType,
2074 bool IsBlockPointerConversion(QualType FromType, QualType ToType,
2080 QualType FromType, QualType ToType);
2087 bool IsMemberPointerConversion(Expr *From, QualType FromType, QualType ToType,
2094 bool IsQualificationConversion(QualType FromType, QualTyp
[all...]
/external/clang/lib/Basic/
H A DDiagnostic.cpp835 TDT.FromType = getRawArg(ArgNo);
880 TDT.FromType));
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp768 Type *FromType = FromVal->getType(); local
769 if (FromType == ToType && Offset == 0)
774 if (VectorType *VTy = dyn_cast<VectorType>(FromType)) {
775 unsigned FromTypeSize = DL.getTypeAllocSize(FromType);
/external/clang/include/clang/Basic/
H A DDiagnostic.h1377 intptr_t FromType;
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp368 bool SystemZTargetLowering::isTruncateFree(Type *FromType, Type *ToType) const { argument
369 if (!FromType->isIntegerTy() || !ToType->isIntegerTy())
371 unsigned FromBits = FromType->getPrimitiveSizeInBits();
611 bool SystemZTargetLowering::allowTruncateForTailCall(Type *FromType, argument
613 return isTruncateFree(FromType, ToType);
/external/chromium_org/v8/test/cctest/
H A Dtest-types.cc1940 HType htype1 = HType::FromType<Type>(type1);
1941 HType htype2 = HType::FromType<Type>(type2);

Completed in 2941 milliseconds