Home
last modified time | relevance | path

Searched refs:Keys (Results 1 – 10 of 10) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf.Test/Collections/
DMapFieldTest.cs99 CollectionAssert.AreEqual(new[] { "a", "c", "d" }, map.Keys); in AddPreservesInsertionOrder()
178 CollectionAssert.AreEqual(new[] { "before", "x", "a", "after" }, map2.Keys); in Add_Dictionary()
379 CollectionAssert.AreEqual(new[] { "x" }, dictionary.Keys); in IDictionary_Keys()
432 var keys = map.Keys; in KeysReturnsLiveView()
455 var keys = map.Keys; in ViewsAreReadOnly()
467 var keys = map.Keys; in ViewCopyTo()
480 ICollection keys = map.Keys; in NonGenericViewCopyTo()
493 var keys = map.Keys; in KeysContains()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/Collections/
DReadOnlyDictionary.cs61 public ICollection<TKey> Keys property in Google.Protobuf.Collections.ReadOnlyDictionary
63 get { return wrapped.Keys; }
DMapField.cs225 …public ICollection<TKey> Keys { get { return new MapView<TKey>(this, pair => pair.Key, ContainsKey… property in Google.Protobuf.Collections.MapField
522 ICollection IDictionary.Keys { get { return (ICollection)Keys; } }
/frameworks/base/core/java/android/service/notification/
DAdjustment.java60 public @interface Keys {} annotation in Adjustment
/frameworks/base/data/keyboards/
DVendor_05ac_Product_0239.kl19 # - Keys such as PAGE_UP and FORWARD_DEL are produced using the
DGeneric.kl412 # Keys defined by HID usages
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/Tests/
DGPBUtilitiesTests.m91 // Keys not found.
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/
DGPBRootObject.m67 // Keys are NULL terminated char *.
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/pyext/
Ddescriptor_containers.cc471 static PyObject* Keys(PyContainer* self, PyObject* args) { in Keys() function
547 { "keys", (PyCFunction)Keys, METH_NOARGS, },
/frameworks/base/core/java/android/app/
DNotificationManager.java1209 public @NonNull @Adjustment.Keys List<String> getAllowedAssistantAdjustments() { in getAllowedAssistantAdjustments()