Home | History | Annotate | Download | only in collect

Lines Matching full:axes

758    * @param <B> any common base class shared by all axes (often just {@link
803 * @param <B> any common base class shared by all axes (often just {@link
817 final ImmutableList<Axis> axes;
828 this.axes = builder.build();
849 Object[] tuple = new Object[axes.size()];
851 tuple[i] = axes.get(i).getForIndex(index);
867 int dimensions = axes.size();
872 if (!axes.get(i).contains(tuple.get(i))) {
884 return this.axes.equals(that.axes);
895 for (int i = 0; i < axes.size(); i++) {
898 return axes.hashCode() + adjust;