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

  /external/clang/lib/Parse/
ParseExpr.cpp 670 ParsedType CastTy;
679 isTypeCast == IsTypeCast, CastTy, RParenLoc);
    [all...]
ParseExprCXX.cpp     [all...]
ParseDecl.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 23 virtual SVal dispatchCast(SVal val, QualType castTy);
24 virtual SVal evalCastFromNonLoc(NonLoc val, QualType castTy);
25 virtual SVal evalCastFromLoc(Loc val, QualType castTy);
61 SVal SimpleSValBuilder::dispatchCast(SVal Val, QualType CastTy) {
63 return isa<Loc>(Val) ? evalCastFromLoc(cast<Loc>(Val), CastTy)
64 : evalCastFromNonLoc(cast<NonLoc>(Val), CastTy);
67 SVal SimpleSValBuilder::evalCastFromNonLoc(NonLoc val, QualType castTy) {
69 bool isLocType = Loc::isLocType(castTy);
76 unsigned castSize = Context.getTypeSize(castTy);
86 // HACK: If both castTy and T are integers, ignore the cast. This i
    [all...]
  /external/clang/include/clang/Parse/
Parser.h     [all...]

Completed in 117 milliseconds