Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/llvm/tools/clang/lib/AST/
DExprClassification.cpp57 case Cl::CL_XValue: assert(getValueKind() == VK_XValue); break; in ClassifyImpl()
97 return Cl::CL_XValue; in ClassifyExprValueKind()
385 : Cl::CL_XValue; in ClassifyInternal()
445 return RV->getPointeeType()->isFunctionType() ? Cl::CL_LValue : Cl::CL_XValue; in ClassifyUnnamed()
622 case Cl::CL_XValue: return LV_InvalidExpression; in ClassifyLValue()
643 case Cl::CL_XValue: return MLV_InvalidExpression; in isModifiableLvalue()
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/AST/
DExpr.h306 CL_XValue, enumerator
350 bool isXValue() const { return Kind == CL_XValue; } in isXValue()
351 bool isGLValue() const { return Kind <= CL_XValue; } in isGLValue()
353 bool isRValue() const { return Kind >= CL_XValue; } in isRValue()