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

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DAlternateSubstSubtables.cpp56 TTGlyphID alternate = SWAPW(alternateSetTable->alternateArray[0]); local
58 if (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, alternate))) {
/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DBase64.java46 * Translates the specified byte array into an "alternate representation"
55 private static String byteArrayToBase64(byte[] a, boolean alternate) { argument
61 char[] intToAlpha = (alternate ? intToAltBase64 : intToBase64);
112 * This alternate alphabet does not use the capital letters. It is
135 * Translates the specified "alternate representation" Base64 string
139 * if <tt>s</tt> is not a valid alternate representation
146 private static byte[] base64ToByteArray(String s, boolean alternate) { argument
147 byte[] alphaToInt = (alternate ? altBase64ToInt : base64ToInt);
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DBasicAuthenticator.java125 private static String byteArrayToBase64(byte[] a, boolean alternate) { argument
131 char[] intToAlpha = (alternate ? intToAltBase64 : intToBase64);
182 * This alternate alphabet does not use the capital letters. It is
209 * if <tt>s</tt> is not a valid alternate representation
216 private static byte[] base64ToByteArray(String s, boolean alternate) { argument
217 byte[] alphaToInt = (alternate ? altBase64ToInt : base64ToInt);

Completed in 48 milliseconds