Lines Matching refs:encodings
103 String[] encodings;
145 // Initialize the bundles and encodings
146 encodings = new String[numLanguages];
151 encodings[0] = "";
155 encodings[count] = new String(temp[i].substring(filePrefix.length()+1,temp[i].indexOf(filePostfix))); count++;
160 // Initialize the bundles and encodings in case the directory information is not available
162 encodings = new String[numLanguages];
163 encodings[0] = new String("");
169 Bundle dict = new Bundle(encodings[0]);
268 for (int i = 1; i < encodings.length; i++) {
269 if (encodings[i].equals("kr")) continue; // I can't handle double byte character sets yet
271 File tempFile = new File(resDir, NLSbaseClass + "_" + encodings[i] + NLSpostfix);
280 dict = new Bundle(encodings[i]);