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

1 2

  /libcore/luni/src/test/java/tests/api/java/util/
PropertyResourceBundleTest.java 43 int keyCount = 0;
46 keyCount++;
49 assertEquals("Returned the wrong number of keys", 2, keyCount);
  /external/guava/guava-gwt/src/com/google/common/collect/
Multimap_CustomFieldSerializerBase.java 41 int keyCount = reader.readInt();
42 for (int i = 0; i < keyCount; ++i) {
56 int keyCount = reader.readInt();
57 for (int i = 0; i < keyCount; ++i) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
ProximityInfo.java 91 int keyCount, int[] keyXCoordinates, int[] keyYCoordinates, int[] keyWidths,
146 final int keyCount = getProximityInfoKeysCount(keys);
147 final int[] keyXCoordinates = new int[keyCount];
148 final int[] keyYCoordinates = new int[keyCount];
149 final int[] keyWidths = new int[keyCount];
150 final int[] keyHeights = new int[keyCount];
151 final int[] keyCharCodes = new int[keyCount];
174 sweetSpotCenterXs = new float[keyCount];
175 sweetSpotCenterYs = new float[keyCount];
176 sweetSpotRadii = new float[keyCount];
    [all...]
  /frameworks/base/core/jni/
android_backup_FileBackupHelperBase.cpp 57 const int keyCount = env->GetArrayLength(keys);
58 char const** keysUTF = (char const**)malloc(sizeof(char*)*keyCount);
59 for (int i=0; i<keyCount; i++) {
70 for (int i=0; i<keyCount; i++) {
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_keyboard_ProximityInfo.cpp 30 jint mostCommonkeyWidth, jint mostCommonkeyHeight, jintArray proximityChars, jint keyCount,
36 keyCount, keyXCoordinates, keyYCoordinates, keyWidths, keyHeights, keyCharCodes,
com_android_inputmethod_latin_BinaryDictionary.cpp 45 const int keyCount = env->GetArrayLength(attributeKeyStringArray);
47 if (keyCount != valueCount) {
52 for (int i = 0; i < keyCount; i++) {
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_utils.h 31 static AK_FORCE_INLINE int getKeyIndexOf(const int keyCount, const int c,
33 if (keyCount == 0) {
53 const int gridWidth, const int mostCommonKeyWidth, const int keyCount,
67 keyCount, x, y, primaryKey, localeStr, codeToKeyMap, proximities);
164 const int gridWidth, const int mostCommonKeyWidth, const int keyCount,
177 const int keyIndex = getKeyIndexOf(keyCount, c, codeToKeyMap);
proximity_info_state_utils.cpp 192 const int keyCount = proximityInfo->getKeyCount();
193 sampledNormalizedSquaredLengthCache->resize(sampledInputSize * keyCount);
196 for (int k = 0; k < keyCount; ++k) {
197 const int index = i * keyCount + k;
322 const int keyCount = proximityInfo->getKeyCount();
324 for (int k = 0; k < keyCount; ++k) {
608 const std::vector<float> *const sampledNormalizedSquaredLengthCache, const int keyCount,
611 const int index = inputIndex * keyCount + keyId;
621 const float maxPointToKeyLength, const int mostCommonKeyWidth, const int keyCount,
642 for (int j = 0; j < keyCount; ++j)
    [all...]
proximity_info.cpp 54 const jintArray proximityChars, const int keyCount, const jintArray keyXCoordinates,
66 KEY_COUNT(min(keyCount, MAX_KEY_COUNT_IN_A_KEYBOARD)),
69 HAS_TOUCH_POSITION_CORRECTION_DATA(keyCount > 0 && keyXCoordinates && keyYCoordinates
proximity_info.h 32 const jintArray proximityChars, const int keyCount, const jintArray keyXCoordinates,
proximity_info_state_utils.h 68 const int mostCommonKeyWidth, const int keyCount, const int start,
83 const std::vector<float> *const sampledNormalizedSquaredLengthCache, const int keyCount,
  /external/guava/guava/src/com/google/common/collect/
LinkedListMultimap.java 131 private transient Multiset<K> keyCount; // the number of values for each key
167 keyCount = LinkedHashMultiset.create();
173 keyCount = LinkedHashMultiset.create(expectedKeys);
226 keyCount.add(key);
260 keyCount.remove(node.key);
415 int size = keyCount.count(key);
503 return keyCount.size();
640 keyCount.clear();
660 return keyCount.count(key);
682 return keyCount.elementSet().size()
    [all...]
ImmutableListMultimap.java 346 int keyCount = stream.readInt();
347 if (keyCount < 0) {
348 throw new InvalidObjectException("Invalid key count " + keyCount);
354 for (int i = 0; i < keyCount; i++) {
ImmutableSetMultimap.java 443 int keyCount = stream.readInt();
444 if (keyCount < 0) {
445 throw new InvalidObjectException("Invalid key count " + keyCount);
451 for (int i = 0; i < keyCount; i++) {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
LinkedListMultimap.java 127 private transient Multiset<K> keyCount; // the number of values for each key
163 keyCount = LinkedHashMultiset.create();
169 keyCount = LinkedHashMultiset.create(expectedKeys);
222 keyCount.add(key);
256 keyCount.remove(node.key);
411 int size = keyCount.count(key);
499 return keyCount.size();
636 keyCount.clear();
656 return keyCount.count(key);
678 return keyCount.elementSet().size()
    [all...]
  /frameworks/base/core/java/android/test/
InstrumentationTestCase.java 257 int keyCount;
259 keyCount = repeater == -1 ? 1 : Integer.parseInt(key.substring(0, repeater));
269 for (int j = 0; j < keyCount; j++) {
333 final int keyCount = keys[i];
335 for (int j = 0; j < keyCount; j++) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
PropertyResourceBundleTest.java 109 int keyCount = 0;
112 keyCount++;
115 assertEquals("Returned the wrong number of keys", 2, keyCount);
  /external/chromium_org/third_party/WebKit/Tools/lldb/
lldb_webkit.py 66 return "{ tableSize = %d, keyCount = %d }" % (provider.tableSize(), provider.keyCount())
244 def keyCount(self):
  /frameworks/base/core/java/android/net/nsd/
DnsSdTxtRecord.java 101 currentLoc = keyCount();
141 public int keyCount() {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ResourceUtils.java 59 final int keyCount = BUILD_KEYS_AND_VALUES.length / 2;
60 for (int i = 0; i < keyCount; i++) {
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameControllerInput.java 401 final int keyCount = state.getKeyCount();
402 for (int i = 0; i < keyCount; i++) {
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
KeyboardView.java 710 final int keyCount = keys.length;
711 for (int i = 0; i < keyCount; i++) {
806 final int keyCount = nearestKeyIndices.length;
807 for (int i = 0; i < keyCount; i++) {
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
loctest.cpp     [all...]
  /external/icu4c/test/intltest/
loctest.cpp     [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 677 final int keyCount = keys.length;
678 for (int i = 0; i < keyCount; i++) {
759 final int keyCount = nearestKeyIndices.length;
760 for (int i = 0; i < keyCount; i++) {
    [all...]

Completed in 1123 milliseconds

1 2