Searched refs:escaped (Results 1 - 15 of 15) sorted by relevance

/openjdk10/hotspot/test/compiler/arraycopy/
H A DTestEliminatedArrayCopyPhi.java37 static int[] escaped; field in class:TestEliminatedArrayCopyPhi
48 escaped = array;
/openjdk10/jdk/test/javax/naming/ldap/LdapName/
H A DTrailingSpaceTest.java70 String escaped = Rdn.escapeValue(value);
71 System.out.println("escaped: [" + escaped + "]");
74 String unescaped = (String) Rdn.unescapeValue(escaped);
/openjdk10/corba/src/java.corba/share/classes/com/sun/jndi/cosnaming/
H A DCNNameParser.java160 ": invalid character being escaped");
199 boolean escaped = false;
203 if (escaped) {
205 escaped = false;
211 escaped = true;
214 ": invalid character being escaped");
232 escaped = false;
234 if (escaped) {
236 escaped = false;
242 escaped
[all...]
/openjdk10/jdk/src/java.base/share/native/libjli/
H A Dargs.c181 // escaped character
182 char* escaped = (char*) JLI_MemAlloc(2 * sizeof(char)); local
183 escaped[1] = '\0';
186 escaped[0] = '\n';
189 escaped[0] = '\r';
192 escaped[0] = '\t';
195 escaped[0] = '\f';
198 escaped[0] = ch;
201 JLI_List_add(pctx->parts, escaped);
404 // escaped
[all...]
/openjdk10/jaxws/src/java.activation/share/classes/javax/activation/
H A DMimeTypeParameterList.java300 // add the properly escaped text
326 boolean escaped = false;
329 if (!escaped && (currentChar != '\\')) {
331 } else if (escaped) {
333 escaped = false;
335 escaped = true;
/openjdk10/jdk/src/java.datatransfer/share/classes/java/awt/datatransfer/
H A DMimeTypeParameterList.java357 // add the properly escaped text
385 boolean escaped = false;
388 if(!escaped && (currentChar != '\\')) {
390 } else if(escaped) {
392 escaped = false;
394 escaped = true;
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/joni/
H A DToken.java26 boolean escaped; field in class:Token
H A DLexer.java327 token.escaped = false;
341 token.escaped = true;
573 token.escaped = true;
739 token.escaped = false;
H A DParser.java93 if (token.type == TokenType.CHAR && token.getC() == '^' && !token.escaped) {
485 if (token.escaped) {
598 node.end = p; // non escaped character, remain shared, just increase shared range
/openjdk10/jdk/test/java/lang/instrument/BootClassPath/
H A DSetup.java78 byte[] escaped =
80 out.write(escaped);
/openjdk10/test/fmw/gtest/src/
H A Dgtest-port.cc226 // Returns true iff the given atom (specified by escaped and pattern)
228 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { argument
229 if (escaped) { // "\\p" where p is pattern_char.
314 // expression. The regex atom is defined as c if escaped is false,
321 bool escaped, char c, char repeat, const char* regex,
338 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i]))
357 const bool escaped = *regex == '\\'; local
358 if (escaped)
365 escaped, regex[0], regex[1], regex + 2, str);
370 return (*str != '\0') && AtomMatchesChar(escaped, *rege
320 MatchRepetitionAndRegexAtHead( bool escaped, char c, char repeat, const char* regex, const char* str) argument
[all...]
H A Dgtest-internal-inl.h951 GTEST_API_ bool AtomMatchesChar(bool escaped, char pattern, char ch);
955 bool escaped, char ch, char repeat, const char* regex, const char* str);
/openjdk10/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/
H A DToken.java47 // Should escaped Identifier should be a type rather than an attribute?
54 * (identifier, e.g.), and whether it is escaped, deprecated, or is a type
499 Token (int tokenType, String tokenName, boolean escaped, argument
503 this.isEscaped = escaped;
599 * @return true iff this token is an escaped identifier.
669 * True iff this token is an escaped identifier.
H A DScanner.java41 // -D59166<daz> Add escaped-id. info. to identifiers.
654 boolean escaped = false; // <d59166>
657 // <f46082.40> An escaped id. begins with '_', which is followed by a normal
662 if (escaped = escapedOK)
680 if (!escaped) { // Escaped id ==> ignore keyword check
696 return new Token (Token.MacroIdentifier, string, escaped,
699 return new Token (Token.Identifier, string, escaped,
/openjdk10/jdk/src/java.base/share/classes/sun/security/x509/
H A DX500Name.java903 !escaped(rdnEnd, searchOffset, dnString)) {
958 if (rdnEnd > 0 && !escaped(rdnEnd, searchOffset, dnString)) {
1007 private static boolean escaped method in class:X500Name
1040 // if count is odd, then rdnEnd is escaped

Completed in 139 milliseconds