Lines Matching refs: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);
135 for (final JRSUIConstants.Key key : new HashSet<JRSUIConstants.Key>(changes.keySet())) {
137 final JRSUIConstants.DoubleValue value = changes.get(key);
154 changes.remove(key);
176 changes.remove(key);
180 changes.put(key, value);
213 if (changes.isEmpty()) {
229 if (status != SUCCESS) throw new RuntimeException("JRSUI failed to sync changes into the native buffer: " + this);
234 throw new RuntimeException("JRSUI failed to sync changes to the native buffer, because some change was too big: " + this);
248 if (changes.isEmpty()) {
264 if (status != SUCCESS) throw new RuntimeException("JRSUI failed to sync changes into the native buffer: " + this);
269 throw new RuntimeException("JRSUI failed to sync changes to the native buffer, because some change was too big: " + this);
303 if (changes.isEmpty()) return;
309 if (status != SUCCESS) throw new RuntimeException("JRSUI failed to sync changes into the native buffer: " + this);
315 if (status != SUCCESS) throw new RuntimeException("JRSUI failed to sync changes into the native buffer: " + this);
320 throw new RuntimeException("JRSUI failed to sync changes to the native buffer, because some change was too big: " + this);
328 bits ^= changes.hashCode();
338 if (!changes.equals(other.changes)) return false;
346 builder.append(", changes:");
347 builder.append(Arrays.toString(changes.entrySet().toArray()));