HomeSort by relevance Sort by last modified time
    Searched refs:sKey (Results 1 - 4 of 4) sorted by null

  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SoftKeyboard.java 316 SoftKey sKey = softKeys.get(i);
317 if (sKey.mLeft <= x && sKey.mTop <= y && sKey.mRight > x
318 && sKey.mBottom > y) {
319 return sKey;
337 SoftKey sKey = softKeys.get(i);
338 int disx = (sKey.mLeft + sKey.mRight) / 2 - x;
339 int disy = (sKey.mTop + sKey.mBottom) / 2 - y
    [all...]
SkbContainer.java 311 private void responseKeyEvent(SoftKey sKey) {
312 if (null == sKey) return;
313 ((PinyinIME) mService).responseSoftKeyEvent(sKey);
  /external/bouncycastle/src/main/java/org/bouncycastle/openssl/
PEMUtilities.java 30 Key sKey;
62 sKey = getKey(password, alg, 24, iv, des2);
67 sKey = getKey(password, alg, 8, iv);
72 sKey = getKey(password, alg, 16, iv);
86 sKey = getKey(password, alg, keyBits / 8, iv);
123 sKey = getKey(password, "AES", keyBits / 8, salt);
139 c.init(mode, sKey);
143 c.init(mode, sKey, paramSpec);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
KeyGeneratorTest.java 529 SecretKey sKey;
535 sKey = kgs[i].generateKey();
536 assertEquals("Incorrect algorithm", sKey.getAlgorithm()
539 sKey = kgs[i].generateKey();
540 assertEquals("Incorrect algorithm", sKey.getAlgorithm()
543 sKey = kgs[i].generateKey();
544 assertEquals("Incorrect algorithm", sKey.getAlgorithm()
547 sKey = kgs[i].generateKey();
548 assertEquals("Incorrect algorithm", sKey.getAlgorithm()

Completed in 311 milliseconds