Home | History | Annotate | Download | only in util

Lines Matching defs:first

28     public final @Nullable F first;
34 * @param first the first object in the Pair
37 public Pair(@Nullable F first, @Nullable S second) {
38 this.first = first;
56 return ObjectsCompat.equals(p.first, first) && ObjectsCompat.equals(p.second, second);
66 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode());
71 return "Pair{" + String.valueOf(first) + " " + String.valueOf(second) + "}";
76 * @param a the first object in the Pair