HomeSort by relevance Sort by last modified time
    Searched refs:numKeys (Results 1 - 25 of 59) sorted by null

1 2 3

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MoreKeysKeyboard.java 63 * @param numKeys number of keys in this more keys keyboard.
77 public void setParameters(final int numKeys, final int numColumn, final int keyWidth,
82 if (parentKeyboardWidth / keyWidth < Math.min(numKeys, numColumn)) {
84 + parentKeyboardWidth + " " + keyWidth + " " + numKeys + " " + numColumn);
89 final int numRows = (numKeys + numColumn - 1) / numColumn;
91 final int numColumns = isMoreKeysFixedColumn ? Math.min(numKeys, numColumn)
92 : getOptimizedColumns(numKeys, numColumn);
94 final int topKeys = numKeys % numColumns;
217 private static int getTopRowEmptySlots(final int numKeys, final int numColumns) {
218 final int remainings = numKeys % numColumns
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
MapMakerTest.java 105 int numKeys = 10;
109 for (int i = 0; i < numKeys; i++) {
113 for (int i = numKeys - mapSize; i < mapSize; i++) {
  /external/mesa3d/src/mesa/main/
hash.h 71 extern GLuint _mesa_HashFindFreeKeyBlock(struct _mesa_HashTable *table, GLuint numKeys);
hash.c 454 * \param numKeys number of keys needed.
464 _mesa_HashFindFreeKeyBlock(struct _mesa_HashTable *table, GLuint numKeys)
467 if (maxKey - numKeys > table->MaxKey) {
485 if (freeCount == numKeys) {
490 /* cannot allocate a block of numKeys consecutive keys */
  /frameworks/base/services/core/java/com/android/server/policy/
GlobalKeyManager.java 130 final int numKeys = mKeyMapping.size();
131 if (numKeys == 0) {
136 for (int i = 0; i < numKeys; ++i) {
  /external/icu/icu4c/source/i18n/
uspoof_conf.cpp 388 int32_t numKeys = fKeyVec->size();
390 static_cast<int32_t *>(fSpoofImpl->fSpoofData->reserveSpace(numKeys*sizeof(int32_t), status));
396 for (i=0; i<numKeys; i++) {
407 rawData->fCFUKeysSize = numKeys;
413 U_ASSERT(numKeys == numValues);
415 static_cast<uint16_t *>(fSpoofImpl->fSpoofData->reserveSpace(numKeys*sizeof(uint16_t), status));
  /external/python/cpython2/PC/
getpathp.c 228 DWORD numKeys = 0;
262 rc = RegQueryInfoKey(newKey, NULL, NULL, NULL, &numKeys, NULL, NULL,
269 ppPaths = malloc( sizeof(TCHAR *) * numKeys );
271 memset(ppPaths, 0, sizeof(TCHAR *) * numKeys);
273 for(index=0;index<numKeys;index++) {
311 for (index=0;index<numKeys;index++) {
328 if (numKeys) {
357 for(index=0;index<numKeys;index++)
  /external/python/cpython3/PC/
getpathp.c 299 DWORD numKeys = 0;
334 rc = RegQueryInfoKey(newKey, NULL, NULL, NULL, &numKeys, NULL, NULL,
341 ppPaths = PyMem_RawMalloc( sizeof(WCHAR *) * numKeys );
343 memset(ppPaths, 0, sizeof(WCHAR *) * numKeys);
345 for(index=0;index<numKeys;index++) {
382 for (index=0;index<numKeys;index++) {
399 if (numKeys) {
419 for(index=0; index<numKeys; index++)
  /frameworks/base/core/java/android/app/backup/
BlobBackupHelper.java 99 final int numKeys = in.readInt();
101 Log.i(TAG, " " + numKeys + " keys in state record");
103 for (int i = 0; i < numKeys; i++) {
  /external/guava/guava-tests/test/com/google/common/collect/
MapMakerTest.java 263 int numKeys = 10;
267 for (int i = 0; i < numKeys; i++) {
271 for (int i = numKeys - mapSize; i < mapSize; i++) {
  /device/google/contexthub/firmware/os/inc/
bl.h 59 const uint32_t* (*blGetPubKeysInfo)(uint32_t *numKeys);
  /external/guava/guava/src/com/google/common/util/concurrent/
CycleDetectingLockFactory.java 328 final int numKeys = keys.length;
330 Lists.newArrayListWithCapacity(numKeys);
338 for (int i = 1; i < numKeys; i++) {
342 for (int i = 0; i < numKeys - 1; i++) {
344 Policies.DISABLED, nodes.subList(i + 1, numKeys));
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUResourceBundle.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUResourceBundle.java     [all...]
  /prebuilts/go/darwin-x86/src/runtime/pprof/internal/profile/
encode.go 47 var numKeys []string
49 numKeys = append(numKeys, k)
51 sort.Strings(numKeys)
52 for _, k := range numKeys {
  /prebuilts/go/linux-x86/src/runtime/pprof/internal/profile/
encode.go 47 var numKeys []string
49 numKeys = append(numKeys, k)
51 sort.Strings(numKeys)
52 for _, k := range numKeys {
  /build/make/tools/signapk/src/com/android/signapk/
SignApk.java     [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/profile/
encode.go 56 var numKeys []string
58 numKeys = append(numKeys, k)
60 sort.Strings(numKeys)
61 for _, k := range numKeys {
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/profile/
encode.go 56 var numKeys []string
58 numKeys = append(numKeys, k)
60 sort.Strings(numKeys)
61 for _, k := range numKeys {
  /frameworks/native/libs/input/
KeyCharacterMap.cpp 606 size_t numKeys = parcel->readInt32();
610 if (numKeys > MAX_KEYS) {
611 ALOGE("Too many keys in KeyCharacterMap (%zu > %d)", numKeys, MAX_KEYS);
615 for (size_t i = 0; i < numKeys; i++) {
661 size_t numKeys = mKeys.size();
662 parcel->writeInt32(numKeys);
663 for (size_t i = 0; i < numKeys; i++) {
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
SpoofChecker.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
SpoofChecker.java     [all...]
  /device/google/contexthub/firmware/os/core/
nanohubCommand.c 193 uint32_t numKeys, i;
196 ptr = BL.blGetPubKeysInfo(&numKeys);
197 for (i = 0; ptr && i < numKeys; i++, ptr += RSA_LIMBS) {
    [all...]
bl.c 260 static const uint32_t *blExtApiGetRsaKeyInfo(uint32_t *numKeys)
267 *numKeys = numWords / RSA_WORDS;
  /cts/tests/tests/media/src/android/media/cts/
MediaDrmClearkeyTest.java 443 final int numKeys = keySet.size();
444 final String[] keys = keySet.toArray(new String[numKeys]);
445 for (int i = 0; i < numKeys; ++i) {
    [all...]

Completed in 1551 milliseconds

1 2 3