Home | History | Annotate | Download | only in dicttool

Lines Matching refs:mAttributes

79         if (null == dict0.mOptions.mAttributes.get("locale")) return false;
80 if (null == dict1.mOptions.mAttributes.get("locale")) return false;
81 final String dict0Lang = dict0.mOptions.mAttributes.get("locale").split("_", 3)[0];
82 final String dict1Lang = dict1.mOptions.mAttributes.get("locale").split("_", 3)[0];
88 final HashMap<String, String> options1 = new HashMap<>(dict1.mOptions.mAttributes);
89 for (final String optionKey : dict0.mOptions.mAttributes.keySet()) {
90 if (!dict0.mOptions.mAttributes.get(optionKey).equals(
91 dict1.mOptions.mAttributes.get(optionKey))) {
93 + dict0.mOptions.mAttributes.get(optionKey) + " <=> "
94 + dict1.mOptions.mAttributes.get(optionKey));