Home
last modified time | relevance | path

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

/external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/
DSpriteAccessor.java35 public void setValues(Sprite target, int tweenType, float[] newValues) { in setValues() argument
37 case POSITION_XY: target.setPosition(newValues[0], newValues[1]); break; in setValues()
38 case SCALE_XY: target.setScale(newValues[0], newValues[1]); break; in setValues()
39 case VISIBILITY: target.setVisible(newValues[0] > 0); break; in setValues()
/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/eigen/Eigen/src/SparseCore/
DCompressedStorage.h182 internal::scoped_array<Scalar> newValues(m_allocatedSize);
186 internal::smart_copy(m_values, m_values +id, newValues.ptr());
192 internal::smart_copy(m_values +id, m_values +m_size, newValues.ptr() +id+1);
195 std::swap(m_values,newValues.ptr());
234 internal::scoped_array<Scalar> newValues(size); in reallocate()
238 internal::smart_copy(m_values, m_values+copySize, newValues.ptr()); in reallocate()
241 std::swap(m_values,newValues.ptr()); in reallocate()
/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/universal-tween-engine/java/api/src/aurelienribon/tweenengine/primitives/
DMutableInteger.java31 public void setValues(MutableInteger target, int tweenType, float[] newValues) { in setValues() argument
32 target.value = (int) newValues[0]; in setValues()
DMutableFloat.java31 public void setValues(MutableFloat target, int tweenType, float[] newValues) { in setValues() argument
32 target.value = newValues[0]; in setValues()
/external/icu/icu4c/source/i18n/
Dsortkey.cpp60 CollationKey::CollationKey(const uint8_t* newValues, int32_t count) in CollationKey() argument
64 if (count < 0 || (newValues == NULL && count != 0) || in CollationKey()
71 uprv_memcpy(getBytes(), newValues, count); in CollationKey()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DCompactByteArray.java92 byte newValues[]) in CompactByteArray() argument
99 if (index >= newValues.length+BLOCKCOUNT) in CompactByteArray()
103 values = newValues; in CompactByteArray()
DCompactCharArray.java93 char newValues[]) in CompactCharArray() argument
100 if (index >= newValues.length+BLOCKCOUNT) in CompactCharArray()
104 values = newValues; in CompactCharArray()
/external/icu/android_icu4j/src/main/java/android/icu/util/
DCompactByteArray.java94 byte newValues[]) in CompactByteArray() argument
101 if (index >= newValues.length+BLOCKCOUNT) in CompactByteArray()
105 values = newValues; in CompactByteArray()
DCompactCharArray.java95 char newValues[]) in CompactCharArray() argument
102 if (index >= newValues.length+BLOCKCOUNT) in CompactCharArray()
106 values = newValues; in CompactCharArray()
/external/icu/icu4c/source/tools/toolutil/
Dppucd.h131 const UniProps *getProps(UnicodeSet &newValues, UErrorCode &errorCode);
149 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
459 newValues.add((UChar32)prop); in parseProperty()
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
DTweenAccessor.java81 public void setValues(T target, int tweenType, float[] newValues); in setValues() argument
/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.java170 private static void extendJsonArray(JSONArray array, JSONArray newValues) { in extendJsonArray() argument
171 for (JSONValue value : new JSONArrayList<JSONValue>(newValues)) { in extendJsonArray()