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

  /external/skia/gm/
xfermodes.cpp 47 enum SrcType {
154 /* The srcType argument indicates what to draw for the source part. Skia
158 void draw_mode(SkCanvas* canvas, SkXfermode* mode, SrcType srcType,
167 switch (srcType) {
299 draw_mode(canvas, mode, static_cast<SrcType>(sourceType),
  /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/clang/lib/AST/
ExprCXX.cpp 641 QualType SrcType = getSubExpr()->getType();
644 if (const PointerType *SrcPTy = SrcType->getAs<PointerType>()) {
645 SrcType = SrcPTy->getPointeeType();
653 cast<CXXRecordDecl>(SrcType->castAs<RecordType>()->getDecl());
    [all...]
ExprConstant.cpp     [all...]
  /external/clang/lib/Sema/
SemaCast.cpp 167 static TryCastResult TryStaticPointerDowncast(Sema &Self, QualType SrcType,
173 static TryCastResult TryStaticDowncast(Sema &Self, CanQualType SrcType,
181 QualType SrcType,
324 QualType srcType = src->getType();
325 if (!destType->isRecordType() && !srcType->isRecordType())
373 << CT << srcType << destType
477 /// CastsAwayConstness - Check if the pointer conversion from SrcType to
486 CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType,
501 assert((SrcType->isAnyPointerType() || SrcType->isMemberPointerType() |
    [all...]
SemaExprObjC.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 146 Value *Src, QualType SrcType, QualType DstType,
578 Value *ScalarExprEmitter::EmitConversionToBool(Value *Src, QualType SrcType) {
579 assert(SrcType.isCanonical() && "EmitScalarConversion strips typedefs");
581 if (SrcType->isRealFloatingType())
584 if (const MemberPointerType *MPT = dyn_cast<MemberPointerType>(SrcType))
587 assert((SrcType->isIntegerType() || isa<llvm::PointerType>(Src->getType())) &&
598 Value *OrigSrc, QualType OrigSrcType, Value *Src, QualType SrcType,
671 CGF.getContext().getFloatTypeSemantics(SrcType);
732 Value *ScalarExprEmitter::EmitScalarConversion(Value *Src, QualType SrcType,
735 return EmitScalarConversion(Src, SrcType, DstType, Loc, false)
    [all...]

Completed in 347 milliseconds