Home
last modified time | relevance | path

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

12

/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DUnicodeRelation.java91 Set<T> newValues = addValue(data.get(key), value); in add() local
92 if (newValues != null) { in add()
93 data.put(key, newValues); in add()
99 Set<T> newValues = addValue(data.get(key), value); in add() local
100 if (newValues != null) { in add()
101 data.put(key, newValues); in add()
107 Set<T> newValues = addValues(data.get(key), values); in addAll() local
108 if (newValues != null) { in addAll()
109 data.put(key, newValues); in addAll()
145 Set<T> newValues = make(oldValues); in addValue() local
[all …]
/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/grpc-grpc-java/context/src/main/java/io/grpc/
DPersistentHashArrayMappedTrie.java165 V[] newValues = Arrays.copyOf(values, keys.length); in put() local
167 newValues[keyIndex] = value; in put()
168 return new CollisionLeaf<K,V>(newKeys, newValues); in put()
172 V[] newValues = Arrays.copyOf(values, keys.length + 1); in put() local
174 newValues[keys.length] = value; in put()
175 return new CollisionLeaf<K,V>(newKeys, newValues); in put()
239 Node<K,V>[] newValues = (Node<K,V>[]) new Node<?,?>[values.length + 1]; in put() local
240 System.arraycopy(values, 0, newValues, 0, compressedIndex); in put()
241 newValues[compressedIndex] = new Leaf<K,V>(key, value); in put()
245 newValues, in put()
[all …]
/external/armnn/src/armnn/optimizations/
DConvertConstants.hpp29 std::vector<float> newValues(info.GetNumElements()); in Func() local
33 newValues.data()); in Func()
36 ConstTensor newInput(newInfo, newValues); in Func()
50 std::vector<Half> newValues(info.GetNumElements()); in Func() local
54 newValues.data()); in Func()
57 ConstTensor newInput(newInfo, newValues); in Func()
DConvertConstDequantisationLayersToConstLayers.hpp85 std::vector<float> newValues(outputDequantizeInfo.GetNumElements()); in ReplaceConstDequantisationLayer() local
93 newValues.data()); in ReplaceConstDequantisationLayer()
106 newValues.data()); in ReplaceConstDequantisationLayer()
117 newValues.data(), permutedValues.data(), in ReplaceConstDequantisationLayer()
124 ConstTensor newInput(newInfo, newValues); in ReplaceConstDequantisationLayer()
DConvertConstPermuteLayersToConstLayers.hpp102 std::vector<T> newValues(outputPermuteInfo.GetNumElements()); in ReplaceConstPermuteLayer() local
104 constantLayer->m_LayerOutput->Map(true), newValues.data(), in ReplaceConstPermuteLayer()
109 ConstTensor newInput(newInfo, newValues); in ReplaceConstPermuteLayer()
/external/icu/icu4c/source/tools/toolutil/
Dppucd.cpp193 PreparsedUCD::getProps(UnicodeSet &newValues, UErrorCode &errorCode) { in getProps() argument
195 newValues.clear(); in getProps()
258 newValues=blockValues; in getProps()
262 newValues.remove((UChar32)UCHAR_BLOCK); in getProps()
286 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; } in getProps()
289 blockValues=newValues; in getProps()
293 if(newValues.contains(prop) && cpProps.binProps[prop]==blockProps.binProps[prop]) { in getProps()
294 newValues.remove(prop); in getProps()
299 if(newValues.contains(prop) && cpProps.intProps[index]==blockProps.intProps[index]) { in getProps()
300 newValues.remove(prop); in getProps()
[all …]
Dppucd.h135 const UniProps *getProps(UnicodeSet &newValues, UErrorCode &errorCode);
153 UBool parseProperty(UniProps &props, const char *field, UnicodeSet &newValues,
/external/cronet/third_party/icu/source/tools/toolutil/
Dppucd.cpp193 PreparsedUCD::getProps(UnicodeSet &newValues, UErrorCode &errorCode) { in getProps() argument
195 newValues.clear(); in getProps()
258 newValues=blockValues; in getProps()
262 newValues.remove((UChar32)UCHAR_BLOCK); in getProps()
286 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; } in getProps()
289 blockValues=newValues; in getProps()
293 if(newValues.contains(prop) && cpProps.binProps[prop]==blockProps.binProps[prop]) { in getProps()
294 newValues.remove(prop); in getProps()
299 if(newValues.contains(prop) && cpProps.intProps[index]==blockProps.intProps[index]) { in getProps()
300 newValues.remove(prop); in getProps()
[all …]
Dppucd.h135 const UniProps *getProps(UnicodeSet &newValues, UErrorCode &errorCode);
153 UBool parseProperty(UniProps &props, const char *field, UnicodeSet &newValues,
/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());
250 internal::scoped_array<Scalar> newValues(size); in reallocate()
254 internal::smart_copy(m_values, m_values+copySize, newValues.ptr()); in reallocate()
257 std::swap(m_values,newValues.ptr()); in reallocate()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/common/src/main/java/com/google/android/exoplayer2/util/
DTimedValueQueue.java149 @NullableType V[] newValues = newArray(newCapacity); in doubleCapacityIfFull() local
154 System.arraycopy(values, first, newValues, 0, length); in doubleCapacityIfFull()
158 System.arraycopy(values, 0, newValues, length, first); in doubleCapacityIfFull()
161 values = newValues; in doubleCapacityIfFull()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/common/src/main/java/com/google/android/exoplayer2/util/
DTimedValueQueue.java149 @NullableType V[] newValues = newArray(newCapacity); in doubleCapacityIfFull() local
154 System.arraycopy(values, first, newValues, 0, length); in doubleCapacityIfFull()
158 System.arraycopy(values, 0, newValues, length, first); in doubleCapacityIfFull()
161 values = newValues; in doubleCapacityIfFull()
/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/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/pdfium/testing/resources/javascript/
Dcolor_properties.in40 var newValues = [
50 for (y = 0; y < newValues.length; ++y) {
51 v = newValues[y];
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/
DFindAttributeValueDifferences.java52 …M4<String, String, String, Boolean> newValues = ChainedMap.of(new TreeMap(), new TreeMap(), new Tr… in main() local
62 getActuals(current.make(locale, false), newValues); in main() local
66 Set<String> elements = new TreeSet<>(newValues.keySet()); in main()
70 … M3<String, String, Boolean> newSubmap = CldrUtility.ifNull(newValues.get(element), emptyM3); in main()
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/primitives/
DMutableFloat.java31 public void setValues(MutableFloat target, int tweenType, float[] newValues) { in setValues() argument
32 target.value = newValues[0]; in setValues()
DMutableInteger.java31 public void setValues(MutableInteger target, int tweenType, float[] newValues) { in setValues() argument
32 target.value = (int) newValues[0]; in setValues()
/external/cronet/third_party/icu/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/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()
/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()
/external/ow2-asm/asm/src/main/java/org/objectweb/asm/
DLabel.java422 int[] newValues = new int[forwardReferences.length + FORWARD_REFERENCES_CAPACITY_INCREMENT]; in addForwardReference() local
423 System.arraycopy(forwardReferences, 0, newValues, 0, forwardReferences.length); in addForwardReference()
424 forwardReferences = newValues; in addForwardReference()

12