Lines Matching refs:other
128 void merge(StrikeMetrics other) {
129 if (other == null) {
132 if (other.ascentX < ascentX) {
133 ascentX = other.ascentX;
135 if (other.ascentY < ascentY) {
136 ascentY = other.ascentY;
138 if (other.descentX > descentX) {
139 descentX = other.descentX;
141 if (other.descentY > descentY) {
142 descentY = other.descentY;
144 if (other.baselineX > baselineX) {
145 baselineX = other.baselineX;
147 if (other.baselineY > baselineY) {
148 baselineY = other.baselineY;
150 if (other.leadingX > leadingX) {
151 leadingX = other.leadingX;
153 if (other.leadingY > leadingY) {
154 leadingY = other.leadingY;
156 if (other.maxAdvanceX > maxAdvanceX) {
157 maxAdvanceX = other.maxAdvanceX;
159 if (other.maxAdvanceY > maxAdvanceY) {
160 maxAdvanceY = other.maxAdvanceY;