Lines Matching refs:result

339     ParsedSubpatternInfo& result = *currentSubpattern;
344 result.widthExceptAffixes += 1;
345 result.groupingSizes <<= 16;
349 if (result.integerNumerals > 0) {
354 result.widthExceptAffixes += 1;
355 result.groupingSizes += 1;
356 if (result.integerAtSigns > 0) {
357 result.integerTrailingHashSigns += 1;
359 result.integerLeadingHashSigns += 1;
361 result.integerTotal += 1;
365 if (result.integerNumerals > 0) {
370 if (result.integerTrailingHashSigns > 0) {
375 result.widthExceptAffixes += 1;
376 result.groupingSizes += 1;
377 result.integerAtSigns += 1;
378 result.integerTotal += 1;
391 if (result.integerAtSigns > 0) {
396 result.widthExceptAffixes += 1;
397 result.groupingSizes += 1;
398 result.integerNumerals += 1;
399 result.integerTotal += 1;
400 if (!result.rounding.isZeroish() || state.peek() != u'0') {
401 result.rounding.appendDigit(static_cast<int8_t>(state.peek() - u'0'), 0, true);
413 auto grouping1 = static_cast<int16_t> (result.groupingSizes & 0xffff);
414 auto grouping2 = static_cast<int16_t> ((result.groupingSizes >> 16) & 0xffff);
415 auto grouping3 = static_cast<int16_t> ((result.groupingSizes >> 32) & 0xffff);
430 ParsedSubpatternInfo& result = *currentSubpattern;
436 result.widthExceptAffixes += 1;
437 result.fractionHashSigns += 1;
438 result.fractionTotal += 1;
452 if (result.fractionHashSigns > 0) {
457 result.widthExceptAffixes += 1;
458 result.fractionNumerals += 1;
459 result.fractionTotal += 1;
463 result.rounding
478 ParsedSubpatternInfo& result = *currentSubpattern;
483 if ((result.groupingSizes & 0xffff0000L) != 0xffff0000L) {
489 result.widthExceptAffixes++;
492 result.exponentHasPlusSign = true;
493 result.widthExceptAffixes++;
497 result.exponentZeros += 1;
498 result.widthExceptAffixes++;
968 UnicodeString result;
976 result.append(u'\'');
980 result.append(u'\'');
987 result.append(u'\'');
988 result.append(u'\'');
996 result.append(u'\'');
997 result.append(u'\'');
1011 result.append(u'\'');
1014 result.append(pair[1]);
1023 result.append(u'\'');
1026 result.append(ch);
1032 result.append(u'\'');
1035 result.append(ch);
1038 result.append(ch);
1045 result.append(u'\'');
1052 return result;
1113 // Finally, set the result into the StringBuilder.