Home | History | Annotate | Download | only in message

Lines Matching refs:quote

89      * @param quote     <code>true</code> to always format with quoted values,
98 final boolean quote,
102 return formatter.formatElements(null, elems, quote).toString();
109 final boolean quote) {
126 formatHeaderElement(buffer, elems[i], quote);
158 * @param quote <code>true</code> to always format with quoted values,
167 boolean quote,
171 return formatter.formatHeaderElement(null, elem, quote).toString();
178 final boolean quote) {
195 doFormatValue(buffer, value, quote);
202 formatNameValuePair(buffer, elem.getParameter(i), quote);
246 * @param quote <code>true</code> to always format with quoted values,
255 final boolean quote,
259 return formatter.formatParameters(null, nvps, quote).toString();
266 boolean quote) {
283 formatNameValuePair(buffer, nvps[i], quote);
314 * @param quote <code>true</code> to always format with a quoted value,
323 final boolean quote,
327 return formatter.formatNameValuePair(null, nvp, quote).toString();
334 final boolean quote) {
351 doFormatValue(buffer, value, quote);
386 * @param quote <code>true</code> to always format with quotes,
391 boolean quote) {
393 if (!quote) {
394 for (int i = 0; (i < value.length()) && !quote; i++) {
395 quote = isSeparator(value.charAt(i));
399 if (quote) {
409 if (quote) {