Lines Matching refs:dict
169 Bundle dict = new Bundle(encodings[0]);
170 bundles.addElement(dict);
172 BundleGroup group = new BundleGroup(dict, "Ungrouped Items");
174 dict.addBundleGroup(group);
199 o = descriptors.get("file"); if (o != null) dict.name = ((String) o);
200 o = descriptors.get("fileComment"); if (o != null) dict.comment = ((String) o);
201 o = descriptors.get("fileLanguage"); if (o != null) dict.language = ((String) o);
202 o = descriptors.get("fileCountry"); if (o != null) dict.country = ((String) o);
203 o = descriptors.get("fileVariant"); if (o != null) dict.variant = ((String) o);
204 o = descriptors.get("fileManager"); if (o != null) dict.manager = ((String) o);
209 group = new BundleGroup(dict, (String)o);
211 dict.addBundleGroup(group);
256 dict.addBundleItem(item);
280 dict = new Bundle(encodings[i]);
281 bundles.addElement(dict);
283 group = new BundleGroup(dict, "Ungrouped Items");
284 dict.addBundleGroup(group);
301 o = descriptors.get("file"); if (o != null) dict.name = ((String) o);
302 o = descriptors.get("fileComment"); if (o != null) dict.comment = ((String) o);
303 o = descriptors.get("fileLanguage"); if (o != null) dict.language = ((String) o);
304 o = descriptors.get("fileCountry"); if (o != null) dict.country = ((String) o);
305 o = descriptors.get("fileVariant"); if (o != null) dict.variant = ((String) o);
306 o = descriptors.get("fileManager"); if (o != null) dict.manager = ((String) o);
311 group = new BundleGroup(dict, (String)o);
313 dict.addBundleGroup(group);
357 dict.addBundleItem(item);
771 Bundle dict = (Bundle)bundles.elementAt(i);
773 if (dict.language != null) dictStr += dict.language;
774 if (dict.country != null) dictStr += " " + dict.country;
775 if (dict.variant != null) dictStr += " " + dict.variant;
776 if (dictStr.trim().equals("")) dictStr = (dict.encoding.trim().equals("") ? "Base Resource Bundle" : dict.encoding);