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

Declarations

tools/clang/include/clang/AST/ExprCXX.h
  308   DecomposedForm getDecomposedForm() const LLVM_READONLY;

References

tools/clang/include/clang/AST/ExprCXX.h
  313   BinaryOperatorKind getOperator() const { return getDecomposedForm().Opcode; }
  314   const Expr *getLHS() const { return getDecomposedForm().LHS; }
  315   const Expr *getRHS() const { return getDecomposedForm().RHS; }
  318     return getDecomposedForm().InnerBinOp->getExprLoc();
  327     return getDecomposedForm().LHS->getBeginLoc();
  330     return getDecomposedForm().RHS->getEndLoc();
  333     DecomposedForm DF = getDecomposedForm();
tools/clang/include/clang/AST/RecursiveASTVisitor.h
 2612         S->getDecomposedForm();
tools/clang/lib/AST/ItaniumMangle.cpp
 4096         cast<CXXRewrittenBinaryOperator>(E)->getDecomposedForm();
tools/clang/lib/AST/StmtPrinter.cpp
 1703       Node->getDecomposedForm();
tools/clang/lib/Sema/TreeTransform.h
 9786   CXXRewrittenBinaryOperator::DecomposedForm Decomp = E->getDecomposedForm();