Home | History | Annotate | Download | only in message

Lines Matching refs:nvp

318      * @param nvp       the name-value pair to format
327 String formatNameValuePair(final NameValuePair nvp,
332 return formatter.formatNameValuePair(null, nvp, quote).toString();
338 final NameValuePair nvp,
340 if (nvp == null) {
345 int len = estimateNameValuePairLen(nvp);
352 buffer.append(nvp.getName());
353 final String value = nvp.getValue();
366 * @param nvp the name-value pair to format, or <code>null</code>
370 protected int estimateNameValuePairLen(final NameValuePair nvp) {
371 if (nvp == null)
374 int result = nvp.getName().length(); // name
375 final String value = nvp.getValue();