Home
last modified time | relevance | path

Searched refs:newValues (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/remoting/webapp/
Dstats_accumulator.js44 remoting.StatsAccumulator.prototype.add = function(newValues) { argument
45 for (var key in newValues) {
46 this.getValueList(key).push(newValues[key]);
/external/proguard/src/proguard/evaluation/value/
DInstructionOffsetValue.java182 int[] newValues = new int[newLength]; in generalize() local
191 newValues[newIndex++] = this.values[index]; in generalize()
198 newValues[newIndex++] = other.values[index]; in generalize()
201 return new InstructionOffsetValue(newValues); in generalize()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DStringToIntTable.java106 int newValues[] = new int[m_mapSize]; in put() local
108 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1); in put()
110 m_values = newValues; in put()
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
DStringToIntTable.java113 int newValues[] = new int[m_mapSize]; in put() local
115 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1); in put()
117 m_values = newValues; in put()
/external/icu4c/i18n/
Dsortkey.cpp58 CollationKey::CollationKey(const uint8_t* newValues, int32_t count) in CollationKey() argument
62 if (count < 0 || (newValues == NULL && count != 0) || in CollationKey()
69 uprv_memcpy(getBytes(), newValues, count); in CollationKey()
/external/icu4c/tools/toolutil/
Dppucd.h129 const UniProps *getProps(UnicodeSet &newValues, UErrorCode &errorCode);
147 UBool parseProperty(UniProps &props, const char *field, UnicodeSet &newValues,
Dppucd.cpp185 PreparsedUCD::getProps(UnicodeSet &newValues, UErrorCode &errorCode) { in getProps() argument
187 newValues.clear(); in getProps()
256 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; } in getProps()
272 PreparsedUCD::parseProperty(UniProps &props, const char *field, UnicodeSet &newValues, in parseProperty() argument
453 newValues.add((UChar32)prop); in parseProperty()
/external/eigen/Eigen/src/SparseCore/
DCompressedStorage.h207 Scalar* newValues = new Scalar[size]; in reallocate() local
211 internal::smart_copy(m_values, m_values+copySize, newValues); in reallocate()
216 m_values = newValues; in reallocate()
/external/smack/src/org/jivesoftware/smackx/
DFormField.java242 public void addValues(List<String> newValues) { in addValues() argument
244 values.addAll(newValues); in addValues()
/external/chromium_org/third_party/icu/source/i18n/
Dsortkey.cpp55 CollationKey::CollationKey(const uint8_t* newValues, int32_t count) in CollationKey() argument
67 uprv_memcpy(fBytes, newValues, fCount); in CollationKey()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DLinkedListMultimap.java593 Iterator<? extends V> newValues = values.iterator(); in replaceValues() local
596 while (keyValues.hasNext() && newValues.hasNext()) { in replaceValues()
598 keyValues.set(newValues.next()); in replaceValues()
608 while (newValues.hasNext()) { in replaceValues()
609 keyValues.add(newValues.next()); in replaceValues()
/external/guava/guava/src/com/google/common/collect/
DLinkedListMultimap.java597 Iterator<? extends V> newValues = values.iterator(); in replaceValues() local
600 while (keyValues.hasNext() && newValues.hasNext()) { in replaceValues()
602 keyValues.set(newValues.next()); in replaceValues()
612 while (newValues.hasNext()) { in replaceValues()
613 keyValues.add(newValues.next()); in replaceValues()