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

  /external/clang/lib/Sema/
SemaCast.cpp 145 static bool CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType,
170 static TryCastResult TryStaticPointerDowncast(Sema &Self, QualType SrcType,
176 static TryCastResult TryStaticDowncast(Sema &Self, CanQualType SrcType,
184 QualType SrcType,
329 QualType srcType = src->getType();
330 if (!destType->isRecordType() && !srcType->isRecordType())
378 << CT << srcType << destType
455 /// CastsAwayConstness - Check if the pointer conversion from SrcType to
464 CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType,
476 assert((SrcType->isAnyPointerType() || SrcType->isMemberPointerType() |
    [all...]
SemaExprObjC.cpp     [all...]
SemaExpr.cpp     [all...]
SemaStmt.cpp     [all...]
  /external/chromium_org/content/browser/media/
encrypted_media_browsertest.cc 31 enum SrcType {
53 public testing::WithParamInterface<std::tr1::tuple<const char*, SrcType> > {
61 SrcType CurrentSourceType() {
93 SrcType src_type,
116 SrcType src_type) {
  /external/eigen/Eigen/src/OrderingMethods/
Ordering.h 72 template <typename SrcType, unsigned int SrcUpLo>
73 void operator()(const SparseSelfAdjointView<SrcType, SrcUpLo>& mat, PermutationType& perm)
75 SparseMatrix<typename SrcType::Scalar, ColMajor, Index> C; C = mat;
  /external/deqp/framework/randomshaders/
rsgExpression.cpp 512 template <typename SrcType, typename DstType>
513 inline DstType convert (SrcType src)
515 if (Scalar::min<SrcType>() == src)
517 else if (Scalar::max<SrcType>() == src)
541 template <typename SrcType, typename DstType>
542 inline void convertValueRange (SrcType srcMin, SrcType srcMax, DstType& dstMin, DstType& dstMax)
544 dstMin = convert<SrcType, DstType>(srcMin);
545 dstMax = convert<SrcType, DstType>(srcMax);
571 // Returns whether it is possible to convert some SrcType value range to given DstType valueRang
    [all...]
  /external/chromium_org/chrome/browser/media/
encrypted_media_browsertest.cc 74 enum SrcType {
140 SrcType src_type,
168 SrcType src_type,
360 std::tr1::tuple<const char*, SrcType, EmeVersion> > {
366 SrcType CurrentSourceType() {
  /external/chromium_org/third_party/skia/gm/
xfermodes.cpp 51 enum SrcType {
76 /* The srcType argument indicates what to draw for the source part. Skia
80 void draw_mode(SkCanvas* canvas, SkXfermode* mode, SrcType srcType,
89 switch (srcType) {
252 draw_mode(canvas, mode, static_cast<SrcType>(sourceType),
  /external/skia/gm/
xfermodes.cpp 51 enum SrcType {
76 /* The srcType argument indicates what to draw for the source part. Skia
80 void draw_mode(SkCanvas* canvas, SkXfermode* mode, SrcType srcType,
89 switch (srcType) {
251 draw_mode(canvas, mode, static_cast<SrcType>(sourceType),
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 109 Value *Src, QualType SrcType,
536 Value *ScalarExprEmitter::EmitConversionToBool(Value *Src, QualType SrcType) {
537 assert(SrcType.isCanonical() && "EmitScalarConversion strips typedefs");
539 if (SrcType->isRealFloatingType())
542 if (const MemberPointerType *MPT = dyn_cast<MemberPointerType>(SrcType))
545 assert((SrcType->isIntegerType() || isa<llvm::PointerType>(Src->getType())) &&
557 Value *Src, QualType SrcType,
630 CGF.getContext().getFloatTypeSemantics(SrcType);
693 Value *ScalarExprEmitter::EmitScalarConversion(Value *Src, QualType SrcType,
695 SrcType = CGF.getContext().getCanonicalType(SrcType)
    [all...]
CGExprComplex.cpp 83 ComplexPairTy EmitComplexToComplexCast(ComplexPairTy Val, QualType SrcType,
86 ComplexPairTy EmitScalarToComplexCast(llvm::Value *Val, QualType SrcType,
388 QualType SrcType,
391 SrcType = SrcType->castAs<ComplexType>()->getElementType();
397 Val.first = CGF.EmitScalarConversion(Val.first, SrcType, DestType);
398 Val.second = CGF.EmitScalarConversion(Val.second, SrcType, DestType);
403 QualType SrcType,
407 Val = CGF.EmitScalarConversion(Val, SrcType, DestType);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_compiler_util.c 364 unsigned int SrcType;
385 select->SrcType = src_type;
484 unsigned int src_type = d.Selects[i].SrcType;
488 src_type &= ~d.Selects[j].SrcType;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler_util.c 364 unsigned int SrcType;
385 select->SrcType = src_type;
484 unsigned int src_type = d.Selects[i].SrcType;
488 src_type &= ~d.Selects[j].SrcType;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
WebGLImageConversion.cpp     [all...]
  /external/clang/lib/AST/
ExprCXX.cpp 648 QualType SrcType = getSubExpr()->getType();
651 if (const PointerType *SrcPTy = SrcType->getAs<PointerType>()) {
652 SrcType = SrcPTy->getPointeeType();
660 cast<CXXRecordDecl>(SrcType->castAs<RecordType>()->getDecl());
    [all...]
ExprConstant.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]

Completed in 712 milliseconds