Home | History | Annotate | Download | only in Sema

Lines Matching refs:isIndirect

3792                                             bool isIndirect) {
3798 if (isIndirect) {
3807 const char *OpSpelling = isIndirect ? "->*" : ".*";
3833 if (isIndirect) {
3847 OpSpelling, (int)isIndirect)) {
3857 << (int)isIndirect << LHS.get()->getType();
3861 QualType UseType = isIndirect ? Context.getPointerType(Class) : Class;
3862 ExprValueKind VK = isIndirect ? VK_RValue : LHS.get()->getValueKind();
3873 Diag(Loc, diag::err_pointer_to_member_type) << isIndirect;
3898 if (!isIndirect && !LHS.get()->Classify(Context).isLValue())
3904 if (isIndirect || !LHS.get()->Classify(Context).isRValue())
3921 } else if (isIndirect) {