HomeSort by relevance Sort by last modified time
    Searched defs:keyId (Results 1 - 9 of 9) sorted by null

  /packages/inputmethods/LatinIME/native/jni/src/
proximity_info_state.cpp 172 const int keyId = mProximityInfo->getKeyIndexOf(codePoint);
173 if (keyId != NOT_AN_INDEX) {
174 const int index = inputIndex * mProximityInfo->getKeyCount() + keyId;
185 const int inputIndex, const int keyId) const {
188 keyId);
270 bool ProximityInfoState::isKeyInSerchKeysAfterIndex(const int index, const int keyId) const {
271 ASSERT(keyId >= 0 && index >= 0 && index < mSampledInputSize);
272 return mSampledSearchKeySets[index].test(keyId);
281 const int from, const int to, const int keyId, const bool extend) const {
293 const int keyX = mProximityInfo->getKeyCenterXOfKeyIdG(keyId);
    [all...]
proximity_info_state_utils.cpp 492 const int keyId = proximityInfo->getKeyIndexOf(nodeCodePoint);
493 if (keyId >= 0) {
494 x = proximityInfo->getKeyCenterXOfKeyIdG(keyId);
495 y = proximityInfo->getKeyCenterYOfKeyIdG(keyId);
646 const int inputIndex, const int keyId) {
647 if (keyId != NOT_AN_INDEX) {
648 const int index = inputIndex * keyCount + keyId;
    [all...]
  /frameworks/base/keystore/java/android/security/
KeyChain.java 304 final String keyId = keyChainService.requestPrivateKey(alias);
305 if (keyId == null) {
310 return engine.getPrivateKeyById(keyId);
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SkbTemplate.java 40 int keyId;
177 public void addDefaultKey(int keyId, SoftKey softKey) {
181 keyRecord.keyId = keyId;
187 if (mKeyRecords.get(pos).keyId >= keyId) break;
193 public SoftKey getDefaultKey(int keyId) {
198 if (keyRecord.keyId < keyId) {
202 if (keyRecord.keyId == keyId)
    [all...]
XmlKeyboardLoader.java 400 int keyId = this.getInteger(xrp, XMLATTR_ID, -1);
401 if (-1 == keyId) return null;
413 mSkbTemplate.addDefaultKey(keyId, softKey);
580 int keyId = this.getInteger(xrp, XMLATTR_ID, -1);
581 if (keyId >= 0) {
582 softKey = mSkbTemplate.getDefaultKey(keyId);
    [all...]
  /frameworks/av/media/libmedia/
IDrm.cpp 316 Vector<uint8_t> const &keyId,
324 writeVector(data, keyId);
335 Vector<uint8_t> const &keyId,
343 writeVector(data, keyId);
354 Vector<uint8_t> const &keyId,
361 writeVector(data, keyId);
371 Vector<uint8_t> const &keyId,
379 writeVector(data, keyId);
672 Vector<uint8_t> sessionId, keyId, input, iv, output;
674 readVector(data, keyId);
    [all...]
  /external/chromium/chrome/browser/resources/
keyboard_overlay.js 149 function keyId(identifier, i) {
299 var key = document.getElementById(keyId(identifier, i));
367 key.id = keyId(identifier, i);
  /frameworks/base/services/java/com/android/server/
NsdService.java 417 int keyId = clientInfo.mClientIds.indexOfValue(id);
418 if (keyId != -1) {
419 clientId = clientInfo.mClientIds.keyAt(keyId);
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiConfigStore.java     [all...]

Completed in 1319 milliseconds