Searched refs:quotes (Results 1 - 5 of 5) sorted by relevance

/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DQuotedStringTokenizer.java33 * A string tokenizer that supports entries with quotes and nested quotes. If
34 * the separators are quoted either by ' and ", or whatever quotes the user
40 private final char quotes[]; field in class:QuotedStringTokenizer
71 * @param quotes
72 * all the characters that should be accepted as quotes, default
75 private QuotedStringTokenizer(final String str, final String delim, final char[] quotes) { argument
76 this.quotes = quotes;
124 for (final char q : quotes) {
[all...]
/openjdk10/jdk/test/java/security/AccessController/
H A DDoPrivAccompliceTest.java61 String quotes = "\"";
64 .append(quotes).append(codebase).append(quotes)
67 .append(quotes).append("user.name").append(quotes)
69 .append(quotes).append("read").append(quotes)
/openjdk10/jdk/src/java.base/windows/native/libjli/
H A Dcmdtoargs.c73 int quotes = 0; local
108 quotes++;
110 } else if (prev == L'"' && quotes % 2 == 0) {
111 quotes++;
113 } else if (quotes == 0) {
114 quotes++; // starting quote
116 quotes--; // matching quote
136 if (quotes % 2 == 1) {
151 if (quotes % 2 == 0) {
321 // "pgmname" rest of cmdline ie. pgmname + 2 double quotes
[all...]
/openjdk10/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DTokenList.java224 /** Format the token string, using quotes and escapes.
229 * If the token contains all end quotes, the last pair
234 public String format(String separator, String[] quotes) { argument
/openjdk10/jaxp/src/jdk.xml.dom/share/classes/org/w3c/dom/css/
H A DCSS2Properties.java1429 * See the quotes property definition in CSS2.
1433 * See the quotes property definition in CSS2.
1439 public void setQuotes(String quotes) argument

Completed in 63 milliseconds