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

  /src/external/apache2/llvm/dist/clang/lib/AST/
APValue.cpp 95 SmallVector<SubobjectAdjustment, 2> Adjustments;
98 Adjustments);
101 if (!Adjustments.empty())
Expr.cpp 82 SmallVectorImpl<SubobjectAdjustment> &Adjustments) const {
94 Adjustments.push_back(SubobjectAdjustment(CE, Derived));
108 Adjustments.push_back(SubobjectAdjustment(Field));
119 Adjustments.push_back(SubobjectAdjustment(MPT, BO->getRHS()));
ExprConstant.cpp 353 /// Get the range of valid index adjustments in the form
8230 SmallVector<SubobjectAdjustment, 2> Adjustments;
8232 E->getSubExpr()->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments);
8265 for (unsigned I = Adjustments.size(); I != 0; /**/) {
8267 switch (Adjustments[I].Kind) {
8269 if (!HandleLValueBasePath(Info, Adjustments[I].DerivedToBase.BasePath,
8272 Type = Adjustments[I].DerivedToBase.BasePath->getType();
8276 if (!HandleLValueMember(Info, E, Result, Adjustments[I].Field))
8278 Type = Adjustments[I].Field->getType();
8283 Adjustments[I].Ptr.RHS)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
JumpDiagnostics.cpp 572 SmallVector<SubobjectAdjustment, 4> Adjustments;
575 Adjustments);
  /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/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/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 82 milliseconds