Searched refs:Key (Results 1 - 25 of 675) sorted by relevance

1234567891011>>

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DNullableIndexSection.java36 public interface NullableIndexSection<Key> extends IndexSection<Key> {
37 int getNullableItemIndex(@Nullable Key key);
H A DNullableOffsetSection.java36 public interface NullableOffsetSection<Key> extends OffsetSection<Key> {
37 int getNullableItemOffset(@Nullable Key key);
H A DIndexSection.java38 public interface IndexSection<Key> {
39 int getItemIndex(@Nonnull Key key);
40 @Nonnull Collection<? extends Map.Entry<? extends Key, Integer>> getItems();
H A DOffsetSection.java38 public interface OffsetSection<Key> {
39 int getItemOffset(@Nonnull Key key);
40 @Nonnull Collection<? extends Map.Entry<? extends Key, Integer>> getItems();
/external/libcxx/test/std/containers/unord/unord.map/
H A Dcompare.pass.cpp12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
13 // class Alloc = allocator<pair<const Key, T>>>
22 struct Key { struct
23 template <typename T> Key(const T&) {} function in struct:Key
24 bool operator== (const Key&) const { return true; }
30 struct hash<Key>
32 size_t operator()(Key const &) const {return 0;}
39 typedef std::unordered_map<Key, in
[all...]
/external/clang/test/Modules/Inputs/submodules/
H A Dhash_map.h1 template<typename Key, typename Data> class hash_map { };
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
H A DDiskCache.java3 import com.bumptech.glide.load.Key;
35 File get(Key key);
44 void put(Key key, Writer writer);
51 void delete(Key key);
H A DDiskCacheAdapter.java3 import com.bumptech.glide.load.Key;
12 public File get(Key key) {
18 public void put(Key key, Writer writer) {
23 public void delete(Key key) {
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DClassesKey.java19 private static final Key FACTORY = (Key)KeyFactory.create(Key.class, KeyFactory.OBJECT_BY_CLASS);
21 interface Key { interface in class:ClassesKey
/external/libcxx/test/std/containers/associative/map/
H A Dcompare.pass.cpp12 // template <class Key, class T, class Compare = less<Key>,
13 // class Allocator = allocator<pair<const Key, T>>>
23 struct Key { struct
24 template <typename T> Key(const T&) {} function in struct:Key
25 bool operator< (const Key&) const { return false; }
30 typedef std::map<Key, int> MapT;
36 m_contains[Key(0)] = 42;
38 Iter it = m_empty.find(Key(0));
40 it = m_contains.find(Key(
[all...]
/external/libchrome/base/posix/
H A Dglobal_descriptors.h39 typedef uint32_t Key; typedef in class:base::GlobalDescriptors
41 Descriptor(Key key, int fd);
42 Descriptor(Key key, int fd, base::MemoryMappedFile::Region region);
45 Key key;
53 // Often we want a canonical descriptor for a given Key. In this case, we add
65 int Get(Key key) const;
68 int MaybeGet(Key key) const;
71 base::MemoryMappedFile::Region GetRegion(Key key) const;
75 void Set(Key key, int fd);
78 void Set(Key ke
[all...]
/external/parameter-framework/asio/include/asio/detail/
H A Dcall_stack.hpp26 template <typename Key, typename Value = unsigned char>
36 explicit context(Key* k)
38 next_(call_stack<Key, Value>::top_)
41 call_stack<Key, Value>::top_ = this;
45 context(Key* k, Value& v)
48 next_(call_stack<Key, Value>::top_)
50 call_stack<Key, Value>::top_ = this;
56 call_stack<Key, Value>::top_ = next_;
73 friend class call_stack<Key, Value>;
76 Key* key
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dcall_stack.hpp26 template <typename Key, typename Value = unsigned char>
36 explicit context(Key* k)
38 next_(call_stack<Key, Value>::top_)
41 call_stack<Key, Value>::top_ = this;
45 context(Key* k, Value& v)
48 next_(call_stack<Key, Value>::top_)
50 call_stack<Key, Value>::top_ = this;
56 call_stack<Key, Value>::top_ = next_;
73 friend class call_stack<Key, Value>;
76 Key* key
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderMapEntryCollection.java40 public abstract class BuilderMapEntryCollection<Key> extends AbstractCollection<Map.Entry<Key, Integer>> {
41 @Nonnull private final Collection<Key> keys;
43 public BuilderMapEntryCollection(@Nonnull Collection<Key> keys) {
47 private class MapEntry implements Map.Entry<Key, Integer> {
48 @Nonnull private Key key;
50 @Nonnull @Override public Key getKey() {
63 @Nonnull @Override public Iterator<Map.Entry<Key, Integer>> iterator() {
64 final Iterator<Key> iter = keys.iterator();
66 return new Iterator<Map.Entry<Key, Intege
[all...]
/external/guice/core/src/com/google/inject/spi/
H A DLinkedKeyBinding.java20 import com.google.inject.Key;
32 * injector using {@link com.google.inject.Injector#getBinding(Key) Injector.getBinding(key)}.
34 Key<? extends T> getLinkedKey();
H A DPrivateElements.java20 import com.google.inject.Key;
48 Set<Key<?>> getExposedKeys();
60 Object getExposedSource(Key<?> key);
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
H A DAssistedInjectBinding.java19 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/
H A DLinkedFilterBinding.java19 import com.google.inject.Key;
32 Key<? extends Filter> getLinkedKey();
H A DLinkedServletBinding.java19 import com.google.inject.Key;
32 Key<? extends HttpServlet> getLinkedKey();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DBaseNullableOffsetPool.java39 public abstract class BaseNullableOffsetPool<Key> extends BaseOffsetPool<Key>
40 implements NullableOffsetSection<Key> {
41 @Override public int getNullableItemOffset(@Nullable Key key) {
/external/protobuf/src/google/protobuf/stubs/
H A Dhash.h62 template <typename Key>
65 int operator()(const Key& key) {
70 inline bool operator()(const Key& a, const Key& b) const {
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,
98 typename HashFcn = hash<Key>,
100 class hash_set : public std::set<Key, HashFc
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
H A DEngineJobListener.java3 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/
H A Dstatic_map.h43 // ************* Key array ************
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> >
85 typedef StaticMapIterator<Key, Value, Compare> iterator;
86 typedef StaticMapIterator<Key, Valu
[all...]
H A Dstatic_map_iterator-inl.h44 template<typename Key, typename Value, typename Compare>
45 StaticMapIterator<Key, Value, Compare>::StaticMapIterator(const char* base,
52 keys_ = reinterpret_cast<const Key*>(
57 template<typename Key, typename Value, typename Compare>
58 StaticMapIterator<Key, Value, Compare>&
59 StaticMapIterator<Key, Value, Compare>::operator++() {
68 template<typename Key, typename Value, typename Compare>
69 StaticMapIterator<Key, Value, Compare>
70 StaticMapIterator<Key, Value, Compare>::operator++(int postfix_operator) {
75 StaticMapIterator<Key, Valu
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/file/
H A Dbucket.py26 from boto.file.key import Key namespace
68 key = Key(self.name, self.contained_key)
72 key_type=Key.KEY_REGULAR_FILE):
75 Returns: An instance of a Key object or None
84 :param stream_type: Type of the Key - Regular File or input/output Stream
86 :rtype: :class:`boto.file.key.Key`
87 :returns: A Key object from this bucket.
90 return Key(self.name, '-', key_type=Key.KEY_STREAM_READABLE)
93 return Key(sel
[all...]

Completed in 713 milliseconds

1234567891011>>