Lines Matching defs:changes

93     private final HashMap<Key, DoubleValue> changes;
105 changes = new HashMap<Key, DoubleValue>();
113 changes = new HashMap<Key, DoubleValue>(other.nativeMap);
114 changes.putAll(other.changes);
136 for (final JRSUIConstants.Key key : new HashSet<JRSUIConstants.Key>(changes.keySet())) {
138 final JRSUIConstants.DoubleValue value = changes.get(key);
155 changes.remove(key);
177 changes.remove(key);
181 changes.put(key, value);
214 if (changes.isEmpty()) {
230 if (status != SUCCESS) throw new RuntimeException("JRSUI failed to sync changes into the native buffer: " + this);
235 throw new RuntimeException("JRSUI failed to sync changes to the native buffer, because some change was too big: " + this);
249 if (changes.isEmpty()) {
265 if (status != SUCCESS) throw new RuntimeException("JRSUI failed to sync changes into the native buffer: " + this);
270 throw new RuntimeException("JRSUI failed to sync changes to the native buffer, because some change was too big: " + this);
304 if (changes.isEmpty()) return;
310 if (status != SUCCESS) throw new RuntimeException("JRSUI failed to sync changes into the native buffer: " + this);
316 if (status != SUCCESS) throw new RuntimeException("JRSUI failed to sync changes into the native buffer: " + this);
321 throw new RuntimeException("JRSUI failed to sync changes to the native buffer, because some change was too big: " + this);
329 bits ^= changes.hashCode();
339 if (!changes.equals(other.changes)) return false;
347 builder.append(", changes:");
348 builder.append(Arrays.toString(changes.entrySet().toArray()));