Home
last modified time | relevance | path

Searched refs:URI_RESERVED (Results 1 – 8 of 8) sorted by relevance

/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DURIUtils.java131 if (!component && URI_RESERVED.indexOf(C) >= 0) { in decode()
203 if (!component && URI_RESERVED.indexOf(C) >= 0) { in decode()
290 private static final String URI_RESERVED = ";/?:@&=+$,#"; field in URIUtils
303 return URI_RESERVED.indexOf(ch) >= 0; in isUnescaped()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DURIUtils.java131 if (!component && URI_RESERVED.indexOf(C) >= 0) { in decode()
203 if (!component && URI_RESERVED.indexOf(C) >= 0) { in decode()
290 private static final String URI_RESERVED = ";/?:@&=+$,#"; field in URIUtils
303 return URI_RESERVED.indexOf(ch) >= 0; in isUnescaped()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DURIUtils.java131 if (!component && URI_RESERVED.indexOf(C) >= 0) { in decode()
203 if (!component && URI_RESERVED.indexOf(C) >= 0) { in decode()
290 private static final String URI_RESERVED = ";/?:@&=+$,#"; field in URIUtils
303 return URI_RESERVED.indexOf(ch) >= 0; in isUnescaped()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DURIUtils.java131 if (!component && URI_RESERVED.indexOf(C) >= 0) { in decode()
203 if (!component && URI_RESERVED.indexOf(C) >= 0) { in decode()
290 private static final String URI_RESERVED = ";/?:@&=+$,#"; field in URIUtils
303 return URI_RESERVED.indexOf(ch) >= 0; in isUnescaped()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DURIUtils.java131 if (!component && URI_RESERVED.indexOf(C) >= 0) { in decode()
203 if (!component && URI_RESERVED.indexOf(C) >= 0) { in decode()
290 private static final String URI_RESERVED = ";/?:@&=+$,#"; field in URIUtils
303 return URI_RESERVED.indexOf(ch) >= 0; in isUnescaped()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/nashorn/src/jdk/nashorn/internal/runtime/
H A DURIUtils.java131 if (!component && URI_RESERVED.indexOf(C) >= 0) { in decode()
203 if (!component && URI_RESERVED.indexOf(C) >= 0) { in decode()
290 private static final String URI_RESERVED = ";/?:@&=+$,#"; field in URIUtils
303 return URI_RESERVED.indexOf(ch) >= 0; in isUnescaped()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/nashorn/src/jdk/nashorn/internal/runtime/
H A DURIUtils.java131 if (!component && URI_RESERVED.indexOf(C) >= 0) { in decode()
203 if (!component && URI_RESERVED.indexOf(C) >= 0) { in decode()
290 private static final String URI_RESERVED = ";/?:@&=+$,#"; field in URIUtils
303 return URI_RESERVED.indexOf(ch) >= 0; in isUnescaped()
/dports/games/retroarch/RetroArch-1.9.7/gfx/include/userland/containers/core/
H A Dcontainers_uri.c101 #define URI_RESERVED(C, TABLE) (!!((TABLE)[(unsigned char)(C) >> 5] & (1 << ((C) & 0x1F)))) macro
152 if (URI_RESERVED(c, reserved)) in escaped_length()
178 if (URI_RESERVED(c, reserved)) in escape_string()