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

1 2 34 5 6 7 8 91011>>

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/hash_fn/
ranged_probe_fn.hpp 53 template<typename Key, typename Hash_Fn, typename Allocator,
58 template<typename Key, typename Hash_Fn, typename Allocator, \
62 ranged_probe_fn<Key, Hash_Fn, Allocator, Comb_Probe_Fn, Probe_Fn, false>
69 template<typename Key, typename Hash_Fn, typename Allocator,
71 class ranged_probe_fn<Key, Hash_Fn, Allocator, Comb_Probe_Fn,
80 typedef typename Allocator::template rebind<Key>::other key_allocator;
164 template<typename Key, typename Hash_Fn, typename Allocator, \
168 ranged_probe_fn<Key, Hash_Fn, Allocator, Comb_Probe_Fn, Probe_Fn, true>
174 template<typename Key, typename Hash_Fn, typename Allocator,
176 class ranged_probe_fn<Key, Hash_Fn, Allocator, Comb_Probe_Fn,
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/hash_fn/
ranged_probe_fn.hpp 53 template<typename Key, typename Hash_Fn, typename Allocator,
58 template<typename Key, typename Hash_Fn, typename Allocator, \
62 ranged_probe_fn<Key, Hash_Fn, Allocator, Comb_Probe_Fn, Probe_Fn, false>
69 template<typename Key, typename Hash_Fn, typename Allocator,
71 class ranged_probe_fn<Key, Hash_Fn, Allocator, Comb_Probe_Fn,
80 typedef typename Allocator::template rebind<Key>::other key_allocator;
164 template<typename Key, typename Hash_Fn, typename Allocator, \
168 ranged_probe_fn<Key, Hash_Fn, Allocator, Comb_Probe_Fn, Probe_Fn, true>
174 template<typename Key, typename Hash_Fn, typename Allocator,
176 class ranged_probe_fn<Key, Hash_Fn, Allocator, Comb_Probe_Fn,
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/hash_fn/
ranged_probe_fn.hpp 53 template<typename Key, typename Hash_Fn, typename Allocator,
58 template<typename Key, typename Hash_Fn, typename Allocator, \
62 ranged_probe_fn<Key, Hash_Fn, Allocator, Comb_Probe_Fn, Probe_Fn, false>
69 template<typename Key, typename Hash_Fn, typename Allocator,
71 class ranged_probe_fn<Key, Hash_Fn, Allocator, Comb_Probe_Fn,
80 typedef typename Allocator::template rebind<Key>::other key_allocator;
164 template<typename Key, typename Hash_Fn, typename Allocator, \
168 ranged_probe_fn<Key, Hash_Fn, Allocator, Comb_Probe_Fn, Probe_Fn, true>
174 template<typename Key, typename Hash_Fn, typename Allocator,
176 class ranged_probe_fn<Key, Hash_Fn, Allocator, Comb_Probe_Fn,
    [all...]
  /frameworks/compile/libbcc/runtime/
Makefile 68 "$(foreach key,$(AvailableIn.$(fn)),$($(key).Dir))";)
74 @$(foreach key,$(PlatformKeys),\
75 printf " %s - from '%s'\n" $($(key).Name) $($(key).Path);\
76 printf " %s\n" "$($(key).Description)";\
77 printf " Configurations: %s\n\n" "$($(key).Configs)";)
114 $(call Set,Tmp.Key,$(1))
115 $(call Set,Tmp.Name,$($(Tmp.Key).Name))
116 $(call Set,Tmp.Configs,$($(Tmp.Key).Configs)
    [all...]
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
LatinKeyboardView.java 21 import android.inputmethodservice.Keyboard.Key;
39 protected boolean onLongPress(Key key) {
40 if (key.codes[0] == Keyboard.KEYCODE_CANCEL) {
44 return super.onLongPress(key);
  /external/apache-harmony/crypto/src/test/support/common/java/org/apache/harmony/crypto/tests/support/
MyMacSpi.java 26 import java.security.Key;
46 protected void engineInit(Key key, AlgorithmParameterSpec params)
49 if (!(key instanceof SecretKeySpec)) {
50 throw new IllegalArgumentException("params is null and key is SecretKeySpec");
MyCipher.java 26 import java.security.Key;
81 protected void engineInit(int opmode, Key key, SecureRandom random)
86 protected void engineInit(int opmode, Key key,
92 protected void engineInit(int opmode, Key key, AlgorithmParameters params,
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramStateTrait.h 36 template <typename Key, typename Data, typename Info>
37 struct ProgramStatePartialTrait< llvm::ImmutableMap<Key,Data,Info> > {
38 typedef llvm::ImmutableMap<Key,Data,Info> data_type;
40 typedef Key key_type;
77 template <typename Key, typename Info>
78 struct ProgramStatePartialTrait< llvm::ImmutableSet<Key,Info> > {
79 typedef llvm::ImmutableSet<Key,Info> data_type;
81 typedef Key key_type;
  /external/giflib/
gif_hash.h 41 /* The 32 bits of the long are divided into two parts for the key & code: */
43 /* 2. The key is 12 bits Prefix code + 8 bit new char or 20 bits. */
44 /* The key is the upper 20 bits. The code is the lower 12. */
56 void _InsertHashTable(GifHashTableType *HashTable, UINT32 Key, int Code);
57 int _ExistsHashTable(GifHashTableType *HashTable, UINT32 Key);
  /external/webkit/Source/JavaScriptCore/runtime/
StructureTransitionTable.h 44 typedef std::pair<RefPtr<StringImpl>, unsigned> Key;
45 static unsigned hash(const Key& p)
50 static bool equal(const Key& a, const Key& b)
73 static void* finalizerContextFor(Hash::Key)
78 static inline Hash::Key keyForFinalizer(void* context, Structure* structure)
84 typedef WeakGCMap<Hash::Key, Structure, WeakGCMapFinalizerCallback, Hash, HashTraits> TransitionMap;
86 static Hash::Key keyForWeakGCMapFinalizer(void* context, Structure*);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/support/
MyMacSpi.java 27 import java.security.Key;
47 protected void engineInit(Key key, AlgorithmParameterSpec params)
50 if (!(key instanceof SecretKeySpec)) {
51 throw new IllegalArgumentException("params is null and key is SecretKeySpec");
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/basic_tree_policy/
traits.hpp 53 template<typename Key,
65 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/pat_trie_/
traits.hpp 57 template<typename Key,
67 Key,
75 typedef types_traits< Key, Mapped, Allocator, false> type_traits;
80 Key,
213 template<typename Key,
222 Key,
232 Key,
241 Key,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/tree_policy/
node_metadata_selector.hpp 66 template<typename Key,
80 Key,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/trie_policy/
node_metadata_selector.hpp 66 template<typename Key,
80 Key,
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/basic_tree_policy/
traits.hpp 53 template<typename Key,
65 template<typename Key,
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
traits.hpp 57 template<typename Key,
67 Key,
75 typedef types_traits< Key, Mapped, Allocator, false> type_traits;
80 Key,
213 template<typename Key,
222 Key,
232 Key,
241 Key,
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/tree_policy/
node_metadata_selector.hpp 66 template<typename Key,
80 Key,
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/trie_policy/
node_metadata_selector.hpp 66 template<typename Key,
80 Key,
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/basic_tree_policy/
traits.hpp 53 template<typename Key,
65 template<typename Key,
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
traits.hpp 57 template<typename Key,
67 Key,
75 typedef types_traits< Key, Mapped, Allocator, false> type_traits;
80 Key,
213 template<typename Key,
222 Key,
232 Key,
241 Key,
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/tree_policy/
node_metadata_selector.hpp 66 template<typename Key,
80 Key,
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/trie_policy/
node_metadata_selector.hpp 66 template<typename Key,
80 Key,
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
EncodedKeySpec2Test.java 20 import java.security.Key;
47 // check public key encoding
49 Key key = fact.generatePublic(new X509EncodedKeySpec(encoded)); local
51 assertTrue("public key encodings were different",
52 isEqual(key, keys.getPublic()));
54 // check private key encoding
56 key = fact.generatePrivate(new PKCS8EncodedKeySpec(encoded));
58 assertTrue("private key encodings were different",
59 isEqual(key, keys.getPrivate()))
    [all...]
  /external/llvm/lib/MC/
MCSubtargetInfo.cpp 77 assert(strcmp(ProcItins[i - 1].Key, ProcItins[i].Key) < 0 &&
84 KV.Key = CPU.data();
87 if (Found == ProcItins+NumProcs || StringRef(Found->Key) != CPU) {

Completed in 585 milliseconds

1 2 34 5 6 7 8 91011>>