Searched defs:quoted (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DUtil.java34 static String join(String padder, Vector<String> v, boolean quoted) { argument
38 if (quoted) {
42 if (quoted) {
52 static String prefixed_join(String padder, Vector<String> v, boolean quoted) { argument
58 if (quoted) {
62 if (quoted) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/
H A DPolicyUtils.java449 public static String unquote(final String quoted) { argument
450 if (null == quoted) {
453 final byte[] unquoted = new byte[quoted.length()]; // result cannot be longer than original string
457 for (int i=0; i < quoted.length(); i++) { // iterarate over all chars in the input
458 c = quoted.charAt(i);
460 if ((i + 2) >= quoted.length()) {
461 throw LOGGER.logSevereException(new RuntimePolicyUtilsException(LocalizationMessages.WSP_0079_ERROR_WHILE_RFC_2396_UNESCAPING(quoted)), false);
463 hi = Character.digit(quoted.charAt(++i), 16);
464 lo = Character.digit(quoted.charAt(++i), 16);
466 throw LOGGER.logSevereException(new RuntimePolicyUtilsException(LocalizationMessages.WSP_0079_ERROR_WHILE_RFC_2396_UNESCAPING(quoted)), fals
[all...]

Completed in 35 milliseconds