HomeSort by relevance Sort by last modified time
    Searched full:keycount (Results 1 - 25 of 26) sorted by null

1 2

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
ProximityInfo.java 84 int keyCount, int[] keyXCoordinates, int[] keyYCoordinates,
101 final int keyCount = keys.size();
102 final int[] keyXCoordinates = new int[keyCount];
103 final int[] keyYCoordinates = new int[keyCount];
104 final int[] keyWidths = new int[keyCount];
105 final int[] keyHeights = new int[keyCount];
106 final int[] keyCharCodes = new int[keyCount];
107 for (int i = 0; i < keyCount; ++i) {
121 sweetSpotCenterXs = new float[keyCount];
122 sweetSpotCenterYs = new float[keyCount];
    [all...]
MoreKeysDetector.java 51 final int keyCount = keys.size();
52 for (int index = 0; index < keyCount; index++) {
  /external/webkit/Source/WebKit/win/
WebHistoryItem.cpp 211 int keyCount = 0;
216 keys[keyCount] = urlKey;
217 values[keyCount++] = m_historyItem->urlString().createCFString();
220 keys[keyCount] = lastVisitedDateKey;
221 values[keyCount++] = lastVisitedStringRef;
224 keys[keyCount] = titleKey;
225 values[keyCount++] = m_historyItem->title().createCFString();
228 keys[keyCount] = visitCountKey;
230 values[keyCount++] = CFNumberCreate(0, kCFNumberIntType, &visitCount);
233 keys[keyCount] = lastVisitWasFailureKey
    [all...]
  /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);
  /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++) {
  /external/guava/src/com/google/common/collect/
LinkedListMultimap.java 125 private transient Multiset<K> keyCount; // the number of values for each key
161 keyCount = LinkedHashMultiset.create();
167 keyCount = LinkedHashMultiset.create(expectedKeys);
220 keyCount.add(key);
254 keyCount.remove(node.key);
342 int size = keyCount.count(key);
420 return keyCount.size();
546 keyCount.clear();
565 return keyCount.count(key);
586 return keyCount.elementSet().size()
    [all...]
ImmutableListMultimap.java 303 int keyCount = stream.readInt();
304 if (keyCount < 0) {
305 throw new InvalidObjectException("Invalid key count " + keyCount);
311 for (int i = 0; i < keyCount; i++) {
ImmutableSetMultimap.java 349 int keyCount = stream.readInt();
350 if (keyCount < 0) {
351 throw new InvalidObjectException("Invalid key count " + keyCount);
357 for (int i = 0; i < keyCount; i++) {
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_keyboard_ProximityInfo.cpp 33 jint gridHeight, jintArray proximityCharsArray, jint keyCount,
49 keyCount, (const int32_t*)keyXCoordinates, (const int32_t*)keyYCoordinates,
  /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);
  /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/webkit/Tools/MiniBrowser/qt/
utils.cpp 58 for (int i = 0; i < enumerator.keyCount(); i++) {
  /external/webkit/Tools/QtTestBrowser/
utils.cpp 58 for (int i = 0; i < enumerator.keyCount(); i++) {
  /external/webkit/Source/WebKit2/UIProcess/
VisitedLinkProvider.cpp 94 static unsigned tableSizeForKeyCount(unsigned keyCount)
97 unsigned tableSize = nextPowerOf2(keyCount * VisitedLinkTableMaxLoad);
  /packages/inputmethods/LatinIME/native/src/
proximity_info.cpp 38 const uint32_t *proximityCharsArray, const int keyCount, const int32_t *keyXCoordinates,
46 KEY_COUNT(min(keyCount, MAX_KEY_COUNT_IN_A_KEYBOARD)),
47 HAS_TOUCH_POSITION_CORRECTION_DATA(keyCount > 0 && keyXCoordinates && keyYCoordinates
proximity_info.h 46 const uint32_t *proximityCharsArray, const int keyCount, const int32_t *keyXCoordinates,
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameControllerInput.java 348 final int keyCount = state.getKeyCount();
349 for (int i = 0; i < keyCount; i++) {
  /external/wpa_supplicant_8/src/ap/
wpa_auth_i.h 70 int keycount; member in struct:wpa_state_machine
wpa_auth.c     [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
Structure.h 182 void createPropertyMap(unsigned keyCount = 0);
  /external/libvpx/examples/includes/geshi/geshi/
lscript.php 64 'keyCount', 'keys',
  /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...]
  /external/icu4c/test/intltest/
loctest.cpp     [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
XInput.h 1042 int /* keycount */,
    [all...]
  /external/icu4c/test/cintltst/
cloctst.c     [all...]

Completed in 614 milliseconds

1 2