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

  /external/clang/lib/Parse/
ParseExpr.cpp 643 ParsedType CastTy;
646 isTypeCast == IsTypeCast, CastTy, RParenLoc);
    [all...]
ParseExprCXX.cpp     [all...]
ParseDecl.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 24 SVal dispatchCast(SVal val, QualType castTy) override;
25 SVal evalCastFromNonLoc(NonLoc val, QualType castTy) override;
26 SVal evalCastFromLoc(Loc val, QualType castTy) override;
62 SVal SimpleSValBuilder::dispatchCast(SVal Val, QualType CastTy) {
64 return Val.getAs<Loc>() ? evalCastFromLoc(Val.castAs<Loc>(), CastTy)
65 : evalCastFromNonLoc(Val.castAs<NonLoc>(), CastTy);
68 SVal SimpleSValBuilder::evalCastFromNonLoc(NonLoc val, QualType castTy) {
70 bool isLocType = Loc::isLocType(castTy);
77 unsigned castSize = Context.getTypeSize(castTy);
87 // HACK: If both castTy and T are integers, ignore the cast. This i
    [all...]
  /external/clang/include/clang/Parse/
Parser.h     [all...]
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 411 EVT CastTy) const {
412 if (LoadTy.getSizeInBits() != CastTy.getSizeInBits())
416 unsigned CastScalarSize = CastTy.getScalarType().getSizeInBits();
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]

Completed in 106 milliseconds