Home
last modified time | relevance | path

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

/external/proguard/src/proguard/evaluation/value/
DInstructionOffsetValue.java189 int[] newValues = new int[newLength]; in generalize() local
195 System.arraycopy(thisValues, 0, newValues, 0, thisValues.length); in generalize()
206 newValues[newIndex++] = thisValues[index]; in generalize()
212 System.arraycopy(otherValues, 0, newValues, newIndex, otherValues.length); in generalize()
214 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/icu/icu4c/source/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/icu/android_icu4j/src/main/java/android/icu/util/
DCompactByteArray.java92 byte newValues[]) in CompactByteArray() argument
99 if ((index < 0) || (index >= newValues.length+BLOCKCOUNT)) in CompactByteArray()
103 values = newValues; in CompactByteArray()
DCompactCharArray.java93 char newValues[]) in CompactCharArray() argument
100 if ((index < 0) || (index >= newValues.length+BLOCKCOUNT)) in CompactCharArray()
104 values = newValues; in CompactCharArray()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DCompactByteArray.java90 byte newValues[]) in CompactByteArray() argument
97 if ((index < 0) || (index >= newValues.length+BLOCKCOUNT)) in CompactByteArray()
101 values = newValues; in CompactByteArray()
DCompactCharArray.java91 char newValues[]) in CompactCharArray() argument
98 if ((index < 0) || (index >= newValues.length+BLOCKCOUNT)) in CompactCharArray()
102 values = newValues; in CompactCharArray()
/external/icu/icu4c/source/tools/toolutil/
Dppucd.h129 const UniProps *getProps(UnicodeSet &newValues, UErrorCode &errorCode);
147 UBool parseProperty(UniProps &props, const char *field, UnicodeSet &newValues,
Dppucd.cpp183 PreparsedUCD::getProps(UnicodeSet &newValues, UErrorCode &errorCode) { in getProps() argument
185 newValues.clear(); in getProps()
254 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; } in getProps()
270 PreparsedUCD::parseProperty(UniProps &props, const char *field, UnicodeSet &newValues, in parseProperty() argument
457 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/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DLinkedListMultimap.java606 Iterator<? extends V> newValues = values.iterator(); in replaceValues() local
609 while (keyValues.hasNext() && newValues.hasNext()) { in replaceValues()
611 keyValues.set(newValues.next()); in replaceValues()
621 while (newValues.hasNext()) { in replaceValues()
622 keyValues.add(newValues.next()); in replaceValues()
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DOpenIntToDoubleHashMap.java444 final double[] newValues = new double[newLength]; in growTable() local
452 newValues[index] = oldValues[i]; in growTable()
459 values = newValues; in growTable()
DOpenIntToFieldHashMap.java456 final T[] newValues = buildArray(newLength); in growTable() local
464 newValues[index] = oldValues[i]; in growTable()
471 values = newValues; in growTable()
/external/guava/guava/src/com/google/common/collect/
DLinkedListMultimap.java610 Iterator<? extends V> newValues = values.iterator(); in replaceValues() local
613 while (keyValues.hasNext() && newValues.hasNext()) { in replaceValues()
615 keyValues.set(newValues.next()); in replaceValues()
625 while (newValues.hasNext()) { in replaceValues()
626 keyValues.add(newValues.next()); in replaceValues()
/external/autotest/frontend/client/src/autotest/afe/
DAfeUtils.java180 private static void extendJsonArray(JSONArray array, JSONArray newValues) { in extendJsonArray() argument
181 for (JSONValue value : new JSONArrayList<JSONValue>(newValues)) { in extendJsonArray()
/external/chromium-trace/catapult/tracing/third_party/components/polymer/
Dpolymer.js9356 notifyPropertyChanges: function(newValues, oldValues, paths) { argument
9363 var ov = oldValues[i], nv = newValues[i];
/external/chromium-trace/catapult/third_party/polymer/components/polymer/
Dpolymer.js9356 notifyPropertyChanges: function(newValues, oldValues, paths) { argument
9363 var ov = oldValues[i], nv = newValues[i];