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

References

tools/clang/include/clang/AST/Expr.h
  356     Kinds getKind() const { return static_cast<Kinds>(Kind); }
  361     bool isLValue() const { return Kind == CL_LValue; }
  362     bool isXValue() const { return Kind == CL_XValue; }
  363     bool isGLValue() const { return Kind <= CL_XValue; }
  364     bool isPRValue() const { return Kind >= CL_Function; }
  365     bool isRValue() const { return Kind >= CL_XValue; }