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

  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state.cpp 165 const int keyId = mProximityInfo->getKeyIndexOf(codePoint);
166 if (keyId != NOT_AN_INDEX) {
167 const int index = inputIndex * mProximityInfo->getKeyCount() + keyId;
178 const int inputIndex, const int keyId) const {
181 keyId);
263 bool ProximityInfoState::isKeyInSerchKeysAfterIndex(const int index, const int keyId) const {
264 ASSERT(keyId >= 0 && index >= 0 && index < mSampledInputSize);
265 return mSampledSearchKeySets[index].test(keyId);
proximity_info_state_utils.cpp 453 const int keyId = proximityInfo->getKeyIndexOf(nodeCodePoint);
454 if (keyId >= 0) {
455 x = proximityInfo->getKeyCenterXOfKeyIdG(keyId, NOT_AN_INDEX, isGeometric);
456 y = proximityInfo->getKeyCenterYOfKeyIdG(keyId, NOT_AN_INDEX, isGeometric);
609 const int inputIndex, const int keyId) {
610 if (keyId != NOT_AN_INDEX) {
611 const int index = inputIndex * keyCount + keyId;
    [all...]
  /frameworks/base/keystore/java/android/security/
KeyChain.java 305 final String keyId = keyChainService.requestPrivateKey(alias);
306 if (keyId == null) {
311 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 317 Vector<uint8_t> const &keyId,
325 writeVector(data, keyId);
336 Vector<uint8_t> const &keyId,
344 writeVector(data, keyId);
355 Vector<uint8_t> const &keyId,
362 writeVector(data, keyId);
372 Vector<uint8_t> const &keyId,
380 writeVector(data, keyId);
675 Vector<uint8_t> sessionId, keyId, input, iv, output;
677 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...]
  /external/chromium_org/chrome/browser/resources/chromeos/
keyboard_overlay.js 226 function keyId(identifier, i) {
418 var key = $(keyId(identifier, i));
497 key.id = keyId(identifier, i);
600 var keyId = layout[i][0];
601 if (keyId in newLayoutData) {
602 layout[i] = [keyId].concat(newLayoutData[keyId]);
603 delete newLayoutData[keyId];
605 if (keyId == powerKeyId)
608 for (var keyId in newLayoutData
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiConfigStore.java     [all...]

Completed in 118 milliseconds