Searched refs:DstArg (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
H A DCStringSyntaxChecker.cpp105 const Expr *DstArg = CE->getArg(0); local
116 if (isSizeof(L, DstArg) && isStrlen(R, DstArg))
120 if (isSizeof(L, DstArg) && isOne(R->IgnoreParenCasts()))
125 if (isSizeof(LenArg, DstArg))
141 const Expr *DstArg = CE->getArg(0); local
147 StringRef DstName = getPrintableName(DstArg);
/external/clang/lib/Sema/
H A DSemaChecking.cpp2876 // pointers if we know the actual size, like if DstArg is 'array+2'
2878 const Expr *DstArg = Call->getArg(0)->IgnoreParenImpCasts(); local
2879 QualType DstArgTy = DstArg->getType();
2893 DstArg->printPretty(OS, Context, 0, getPrintingPolicy());
2927 const Expr *DstArg = CE->getArg(0)->IgnoreParenCasts(); local
2936 if (referToTheSameDecl(SizeOfArg, DstArg))
2946 if (referToTheSameDecl(DstArg, getSizeOfExprArg(L)) &&
2947 referToTheSameDecl(DstArg, getStrlenExprArg(R)))
2977 // pointers if we know the actual size, like if DstArg is 'array+2'
2979 QualType DstArgTy = DstArg
[all...]

Completed in 568 milliseconds