Home | History | Annotate | Download | only in i18n

Lines Matching refs:QUOTE

157 static const UChar QUOTE = 0x27; // Single quote
795 if (ch == QUOTE) {
796 // Consecutive single quotes are a single quote literal,
798 if ((i+1) < fPattern.length() && fPattern[i+1] == QUOTE) {
799 appendTo += (UChar)QUOTE;
1940 // Handle quotes. Two consecutive quotes is a quote
1942 // quote indicates entry or exit from a quoted region.
1943 if (ch == QUOTE) {
1944 // Match a quote literal '' within OR outside of quotes
1946 ++i; // Skip over doubled quote
1947 // Fall through and treat quote as a literal
2985 if (c == QUOTE)
2989 if (c == QUOTE)
3114 if (ch == QUOTE) {
3115 if ((i+1) < pattern.length() && pattern[i+1] == QUOTE) {