Searched refs:quote (Results 1 - 25 of 44) sorted by relevance

12

/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DSunCommandLineLauncher.java44 static private final String ARG_QUOTE = "quote";
117 getString("sun.quote.label"),
118 getString("sun.quote"),
151 String quote = argument(ARG_QUOTE, arguments).value();
155 if (quote.length() > 1) {
215 // Quote only if necessary in case the quote arg value is bogus
217 exePath = quote + exePath + quote;
223 // Quote only if necessary in case the quote arg value is bogus
225 xrun = quote
[all...]
H A DRawCommandLineLauncher.java39 static private final String ARG_QUOTE = "quote";
86 getString("raw.quote.label"),
87 getString("raw.quote"),
108 String quote = argument(ARG_QUOTE, arguments).value();
110 if (quote.length() > 1) {
118 return launch(tokenizeCommand(command, quote.charAt(0)),
H A DAbstractLauncher.java62 String[] tokenizeCommand(String command, char quote) { argument
63 String quoteStr = String.valueOf(quote); // easier to deal with
66 * Tokenize the command, respecting the given quote character.
69 quote + " \t\r\n\f",
113 * An unclosed quote at the end of the command. Do an
114 * implicit end quote.
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXML11DocumentScannerImpl.java200 // quote
201 int quote = fEntityScanner.peekChar();
202 if (quote != '\'' && quote != '"') {
209 int c = fEntityScanner.scanLiteral(quote, value);
216 if (c == quote && (fromIndex = isUnchangedByNormalization(value)) == -1) {
220 if (cquote != quote) {
232 if (c != quote) {
391 c = fEntityScanner.scanLiteral(quote, value);
396 } while (c != quote || entityDept
[all...]
H A DXML11DTDScannerImpl.java159 int quote = fEntityScanner.scanChar();
160 if (quote != '\'' && quote != '"') {
179 else if (c == quote) {
H A DXMLScanner.java408 // emit -1 in such cases when it finds a quote; this is
579 int quote = fEntityScanner.peekChar();
580 if (quote != '\'' && quote != '"') {
585 int c = fEntityScanner.scanLiteral(quote, value);
586 if (c != quote) {
603 c = fEntityScanner.scanLiteral(quote, value);
604 } while (c != quote);
608 if (!fEntityScanner.skipChar(quote)) {
778 // quote
[all...]
H A DXML11EntityScanner.java940 * before the quote character due to reaching the end of the input
949 * @param quote The quote character that signifies the end of the
960 public int scanLiteral(int quote, XMLString content) argument
1037 if (c == quote || c == '%' || !XML11Char.isXML11Content(c)
1048 if ((c == quote && !fCurrentEntity.literal)
1065 if (c == quote && fCurrentEntity.literal) {
/openjdk7/jdk/src/share/classes/java/beans/
H A DXMLEncoder.java470 writeln("<?xml version=" + quote("1.0") +
471 " encoding=" + quote(this.charset) + "?>");
473 writeln("<java version=" + quote(System.getProperty("java.version")) +
474 " class=" + quote(XMLDecoder.class.getName()) + ">");
540 private String quote(String s) { method in class:XMLEncoder
619 writeln("<object class=" + quote(f.getDeclaringClass().getName()) +
620 " field=" + quote(f.getName()) + "/>");
652 writeln("<object idref=" + quote(d.name) + "/>");
655 outputXML("void", " idref=" + quote(d.name), value);
726 attributes = attributes + " class=" + quote(((Clas
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DXMLEntityReader.java199 * before the quote character due to reaching the end of the input
208 * @param quote The quote character that signifies the end of the
219 public abstract int scanLiteral(int quote, XMLString content) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DParameterList.java199 String value = quote((String)e.getValue());
228 private String quote(String value) { method in class:ParameterList
229 return MimeUtility.quote(value, HeaderTokenizer.MIME);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJExpr.java223 public static String quotify(char quote, String s) { argument
226 sb.append(quote);
231 if((quote=='"' && c=='\'') || (quote=='\'' && c=='"')) {
258 sb.append(quote);
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DParseUtil.java302 // Most of the code are just copy and paste, except that quote()
356 * because we must not quote a literal IPv6 address
370 sb.append(quote(doquote, L_URIC, H_URIC));
373 sb.append(quote(opaquePart, L_URIC, H_URIC));
378 sb.append(quote(path, L_PATH, H_PATH));
381 sb.append(quote(query, L_URIC, H_URIC));
395 sb.append(quote(userInfo, L_USERINFO, H_USERINFO));
422 sb.append(quote(doquote,
427 sb.append(quote(authority,
437 sb.append(quote(fragmen
444 private static String quote(String s, long lowMask, long highMask) { method in class:ParseUtil
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DConvert.java219 public static String quote(String s) { method in class:Convert
222 buf.append(quote(s.charAt(i)));
231 public static String quote(char ch) { method in class:Convert
H A DConstants.java133 return '\'' + Convert.quote(c) + '\'';
137 return '"' + Convert.quote(s) + '"';
/openjdk7/jdk/src/share/classes/javax/management/loading/
H A DMLetParser.java124 int quote = -1;
128 quote = c;
133 (((quote < 0) && (c != ' ') && (c != '\t') &&
135 || ((quote >= 0) && (c != quote)))) {
139 if (c == quote) {
/openjdk7/jdk/test/javax/management/query/
H A DQueryMatchTest.java474 ObjectName.quote(pattern) +
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/tools/
H A DResolvingXMLFilter.java267 String quote = data.substring(0,1);
269 pos = data.indexOf(quote);
H A DResolvingParser.java267 String quote = data.substring(0,1);
269 pos = data.indexOf(quote);
/openjdk7/jdk/src/share/classes/java/awt/datatransfer/
H A DMimeTypeParameterList.java166 // find the next unescqped quote
182 // eat the quote
290 buffer.append(quote((String)parameters.get(key)));
339 * A routine that knows how and when to quote and escape the given value.
341 private static String quote(String value) { method in class:MimeTypeParameterList
344 // check to see if we actually have to quote this thing
353 // add the initial quote
365 // add the closing quote
/openjdk7/jaxws/src/share/jaf_classes/javax/activation/
H A DMimeTypeParameterList.java139 // find the next unescaped quote
157 // eat the quote
253 buffer.append(quote((String)parameters.get(key)));
280 * A routine that knows how and when to quote and escape the given value.
282 private static String quote(String value) { method in class:MimeTypeParameterList
285 // check to see if we actually have to quote this thing
295 // add the initial quote
306 // add the closing quote
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DCommandProcessor.java111 int quote = cmd.indexOf('"');
113 if (quote != -1) {
115 if (quote != -1) {
116 int endquote = cmd.indexOf('"', quote + 1);
121 String before = cmd.substring(0, quote).trim();
122 String quoted = cmd.substring(quote + 1, endquote);
131 quote = cmd.indexOf('"');
252 void quote(String s) { method in class:CommandProcessor
264 quote(type.getName());
267 quote(typ
[all...]
/openjdk7/jdk/test/javax/management/remote/mandatory/connectorServer/
H A DSetMBeanServerForwarder.java188 ",url="+ObjectName.quote(urls[i]));
/openjdk7/jdk/src/share/classes/java/io/
H A DStreamTokenizer.java42 * <i>numeric</i>, <i>string quote</i>, and <i>comment character</i>.
105 * For a quoted string token, its value is the quote character.
165 * a quote character.
211 * <li>Single quote <code>'&#92;''</code> and double quote <code>'"'</code>
212 * are string quote characters.
369 * If a string quote character is encountered, then a string is
371 * the string quote character, up to (but not including) the next
372 * occurrence of that same string quote character, or a line
696 /* If we broke out of the loop because we found a matching quote
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_check.c772 char *quote; local
774 quote = "";
782 quote = "\"";
791 check_printf(" val=%s", quote);
796 check_printf(" %s", quote);
807 check_printf("%s\n", quote);
/openjdk7/jdk/src/share/classes/java/net/
H A DURI.java296 * <li><p> To <i>quote</i> characters that are otherwise illegal in a
314 * <li><p><a name="quote"></a> An illegal character is <i>quoted</i> simply by
344 * <code>multi-argument constructors</code>} quote illegal characters as
625 * categories is <a href="#quote">quoted</a>. </p></li>
709 * (<tt>'@'</tt>), is <a href="#quote">quoted</a>. </p></li>
801 * is <a href="#quote">quoted</a>. </p></li>
1818 sb.append(quote(userInfo, L_USERINFO, H_USERINFO));
1848 sb.append(quote(doquote,
1852 sb.append(quote(authority,
1870 * because we must not quote
2655 private static String quote(String s, long lowMask, long highMask) { method in class:URI
[all...]

Completed in 91 milliseconds

12