Searched defs:Key (Results 1 - 12 of 12) sorted by relevance

/frameworks/compile/mclinker/include/mcld/LD/
H A DBranchIsland.h103 /** \class Key
104 * \brief Key to recognize a stub in the island.
107 class Key class in class:mcld::BranchIsland
110 Key(const Stub* pPrototype, const LDSymbol* pSymbol, Stub::SWord pAddend) function in class:mcld::BranchIsland::Key
114 ~Key()
125 size_t operator() (const Key& KEY) const
137 bool operator() (const Key& KEY1, const Key& KEY2) const
151 typedef HashEntry<Key, Stub*, Key
[all...]
/frameworks/compile/mclinker/include/mcld/Support/
H A DMemoryArea.h89 class Key { class in class:mcld::MemoryArea
91 Key(size_t pOffset, size_t pLength) function in class:mcld::MemoryArea::Key
100 bool operator()(const Key& KEY1, const Key& KEY2) const
113 typedef std::multimap<Key, Space*, Key::Compare> SpaceMapType;
/frameworks/native/include/input/
H A DKeyLayoutMap.h77 struct Key { struct in class:android::KeyLayoutMap
82 KeyedVector<int32_t, Key> mKeysByScanCode;
83 KeyedVector<int32_t, Key> mKeysByUsageCode;
88 const Key* getKey(int32_t scanCode, int32_t usageCode) const;
H A DKeyCharacterMap.h156 struct Key { struct in class:android::KeyCharacterMap
157 Key();
158 Key(const Key& other);
159 ~Key();
209 status_t finishKey(Key* key);
216 KeyedVector<int32_t, Key*> mKeys;
225 bool getKey(int32_t keyCode, const Key** outKey) const;
227 const Key** outKey, const Behavior** outBehavior) const;
H A DInputTransport.h56 struct Key { struct in union:android::InputMessage::Body
70 return sizeof(Key);
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DProgramCache.h43 * Key is used to retrieve a Program in the cache.
44 * A Key is generated from a Description.
46 class Key { class in class:android::ProgramCache
74 inline Key() : mKey(0) { } function in class:android::ProgramCache::Key
75 inline Key(const Key& rhs) : mKey(rhs.mKey) { } function in class:android::ProgramCache::Key
77 inline Key& set(key_t mask, key_t value) {
102 friend inline int strictly_order_type(const Key& lhs, const Key& rhs) {
115 // compute a cache Key fro
[all...]
/frameworks/base/core/java/android/net/
H A DLinkCapabilities.java54 public static final class Key { class in class:LinkCapabilities
56 private Key() {} method in class:LinkCapabilities.Key
/frameworks/base/services/java/com/android/server/am/
H A DPendingIntentRecord.java36 final Key key;
44 final static class Key { class in class:PendingIntentRecord
61 Key(int _t, String _p, ActivityRecord _a, String _w, method in class:PendingIntentRecord.Key
104 Key other = (Key)otherObj;
161 return "Key{" + typeName() + " pkg=" + packageName
183 PendingIntentRecord(ActivityManagerService _owner, Key _k, int _u) {
/frameworks/native/libs/input/
H A DKeyCharacterMap.cpp97 mKeys.add(other.mKeys.keyAt(i), new Key(*other.mKeys.valueAt(i)));
103 Key* key = mKeys.editValueAt(i);
176 Key* key = overlay->mKeys.valueAt(i);
180 map->mKeys.editValueAt(oldIndex) = new Key(*key);
182 map->mKeys.add(keyCode, new Key(*key));
208 const Key* key;
220 const Key* key;
232 const Key* key;
249 const Key* key;
270 const Key* ke
635 KeyCharacterMap::Key::Key() : function in class:android::KeyCharacterMap::Key
639 KeyCharacterMap::Key::Key(const Key& other) : function in class:android::KeyCharacterMap::Key
[all...]
/frameworks/base/services/java/com/android/server/net/
H A DNetworkStatsCollection.java73 private HashMap<Key, NetworkStatsHistory> mStats = Maps.newHashMap();
148 for (Map.Entry<Key, NetworkStatsHistory> entry : mStats.entrySet()) {
149 final Key key = entry.getKey();
173 for (Map.Entry<Key, NetworkStatsHistory> mapEntry : mStats.entrySet()) {
174 final Key key = mapEntry.getKey();
211 private void recordHistory(Key key, NetworkStatsHistory history) {
228 for (Map.Entry<Key, NetworkStatsHistory> entry : another.mStats.entrySet()) {
235 final Key key = new Key(ident, uid, set, tag);
280 final Key ke
498 private static class Key implements Comparable<Key> { class in class:NetworkStatsCollection
506 public Key(NetworkIdentitySet ident, int uid, int set, int tag) { method in class:NetworkStatsCollection.Key
[all...]
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraMetadata.java77 public abstract <T> T get(Key<T> key);
91 public List<Key<?>> getKeys() {
96 * Return a list of all the Key<?> that are declared as a field inside of the class
103 /*package*/ static ArrayList<Key<?>> getKeysStatic(Class<? extends CameraMetadata> type,
105 ArrayList<Key<?>> keyList = new ArrayList<Key<?>>();
110 if (field.getType().isAssignableFrom(Key.class) &&
112 Key<?> key;
114 key = (Key<?>) field.get(instance);
129 public static class Key< class in class:CameraMetadata
139 public Key(String name, Class<T> type) { method in class:CameraMetadata.Key
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java49 * &lt;Key android:keyLabel="A" /&gt;
67 private static final String TAG_KEY = "Key";
99 /** Key instance for the shift key, if present */
100 private Key[] mShiftKeys = { null, null };
102 /** Key index for the shift key, if present */
121 private List<Key> mKeys;
124 private List<Key> mModifierKeys;
170 ArrayList<Key> mKeys = new ArrayList<Key>();
230 public static class Key { class in class:Keyboard
313 public Key(Row parent) { method in class:Keyboard.Key
330 public Key(Resources res, Row parent, int x, int y, XmlResourceParser parser) { method in class:Keyboard.Key
[all...]

Completed in 346 milliseconds