Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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: assert(getValueKind() == VK_LValue); break; in ClassifyImpl()
95 return Cl::CL_LValue; in ClassifyExprValueKind()
145 return Cl::CL_LValue; in ClassifyInternal()
150 return !E->isLValue() ? ClassifyTemporary(E->getType()) : Cl::CL_LValue; in ClassifyInternal()
224 return Cl::CL_LValue; in ClassifyInternal()
235 ? Cl::CL_PRValue : Cl::CL_LValue; in ClassifyInternal()
248 return Cl::CL_LValue; in ClassifyInternal()
260 if (K != Cl::CL_LValue) return K; in ClassifyInternal()
264 return Cl::CL_LValue; in ClassifyInternal()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExpr.h329 CL_LValue, enumerator
375 bool isLValue() const { return Kind == CL_LValue; } in isLValue()
384 return Classification(CL_LValue, CM_Modifiable); in makeSimpleLValue()