Lines Matching defs:gX
76 static const UChar gX = 0x0078;
272 if (firstChar >= gZero && firstChar <= gNine && lastChar != gX) {
367 if (firstChar == gZero && lastChar == gX) {
371 else if (firstChar == gX && lastChar == gX) {
375 else if (firstChar == gX && lastChar == gZero) {
661 case kImproperFractionRule: result.append(gX).append(decimalPoint == 0 ? gDot : decimalPoint).append(gX); break;
662 case kProperFractionRule: result.append(gZero).append(decimalPoint == 0 ? gDot : decimalPoint).append(gX); break;
663 case kMasterRule: result.append(gX).append(decimalPoint == 0 ? gDot : decimalPoint).append(gZero); break;