/external/webrtc/src/system_wrappers/source/ |
event.cc | 55 for(int keyIndex = 0; keyIndex <= 0x5C; keyIndex++) 57 keyDown |= CGEventSourceKeyState(kCGEventSourceStateHIDSystemState, keyIndex);
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/ |
proximity_info.h | 41 int getCodePointOf(const int keyIndex) const; 42 bool hasSweetSpotData(const int keyIndex) const { 45 return mSweetSpotRadii[keyIndex] > 0.0f; 47 float getSweetSpotRadiiAt(int keyIndex) const { return mSweetSpotRadii[keyIndex]; } 48 float getSweetSpotCenterXAt(int keyIndex) const { return mSweetSpotCenterXs[keyIndex]; } 49 float getSweetSpotCenterYAt(int keyIndex) const { return mSweetSpotCenterYs[keyIndex]; }
|
proximity_info.cpp | 146 int ProximityInfo::getCodePointOf(const int keyIndex) const { 147 if (keyIndex < 0 || keyIndex >= KEY_COUNT) { 150 return mKeyIndexToCodePointG[keyIndex];
|
proximity_info_utils.h | 177 const int keyIndex = getKeyIndexOf(keyCount, c, codeToKeyMap); 179 keyIndex, x, y); 181 keyWidths, keyHeights, keyIndex, x, y);
|
proximity_info_state.cpp | 283 // Returns a probability of mapping index to keyIndex. 284 float ProximityInfoState::getProbability(const int index, const int keyIndex) const { 286 hash_map_compat<int, float>::const_iterator it = mCharProbabilities[index].find(keyIndex);
|
proximity_info_state_utils.h | 158 const std::vector<int> *const sampledInputYs, const int keyIndex, 162 const std::vector<int> *const sampledInputYs, const int keyIndex, const int inputIndex);
|
proximity_info_state_utils.cpp | 156 const std::vector<int> *const sampledInputYs, const int keyIndex, const int inputIndex) { 157 const float sweetSpotCenterX = proximityInfo->getSweetSpotCenterXAt(keyIndex); 158 const float sweetSpotCenterY = proximityInfo->getSweetSpotCenterYAt(keyIndex); 167 const std::vector<int> *const sampledInputYs, const int keyIndex, const int inputIndex) { 168 if (keyIndex == NOT_AN_INDEX) { 171 if (!proximityInfo->hasSweetSpotData(keyIndex)) { 178 sampledInputXs, sampledInputYs, keyIndex, inputIndex); 180 proximityInfo->getSweetSpotRadiiAt(keyIndex)); [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
ConcurrentHashMultisetBasherTest.java | 118 int keyIndex = random.nextInt(nKeys); 119 String key = keys.get(keyIndex); 125 deltas[keyIndex] += delta; 131 deltas[keyIndex] += (newValue - oldValue); 138 deltas[keyIndex] += (newValue - oldValue); 145 deltas[keyIndex] -= Math.min(delta, oldValue); 151 deltas[keyIndex] -= delta;
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
KeyboardView.java | 481 int keyIndex = getKeyIndices(mStartX, mStartY, null); 482 if ((keyIndex != NOT_A_KEY) 483 && (keyIndex < mKeys.length) 484 && (oldRepeatKeyCode == mKeys[keyIndex].codes[0])) { 486 mRepeatKeyIndex = keyIndex; [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
ProximityInfo.java | 156 for (int infoIndex = 0, keyIndex = 0; keyIndex < keys.length; keyIndex++) { 157 final Key key = keys[keyIndex]; 180 for (int infoIndex = 0, keyIndex = 0; keyIndex < keys.length; keyIndex++) { 181 final Key key = keys[keyIndex];
|
/cts/tests/tests/util/src/android/util/cts/ |
SparseBooleanArrayTest.java | 49 int keyIndex; 51 keyIndex = sparseBooleanArray.indexOfKey(KEYS[i]); 52 assertEquals(VALUES[i], sparseBooleanArray.valueAt(keyIndex)); 105 int keyIndex; 107 keyIndex = sparseBooleanArray.indexOfKey(KEYS[i]); 108 assertEquals(VALUES[i], sparseBooleanArray.valueAt(keyIndex));
|
/frameworks/base/core/java/android/inputmethodservice/ |
KeyboardView.java | [all...] |
Keyboard.java | 620 for (int keyIndex = 0; keyIndex < numKeys; ++keyIndex) { 621 Key key = row.mKeys.get(keyIndex); 622 if (keyIndex > 0) { 630 for (int keyIndex = 0; keyIndex < numKeys; ++keyIndex) { 631 Key key = row.mKeys.get(keyIndex); [all...] |
/frameworks/base/graphics/java/android/graphics/drawable/ |
DrawableContainer.java | 607 for (int keyIndex = 0; keyIndex < futureCount; keyIndex++) { 608 final int index = mDrawableFutures.keyAt(keyIndex); 609 mDrawables[index] = mDrawableFutures.valueAt(keyIndex).get(this); 638 final int keyIndex = mDrawableFutures.indexOfKey(index); 639 if (keyIndex >= 0) { 640 final Drawable prepared = mDrawableFutures.valueAt(keyIndex).get(this); 642 mDrawableFutures.removeAt(keyIndex);
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
GameControllerInput.java | 251 public int getKeyCode(int keyIndex) { 252 return mKeys.keyAt(keyIndex); 255 public boolean isKeyPressed(int keyIndex) { 256 return mKeys.valueAt(keyIndex) != 0;
|
/external/chromium_org/third_party/icu/source/common/ |
uresdata.c | 637 int32_t keyIndex, sortIndex; 643 return (int32_t)uprv_strcmp(keyChars+((const Row *)left)->keyIndex, 644 keyChars+((const Row *)right)->keyIndex); 833 pTempTable->rows[i].keyIndex=ds->readUInt16(pKey16[i]); 838 pTempTable->rows[i].keyIndex=udata_readInt32(ds, pKey32[i]); [all...] |
/external/icu4c/common/ |
uresdata.c | 656 int32_t keyIndex, sortIndex; 662 return (int32_t)uprv_strcmp(keyChars+((const Row *)left)->keyIndex, 663 keyChars+((const Row *)right)->keyIndex); 852 pTempTable->rows[i].keyIndex=ds->readUInt16(pKey16[i]); 857 pTempTable->rows[i].keyIndex=udata_readInt32(ds, pKey32[i]); [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
BlowfishEngine.java | 457 int keyIndex = 0; 466 data = (data << 8) | (key[keyIndex++] & 0xff); 469 if (keyIndex >= keyLength) 471 keyIndex = 0;
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/ |
BlowFish.java | 297 int keyIndex = 0; 306 data = (data << 8) | (key[keyIndex++] & 0xff); 309 if (keyIndex >= keyLength) 311 keyIndex = 0;
|
/external/lzma/CPP/7zip/UI/Common/ |
ArchiveCommandLine.cpp | 738 static int FindCharset(const NCommandLineParser::CParser &parser, int keyIndex, int defaultVal)
740 if (!parser[keyIndex].ThereIs)
743 UString name = parser[keyIndex].PostStrings.Back();
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
StyleResolver.cpp | [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/ |
DefaultSoftKeyboardJAJP.java | 272 /** KeyIndex of "Moji" key on 12 keyboard (depends on the definition of keyboards) */ 275 /** KeyIndex of "Moji" key on QWERTY keyboard (depends on the definition of keyboards) */ 462 int keyIndex = (KEY_NUMBER_12KEY < keys.size()) 464 mChangeModeKey = keys.get(keyIndex); [all...] |
/development/ndk/platforms/android-14/include/OMXAL/ |
OpenMAXAL.h | [all...] |
/frameworks/wilhelm/include/OMXAL/ |
OpenMAXAL.h | [all...] |
/prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/OMXAL/ |
OpenMAXAL.h | [all...] |