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

/frameworks/compile/llvm-ndk-cc/
H A Dllvm-ndk-cc.cpp49 std::string& Key, std::string& Value) {
52 Key = In;
55 Key = In.substr(0, FoundPos);
83 std::string Key; local
85 splitPreDefinedSymbol(PreDefinedSymbols[i], Key, Value);
87 std::pair<std::string, std::string>(Key,Value));
48 splitPreDefinedSymbol(const std::string& In, std::string& Key, std::string& Value) argument
/frameworks/base/include/androidfw/
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/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/base/libs/androidfw/
H A DKeyCharacterMap.cpp96 mKeys.add(other.mKeys.keyAt(i), new Key(*other.mKeys.valueAt(i)));
102 Key* key = mKeys.editValueAt(i);
175 Key* key = overlay->mKeys.valueAt(i);
179 map->mKeys.editValueAt(oldIndex) = new Key(*key);
181 map->mKeys.add(keyCode, new Key(*key));
207 const Key* key;
219 const Key* key;
231 const Key* key;
248 const Key* key;
269 const Key* ke
634 KeyCharacterMap::Key::Key() : function in class:android::KeyCharacterMap::Key
638 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/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 230 milliseconds