Home | History | Annotate | Download | only in Sema

Lines Matching refs:isIndirect

3716                                             bool isIndirect) {
3722 if (isIndirect) {
3731 const char *OpSpelling = isIndirect ? "->*" : ".*";
3757 if (isIndirect) {
3771 << OpSpelling << (int)isIndirect)) {
3781 << (int)isIndirect << LHS.get()->getType();
3785 QualType UseType = isIndirect ? Context.getPointerType(Class) : Class;
3786 ExprValueKind VK = isIndirect ? VK_RValue : LHS.get()->getValueKind();
3797 Diag(Loc, diag::err_pointer_to_member_type) << isIndirect;
3822 if (!isIndirect && !LHS.get()->Classify(Context).isLValue())
3828 if (isIndirect || !LHS.get()->Classify(Context).isRValue())
3845 } else if (isIndirect) {