HomeSort by relevance Sort by last modified time
    Searched refs:FromType (Results 1 - 24 of 24) sorted by null

  /external/clang/lib/AST/
ASTDiagnostic.cpp 315 static bool FormatTemplateTypeDiff(ASTContext &Context, QualType FromType,
339 QualType FromType =
340 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.FromType));
344 if (FormatTemplateTypeDiff(Context, FromType, ToType, TDT.PrintTree,
359 Val = TDT.PrintFromType ? TDT.FromType : TDT.ToType;
476 /// FromType - When single type printing is selected, this is the type to be
479 QualType FromType;
481 /// ToType - The type that FromType is compared to. Only in tree printing
527 /// FromType, ToType - The type arguments.
528 QualType FromType, ToType
    [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp 214 // Note that FromType has not necessarily been transformed by the
216 // check for their presence as well as checking whether FromType is
236 QualType FromType = getFromType();
239 // Note that FromType has not necessarily been transformed by the
243 FromType = Context.getArrayDecayedType(FromType);
245 if (Second == ICK_Pointer_Conversion && FromType->isAnyPointerType())
293 QualType FromType = getToType(0);
298 if (FromType->isRealFloatingType())
300 if (FromType->isIntegralOrUnscopedEnumerationType()
    [all...]
SemaExprCXX.cpp     [all...]
SemaExprObjC.cpp     [all...]
SemaCast.cpp     [all...]
SemaExpr.cpp     [all...]
SemaTemplateDeduction.cpp     [all...]
SemaInit.cpp     [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_handlers.h 103 const TypeDescriptor &FromType;
109 const TypeDescriptor &FromType;
ubsan_handlers.cc 370 const TypeDescriptor *FromType, *ToType;
377 FromType = &Data->FromType;
385 FromType = &Data->FromType;
393 << Value(*FromType, From) << *FromType << *ToType;
  /external/v8/src/crankshaft/
hydrogen-types.cc 15 HType HType::FromType(Type* type) {
32 return FromType(type->Convert(temp_zone));
hydrogen-types.h 67 static HType FromType(Type* type) WARN_UNUSED_RESULT;
  /external/llvm/lib/Target/NVPTX/
NVPTX.h 109 enum FromType {
NVPTXISelDAGToDAG.cpp 701 // Type Setting: fromType + fromTypeWidth
710 unsigned int fromType;
712 fromType = NVPTX::PTXLdStInstCode::Signed;
714 fromType = NVPTX::PTXLdStInstCode::Float;
716 fromType = NVPTX::PTXLdStInstCode::Unsigned;
750 getI32Imm(vecType, dl), getI32Imm(fromType, dl),
778 getI32Imm(vecType, dl), getI32Imm(fromType, dl),
831 getI32Imm(vecType, dl), getI32Imm(fromType, dl),
883 getI32Imm(vecType, dl), getI32Imm(fromType, dl),
929 // Type Setting: fromType + fromTypeWidt
    [all...]
  /external/v8/src/
types.h 372 static TypeBase* FromType(Type* type) {
398 return static_cast<ClassType*>(FromType(type));
429 return static_cast<ConstantType*>(FromType(type));
488 return static_cast<RangeType*>(FromType(type));
516 return static_cast<ContextType*>(FromType(type));
542 return static_cast<ArrayType*>(FromType(type));
612 return static_cast<FunctionType*>(FromType(type));
637 return static_cast<TupleType*>(FromType(type));
661 return static_cast<UnionType*>(FromType(type));
  /external/gmock/test/
gmock-actions_test.cc 519 class FromType {
521 explicit FromType(bool* is_converted) : converted_(is_converted) {}
527 GTEST_DISALLOW_ASSIGN_(FromType);
533 ToType(const FromType& x) { *x.converted() = true; } // NOLINT
538 FromType x(&converted);
    [all...]
  /external/clang/include/clang/Sema/
Overload.h 186 /// FromType - The type that this conversion is converting
508 QualType FromType, QualType ToType) {
510 Bad.init(Failure, FromType, ToType);
Sema.h     [all...]
  /external/google-breakpad/src/testing/test/
gmock-actions_test.cc 519 class FromType {
521 explicit FromType(bool* is_converted) : converted_(is_converted) {}
527 GTEST_DISALLOW_ASSIGN_(FromType);
533 ToType(const FromType& x) { *x.converted() = true; } // NOLINT
538 FromType x(&converted);
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 865 TDT.FromType = getRawArg(ArgNo);
910 TDT.FromType));
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 774 Type *FromType = FromVal->getType();
775 if (FromType == ToType && Offset == 0)
780 if (VectorType *VTy = dyn_cast<VectorType>(FromType)) {
781 unsigned FromTypeSize = DL.getTypeAllocSize(FromType);
    [all...]
  /external/clang/include/clang/Basic/
Diagnostic.h     [all...]
  /external/v8/test/cctest/
test-types.cc     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 527 bool SystemZTargetLowering::isTruncateFree(Type *FromType, Type *ToType) const {
528 if (!FromType->isIntegerTy() || !ToType->isIntegerTy())
530 unsigned FromBits = FromType->getPrimitiveSizeInBits();
772 bool SystemZTargetLowering::allowTruncateForTailCall(Type *FromType,
774 return isTruncateFree(FromType, ToType);
    [all...]

Completed in 277 milliseconds