reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/AST/ExprCXX.h
  314   const Expr *getLHS() const { return getDecomposedForm().LHS; }
  327     return getDecomposedForm().LHS->getBeginLoc();
  334     return SourceRange(DF.LHS->getBeginLoc(), DF.RHS->getEndLoc());
tools/clang/include/clang/AST/RecursiveASTVisitor.h
 2613     TRY_TO(TraverseStmt(const_cast<Expr*>(Decomposed.LHS)));
tools/clang/lib/AST/ExprCXX.cpp
   78     Result.LHS = BO->getLHS();
   93     Result.LHS = BO->getArg(0);
  103     std::swap(Result.LHS, Result.RHS);
  110   E = Result.LHS->IgnoreImplicit();
  113     Result.LHS = BO->getLHS();
  118     Result.LHS = BO->getArg(0);
  127     std::swap(Result.LHS, Result.RHS);
tools/clang/lib/AST/ItaniumMangle.cpp
 4099     mangleExpression(Decomposed.LHS);
tools/clang/lib/AST/StmtPrinter.cpp
 1704   PrintExpr(const_cast<Expr*>(Decomposed.LHS));
tools/clang/lib/Sema/TreeTransform.h
 9788   ExprResult LHS = getDerived().TransformExpr(const_cast<Expr*>(Decomp.LHS));
 9797       LHS.get() == Decomp.LHS &&