HomeSort by: relevance | last modified time | path
    Searched defs:DstArg (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CStringSyntaxChecker.cpp 125 const Expr *DstArg = CE->getArg(0);
135 if (isSizeof(L, DstArg) && isStrlen(R, DstArg))
139 if (isSizeof(L, DstArg) && isOne(R->IgnoreParenCasts()))
144 if (isSizeof(LenArg, DstArg))
156 const Expr *DstArg = CE->getArg(0);
159 const auto *DstArgDRE = dyn_cast<DeclRefExpr>(DstArg->IgnoreParenImpCasts());
163 if (isSizeof(LenArg, DstArg))
189 dyn_cast<BinaryOperator>(DstArg->IgnoreParenImpCasts())) {
220 const Expr *DstArg = CE->getArg(0)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 10332 // pointers if we know the actual size, like if DstArg is 'array+2'
10334 const Expr *DstArg = Call->getArg(0)->IgnoreParenImpCasts();
10335 if (!isConstantSizeArrayWithMoreThanOneElement(DstArg->getType(), Context))
10341 DstArg->printPretty(OS, nullptr, getPrintingPolicy());
10375 const Expr *DstArg = CE->getArg(0)->IgnoreParenCasts();
10388 if (referToTheSameDecl(SizeOfArg, DstArg))
10398 if (referToTheSameDecl(DstArg, getSizeOfExprArg(L)) &&
10399 referToTheSameDecl(DstArg, getStrlenExprArg(R)))
10423 QualType DstTy = DstArg->getType();
10442 DstArg->printPretty(OS, nullptr, getPrintingPolicy())
    [all...]

Completed in 45 milliseconds