Lines Matching defs:arrayRef
1130 bool arrayRef = (Res == Sema::OS_Array);
1134 << BaseExpr->getType() << arrayRef;
1137 if (!arrayRef) {
1172 arrayRef ? &S.Context.Idents.get("index")
1174 arrayRef ? S.Context.UnsignedLongTy
1185 << BaseExpr->getType() << 0 << arrayRef;
1196 if ((arrayRef && !T->isIntegralOrEnumerationType()) ||
1197 (!arrayRef && !T->isObjCObjectPointerType())) {
1199 arrayRef ? diag::err_objc_subscript_index_type
1208 diag::err_objc_indexing_method_result_type) << R << arrayRef;
1240 bool arrayRef = (Res == Sema::OS_Array);
1244 << BaseExpr->getType() << arrayRef;
1248 if (!arrayRef) {
1292 arrayRef ? &S.Context.Idents.get("index")
1294 arrayRef ? S.Context.UnsignedLongTy
1307 << BaseExpr->getType() << 1 << arrayRef;
1317 if (AtIndexSetter && arrayRef) {
1329 diag::err_objc_subscript_object_type) << T << arrayRef;
1335 else if (AtIndexSetter && !arrayRef)