HomeSort by relevance Sort by last modified time
    Searched refs:Key (Results 226 - 250 of 373) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 30 import android.inputmethodservice.Keyboard.Key;
58 * detecting key presses and touch movements.
77 * Called when the user presses a key. This is sent before the {@link #onKey} is called.
79 * @param primaryCode the unicode of the key being pressed. If the touch is not on a valid
80 * key, the value will be zero.
85 * Called when the user releases a key. This is sent after the {@link #onKey} is called.
87 * @param primaryCode the code of the key that was released
92 * Send a key press to the listener.
93 * @param primaryCode this is the key that was pressed
95 * with the primary code being the first. If the primary key code i
611 Key key = keys[i]; local
679 final Key key = keys[i]; local
761 final Key key = keys[nearestKeyIndices[i]]; local
805 final Key key = mKeys[index]; local
1042 final Key key = mKeys[keyIndex]; local
1360 Key key = mKeys[mRepeatKeyIndex]; local
    [all...]
  /external/llvm/lib/CodeGen/
MachineInstr.cpp     [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
DSAKeyFactoryImplTest.java 25 import java.security.Key;
98 static Key keyPublic;
99 static Key keyPrivate;
159 keyPublic = new Key() { public String getAlgorithm() { return "DSA"; }
163 keyPrivate = new Key() { public String getAlgorithm() { return "DSA"; }
340 * It checks out that if key encoding in KeySpec has correct ASN1 structure
342 * the "generatePublic" method returns DSA public key
465 * It checks out that if key encoding in KeySpec has correct ASN1 structure
467 * the "generatePrivate" method returns DSA private key
506 * A test against the "getKeySpec(Key, Class)" method
    [all...]
  /external/llvm/include/llvm/ADT/
DenseMap.h 131 /// count - Return true if the specified key is in the map.
150 /// lookup - Return the entry for the specified key, or a default
159 // Inserts key,value pair into the map if the key isn't already in the map.
160 // If the key is already in the map, it returns false and doesn't update the
208 value_type& FindAndConstruct(const KeyT &Key) {
210 if (LookupBucketFor(Key, TheBucket))
213 return *InsertIntoBucket(Key, ValueT(), TheBucket);
216 ValueT &operator[](const KeyT &Key) {
217 return FindAndConstruct(Key).second
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
LatinKeyboard.java 53 /* Space key and its icons, drawables and colors. */
54 private final Key mSpaceKey;
65 /* Shortcut key and its icons if available */
66 private final Key mShortcutKey;
70 // Height in space key the language name will be drawn. (proportional to space key height)
72 // If the full language name needs to be smaller than this value to be drawn on space key,
84 // The index of space key is available only after Keyboard constructor has finished.
108 public Key mSpaceKey = null;
109 public Key mShortcutKey = null
    [all...]
  /external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/
Cipher_ImplTest.java 24 import java.security.Key;
47 private Key key = null; field in class:Cipher_ImplTest
69 key = tkp.getPrivate();
247 c.init(Cipher.DECRYPT_MODE, key);
276 c.init(Cipher.DECRYPT_MODE, key);
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCEMac.java 5 import java.security.Key;
79 Key key,
85 if (key == null)
87 throw new InvalidKeyException("key is null");
90 if (key instanceof JCEPBEKey)
92 JCEPBEKey k = (JCEPBEKey)key;
109 param = new ParametersWithIV(new KeyParameter(key.getEncoded()), ((IvParameterSpec)params).getIV());
113 param = new KeyParameter(key.getEncoded());
408 // // 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/chromium/net/base/
host_cache.cc 36 const HostCache::Entry* HostCache::Lookup(const Key& key,
42 EntryMap::const_iterator it = entries_.find(key);
53 HostCache::Entry* HostCache::Set(const Key& key,
64 scoped_refptr<Entry>& entry = entries_[key];
  /external/chromium/net/socket/
client_socket_pool_manager.h 54 template <typename Key, typename Value>
55 class OwnedPoolMap : public std::map<Key, Value> {
  /external/clang/lib/Serialization/
ASTReaderInternals.h 46 /// \brief Special internal key for declaration names.
48 /// a DeclarationName for the internal key to avoid deserializing types.
67 unsigned ComputeHash(const DeclNameKey &Key) const;
69 external_key_type GetExternalKey(const internal_key_type& Key) const;
  /external/skia/gpu/include/
GrTextureCache.h 39 * Helper class for GrTextureCache, the Key is used to identify src data for
65 //!< returns hash value [0..kHashMask] for the key
132 const GrTextureKey& key() const { return fKey; } function in class:GrTextureEntry
146 GrTextureEntry(const GrTextureKey& key, GrTexture* texture);
189 * For even faster searches, a hash is computed from the Key. If there is
191 * bsearch, and update the hash to reflect the most recent Key requested.
220 * Search for an entry with the same Key. If found, "lock" it and return it.
226 * Create a new entry, based on the specified key and texture, and return
268 class Key;
269 GrTHashTable<GrTextureEntry, Key, 8> fCache
    [all...]
  /external/v8/src/
preparse-data.cc 127 Key key = { is_ascii, literal_bytes }; local
128 HashMap::Entry* entry = symbol_table_.Lookup(&key, hash, true);
132 key.literal_bytes =
137 Vector<Key> symbol = symbol_keys_.AddBlock(1, key);
138 entry->key = &symbol[0];
scopeinfo.h 209 struct Key {
239 Key keys_[kLength];
  /frameworks/base/core/java/android/net/
LinkCapabilities.java 46 * can request for a certain requirement corresponding to that key.
48 * can read the value of that key from the socket but cannot request
52 * define the syntax for each value string associated with a key.
54 public static final class Key {
56 private Key() {}
90 * This key is set via the needs map.
225 * Given the key return the capability string
227 * @param key
230 public String get(int key) {
231 return mCapabilities.get(key);
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/
KeyPairGeneratorTest.java 19 import java.security.Key;
84 throw new Exception("Unknown key sizes for KeyPairGenerator." + algorithm);
130 private void test_Key(KeyPairGenerator kpg, Key k) throws Exception {
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherOutputStream1Test.java 30 import java.security.Key;
199 Key key = kg.generateKey(); local
202 c.init(Cipher.ENCRYPT_MODE, key);
  /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...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/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/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/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...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/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/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/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/llvm/lib/MC/MCDisassembler/
EDDisassembler.cpp 117 CPUKey key; local
118 key.Arch = arch;
119 key.Syntax = syntax;
121 EDDisassembler::DisassemblerMap_t::iterator i = sDisassemblers.find(key);
126 EDDisassembler* sdd = new EDDisassembler(key);
132 sDisassemblers[key] = sdd;
145 EDDisassembler::EDDisassembler(CPUKey &key) :
149 Key(key) {
150 const char *triple = tripleFromArch(key.Arch)
    [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 904 milliseconds

1 2 3 4 5 6 7 8 91011>>