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
147 StringRef DstName = getPrintableName(DstArg);
/external/clang/lib/Sema/
H A DSemaChecking.cpp4299 // pointers if we know the actual size, like if DstArg is 'array+2'
4301 const Expr *DstArg = Call->getArg(0)->IgnoreParenImpCasts(); local
4302 if (!isConstantSizeArrayWithMoreThanOneElement(DstArg->getType(), Context))
4308 DstArg->printPretty(OS, nullptr, getPrintingPolicy());
4342 const Expr *DstArg = CE->getArg(0)->IgnoreParenCasts(); local
4355 if (referToTheSameDecl(SizeOfArg, DstArg))
4365 if (referToTheSameDecl(DstArg, getSizeOfExprArg(L)) &&
4366 referToTheSameDecl(DstArg, getStrlenExprArg(R)))
4390 QualType DstTy = DstArg->getType();
4409 DstArg
[all...]

Completed in 902 milliseconds