Home | History | Annotate | Download | only in common

Lines Matching refs:APOSTROPHE

23 static const UChar APOSTROPHE = 0x0027; // '\''
116 } else if (c == APOSTROPHE) {
118 && text.charAt(i) != APOSTROPHE) {}
308 // We prefer backslash APOSTROPHE to double APOSTROPHE
313 // If the first thing in the quoteBuf is APOSTROPHE
316 quoteBuf.charAt(0) == APOSTROPHE &&
317 quoteBuf.charAt(1) == APOSTROPHE) {
318 rule.append(BACKSLASH).append(APOSTROPHE);
321 // If the last thing in the quoteBuf is APOSTROPHE
325 quoteBuf.charAt(quoteBuf.length()-2) == APOSTROPHE &&
326 quoteBuf.charAt(quoteBuf.length()-1) == APOSTROPHE) {
331 rule.append(APOSTROPHE);
333 rule.append(APOSTROPHE);
337 rule.append(BACKSLASH).append(APOSTROPHE);
359 (c == APOSTROPHE || c == BACKSLASH)) {
375 if (c == APOSTROPHE) {