Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
151 return Cl::CL_LValue; in ClassifyInternal()
156 return !E->isLValue() ? ClassifyTemporary(E->getType()) : Cl::CL_LValue; in ClassifyInternal()
209 return Lang.HLSL ? Cl::CL_LValue : Cl::CL_PRValue; in ClassifyInternal()
233 return Cl::CL_LValue; in ClassifyInternal()
244 ? Cl::CL_PRValue : Cl::CL_LValue; in ClassifyInternal()
257 return Cl::CL_LValue; in ClassifyInternal()
269 if (K != Cl::CL_LValue) return K; in ClassifyInternal()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DExpr.h328 CL_LValue, enumerator
374 bool isLValue() const { return Kind == CL_LValue; } in isLValue()
383 return Classification(CL_LValue, CM_Modifiable); in makeSimpleLValue()