Searched refs:strIn (Results 1 - 4 of 4) sorted by relevance

/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/locale/
H A DLocale.java768 static public String URLDecodeField(String strIn, Debug debug) { argument
769 return URLDecodeField(strIn, "UTF-8", debug);
778 * @param strIn the inputString @param charset character encoding of
784 static public String URLDecodeField(String strIn, String charset, argument
787 if (strIn == null) {
788 return strIn;
792 int len = strIn.length();
797 char[] carr = strIn.toCharArray();
849 strOut = strIn;
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/locale/
H A DLocale.java768 static public String URLDecodeField(String strIn, Debug debug) { argument
769 return URLDecodeField(strIn, "UTF-8", debug);
778 * @param strIn the inputString @param charset character encoding of
784 static public String URLDecodeField(String strIn, String charset, argument
787 if (strIn == null) {
788 return strIn;
792 int len = strIn.length();
797 char[] carr = strIn.toCharArray();
849 strOut = strIn;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/client/
H A DAuthClientUtils.java3228 * @param strIn
3230 * @return an empty string if strIn is null. Use UTF-8 if the charset is empty or null. Return the original
3233 private static String getCharDecodedField(String strIn, String charset) { argument
3235 if (strIn == null) {
3248 int len = strIn.length();
3253 char[] carr = strIn.toCharArray();
3261 return strIn;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/client/
H A DAuthClientUtils.java3235 * @param strIn
3237 * @return an empty string if strIn is null. Use UTF-8 if the charset is empty or null. Return the original
3240 private static String getCharDecodedField(String strIn, String charset) { argument
3242 if (strIn == null) {
3255 int len = strIn.length();
3260 char[] carr = strIn.toCharArray();
3268 return strIn;

Completed in 50 milliseconds