Home
last modified time | relevance | path

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

/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/android_icu4j/src/main/java/android/icu/impl/
DICUResourceBundle.java850 String[] newKeys = new String[baseDepth + (keys.length - depth)]; in findResourceWithFallback() local
851 System.arraycopy(keys, depth, newKeys, baseDepth, keys.length - depth); in findResourceWithFallback()
852 keys = newKeys; in findResourceWithFallback()
945 String[] newKeys = new String[baseDepth + (keys.length - depth)]; in findStringWithFallback() local
946 System.arraycopy(keys, depth, newKeys, baseDepth, keys.length - depth); in findStringWithFallback()
947 keys = newKeys; in findStringWithFallback()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DICUResourceBundle.java846 String[] newKeys = new String[baseDepth + (keys.length - depth)]; in findResourceWithFallback() local
847 System.arraycopy(keys, depth, newKeys, baseDepth, keys.length - depth); in findResourceWithFallback()
848 keys = newKeys; in findResourceWithFallback()
941 String[] newKeys = new String[baseDepth + (keys.length - depth)]; in findStringWithFallback() local
942 System.arraycopy(keys, depth, newKeys, baseDepth, keys.length - depth); in findStringWithFallback()
943 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)