Searched refs:quoted (Results 1 - 14 of 14) sorted by relevance

/openjdk10/hotspot/make/src/classes/build/tools/projectcreator/
H A DUtil.java36 static String join(String padder, Vector<String> v, boolean quoted) { argument
40 if (quoted) {
44 if (quoted) {
54 static String prefixed_join(String padder, Vector<String> v, boolean quoted) { argument
60 if (quoted) {
64 if (quoted) {
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DAbstractLauncher.java79 String quoted = null;
84 if (quoted != null) {
86 tokenList.add(quoted);
87 quoted = null;
89 quoted += token;
93 quoted = pending;
103 quoted = "";
124 if (quoted != null) {
125 tokenList.add(quoted);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/policy/privateutil/
H A DPolicyUtils.java454 public static String unquote(final String quoted) { argument
455 if (null == quoted) {
458 final byte[] unquoted = new byte[quoted.length()]; // result cannot be longer than original string
462 for (int i=0; i < quoted.length(); i++) { // iterarate over all chars in the input
463 c = quoted.charAt(i);
465 if ((i + 2) >= quoted.length()) {
466 throw LOGGER.logSevereException(new RuntimePolicyUtilsException(LocalizationMessages.WSP_0079_ERROR_WHILE_RFC_2396_UNESCAPING(quoted)), false);
468 hi = Character.digit(quoted.charAt(++i), 16);
469 lo = Character.digit(quoted.charAt(++i), 16);
471 throw LOGGER.logSevereException(new RuntimePolicyUtilsException(LocalizationMessages.WSP_0079_ERROR_WHILE_RFC_2396_UNESCAPING(quoted)), fals
[all...]
/openjdk10/common/autoconf/
H A Dconfigure140 quoted="$1"
149 quoted="'$1'"
151 echo "$quoted"
187 # Save the arguments, intelligently quoted for CONFIGURE_COMMAND_LINE.
214 # Save the quoted command line
/openjdk10/common/src/
H A Dfixpath.c274 // given an argument, convert it to the windows command line safe quoted version
279 char *quoted = NULL; local
280 char *current = quoted;
302 // process string to be quoted until NUL
340 size_t alloc = (size_t) (current - quoted + (ptrdiff_t) 2);
341 current = quoted = (char*) calloc(alloc, sizeof(char));
349 return quoted;
/openjdk10/jdk/src/jdk.naming.dns/share/classes/com/sun/jndi/dns/
H A DResourceRecord.java514 * '"', then the result is quoted and any embedded '\\' or '"'
515 * chars are escaped with '\\'. Empty strings are also quoted.
522 boolean quoted = (len == 0); // quote string if empty
525 quoted |= (c == ' ');
527 quoted = true;
532 if (quoted) {
/openjdk10/hotspot/src/share/vm/logging/
H A DlogConfiguration.cpp119 const bool quoted = start_quote != NULL; local
123 if (quoted && equals > start_quote) {
141 if (quoted) {
148 errstream->print_cr("Output name can not be partially quoted."
348 // Keep searching after the quoted substring
/openjdk10/jdk/src/java.base/share/classes/java/text/
H A DMessageFormat.java107 * <em>not</em> <code>'{'</code> and <code>'}'</code> (quoted left and
115 * with the pound-sign quoted, with a result such as: {@code
1570 boolean quoted = false;
1575 if (!quoted) {
1577 quoted = true;
1583 if (quoted) {
1585 quoted = false;
1590 if (quoted) {
/openjdk10/jdk/src/java.management/share/classes/javax/management/modelmbean/
H A DDescriptorSupport.java1113 throw new XMLParseException("Value must be quoted: <" + s + ">");
1119 final Character quoted;
1122 && ((quoted = entityToCharMap.get(s.substring(i, semi+1)))
1124 buf.append(quoted);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/lib/
H A DExsltDatetime.java1096 // Assume it's an openening quote so simply copy the quoted
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/
H A DLdapSchemaParser.java440 // otherwise it's a schema element with a quoted string value
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xpath/internal/compiler/
H A DXPathParser.java2000 new Object[]{ m_token }); //"Pattern literal ("+m_token+") needs to be quoted!");
/openjdk10/jdk/src/java.base/share/classes/sun/security/provider/
H A DPolicyParser.java353 keyStoreUrlString = match("quoted string");
362 keyStoreType = match("quoted string");
375 keyStoreProvider = match("quoted string");
384 storePassURL = match("quoted string");
430 e.codeBase = match("quoted string");
438 e.signedBy = match("quoted string");
486 principalName = match("quoted string");
595 e.name = expand(match("quoted string"));
604 e.action = expand(match("quoted string"));
612 e.signedBy = expand(match("quoted strin
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/
H A DCommandProcessor.java173 String quoted = cmd.substring(quote + 1, endquote);
181 add(quoted, t);

Completed in 174 milliseconds