Home | History | Annotate | Download | only in common

Lines Matching refs:items

36     public String join(List<String> items) {
37 if (items == null) {
41 if (items.isEmpty()) {
45 final int count = items.size();
48 return items.get(0);
52 return mResources.getString(R.string.join_two_items, items.get(0), items.get(1));
55 String result = items.get(count - 2);
59 items.get(i), result);
61 result = mResources.getString(R.string.join_many_items_last, result, items.get(count - 1));