Home
last modified time | relevance | path

Searched refs:newKeys (Results 1 – 7 of 7) sorted by relevance

/external/grpc-grpc-java/context/src/main/java/io/grpc/
DPersistentHashArrayMappedTrie.java164 K[] newKeys = Arrays.copyOf(keys, keys.length); in put() local
166 newKeys[keyIndex] = key; in put()
168 return new CollisionLeaf<K,V>(newKeys, newValues); in put()
171 K[] newKeys = Arrays.copyOf(keys, keys.length + 1); in put() local
173 newKeys[keys.length] = key; in put()
175 return new CollisionLeaf<K,V>(newKeys, newValues); in put()
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DOpenIntToDoubleHashMap.java443 final int[] newKeys = new int[newLength]; in growTable() local
450 final int index = findInsertionIndex(newKeys, newStates, key, newMask); in growTable()
451 newKeys[index] = key; in growTable()
458 keys = newKeys; in growTable()
DOpenIntToFieldHashMap.java455 final int[] newKeys = new int[newLength]; in growTable() local
462 final int index = findInsertionIndex(newKeys, newStates, key, newMask); in growTable()
463 newKeys[index] = key; in growTable()
470 keys = newKeys; in growTable()
/external/icu/icu4c/source/tools/genrb/
Dgenrb.cpp675 const char *newKeys = data->getKeyBytes(&newKeysLength); in processFile() local
676 newPoolBundle->addKeyBytes(newKeys, newKeysLength, status); in processFile()
683 for(const char *newKeysLimit = newKeys + newKeysLength; newKeys < newKeysLimit; ++newKeys) { in processFile()
684 if(*newKeys == 0) { in processFile()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DICUResourceBundle.java854 String[] newKeys = new String[baseDepth + (keys.length - depth)]; in findResourceWithFallback() local
855 System.arraycopy(keys, depth, newKeys, baseDepth, keys.length - depth); in findResourceWithFallback()
856 keys = newKeys; in findResourceWithFallback()
949 String[] newKeys = new String[baseDepth + (keys.length - depth)]; in findStringWithFallback() local
950 System.arraycopy(keys, depth, newKeys, baseDepth, keys.length - depth); in findStringWithFallback()
951 keys = newKeys; in findStringWithFallback()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DICUResourceBundle.java859 String[] newKeys = new String[baseDepth + (keys.length - depth)]; in findResourceWithFallback() local
860 System.arraycopy(keys, depth, newKeys, baseDepth, keys.length - depth); in findResourceWithFallback()
861 keys = newKeys; in findResourceWithFallback()
954 String[] newKeys = new String[baseDepth + (keys.length - depth)]; in findStringWithFallback() local
955 System.arraycopy(keys, depth, newKeys, baseDepth, keys.length - depth); in findStringWithFallback()
956 keys = newKeys; in findStringWithFallback()
/external/python/cpython2/Lib/idlelib/
DconfigDialog.py677 newKeys = GetKeysDialog(self, 'Get New Keys', bindName,
679 if newKeys: #new keys were specified
691 self.listBindings.insert(listIndex, bindName+' - '+newKeys)
694 self.keyBinding.set(newKeys)
722 newKeys = {}
726 newKeys[eventName] = binding
731 newKeys[event] = keySetChanges[event]
733 self.SaveNewKeySet(newKeySetName, newKeys)