Lines Matching defs:other
13 // in the documentation and/or other materials provided with the
568 * Map.==(other) => boolean
581 Map* other;
592 other = ruby_to_Map(_other);
594 if (self == other) {
597 if (self->key_type != other->key_type ||
598 self->value_type != other->value_type ||
599 self->value_type_class != other->value_type_class) {
602 if (upb_strtable_count(&self->table) != upb_strtable_count(&other->table)) {
607 // in other.
617 if (!upb_strtable_lookup2(&other->table, k.data, k.size, &other_v)) {
618 // Not present in other map.
758 Map* other = ruby_to_Map(hashmap);
761 if (self->key_type != other->key_type ||
762 self->value_type != other->value_type ||
763 self->value_type_class != other->value_type_class) {
767 for (upb_strtable_begin(&it, &other->table);