Searched defs:escape (Results 1 - 25 of 32) sorted by relevance

12

/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DUtils.java34 public static String escape(String s) { method in class:Utils
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJCommentPart.java105 f.p(escape(line));
110 f.p(escape(s));
129 private String escape(String s) { method in class:JCommentPart
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/marshaller/
H A DCharacterEscapeHandler.java47 void escape( char[] ch, int start, int length, boolean isAttVal, Writer out ) throws IOException; method in interface:CharacterEscapeHandler
H A DDumbEscapeHandler.java47 public void escape(char[] ch, int start, int length, boolean isAttVal, Writer out) throws IOException { method in class:DumbEscapeHandler
H A DMinimumEscapeHandler.java44 public void escape(char[] ch, int start, int length, boolean isAttVal, Writer out) throws IOException { method in class:MinimumEscapeHandler
H A DNioEscapeHandler.java34 * Uses JDK1.4 NIO functionality to escape characters smartly.
63 public void escape(char[] ch, int start, int length, boolean isAttVal, Writer out) throws IOException { method in class:NioEscapeHandler
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DCharacterEscapeHandler.java47 void escape( char ch[], int start, int length, boolean isAttVal, Writer out ) throws IOException; method in interface:CharacterEscapeHandler
H A DDumbEscapeHandler.java47 public void escape(char[] ch, int start, int length, boolean isAttVal, Writer out) throws IOException { method in class:DumbEscapeHandler
/openjdk7/jdk/test/sun/net/www/
H A DParseUtil_4922813.java128 * encoded. The % escape sequence is used for characters that are above
142 escape(sb, c);
146 escape(sb, (char)(0xE0 | ((c >> 12) & 0x0F)));
147 escape(sb, (char)(0x80 | ((c >> 6) & 0x3F)));
148 escape(sb, (char)(0x80 | ((c >> 0) & 0x3F)));
150 escape(sb, (char)(0xC0 | ((c >> 6) & 0x1F)));
151 escape(sb, (char)(0x80 | ((c >> 0) & 0x3F)));
159 * Appends the URL escape sequence for the specified char to the
162 private static void escape(StringBuffer s, char c) { method in class:ParseUtil_V117
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DXMLFormatter.java76 private void escape(StringBuffer sb, String text) { method in class:XMLFormatter
123 escape(sb, name);
128 escape(sb, record.getLevel().toString());
133 escape(sb, record.getSourceClassName());
139 escape(sb, record.getSourceMethodName());
151 escape(sb, message);
162 escape(sb, record.getMessage());
165 escape(sb, record.getResourceBundleName());
180 escape(sb, parameters[i].toString());
193 escape(s
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DSerializationHandler.java82 * @param escape true if escaping is to be set on.
84 public boolean setEscaping(boolean escape) throws SAXException; argument
H A DToHTMLSAXHandler.java112 * @param escape true if escaping is to be set on.
116 public boolean setEscaping(boolean escape) throws SAXException argument
119 m_escapeSetting = escape;
121 if (escape) {
H A DToTextSAXHandler.java149 public boolean setEscaping(boolean escape) argument
H A DToXMLSAXHandler.java104 public boolean setEscaping(boolean escape) throws SAXException argument
107 m_escapeSetting = escape;
109 if (escape) {
/openjdk7/jdk/make/tools/src/build/tools/compileproperties/
H A DCompileProperties.java237 data.append(" { \"" + escape((String)key) + "\", \"" +
238 escape((String)p.get(key)) + "\" },\n");
287 private static String escape(String theString) { method in class:CompileProperties
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DConstantPool.java155 str = "\"" + escape(((ConstantUtf8)c).getBytes()) + "\"";
186 private static final String escape(String str) { method in class:ConstantPool
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DUtil.java160 public static String escape(String input) { method in class:Util
/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DWriterUtility.java111 public void setEscapeCharacters(boolean escape){ argument
112 fEscapeCharacters = escape ;
150 //escape this character
/openjdk7/jdk/src/share/classes/com/sun/jndi/cosnaming/
H A DCNNameParser.java41 * escape character.
55 mySyntax.put("jndi.syntax.escape", ""+escapeChar);
152 ++i; // skip escape and let meta through
257 StringBuffer one = new StringBuffer(escape(comp.id));
259 one.append(kindSeparator + escape(comp.kind));
272 private static String escape(String str) { method in class:CNNameParser
276 return str; // no meta characters to escape
283 newStr[j++] = escapeChar; // escape meta character
/openjdk7/langtools/make/tools/CompileProperties/
H A DCompileProperties.java231 data.append(" { \"" + escape((String)key) + "\", \"" +
232 escape((String)p.get(key)) + "\" },\n");
293 private static String escape(String theString) { method in class:CompileProperties
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUtility.java64 public static final String escape(String s) { method in class:Utility
101 * Convert an escape to a 32-bit code point value. We attempt
105 * be updated to point after the escape sequence.
182 // If an escape sequence specifies a lead surrogate, see
184 // escape or as a literal. If so, join them up into a
223 * the backslash to generically escape the next character. */
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsName.java70 * <p> Backslash (<tt>\</tt>) is used as the escape character in the
79 * otherwise not allowed in a domain name. Note that escape characters
83 * does not generally insert escape sequences except where necessary.
175 escape(buf, label);
429 if (c == '\\') { // found an escape sequence
459 * Returns (as a char) the octet indicated by the escape sequence
461 * @throws InvalidNameException if a valid escape sequence is not found.
476 "Invalid escape sequence in " + name);
483 "Invalid escape sequence in " + name);
533 private static void escape(StringBuffe method in class:DnsName
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/impl/
H A DNameUtil.java214 ss.add(escape(capitalize(w)));
297 public static void escape(StringBuilder sb, String s, int start) { method in class:NameUtil
317 private static String escape(String s) { method in class:NameUtil
322 escape(sb, s, i);
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRECompiler.java384 * Match an escape sequence. Handles quoted chars and octal escapes as well
385 * as normal escape characters. Always advances the input stream by the
387 * octal escape and a backref. You can access the type of ESC_CLASS or
389 * @return ESC_* code or character if simple escape
392 int escape() throws RESyntaxException method in class:RECompiler
426 // Exact required hex digits for escape type
453 // If it's not a valid digit or hex letter, the escape must be invalid
485 // An octal escape starts with a 0 or has two digits in a row
501 // It's actually a backreference (\[1-9]), not an escape
598 switch (c = escape ())
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DParseUtil.java92 * encoded. The % escape sequence is used for characters that are above
122 retLen = escape(retCC, c, retLen);
126 retLen = escape(retCC, (char)(0xE0 | ((c >> 12) & 0x0F)), retLen);
127 retLen = escape(retCC, (char)(0x80 | ((c >> 6) & 0x3F)), retLen);
128 retLen = escape(retCC, (char)(0x80 | ((c >> 0) & 0x3F)), retLen);
130 retLen = escape(retCC, (char)(0xC0 | ((c >> 6) & 0x1F)), retLen);
131 retLen = escape(retCC, (char)(0x80 | ((c >> 0) & 0x3F)), retLen);
150 * Appends the URL escape sequence for the specified char to the
153 private static int escape(char[] cc, char c, int index) { method in class:ParseUtil
161 * Un-escape an
[all...]

Completed in 112 milliseconds

12