HomeSort by relevance Sort by last modified time
    Searched refs:Key (Results 26 - 50 of 1431) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/guice/core/src/com/google/inject/spi/
LinkedKeyBinding.java 20 import com.google.inject.Key;
23 * A binding to a linked key. The other key's binding is used to resolve injections.
31 * Returns the linked key used to resolve injections. That binding can be retrieved from an
32 * injector using {@link com.google.inject.Injector#getBinding(Key) Injector.getBinding(key)}.
34 Key<? extends T> getLinkedKey();
PrivateElements.java 20 import com.google.inject.Key;
48 Set<Key<?>> getExposedKeys();
51 * Returns an arbitrary object containing information about the "place" where this key was
58 * @param key one of the keys exposed by this module.
60 Object getExposedSource(Key<?> key);
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
AssistedInjectBinding.java 19 import com.google.inject.Key;
33 /** Returns the {@link Key} for the factory binding. */
34 Key<T> getKey();
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
LinkedFilterBinding.java 19 import com.google.inject.Key;
31 /** Returns the key used to lookup the filter instance. */
32 Key<? extends Filter> getLinkedKey();
LinkedServletBinding.java 19 import com.google.inject.Key;
31 /** Returns the key used to lookup the servlet instance. */
32 Key<? extends HttpServlet> getLinkedKey();
  /libcore/luni/src/test/java/libcore/javax/crypto/
MockKey.java 19 import java.security.Key;
22 * A mock Key class used for testing.
25 public class MockKey implements Key {
MockKey2.java 19 import java.security.Key;
22 * A mock Key class used for testing.
25 public class MockKey2 implements Key {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
BaseNullableOffsetPool.java 39 public abstract class BaseNullableOffsetPool<Key> extends BaseOffsetPool<Key>
40 implements NullableOffsetSection<Key> {
41 @Override public int getNullableItemOffset(@Nullable Key key) {
42 if (key == null) {
45 return getItemOffset(key);
  /packages/inputmethods/LatinIME/tools/dicttool/compat/com/android/inputmethod/keyboard/
Key.java 20 public class Key {
  /external/protobuf/src/google/protobuf/stubs/
hash.h 62 template <typename Key>
65 int operator()(const Key& key) {
70 inline bool operator()(const Key& a, const Key& b) const {
79 int operator()(const char* key) {
89 template <typename Key, typename Data,
90 typename HashFcn = hash<Key>,
92 class hash_map : public std::map<Key, Data, HashFcn> {
97 template <typename Key,
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
EngineJobListener.java 3 import com.bumptech.glide.load.Key;
7 void onEngineJobComplete(Key key, EngineResource<?> resource);
9 void onEngineJobCancelled(EngineJob engineJob, Key key);
  /external/google-breakpad/src/processor/
static_map.h 43 // ************* Key array ************
44 // (X bytes): node1's key
45 // (X bytes): node2's key
47 // (X bytes): nodeN's key
55 // REQUIREMENT: Key type MUST be primitive type or pointers so that:
56 // X = sizeof(typename Key);
72 template<typename Key>
75 int operator()(const Key &k1, const Key &k2) const {
82 template<typename Key, typename Value, typename Compare = DefaultCompare<Key>
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
IndexSection.java 38 public interface IndexSection<Key> {
39 int getItemIndex(@Nonnull Key key);
40 @Nonnull Collection<? extends Map.Entry<? extends Key, Integer>> getItems();
OffsetSection.java 38 public interface OffsetSection<Key> {
39 int getItemOffset(@Nonnull Key key);
40 @Nonnull Collection<? extends Map.Entry<? extends Key, Integer>> getItems();
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewIconCache.java 34 public static class Key {
43 public Key(ApplicationInfo info) {
47 public Key(ResolveInfo info) {
53 public Key(AppWidgetProviderInfo info) {
67 if (o instanceof Key) {
68 Key k = (Key) o;
79 private final HashMap<Key, Bitmap> mIconOutlineCache = new HashMap<Key, Bitmap>();
82 for (Key key : mIconOutlineCache.keySet())
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
hash.h 184 template <typename Key>
187 int operator()(const Key& key) {
192 inline bool operator()(const Key& a, const Key& b) const {
201 int operator()(const char* key) {
211 template <typename Key, typename Data,
212 typename HashFcn = hash<Key>,
213 typename EqualKey = std::equal_to<Key>,
214 typename Alloc = std::allocator< std::pair<const Key, Data> >
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
Prefs.java 33 Key.OVERVIEW_LAST_STACK_TASK_ACTIVE_TIME,
34 Key.DEBUG_MODE_ENABLED,
35 Key.HOTSPOT_TILE_LAST_USED,
36 Key.COLOR_INVERSION_TILE_LAST_USED,
37 Key.DND_TILE_VISIBLE,
38 Key.DND_TILE_COMBINED_ICON,
39 Key.DND_CONFIRMED_PRIORITY_INTRODUCTION,
40 Key.DND_CONFIRMED_SILENCE_INTRODUCTION,
41 Key.DND_FAVORITE_BUCKET_INDEX,
42 Key.DND_NONE_SELECTED
    [all...]
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
sparse_weight_vector.h 36 template<class Key = std::string, class Hash = std::unordered_map<Key, double> >
46 explicit SparseWeightVector(const SparseWeightVector<Key, Hash> &other) {
49 void operator=(const SparseWeightVector<Key, Hash> &other) {
52 void CopyFrom(const SparseWeightVector<Key, Hash> &other) {
87 bool GetElementMinBound(const Key &fname, double *val) const {
90 bool GetElementMaxBound(const Key &fname, double *val) const {
93 void SetElementMinBound(const Key &fname, const double bound) {
96 void SetElementMaxBound(const Key &fname, const double bound) {
100 double GetElement(const Key &fname) const
    [all...]
  /external/libchrome/base/containers/
hash_tables.h 134 template<class Key, class T,
135 class Hash = std::hash<Key>,
136 class Pred = std::equal_to<Key>,
137 class Alloc = std::allocator<std::pair<const Key, T>>>
138 using hash_map = std::unordered_map<Key, T, Hash, Pred, Alloc>;
140 template<class Key, class T,
141 class Hash = std::hash<Key>,
142 class Pred = std::equal_to<Key>,
143 class Alloc = std::allocator<std::pair<const Key, T>>>
144 using hash_multimap = std::unordered_multimap<Key, T, Hash, Pred, Alloc>
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
UniqueKeysCache.java 19 import com.android.inputmethod.keyboard.Key;
28 public abstract @Nonnull Key getUniqueKey(@Nonnull Key key);
39 public Key getUniqueKey(Key key) { return key; }
48 private final HashMap<Key, Key> mCache
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/rb_tree_map_/
traits.hpp 52 template<typename Key,
61 struct tree_traits<Key, Mapped, Cmp_Fn, Node_Update, rb_tree_tag,_Alloc>
63 Key,
68 typename types_traits<Key, Mapped, _Alloc, false>::value_type,
69 typename tree_node_metadata_dispatch<Key, Mapped, Cmp_Fn, Node_Update,
77 template<typename Key,
85 struct tree_traits<Key, null_type, Cmp_Fn, Node_Update, rb_tree_tag,_Alloc>
87 Key,
92 typename types_traits<Key, null_type, _Alloc, false>::value_type,
93 typename tree_node_metadata_dispatch<Key, null_type, Cmp_Fn, Node_Update
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/splay_tree_/
traits.hpp 52 template<typename Key,
61 struct tree_traits<Key, Mapped, Cmp_Fn, Node_Update, splay_tree_tag, _Alloc>
62 : public bin_search_tree_traits<Key, Mapped, Cmp_Fn, Node_Update,
64 typename types_traits<Key, Mapped, _Alloc, false>::value_type,
65 typename tree_node_metadata_dispatch<Key, Mapped, Cmp_Fn, Node_Update,
73 template<typename Key,
81 struct tree_traits<Key, null_type, Cmp_Fn, Node_Update,
83 : public bin_search_tree_traits<Key, null_type, Cmp_Fn, Node_Update,
85 typename types_traits<Key, null_type, _Alloc, false>::value_type,
86 typename tree_node_metadata_dispatch<Key, null_type, Cmp_Fn, Node_Update
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/rb_tree_map_/
traits.hpp 52 template<typename Key,
61 struct tree_traits<Key, Mapped, Cmp_Fn, Node_Update, rb_tree_tag,_Alloc>
63 Key,
68 typename types_traits<Key, Mapped, _Alloc, false>::value_type,
69 typename tree_node_metadata_dispatch<Key, Mapped, Cmp_Fn, Node_Update,
77 template<typename Key,
85 struct tree_traits<Key, null_type, Cmp_Fn, Node_Update, rb_tree_tag,_Alloc>
87 Key,
92 typename types_traits<Key, null_type, _Alloc, false>::value_type,
93 typename tree_node_metadata_dispatch<Key, null_type, Cmp_Fn, Node_Update
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/splay_tree_/
traits.hpp 52 template<typename Key,
61 struct tree_traits<Key, Mapped, Cmp_Fn, Node_Update, splay_tree_tag, _Alloc>
62 : public bin_search_tree_traits<Key, Mapped, Cmp_Fn, Node_Update,
64 typename types_traits<Key, Mapped, _Alloc, false>::value_type,
65 typename tree_node_metadata_dispatch<Key, Mapped, Cmp_Fn, Node_Update,
73 template<typename Key,
81 struct tree_traits<Key, null_type, Cmp_Fn, Node_Update,
83 : public bin_search_tree_traits<Key, null_type, Cmp_Fn, Node_Update,
85 typename types_traits<Key, null_type, _Alloc, false>::value_type,
86 typename tree_node_metadata_dispatch<Key, null_type, Cmp_Fn, Node_Update
    [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/rb_tree_map_/
traits.hpp 52 template<typename Key,
61 struct tree_traits<Key, Mapped, Cmp_Fn, Node_Update, rb_tree_tag,_Alloc>
63 Key,
68 typename types_traits<Key, Mapped, _Alloc, false>::value_type,
69 typename tree_node_metadata_dispatch<Key, Mapped, Cmp_Fn, Node_Update,
77 template<typename Key,
85 struct tree_traits<Key, null_type, Cmp_Fn, Node_Update, rb_tree_tag,_Alloc>
87 Key,
92 typename types_traits<Key, null_type, _Alloc, false>::value_type,
93 typename tree_node_metadata_dispatch<Key, null_type, Cmp_Fn, Node_Update
    [all...]

Completed in 501 milliseconds

12 3 4 5 6 7 8 91011>>