Home | History | Annotate | Download | only in i18n

Lines Matching refs:that

111 ChoiceFormat::ChoiceFormat(const    ChoiceFormat&   that) 
112 : NumberFormat(that),
113 constructorErrorCode(that.constructorErrorCode),
114 msgPattern(that.msgPattern)
119 // Private constructor that creates a
134 ChoiceFormat::operator==(const Format& that) const
136 if (this == &that) return TRUE;
137 if (!NumberFormat::operator==(that)) return FALSE;
138 ChoiceFormat& thatAlias = (ChoiceFormat&)that;
146 ChoiceFormat::operator=(const ChoiceFormat& that)
148 if (this != &that) {
149 NumberFormat::operator=(that);
150 constructorErrorCode = that.constructorErrorCode;
151 msgPattern = that.msgPattern;
185 /* We reached something that looks like a decimal point.
320 // If the next character is an apostrophe, then that will be doubled,