Searched defs:base64toInt (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DBase64.java168 int ch0 = base64toInt(s.charAt(inCursor++), alphaToInt);
169 int ch1 = base64toInt(s.charAt(inCursor++), alphaToInt);
170 int ch2 = base64toInt(s.charAt(inCursor++), alphaToInt);
171 int ch3 = base64toInt(s.charAt(inCursor++), alphaToInt);
179 int ch0 = base64toInt(s.charAt(inCursor++), alphaToInt);
180 int ch1 = base64toInt(s.charAt(inCursor++), alphaToInt);
184 int ch2 = base64toInt(s.charAt(inCursor++), alphaToInt);
200 private static int base64toInt(char c, byte[] alphaToInt) { method in class:Base64
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DBasicAuthenticator.java238 int ch0 = base64toInt(s.charAt(inCursor++), alphaToInt);
239 int ch1 = base64toInt(s.charAt(inCursor++), alphaToInt);
240 int ch2 = base64toInt(s.charAt(inCursor++), alphaToInt);
241 int ch3 = base64toInt(s.charAt(inCursor++), alphaToInt);
249 int ch0 = base64toInt(s.charAt(inCursor++), alphaToInt);
250 int ch1 = base64toInt(s.charAt(inCursor++), alphaToInt);
254 int ch2 = base64toInt(s.charAt(inCursor++), alphaToInt);
270 private static int base64toInt(char c, byte[] alphaToInt) { method in class:Base64
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnector.java2417 int ch0 = base64toInt(s.charAt(inCursor++));
2418 int ch1 = base64toInt(s.charAt(inCursor++));
2419 int ch2 = base64toInt(s.charAt(inCursor++));
2420 int ch3 = base64toInt(s.charAt(inCursor++));
2428 int ch0 = base64toInt(s.charAt(inCursor++));
2429 int ch1 = base64toInt(s.charAt(inCursor++));
2433 int ch2 = base64toInt(s.charAt(inCursor++));
2449 private static int base64toInt(char c) { method in class:RMIConnector

Completed in 45 milliseconds