HomeSort by relevance Sort by last modified time
    Searched refs:Key (Results 101 - 125 of 189) sorted by null

1 2 3 45 6 7 8

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinKeyboardBaseView.java 33 import android.inputmethodservice.Keyboard.Key;
58 * detecting key presses and touch movements.
80 * Called when the user presses a key. This is sent before the
85 * the unicode of the key being pressed. If the touch is
86 * not on a valid key, the value will be zero.
91 * Called when the user releases a key. This is sent after the
96 * the code of the key that was released
101 * Send a key press to the listener.
104 * this is the key that was pressed
107 * the primary code being the first. If the primary key
754 Key key = keys[i]; local
819 final Key key = keys[i]; local
959 Key key = tracker.getKey(keyIndex); local
    [all...]
LatinKeyboardView.java 23 import android.inputmethodservice.Keyboard.Key;
95 protected boolean onLongPress(Key key) {
96 int primaryCode = key.codes[0];
103 return super.onLongPress(key);
143 * the sudden moves subside, a DOWN event is simulated for the second key.
197 // the user is releasing the touch on the second key.
259 private Key[] mAsciiKeys = new Key[256];
326 List<Key> keys = getKeyboard().getKeys()
    [all...]
  /frameworks/base/libs/ui/
KeyLayoutMap.cpp 125 if (token == "key") {
128 LOGE("%s:%d: expected key, got '%s'\n", filename, line,
155 if (token == "key") {
157 //LOGI("got key decl scancode=%d keycode=%d"
159 Key k = { keycode, flags };
180 //LOGI("got key decl scancode=%d keycode=%d"
182 Key k = { keycode, flags };
207 const Key& k = m_keys.valueAt(index);
  /libcore/luni/src/main/java/javax/crypto/
Mac.java 23 import java.security.Key;
186 * Initializes this {@code Mac} instance with the specified key and
189 * @param key
190 * the key to initialize this algorithm.
194 * if the specified key cannot be used to initialize this
200 public final void init(Key key, AlgorithmParameterSpec params)
202 if (key == null) {
203 throw new InvalidKeyException("key == null");
205 spiImpl.engineInit(key, params)
    [all...]
SealedObject.java 29 import java.security.Key;
41 * key and then be deserialized to retrieve the original object.The sealed
132 * Returns the wrapped object, decrypting it using the specified key.
134 * @param key
135 * the key to decrypt the data with.
144 * if the specified key cannot be used to decrypt the data.
146 public final Object getObject(Key key)
150 if (key == null) {
151 throw new InvalidKeyException("key == null")
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 30 import android.inputmethodservice.Keyboard.Key;
54 * detecting key presses and touch movements.
73 * Called when the user presses a key. This is sent before the {@link #onKey} is called.
75 * @param primaryCode the unicode of the key being pressed. If the touch is not on a valid
76 * key, the value will be zero.
81 * Called when the user releases a key. This is sent after the {@link #onKey} is called.
83 * @param primaryCode the code of the key that was released
88 * Send a key press to the listener.
89 * @param primaryCode this is the key that was pressed
91 * with the primary code being the first. If the primary key code i
597 Key key = keys[i]; local
662 final Key key = keys[i]; local
744 final Key key = keys[nearestKeyIndices[i]]; local
788 final Key key = mKeys[index]; local
971 final Key key = mKeys[keyIndex]; local
1271 Key key = mKeys[mRepeatKeyIndex]; local
    [all...]
  /frameworks/base/services/java/com/android/server/am/
PendingIntentRecord.java 34 final Key key; field in class:PendingIntentRecord
42 final static class Key {
55 Key(int _t, String _p, ActivityRecord _a, String _w,
93 Key other = (Key)otherObj;
147 return "Key{" + typeName() + " pkg=" + packageName
168 PendingIntentRecord(ActivityManagerService _owner, Key _k, int _u) {
170 key = _k;
188 if ((key.flags&PendingIntent.FLAG_ONE_SHOT) != 0)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/list_update_map_/
lu_map_.hpp 61 template<typename Key, typename Mapped, class Eq_Fn, \
73 PB_DS_CLASS_NAME<Key, Mapped, Eq_Fn, Allocator, Update_Policy>
76 types_traits<Key, Mapped, Allocator, false>
80 debug_map_base<Key, Eq_Fn, \
81 typename Allocator::template rebind<Key>::other::const_reference>
98 template<typename Key,
  /external/chromium/net/base/
host_cache.cc 36 const HostCache::Entry* HostCache::Lookup(const Key& key,
41 EntryMap::const_iterator it = entries_.find(key);
52 HostCache::Entry* HostCache::Set(const Key& key,
62 scoped_refptr<Entry>& entry = entries_[key];
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
KeyAgreementTest.java 361 * Test for the methods: <code>init(Key key)</code>
374 args = {java.security.Key.class}
441 * Test for <code>doPhase(Key key, boolean lastPhase)</code> method
442 * Assertion: throws InvalidKeyException if key is not appropriate
449 args = {java.security.Key.class, boolean.class}
456 args = {java.security.Key.class, boolean.class}
500 * Test for the methods <code>init(Key key)</code
    [all...]
  /libcore/support/src/test/java/tests/security/
AlgorithmParameterSymmetricHelper.java 22 import java.security.Key;
61 Key key = generator.generateKey(); local
79 cipher.init(Cipher.ENCRYPT_MODE, key, parameters);
96 cipher.init(Cipher.DECRYPT_MODE, key, parameters);
KeyFactoryTest.java 21 import java.security.Key;
65 args = {Key.class, Class.class}
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/pat_trie_/
pat_trie_.hpp 73 template<typename Key, typename Mapped, typename Node_And_It_Traits, \
85 PB_DS_CLASS_NAME<Key, Mapped, Node_And_It_Traits, Allocator>
88 types_traits<Key, Mapped, Allocator, false>
92 debug_map_base<Key, eq_by_less<Key, \
93 std::less<Key> >, typename Allocator::template rebind<Key>::other::const_reference>
111 template<typename Key,
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyKeyStore.java 29 import java.security.Key;
63 public Key engineGetKey(String alias, char[] password)
66 return (Key) Keys.get(alias);
92 public void engineSetKeyEntry(String alias, Key key, char[] password,
97 Keys.put(alias, key);
104 public void engineSetKeyEntry(String alias, byte[] key, Certificate[] chain)
106 if (key == null) {
107 throw new KeyStoreException("Not Supported for null key");
116 alias, alias, key);
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/rb_tree_map_/
rb_tree_.hpp 71 template<typename Key, typename Mapped, typename Cmp_Fn, \
91 PB_DS_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
94 PB_DS_BASE_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
108 template<typename Key,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/splay_tree_/
splay_tree_.hpp 95 template<typename Key, typename Mapped, typename Cmp_Fn, \
115 PB_DS_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
118 PB_DS_BASE_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
133 template<typename Key, typename Mapped, typename Cmp_Fn,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/ov_tree_map_/
ov_tree_map_.hpp 62 template<typename Key, typename Mapped, class Cmp_Fn, \
80 PB_DS_OV_TREE_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
83 types_traits<Key, Mapped, Allocator, false>
87 debug_map_base<Key, eq_by_less<Key, Cmp_Fn>, \
88 typename Allocator::template rebind<Key>::other::const_reference>
111 template<typename Key, typename Mapped, class Cmp_Fn,
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyFactory2Test.java 25 import java.security.Key;
158 "generatePrivate generated different key for algorithm "
164 fail("invalid key spec for algorithm " + keyfactAlgs[i]);
205 "generatePublic generated different key for algorithm "
212 fail("invalid key spec for algorithm " + keyfactAlgs[i]);
346 * @tests java.security.KeyFactory#getKeySpec(java.security.Key,
353 args = {java.security.Key.class, java.lang.Class.class}
357 // java.security.KeyFactory.getKeySpec(java.security.Key,
385 "generatePrivate generated different key for algorithm "
388 "generatePublic generated different key for algorithm
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCEMac.java 51 import java.security.Key;
82 Key key,
88 if (key == null)
90 throw new InvalidKeyException("key is null");
93 if (key instanceof JCEPBEKey)
95 JCEPBEKey k = (JCEPBEKey)key;
112 param = new ParametersWithIV(new KeyParameter(key.getEncoded()), ((IvParameterSpec)params).getIV());
116 param = new KeyParameter(key.getEncoded());
518 // // for the key generation as is used in the HMAC, so tha
    [all...]
JDKKeyFactory.java 5 import java.security.Key;
100 Key key,
104 if (spec.isAssignableFrom(PKCS8EncodedKeySpec.class) && key.getFormat().equals("PKCS#8"))
106 return new PKCS8EncodedKeySpec(key.getEncoded());
108 else if (spec.isAssignableFrom(X509EncodedKeySpec.class) && key.getFormat().equals("X.509"))
110 return new X509EncodedKeySpec(key.getEncoded());
112 else if (spec.isAssignableFrom(RSAPublicKeySpec.class) && key instanceof RSAPublicKey)
114 RSAPublicKey k = (RSAPublicKey)key;
118 else if (spec.isAssignableFrom(RSAPrivateKeySpec.class) && key instanceof RSAPrivateKey
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/openssl/
PEMUtilities.java 12 import java.security.Key;
30 Key sKey;
55 // Figure out algorithm and key size.
121 throw new EncryptionException("unknown AES encryption with private key");
127 throw new EncryptionException("unknown encryption with private key");
175 byte[] key = keyParam.getKey();
176 if (des2 && key.length >= 24)
179 System.arraycopy(key, 0, key, 16, 8);
181 return new javax.crypto.spec.SecretKeySpec(key, algorithm)
    [all...]
  /external/v8/src/
scopeinfo.h 199 struct Key {
229 static Key keys_[kLength];
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/cc_hash_table_map_/
cc_ht_map_.hpp 63 template<typename Key, typename Mapped, typename Hash_Fn, \
76 PB_DS_CLASS_NAME<Key, Mapped, Hash_Fn, Eq_Fn, Allocator, \
80 hash_eq_fn<Key, Eq_Fn, Allocator, Store_Hash>
83 ranged_hash_fn<Key, Hash_Fn, Allocator, Comb_Hash_Fn, Store_Hash>
86 types_traits<Key, Mapped, Allocator, Store_Hash>
90 debug_map_base<Key, Eq_Fn, typename Allocator::template rebind<Key>::other::const_reference>
104 template<typename Key,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/gp_hash_table_map_/
gp_ht_map_.hpp 60 template<typename Key, typename Mapped, typename Hash_Fn, typename Eq_Fn, \
73 PB_DS_CLASS_NAME<Key, Mapped, Hash_Fn, Eq_Fn, Allocator, \
77 hash_eq_fn<Key, Eq_Fn, Allocator, Store_Hash>
80 ranged_probe_fn<Key, Hash_Fn, Allocator, Comb_Probe_Fn, Probe_Fn, Store_Hash>
83 types_traits<Key, Mapped, Allocator, Store_Hash>
87 debug_map_base<Key, Eq_Fn, typename Allocator::template rebind<Key>::other::const_reference>
100 template<typename Key,
441 subscript_imp(const_key_reference key, false_type)
445 const size_type pos = find_ins_pos(key,
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 27 ATTRIBUTE MS-MPPE-Send-Key 16 string Microsoft
28 ATTRIBUTE MS-MPPE-Recv-Key 17 string Microsoft

Completed in 7703 milliseconds

1 2 3 45 6 7 8