Home | History | Annotate | Download | only in impl

Lines Matching defs:QUOTES

74 	 * @param quotes
75 * The characters to be used as quotes around array items that
84 String separator, String quotes, boolean allowCommas) throws XMPException
93 if (quotes == null || quotes.length() == 0)
95 quotes = "\"";
117 // Make sure the open and close quotes are a legitimate pair.
118 char openQuote = quotes.charAt(0);
119 char closeQuote = checkQuotes(quotes, openQuote);
249 // internal quotes that
250 // match the surrounding quotes. Do not undouble "unmatching"
251 // quotes.
275 // (non-closing) quotes,
862 * Make sure the open and close quotes are a legitimate pair and return the
865 * @param quotes
872 private static char checkQuotes(String quotes, char openQuote) throws XMPException
882 if (quotes.length() == 1)
888 closeQuote = quotes.charAt(1);
905 * Classifies the character into normal chars, spaces, semicola, quotes,
926 else if (QUOTES.indexOf(ch) >= 0 || (0x3008 <= ch && ch <= 0x300F)
991 * Add quotes to the item.
1001 * @return Returns the value in quotes.
1018 // of applying quotes
1023 // separators here. Internal quotes, as in -- Irving "Bud" Jones --
1061 // Create a quoted copy, doubling any internal quotes that match the
1062 // outer ones. Internal quotes did not stop the "needs quoting"
1065 // quotes. Handle the special
1153 * ASCII '[' (0x5B) and ']' (0x5D) are used as quotes in Chinese and
1155 * U+00AB and U+00BB, guillemet quotes<br>
1156 * U+3008..U+300F, various quotes.<br>
1157 * U+301D..U+301F, double prime quotes.<br>
1159 * U+2018..U+201F, various quotes.<br>
1160 * U+2039 and U+203A, guillemet quotes.
1162 private static final String QUOTES =