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

/frameworks/compile/mclinker/include/mcld/LD/
H A DBranchIsland.h101 /** \class Key
102 * \brief Key to recognize a stub in the island.
105 class Key class in class:mcld::BranchIsland
108 Key(const Stub* pPrototype, const LDSymbol* pSymbol, Stub::SWord pAddend) function in class:mcld::BranchIsland::Key
112 ~Key()
123 size_t operator() (const Key& KEY) const
135 bool operator() (const Key& KEY1, const Key& KEY2) const
165 typedef HashEntry<Key, Stub*, Key
[all...]
/frameworks/av/drm/mediadrm/plugins/clearkey/tests/
H A DAesCtrDecryptorUnittest.cpp31 typedef uint8_t Key[kBlockSize]; typedef in class:clearkeydrm::AesCtrDecryptorTest
33 status_t attemptDecrypt(const Key& key, const Iv& iv, const uint8_t* source,
45 void attemptDecryptExpectingSuccess(const Key& key, const Iv& iv,
65 Key key = {
110 Key key = {
156 Key key = {
202 Key key = {
251 Key key = {
305 Key key = {
360 Key ke
[all...]
/frameworks/native/include/input/
H A DKeyLayoutMap.h79 struct Key { struct in class:android::KeyLayoutMap
89 KeyedVector<int32_t, Key> mKeysByScanCode;
90 KeyedVector<int32_t, Key> mKeysByUsageCode;
97 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.h63 struct Key { struct in union:android::InputMessage::Body
77 return sizeof(Key);
/frameworks/base/tools/split-select/
H A DRule.h48 enum Key { enum in struct:split::Rule
59 Key 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) {
117 // compute a cache Key fro
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DPendingIntentRecord.java37 final Key key;
47 final static class Key { class in class:PendingIntentRecord
64 Key(int _t, String _p, ActivityRecord _a, String _w, method in class:PendingIntentRecord.Key
107 Key other = (Key)otherObj;
164 return "Key{" + typeName() + " pkg=" + packageName
186 PendingIntentRecord(ActivityManagerService _owner, Key _k, int _u) {
/frameworks/native/libs/input/
H A DKeyCharacterMap.cpp98 mKeys.add(other.mKeys.keyAt(i), new Key(*other.mKeys.valueAt(i)));
104 Key* key = mKeys.editValueAt(i);
177 Key* key = overlay->mKeys.valueAt(i);
181 map->mKeys.editValueAt(oldIndex) = new Key(*key);
183 map->mKeys.add(keyCode, new Key(*key));
209 const Key* key;
221 const Key* key;
233 const Key* key;
250 const Key* key;
271 const Key* ke
636 KeyCharacterMap::Key::Key() : function in class:android::KeyCharacterMap::Key
640 KeyCharacterMap::Key::Key(const Key& other) : function in class:android::KeyCharacterMap::Key
[all...]
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsCollection.java76 private ArrayMap<Key, NetworkStatsHistory> mStats = new ArrayMap<>();
152 final Key key = mStats.keyAt(i);
178 final Key key = mStats.keyAt(i);
215 private void recordHistory(Key key, NetworkStatsHistory history) {
233 final Key key = another.mStats.keyAt(i);
241 final Key key = new Key(ident, uid, set, tag);
286 final Key key = new Key(ident, uid, set, tag);
301 final HashMap<NetworkIdentitySet, ArrayList<Key>> keysByIden
552 private static class Key implements Comparable<Key> { class in class:NetworkStatsCollection
560 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 DCaptureRequest.java65 public final class CaptureRequest extends CameraMetadata<CaptureRequest.Key<?>>
69 * A {@code Key} is used to do capture request field lookups with
71 * {@link CaptureRequest.Builder#set(Key, Object)}.
86 public final static class Key<T> { class in class:CaptureRequest
87 private final CameraMetadataNative.Key<T> mKey;
94 public Key(String name, Class<T> type) { method in class:CaptureRequest.Key
95 mKey = new CameraMetadataNative.Key<T>(name, type);
103 public Key(String name, TypeReference<T> typeReference) { method in class:CaptureRequest.Key
104 mKey = new CameraMetadataNative.Key<T>(name, typeReference);
138 return o instanceof Key
153 /*package*/ Key(CameraMetadataNative.Key<?> nativeKey) { method in class:CaptureRequest.Key
[all...]
H A DCameraCharacteristics.java41 public final class CameraCharacteristics extends CameraMetadata<CameraCharacteristics.Key<?>> {
44 * A {@code Key} is used to do camera characteristics field lookups with
60 public static final class Key<T> { class in class:CameraCharacteristics
61 private final CameraMetadataNative.Key<T> mKey;
68 public Key(String name, Class<T> type) { method in class:CameraCharacteristics.Key
69 mKey = new CameraMetadataNative.Key<T>(name, type);
77 public Key(String name, TypeReference<T> typeReference) { method in class:CameraCharacteristics.Key
78 mKey = new CameraMetadataNative.Key<T>(name, typeReference);
112 return o instanceof Key && ((Key<
129 private Key(CameraMetadataNative.Key<?> nativeKey) { method in class:CameraCharacteristics.Key
[all...]
H A DCaptureResult.java50 public class CaptureResult extends CameraMetadata<CaptureResult.Key<?>> {
56 * A {@code Key} is used to do capture result field lookups with
71 public final static class Key<T> { class in class:CaptureResult
72 private final CameraMetadataNative.Key<T> mKey;
79 public Key(String name, Class<T> type) { method in class:CaptureResult.Key
80 mKey = new CameraMetadataNative.Key<T>(name, type);
88 public Key(String name, TypeReference<T> typeReference) { method in class:CaptureResult.Key
89 mKey = new CameraMetadataNative.Key<T>(name, typeReference);
123 return o instanceof Key && ((Key<
138 /*package*/ Key(CameraMetadataNative.Key<?> nativeKey) { method in class:CaptureResult.Key
[all...]
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraMetadataNative.java77 public static class Key<T> { class in class:CameraMetadataNative
87 * <p>Use the CameraCharacteristics.Key, CaptureResult.Key, or CaptureRequest.Key
90 public Key(String name, Class<T> type) { method in class:CameraMetadataNative.Key
92 throw new NullPointerException("Key needs a valid name");
105 * <p>Use the CameraCharacteristics.Key, CaptureResult.Key, or CaptureRequest.Key
109 public Key(Strin method in class:CameraMetadataNative.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 541 milliseconds