Home
last modified time | relevance | path

Searched refs:CL_XValue (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/lib/AST/
H A DExprClassification.cpp59 case Cl::CL_XValue: in ClassifyImpl()
103 return Cl::CL_XValue; in ClassifyExprValueKind()
426 : Cl::CL_XValue; in ClassifyInternal()
494 return RV->getPointeeType()->isFunctionType() ? Cl::CL_LValue : Cl::CL_XValue; in ClassifyUnnamed()
678 case Cl::CL_XValue: return LV_InvalidExpression; in ClassifyLValue()
699 case Cl::CL_XValue: return MLV_InvalidExpression; in isModifiableLvalue()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DExpr.h328 CL_XValue, enumerator
374 bool isXValue() const { return Kind == CL_XValue; } in isXValue()
375 bool isGLValue() const { return Kind <= CL_XValue; } in isGLValue()
377 bool isRValue() const { return Kind >= CL_XValue; } in isRValue()