/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/ov_tree_map_/ |
traits.hpp | 52 template<typename Key, 62 Key, 72 Key, 81 Key, 124 template<typename Key, 133 Key, 143 Key, 152 Key,
|
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/branch_policy/ |
null_node_metadata.hpp | 51 template<typename Key, typename Data, typename _Alloc> 55 typedef types_traits<Key, Data, _Alloc, false> __traits_type;
|
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/ov_tree_map_/ |
traits.hpp | 52 template<typename Key, 62 Key, 72 Key, 81 Key, 124 template<typename Key, 133 Key, 143 Key, 152 Key,
|
/system/keymaster/ |
key.cpp | 19 #include "key.h" 27 Key::Key(const AuthorizationSet& hw_enforced, const AuthorizationSet& sw_enforced,
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/ |
AttributeStrategy.java | 12 private final GroupedLinkedMap<Key, Bitmap> groupedMap = new GroupedLinkedMap<Key, Bitmap>(); 15 final Key key = keyPool.get(bitmap.getWidth(), bitmap.getHeight(), bitmap.getConfig()); local 17 groupedMap.put(key, bitmap); 22 final Key key = keyPool.get(width, height, config); local 24 return groupedMap.get(key); 61 static class KeyPool extends BaseKeyPool<Key> { 62 public Key get(int width, int height, Bitmap.Config config) [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/ |
TypeListPool.java | 37 import org.jf.dexlib2.writer.pool.TypeListPool.Key; 44 public class TypeListPool extends BaseNullableOffsetPool<Key<? extends Collection<? extends CharSequence>>> 45 implements TypeListSection<CharSequence, Key<? extends Collection<? extends CharSequence>>> { 54 Key<? extends Collection<? extends CharSequence>> key = new Key<Collection<? extends CharSequence>>(types); local 55 Integer prev = internedItems.put(key, 0); 65 public Collection<? extends CharSequence> getTypes(Key<? extends Collection<? extends CharSequence>> typesKey) { 72 @Override public int getNullableItemOffset(@Nullable Key<? extends Collection<? extends CharSequence>> key) { [all...] |
ProtoPool.java | 37 import org.jf.dexlib2.writer.pool.ProtoPool.Key; 47 public class ProtoPool extends BaseIndexPool<Key> 48 implements ProtoSection<CharSequence, CharSequence, Key, TypeListPool.Key<? extends Collection<? extends CharSequence>>> { 63 Key key = new Key(method); local 64 Integer prev = internedItems.put(key, 0); 66 stringPool.intern(key.getShorty()); 72 @Nonnull @Override public CharSequence getShorty(@Nonnull Key key) [all...] |
/external/guice/extensions/servlet/test/com/google/inject/servlet/ |
ExtensionSpiTest.java | 27 import com.google.inject.Key; 81 new Params("/class", Key.get(DummyFilterImpl.class), ImmutableMap.of(), SERVLET), 82 new Params("/class/2", Key.get(DummyFilterImpl.class), ImmutableMap.of(), SERVLET), 83 new Params("/key", Key.get(DummyFilterImpl.class, Names.named("foo")), ImmutableMap.of(), SERVLET), 84 new Params("/key/2", Key.get(DummyFilterImpl.class, Names.named("foo")), ImmutableMap.of(), SERVLET), 87 new Params("/class/keyvalues", Key.get(DummyFilterImpl.class), ImmutableMap.of("key", "value"), SERVLET), 88 new Params("/class/keyvalues/2", Key.get(DummyFilterImpl.class), ImmutableMap.of("key", "value"), SERVLET) [all...] |
ServletScopesTest.java | 27 import com.google.inject.Key; 55 final Key<String> a = Key.get(String.class, named("A")); 56 final Key<String> b = Key.get(String.class, named("B")); 57 final Key<String> c = Key.get(String.class, named("C")); 58 final Key<String> d = Key.get(String.class, named("D")); 59 final Key<Object> e = Key.get(Object.class, named("E")) [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/file/ |
bucket.py | 26 from boto.file.key import Key 32 """Instantiate an anonymous file-based Bucket around a single key. 46 Deletes a key from the bucket. 49 :param key_name: The key name to delete 61 This method returns the single key around which this anonymous Bucket 68 key = Key(self.name, self.contained_key) 69 return SimpleResultSet([key]) 72 key_type=Key.KEY_REGULAR_FILE) [all...] |
/frameworks/av/services/audiopolicy/engineconfigurable/src/ |
Collection.h | 39 * @tparam Key type of the policy element indexing the collection. 46 template <typename Key> 47 class Collection : public std::map<Key, Element<Key> *> 50 typedef std::map<Key, Element<Key> *> Base; 51 typedef Element<Key> T; 52 typedef typename std::map<Key, T *>::iterator CollectionIterator; 53 typedef typename std::map<Key, T *>::const_iterator CollectionConstIterator; 64 * It also set the key as the unique identifier of the policy element [all...] |
/external/guice/core/src/com/google/inject/ |
Key.java | 33 * Binding key consisting of an injection type and an optional annotation. 36 * <p>For example, {@code Key.get(Service.class, Transactional.class)} will 46 * <p>{@code Key} supports generic types via subclassing just like {@link 55 public class Key<T> { 64 * Constructs a new key. Derives the type from this class's type parameter. 73 * <p>{@code new Key<Foo>(Bar.class) {}}. 76 protected Key(Class<? extends Annotation> annotationType) { 85 * Constructs a new key. Derives the type from this class's type parameter. 94 * <p>{@code new Key<Foo>(new Bar()) {}}. 97 protected Key(Annotation annotation) [all...] |
/art/runtime/base/ |
allocator.h | 159 template<class Key, class T, AllocatorTag kTag, class Compare = std::less<Key>> 161 Key, T, Compare, TrackingAllocator<std::pair<const Key, T>, kTag>>; 163 template<class Key, AllocatorTag kTag, class Compare = std::less<Key>> 164 using AllocationTrackingSet = std::set<Key, Compare, TrackingAllocator<Key, kTag>>; 166 template<class Key, 169 class Hash = std::hash<Key>, [all...] |
/external/glide/library/src/main/java/com/bumptech/glide/signature/ |
ApplicationVersionSignature.java | 7 import com.bumptech.glide.load.Key; 13 * A utility class for obtaining a {@link com.bumptech.glide.load.Key} signature containing the application version 17 private static final ConcurrentHashMap<String, Key> PACKAGE_NAME_TO_KEY = new ConcurrentHashMap<String, Key>(); 20 * Returns the signature {@link com.bumptech.glide.load.Key} for version code of the Application of the given 23 public static Key obtain(Context context) { 25 Key result = PACKAGE_NAME_TO_KEY.get(packageName); 27 Key toAdd = obtainVersionSignature(context); 29 // There wasn't a previous mapping, so toAdd is now the Key. 43 private static Key obtainVersionSignature(Context context) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/eq_fn/ |
hash_eq_fn.hpp | 53 template<typename Key, typename Eq_Fn, typename _Alloc, bool Store_Hash> 57 template<typename Key, typename Eq_Fn, typename _Alloc> 58 struct hash_eq_fn<Key, Eq_Fn, _Alloc, false> : public Eq_Fn 61 typedef typename _Alloc::template rebind<Key>::other key_allocator; 80 template<typename Key, class Eq_Fn, class _Alloc> 81 struct hash_eq_fn<Key, Eq_Fn, _Alloc, true> : public Eq_Fn 85 typedef typename _Alloc::template rebind<Key>::other key_allocator;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/ |
types_traits.hpp | 60 template<typename Key, typename Mapped> 63 static const bool __simple = is_simple<Key>::value 69 template<typename Key> 70 struct no_throw_copies<Key, null_type> 72 typedef integral_constant<int, is_simple<Key>::value> indicator; 106 template<typename Key, typename Mapped, typename _Alloc, bool Store_Hash> 113 template<typename Key, typename Mapped, typename _Alloc> 114 struct type_base<Key, Mapped, _Alloc, false> 122 typedef std::pair<const Key, Mapped> __value_type; 146 template<typename Key, typename Mapped, typename _Alloc [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/eq_fn/ |
hash_eq_fn.hpp | 53 template<typename Key, typename Eq_Fn, typename _Alloc, bool Store_Hash> 57 template<typename Key, typename Eq_Fn, typename _Alloc> 58 struct hash_eq_fn<Key, Eq_Fn, _Alloc, false> : public Eq_Fn 61 typedef typename _Alloc::template rebind<Key>::other key_allocator; 80 template<typename Key, class Eq_Fn, class _Alloc> 81 struct hash_eq_fn<Key, Eq_Fn, _Alloc, true> : public Eq_Fn 85 typedef typename _Alloc::template rebind<Key>::other key_allocator;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/ |
types_traits.hpp | 60 template<typename Key, typename Mapped> 63 static const bool __simple = is_simple<Key>::value 69 template<typename Key> 70 struct no_throw_copies<Key, null_type> 72 typedef integral_constant<int, is_simple<Key>::value> indicator; 106 template<typename Key, typename Mapped, typename _Alloc, bool Store_Hash> 113 template<typename Key, typename Mapped, typename _Alloc> 114 struct type_base<Key, Mapped, _Alloc, false> 122 typedef std::pair<const Key, Mapped> __value_type; 146 template<typename Key, typename Mapped, typename _Alloc [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/eq_fn/ |
hash_eq_fn.hpp | 53 template<typename Key, typename Eq_Fn, typename _Alloc, bool Store_Hash> 57 template<typename Key, typename Eq_Fn, typename _Alloc> 58 struct hash_eq_fn<Key, Eq_Fn, _Alloc, false> : public Eq_Fn 61 typedef typename _Alloc::template rebind<Key>::other key_allocator; 80 template<typename Key, class Eq_Fn, class _Alloc> 81 struct hash_eq_fn<Key, Eq_Fn, _Alloc, true> : public Eq_Fn 85 typedef typename _Alloc::template rebind<Key>::other key_allocator;
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/ |
types_traits.hpp | 60 template<typename Key, typename Mapped> 63 static const bool __simple = is_simple<Key>::value 69 template<typename Key> 70 struct no_throw_copies<Key, null_type> 72 typedef integral_constant<int, is_simple<Key>::value> indicator; 106 template<typename Key, typename Mapped, typename _Alloc, bool Store_Hash> 113 template<typename Key, typename Mapped, typename _Alloc> 114 struct type_base<Key, Mapped, _Alloc, false> 122 typedef std::pair<const Key, Mapped> __value_type; 146 template<typename Key, typename Mapped, typename _Alloc [all...] |
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/eq_fn/ |
hash_eq_fn.hpp | 53 template<typename Key, typename Eq_Fn, typename _Alloc, bool Store_Hash> 57 template<typename Key, typename Eq_Fn, typename _Alloc> 58 struct hash_eq_fn<Key, Eq_Fn, _Alloc, false> : public Eq_Fn 61 typedef typename _Alloc::template rebind<Key>::other key_allocator; 80 template<typename Key, class Eq_Fn, class _Alloc> 81 struct hash_eq_fn<Key, Eq_Fn, _Alloc, true> : public Eq_Fn 85 typedef typename _Alloc::template rebind<Key>::other key_allocator;
|
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/ |
types_traits.hpp | 60 template<typename Key, typename Mapped> 63 static const bool __simple = is_simple<Key>::value 69 template<typename Key> 70 struct no_throw_copies<Key, null_type> 72 typedef integral_constant<int, is_simple<Key>::value> indicator; 106 template<typename Key, typename Mapped, typename _Alloc, bool Store_Hash> 113 template<typename Key, typename Mapped, typename _Alloc> 114 struct type_base<Key, Mapped, _Alloc, false> 122 typedef std::pair<const Key, Mapped> __value_type; 146 template<typename Key, typename Mapped, typename _Alloc [all...] |
/cts/tests/tests/keystore/src/android/keystore/cts/ |
ImportedKey.java | 19 import java.security.Key; 54 public Key getOriginalEncryptionKey() { 62 public Key getOriginalDecryptionKey() { 70 public Key getOriginalSigningKey() { 78 public Key getOriginalVerificationKey() { 86 public Key getKeystoreBackedEncryptionKey() { 94 public Key getKeystoreBackedDecryptionKey() { 102 public Key getKeystoreBackedSigningKey() { 110 public Key getKeystoreBackedVerificationKey() {
|
/art/runtime/ |
runtime_options.h | 46 #define DECLARE_KEY(Type, Name) static const Key<Type> Name 48 // Define a key that is usable with a RuntimeArgumentMap. 49 // This key will *not* work with other subtypes of VariantMap. 59 // Defines a type-safe heterogeneous key->value map. 71 // Make the next many usages of Key slightly shorter to type. 73 using Key = RuntimeArgumentMapKey<TValue>; 75 // List of key declarations, shorthand for 'static const Key<T> Name' 76 #define RUNTIME_OPTIONS_KEY(Type, Name, ...) static const Key<Type> Name;
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/ |
MemoryCache.java | 3 import com.bumptech.glide.load.Key; 40 * Removes the value for the given key and returns it if present or null otherwise. 42 * @param key The key. 44 Resource<?> remove(Key key); 47 * Add bitmap to the cache with the given key. 49 * @param key The key to retrieve the bitmap. 51 * @return The old value of key (null if key is not in map) [all...] |