Home | History | Annotate | Download | only in i18n

Lines Matching refs:kQuote

209 #define kQuote                       ((UChar)0x0027) /*'\''*/
2285 if (c == kQuote) {
2995 * pattern are literal unless prefixed by kQuote. The following characters
2996 * after kQuote are recognized: PATTERN_PERCENT, PATTERN_PER_MILLE,
2997 * PATTERN_MINUS, and kCurrencySign. If kCurrencySign is doubled (kQuote +
3001 * Any other character after a kQuote represents itself.
3002 * kQuote must be followed by another character; kQuote may not occur by
3042 if (c == kQuote) {
3298 i = affixPattern->indexOf(kQuote, pos);
3312 if (c == kQuote) {
3314 // Fall through and append another kQuote below
3597 (*fNegPrefixPattern)[(int32_t)0] == kQuote &&
3905 affix->append(kQuote); // Encode currency
3924 } else if (ch == kQuote) {
3928 U_ASSERT(U16_LENGTH(kQuote) == 1);
3930 if (pos < pattern.length() && pattern[pos] == kQuote) {
3931 affix->append(kQuote); // Encode quote
3960 affix->append(kQuote); // Encode percent/perMill
3974 affix->append(kQuote); // Encode percent/perMill
3993 affix->append(kQuote); // Encode minus
3998 affix->append(kQuote); // Encode plus
4014 if (ch == kQuote) {
4016 if (pos < pattern.length() && pattern[pos] == kQuote) {
4017 affix->append(kQuote); // Encode quote
4261 fNegPrefixPattern->append(kQuote).append(kPatternMinus)