Home | History | Annotate | Download | only in i18n

Lines Matching refs:other

38 ScriptSet::ScriptSet(const ScriptSet &other) {
39 *this = other;
43 ScriptSet & ScriptSet::operator =(const ScriptSet &other) {
45 bits[i] = other.bits[i];
51 UBool ScriptSet::operator == (const ScriptSet &other) const {
53 if (bits[i] != other.bits[i]) {
104 ScriptSet &ScriptSet::Union(const ScriptSet &other) {
106 bits[i] |= other.bits[i];
111 ScriptSet &ScriptSet::intersect(const ScriptSet &other) {
113 bits[i] &= other.bits[i];
127 UBool ScriptSet::intersects(const ScriptSet &other) const {
129 if ((bits[i] & other.bits[i]) != 0) {
136 UBool ScriptSet::contains(const ScriptSet &other) const {
138 t.intersect(other);
139 return (t == other);