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

  /src/external/apache2/llvm/dist/clang/lib/Sema/
JumpDiagnostics.cpp 572 SmallVector<SubobjectAdjustment, 4> Adjustments;
575 Adjustments);
  /src/external/apache2/llvm/dist/clang/lib/AST/
APValue.cpp 95 SmallVector<SubobjectAdjustment, 2> Adjustments;
98 Adjustments);
101 if (!Adjustments.empty())
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprConstant.cpp 2028 SmallVector<SubobjectAdjustment, 2> Adjustments;
2030 E->getSubExpr()->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments);
CGExpr.cpp 496 SmallVector<SubobjectAdjustment, 2> Adjustments;
497 E = E->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments);
504 assert(Adjustments.empty());
583 for (unsigned I = Adjustments.size(); I != 0; --I) {
584 SubobjectAdjustment &Adjustment = Adjustments[I-1];
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 316 // all the hassle with adjustments would not be necessary,
357 // and record the adjustments that we need to make to obtain the sub-object
362 SmallVector<SubobjectAdjustment, 2> Adjustments;
365 CommaLHSs, Adjustments);
395 // Make the necessary adjustments to obtain the sub-object.
396 for (auto I = Adjustments.rbegin(), E = Adjustments.rend(); I != E; ++I) {
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CFG.cpp 1704 SmallVector<SubobjectAdjustment, 2> Adjustments;
1706 Init->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments);
4709 SmallVector<SubobjectAdjustment, 2> Adjustments;
4714 ->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments));
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 961 /// the LHSs of comma expressions and adjustments needed along the path.
964 SmallVectorImpl<SubobjectAdjustment> &Adjustments) const;
967 SmallVector<SubobjectAdjustment, 8> Adjustments;
968 return skipRValueSubobjectAdjustments(CommaLHSs, Adjustments);

Completed in 50 milliseconds