Home | History | Annotate | Download | only in text

Lines Matching defs:QUOTE

155  * Two exceptions are the currency sign and quote, which are not localized.
241 * <td>Used to quote special characters in a prefix or suffix,
243 * <code>"#123"</code>. To create a single quote
303 * padChar := '&#92;u0000'..'&#92;uFFFD' - quote
3083 if (c == QUOTE) {
3085 int j = affixPat.indexOf(QUOTE, i);
3087 pos = match(text, pos, QUOTE);
3093 if (i < affixPat.length() && affixPat.charAt(i) == QUOTE) {
3094 pos = match(text, pos, QUOTE);
3101 // Unterminated quote; should be caught by apply
3998 if (ch != QUOTE) {
4106 * literal unless bracketed by QUOTEs. The following characters outside QUOTE are
4110 * long names, such as "US Dollars". Any other character outside QUOTE represents
4137 if (c == QUOTE) {
4139 int j = pattern.indexOf(QUOTE, i);
4141 buffer.append(QUOTE);
4147 if (i < pattern.length() && pattern.charAt(i) == QUOTE) {
4148 buffer.append(QUOTE);
4155 // Unterminated quote; should be caught by apply
4421 buffer.append(QUOTE);
4424 if (ch == QUOTE) {
4429 buffer.append(QUOTE);
4440 case QUOTE:
4441 j = affixPat.indexOf(QUOTE, i + 1);
4460 buffer.append(QUOTE);
4462 buffer.append(QUOTE);
4725 // 3=prefix in quote, 4=suffix in quote. Subpart 0 is between the prefix and
4803 // == QUOTE) [Richard/GCL]
4804 if (ch == QUOTE && (pos + 1) < pattern.length()) {
4807 // A quote outside quotes indicates either the opening
4808 // quote or two quotes, which is a quote literal. That is,
4809 // we have the first quote in 'do' or o''clock.
4810 if (after == QUOTE) {
4893 } else if (ch == QUOTE) {
4896 // groupingSeparator == QUOTE) [Richard/GCL]
4898 // A quote outside quotes indicates either the opening quote
4899 // or two quotes, which is a quote literal. That is, we have
4900 // the first quote in 'do' or o''clock.
4901 if ((pos + 1) < pattern.length() && pattern.charAt(pos + 1) == QUOTE) {
4905 subpart += 2; // open quote
4933 } else if (ch == QUOTE) {
4934 // A quote outside quotes indicates either the opening quote or
4935 // two quotes, which is a quote literal. That is, we have the
4936 // first quote in 'do' or o''clock.
4937 if ((pos + 1) < pattern.length() && pattern.charAt(pos + 1) == QUOTE) {
4941 subpart += 2; // open quote
4978 case 3: // Prefix subpart, in quote
4979 case 4: // Suffix subpart, in quote
4980 // A quote within quotes indicates either the closing quote or two
4981 // quotes, which is a quote literal. That is, we have the second quote
4983 if (ch == QUOTE) {
4984 if ((pos + 1) < pattern.length() && pattern.charAt(pos + 1) == QUOTE) {
4988 subpart -= 2; // close quote
5002 patternError("Unterminated quote", pattern);
5044 || subpart > 2) { // subpart > 2 == unmatched quote
5938 private static final char QUOTE = '\'';