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

References

tools/clang/include/clang/AST/ExprCXX.h
 4568     return getLHS() && getLHS()->containsUnexpandedParameterPack();
 4568     return getLHS() && getLHS()->containsUnexpandedParameterPack();
 4575   Expr *getPattern() const { return isLeftFold() ? getRHS() : getLHS(); }
 4578   Expr *getInit() const { return isLeftFold() ? getLHS() : getRHS(); }
tools/clang/lib/AST/ItaniumMangle.cpp
 4359     if (FE->getLHS())
 4360       mangleExpression(FE->getLHS());
tools/clang/lib/AST/StmtPrinter.cpp
 2237   if (E->getLHS()) {
 2238     PrintExpr(E->getLHS());
tools/clang/lib/Sema/TreeTransform.h
12179         E->getLHS() ? getDerived().TransformExpr(E->getLHS()) : ExprResult();
12179         E->getLHS() ? getDerived().TransformExpr(E->getLHS()) : ExprResult();
12189         LHS.get() == E->getLHS() && RHS.get() == E->getRHS())