Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprClassification.cpp51 kind = (kind == Cl::CL_LValue ? Cl::CL_AddressableVoid : Cl::CL_Void); in ClassifyImpl()
56 case Cl::CL_LValue: in ClassifyImpl()
101 return Cl::CL_LValue; in ClassifyExprValueKind()
145 return Cl::CL_LValue; in ClassifyInternal()
153 return E->isLValue() ? Cl::CL_LValue : Cl::CL_PRValue; in ClassifyInternal()
162 return SL ? ClassifyInternal(Ctx, SL) : Cl::CL_LValue; in ClassifyInternal()
164 return Cl::CL_LValue; in ClassifyInternal()
170 return !E->isLValue() ? ClassifyTemporary(E->getType()) : Cl::CL_LValue; in ClassifyInternal()
228 return Lang.HLSL ? Cl::CL_LValue : Cl::CL_PRValue; in ClassifyInternal()
242 return Cl::CL_LValue; in ClassifyInternal()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h333 CL_LValue, enumerator
379 bool isLValue() const { return Kind == CL_LValue; } in isLValue()
388 return Classification(CL_LValue, CM_Modifiable); in makeSimpleLValue()