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

  /external/clang/lib/Sema/
SemaCast.cpp 50 CastOperation(Sema &S, QualType destType, ExprResult src)
51 : Self(S), SrcExpr(src), DestType(destType),
52 ResultType(destType.getNonLValueExprType(S.Context)),
53 ValueKind(Expr::getValueKindForType(destType)),
66 QualType DestType;
119 Self.CheckCastAlign(SrcExpr.get(), DestType, OpRange);
126 if (Self.CheckObjCARCConversion(OpRange, DestType, src, CCK) ==
157 QualType DestType, bool CStyle,
162 QualType DestType, bool CStyle
    [all...]
SemaInit.cpp     [all...]
SemaExprObjC.cpp     [all...]
SemaExpr.cpp     [all...]
SemaOverload.cpp     [all...]
  /external/libbrillo/brillo/
any.h 73 // Checks if the given type DestType can be obtained from the Any.
76 template<typename DestType>
78 // Make sure the requested type DestType conforms to the storage
85 using CanonicalDestType = typename std::decay<DestType>::type;
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 227 template<typename DestType> inline void evalTo(DestType& dst) const
229 Matrix<Scalar, DestType::RowsAtCompileTime, 1,
230 AutoAlign|ColMajor, DestType::MaxRowsAtCompileTime, 1> workspace(rows());
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 86 /// Emit a cast from complex value Val to DestType.
88 QualType DestType, SourceLocation Loc);
89 /// Emit a cast from scalar value Val to DestType.
91 QualType DestType, SourceLocation Loc);
394 /// Emit a cast from complex value Val to DestType.
397 QualType DestType,
401 DestType = DestType->castAs<ComplexType>()->getElementType();
406 Val.first = CGF.EmitScalarConversion(Val.first, SrcType, DestType, Loc);
407 Val.second = CGF.EmitScalarConversion(Val.second, SrcType, DestType, Loc)
    [all...]
CGExprConstant.cpp 645 llvm::Type *destType = ConvertType(E->getType());
660 unsigned TotalSize = CGM.getDataLayout().getTypeAllocSize(destType);
678 return llvm::ConstantExpr::getAddrSpaceCast(C, destType);
    [all...]
CodeGenModule.h     [all...]
CGStmtOpenMP.cpp     [all...]
CGBuiltin.cpp 336 llvm::Type *DestType = Int8PtrTy;
337 if (ArgValue->getType() != DestType)
339 Builder.CreateBitCast(ArgValue, DestType, ArgValue->getName().data());
    [all...]
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
DGMRES.h 222 template<typename RhsType, typename DestType>
223 int dgmresApplyDeflation(const RhsType& In, DestType& Out) const;
517 template<typename RhsType, typename DestType>
518 int DGMRES<_MatrixType, _Preconditioner>::dgmresApplyDeflation(const RhsType &x, DestType &y) const
  /external/eigen/Eigen/src/SparseCore/
SparseSelfAdjointView.h 494 template<typename DestType,unsigned int DestUpLo> void evalTo(SparseSelfAdjointView<DestType,DestUpLo>& dest) const
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 442 Type *DestType = Trunc.getType();
443 if (!TruncOp->hasOneUse() || !isa<IntegerType>(DestType))
456 unsigned DestWidth = DestType->getPrimitiveSizeInBits();
465 if (VecType->getElementType() != DestType) {
466 VecType = VectorType::get(DestType, NumVecElts);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
NullabilityChecker.cpp 813 QualType DestType = CE->getType();
816 if (!DestType->isAnyPointerType())
823 Nullability DestNullability = getNullabilityAnnotation(DestType);
    [all...]
DynamicTypePropagation.cpp 503 QualType DestType = CE->getType();
506 const auto *DestObjectPtrType = DestType->getAs<ObjCObjectPointerType>();
545 // Mismatched types. If the DestType specialized, store it. Forget the
    [all...]
  /external/clang/lib/AST/
ExprCXX.cpp 642 QualType DestType = getType();
646 DestType = DestType->castAs<PointerType>()->getPointeeType();
649 if (DestType->isVoidType())
659 cast<CXXRecordDecl>(DestType->castAs<RecordType>()->getDecl());
    [all...]
ExprConstant.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp     [all...]

Completed in 357 milliseconds