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

/external/clang/lib/StaticAnalyzer/Checkers/
H A DCStringSyntaxChecker.cpp106 const Expr *DstArg = CE->getArg(0); local
117 if (isSizeof(L, DstArg) && isStrlen(R, DstArg))
121 if (isSizeof(L, DstArg) && isOne(R->IgnoreParenCasts()))
126 if (isSizeof(LenArg, DstArg))
142 const Expr *DstArg = CE->getArg(0); local
148 StringRef DstName = getPrintableName(DstArg);
/external/clang/lib/Sema/
H A DSemaChecking.cpp3760 // pointers if we know the actual size, like if DstArg is 'array+2'
3762 const Expr *DstArg = Call->getArg(0)->IgnoreParenImpCasts(); local
3763 if (!isConstantSizeArrayWithMoreThanOneElement(DstArg->getType(), Context))
3769 DstArg->printPretty(OS, 0, getPrintingPolicy());
3803 const Expr *DstArg = CE->getArg(0)->IgnoreParenCasts(); local
3812 if (referToTheSameDecl(SizeOfArg, DstArg))
3822 if (referToTheSameDecl(DstArg, getSizeOfExprArg(L)) &&
3823 referToTheSameDecl(DstArg, getStrlenExprArg(R)))
3847 QualType DstTy = DstArg->getType();
3866 DstArg
[all...]

Completed in 208 milliseconds