Home | History | Annotate | Download | only in common

Lines Matching refs:APOSTROPHE

21 static const UChar APOSTROPHE = 0x0027; // '\''
114 } else if (c == APOSTROPHE) {
116 && text.charAt(i) != APOSTROPHE) {}
306 // We prefer backslash APOSTROPHE to double APOSTROPHE
311 // If the first thing in the quoteBuf is APOSTROPHE
314 quoteBuf.charAt(0) == APOSTROPHE &&
315 quoteBuf.charAt(1) == APOSTROPHE) {
316 rule.append(BACKSLASH).append(APOSTROPHE);
319 // If the last thing in the quoteBuf is APOSTROPHE
323 quoteBuf.charAt(quoteBuf.length()-2) == APOSTROPHE &&
324 quoteBuf.charAt(quoteBuf.length()-1) == APOSTROPHE) {
329 rule.append(APOSTROPHE);
331 rule.append(APOSTROPHE);
335 rule.append(BACKSLASH).append(APOSTROPHE);
357 (c == APOSTROPHE || c == BACKSLASH)) {
373 if (c == APOSTROPHE) {