HomeSort by relevance Sort by last modified time
    Searched refs:Key (Results 201 - 225 of 1007) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/hash_fn/
ranged_hash_fn.hpp 53 template<typename Key, typename Hash_Fn, typename Allocator,
58 template<typename Key, typename Hash_Fn, typename Allocator, \
62 ranged_hash_fn<Key, Hash_Fn, Allocator, Comb_Hash_Fn, false>
69 template<typename Key, typename Hash_Fn, typename Allocator,
71 class ranged_hash_fn< Key, Hash_Fn, Allocator, Comb_Hash_Fn, false>
78 typedef typename Allocator::template rebind< Key>::other key_allocator;
140 template<typename Key, typename Hash_Fn, typename Allocator, \
144 ranged_hash_fn<Key,Hash_Fn, Allocator, Comb_Hash_Fn, true>
151 template<typename Key, typename Hash_Fn, typename Allocator,
153 class ranged_hash_fn<Key, Hash_Fn, Allocator, Comb_Hash_Fn, true>
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/hash_fn/
ranged_hash_fn.hpp 53 template<typename Key, typename Hash_Fn, typename _Alloc,
58 template<typename Key, typename Hash_Fn, typename _Alloc, \
62 ranged_hash_fn<Key, Hash_Fn, _Alloc, Comb_Hash_Fn, false>
69 template<typename Key, typename Hash_Fn, typename _Alloc,
71 class ranged_hash_fn< Key, Hash_Fn, _Alloc, Comb_Hash_Fn, false>
78 typedef typename _Alloc::template rebind< Key>::other key_allocator;
140 template<typename Key, typename Hash_Fn, typename _Alloc, \
144 ranged_hash_fn<Key,Hash_Fn, _Alloc, Comb_Hash_Fn, true>
151 template<typename Key, typename Hash_Fn, typename _Alloc,
153 class ranged_hash_fn<Key, Hash_Fn, _Alloc, Comb_Hash_Fn, true>
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/hash_fn/
ranged_hash_fn.hpp 53 template<typename Key, typename Hash_Fn, typename _Alloc,
58 template<typename Key, typename Hash_Fn, typename _Alloc, \
62 ranged_hash_fn<Key, Hash_Fn, _Alloc, Comb_Hash_Fn, false>
69 template<typename Key, typename Hash_Fn, typename _Alloc,
71 class ranged_hash_fn< Key, Hash_Fn, _Alloc, Comb_Hash_Fn, false>
78 typedef typename _Alloc::template rebind< Key>::other key_allocator;
140 template<typename Key, typename Hash_Fn, typename _Alloc, \
144 ranged_hash_fn<Key,Hash_Fn, _Alloc, Comb_Hash_Fn, true>
151 template<typename Key, typename Hash_Fn, typename _Alloc,
153 class ranged_hash_fn<Key, Hash_Fn, _Alloc, Comb_Hash_Fn, true>
    [all...]
  /external/chromium_org/base/posix/
global_descriptors.cc 22 int GlobalDescriptors::Get(Key key) const {
23 const int ret = MaybeGet(key);
26 DLOG(FATAL) << "Unknown global descriptor: " << key;
30 int GlobalDescriptors::MaybeGet(Key key) const {
33 if (i->first == key)
40 void GlobalDescriptors::Set(Key key, int fd) {
43 if (i->first == key) {
    [all...]
  /external/chromium_org/net/http/
http_pipelined_host_forced.h 38 const Key& key,
55 virtual const Key& GetKey() const OVERRIDE;
74 const Key key_;
  /external/llvm/include/llvm/ADT/
SparseSet.h 32 /// class allows the set to hold values that differ from the set's key type as
36 /// object. To compute the index from a key, SparseSet uses a separate
40 /// - unsigned key, identity index, identity value
41 /// - unsigned key, identity index, fat value providing getSparseSetIndex()
44 /// - unsigned key, remapped index, identity value (virtual registers)
45 /// - pointer key, pointer-derived index, identity value (node+ID)
46 /// - pointer key, pointer-derived index, fat value with getSparseSetIndex()
71 /// identity key/value sets.
74 unsigned operator()(const KeyT &Key) const {
75 return KeyFunctorT()(Key);
    [all...]
MapVector.h 11 // interface is purposefully minimal. The key is assumed to be cheap to copy
77 ValueT &operator[](const KeyT &Key) {
78 std::pair<KeyT, unsigned> Pair = std::make_pair(Key, 0);
82 Vector.push_back(std::make_pair(Key, ValueT()));
88 ValueT lookup(const KeyT &Key) const {
89 typename MapType::const_iterator Pos = Map.find(Key);
105 unsigned count(const KeyT &Key) const {
106 typename MapType::const_iterator Pos = Map.find(Key);
110 iterator find(const KeyT &Key) {
111 typename MapType::const_iterator Pos = Map.find(Key);
    [all...]
StringMap.h 75 /// up in. If it already exists as a key in the map, the Item pointer for the
79 unsigned LookupBucketFor(StringRef Key);
81 /// FindKey - Look up the bucket that contains the specified key. If it exists
82 /// in the map, return the bucket number of the key. Otherwise return -1.
84 int FindKey(StringRef Key) const;
90 /// RemoveKey - Remove the StringMapEntry for the specified key from the
91 /// table, returning it. If the key is not in the table, this returns null.
92 StringMapEntryBase *RemoveKey(StringRef Key);
115 /// a StringMap. It contains the Value itself and the key: the string length
137 /// getKeyData - Return the start of the string data that is the key for thi
    [all...]
  /external/apache-harmony/crypto/src/test/support/common/java/org/apache/harmony/crypto/tests/support/
MyExemptionMechanismSpi.java 27 import java.security.Key;
65 protected void engineInit(Key key) throws InvalidKeyException,
67 if (key == null) {
68 throw new InvalidKeyException("key is null");
70 if (!(key instanceof tmpKey)) {
71 throw new ExemptionMechanismException("Incorrect key");
76 protected void engineInit(Key key, AlgorithmParameters params)
79 if (key == null)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
KeyAgreementSpiTest.java 27 import java.security.Key;
48 protected Key engineDoPhase(Key key, boolean lastPhase) throws InvalidKeyException,
50 return super.engineDoPhase(key, lastPhase);
71 protected void engineInit(Key key, SecureRandom random) throws InvalidKeyException {
72 super.engineInit(key, random);
76 protected void engineInit(Key key, AlgorithmParameterSpec params, SecureRandom random
107 Key key = null; local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/support/
MyExemptionMechanismSpi.java 28 import java.security.Key;
66 protected void engineInit(Key key) throws InvalidKeyException,
68 if (key == null) {
69 throw new InvalidKeyException("key is null");
71 if (!(key instanceof tmpKey)) {
72 throw new ExemptionMechanismException("Incorrect key");
77 protected void engineInit(Key key, AlgorithmParameters params)
80 if (key == null)
    [all...]
  /external/giflib/
gif_hash.h 19 /* The 32 bits of the long are divided into two parts for the key & code: */
21 /* 2. The key is 12 bits Prefix code + 8 bit new char or 20 bits. */
22 /* The key is the upper 20 bits. The code is the lower 12. */
34 void _InsertHashTable(GifHashTableType *HashTable, uint32_t Key, int Code);
35 int _ExistsHashTable(GifHashTableType *HashTable, uint32_t Key);
  /external/openssh/
sshconnect.h 29 Key **keys;
44 int verify_host_key(char *, struct sockaddr *, Key *);
auth-options.h 38 int auth_cert_options(Key *, struct passwd *);
  /packages/apps/MusicFX/src/com/android/musicfx/
ControlPanelEffect.java 61 static enum Key {
167 final boolean isGlobalEnabled = prefs.getBoolean(Key.global_enabled.toString(),
169 editor.putBoolean(Key.global_enabled.toString(), isGlobalEnabled);
173 final boolean isVIEnabled = prefs.getBoolean(Key.virt_enabled.toString(),
176 final int vIStrength = prefs.getInt(Key.virt_strength.toString(),
179 editor.putBoolean(Key.virt_enabled.toString(), isVIEnabled);
180 editor.putInt(Key.virt_strength.toString(), vIStrength);
187 editor.putBoolean(Key.virt_strength_supported.toString(),
199 final boolean isBBEnabled = prefs.getBoolean(Key.bb_enabled.toString(),
201 final int bBStrength = prefs.getInt(Key.bb_strength.toString()
    [all...]
  /external/chromium_org/chrome/common/importer/
pstore_declarations.h 67 PST_KEY Key,
73 PST_KEY Key,
79 PST_KEY Key,
84 PST_KEY Key,
92 PST_KEY Key,
99 PST_KEY Key,
105 PST_KEY Key,
112 PST_KEY Key,
119 PST_KEY Key,
124 PST_KEY Key,
    [all...]
  /external/clang/test/CodeGen/
2008-03-24-BitField-And-Alloca.c 61 } key; member in union:_Key
63 } Key;
65 static void foo(const Key iospec, int* ret)
86 __attribute__ ((unused)) Key iospec = (Key) key_token2;
  /frameworks/native/include/input/
KeyLayoutMap.h 59 * Describes a mapping from keyboard scan codes and joystick axes to Android key codes and axes.
77 struct Key {
82 KeyedVector<int32_t, Key> mKeysByScanCode;
83 KeyedVector<int32_t, Key> mKeysByUsageCode;
88 const Key* getKey(int32_t scanCode, int32_t usageCode) const;
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyFactorySpiTest.java 24 import java.security.Key;
62 protected KeySpec engineGetKeySpec(Key key, Class keySpec){
65 protected Key engineTranslateKey(Key key){
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/bin_search_tree_/
cond_key_dtor_entry_dealtor.hpp 69 m_p_nd->m_value.first.~Key();
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/bin_search_tree_/
cond_key_dtor_entry_dealtor.hpp 69 m_p_nd->m_value.first.~Key();
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/bin_search_tree_/
cond_key_dtor_entry_dealtor.hpp 69 m_p_nd->m_value.first.~Key();
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/bin_search_tree_/
cond_key_dtor_entry_dealtor.hpp 69 m_p_nd->m_value.first.~Key();
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/bin_search_tree_/
cond_key_dtor_entry_dealtor.hpp 69 m_p_nd->m_value.first.~Key();
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/bin_search_tree_/
cond_key_dtor_entry_dealtor.hpp 69 m_p_nd->m_value.first.~Key();

Completed in 843 milliseconds

1 2 3 4 5 6 7 891011>>