Searched defs: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.cpp6372 // pointers if we know the actual size, like if DstArg is 'array+2'
6374 const Expr *DstArg = Call->getArg(0)->IgnoreParenImpCasts(); local
6375 if (!isConstantSizeArrayWithMoreThanOneElement(DstArg->getType(), Context))
6381 DstArg->printPretty(OS, nullptr, getPrintingPolicy());
6415 const Expr *DstArg = CE->getArg(0)->IgnoreParenCasts(); local
6428 if (referToTheSameDecl(SizeOfArg, DstArg))
6438 if (referToTheSameDecl(DstArg, getSizeOfExprArg(L)) &&
6439 referToTheSameDecl(DstArg, getStrlenExprArg(R)))
6463 QualType DstTy = DstArg->getType();
6482 DstArg
[all...]

Completed in 6112 milliseconds