Home | History | Annotate | Download | only in notification

Lines Matching refs:rt

210         final Condition[] rt = new Condition[valid.size()];
211 for (int i = 0; i < rt.length; i++) {
212 rt[i] = valid.valueAt(i);
214 return rt;
352 final ArraySet<T> rt = new ArraySet<T>();
353 if (items == null || items.length == 0) return rt;
358 rt.add(item);
361 return rt;
399 ArrayList<Condition> rt = null;
403 if (rt == null) rt = new ArrayList<Condition>();
404 rt.add(r.condition);
407 return rt == null ? NO_CONDITIONS : rt.toArray(new Condition[rt.size()]);