HomeSort by relevance Sort by last modified time
    Searched defs:keys (Results 101 - 125 of 2356) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/skqp/tests/
DynamicHashTest.cpp 158 // should see all 3 unique keys when iterating over hash
160 int keys[3] = {0, 0, 0}; local
163 keys[count] = key;
168 ASSERT(keys[0] != keys[1]);
169 ASSERT(keys[0] != keys[2]);
170 ASSERT(keys[1] != keys[2]);
172 // should see 2 unique keys when iterating over hash that aren't
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderMapEntryCollection.java 41 @Nonnull private final Collection<Key> keys; field in class:BuilderMapEntryCollection
43 public BuilderMapEntryCollection(@Nonnull Collection<Key> keys) {
44 this.keys = keys;
64 final Iterator<Key> iter = keys.iterator();
84 return keys.size();
  /external/tensorflow/tensorflow/contrib/slim/python/slim/data/
tfexample_decoder.py 50 def __init__(self, keys):
51 """Constructs the handler with the name of the tf.Feature keys to use.
56 keys: the name of the TensorFlow Example Feature.
58 if not isinstance(keys, (tuple, list)):
59 keys = [keys]
60 self._keys = keys
63 def keys(self): member in class:ItemHandler
71 keys_to_tensors: a mapping of TF-Example keys to parsed tensors.
86 def __init__(self, keys, func)
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
lookup_table_init_op.cc 60 const Tensor& keys = ctx->input(1); variable
62 ctx, TensorShapeUtils::IsVector(keys.shape()),
63 errors::InvalidArgument("Keys must be a vector, but received shape",
64 keys.shape().DebugString()));
72 OP_REQUIRES(ctx, keys.NumElements() == values.NumElements(),
74 "Keys and values must have the same size ",
75 keys.NumElements(), " vs ", values.NumElements()));
77 lookup::KeyValueTensorIterator iter(&keys, &values);
  /external/tensorflow/tensorflow/python/util/
util.cc 69 PyObject* keys = PyDict_Keys(nested); local
70 if (PyList_Sort(keys) == -1) return false;
71 Py_ssize_t size = PyList_Size(keys);
76 PyObject* key = PyList_GET_ITEM(keys, i);
79 Py_DECREF(keys);
85 Py_DECREF(keys);
  /external/v8/src/runtime/
runtime-forin.cc 11 #include "src/keys.h"
32 Handle<FixedArray> keys; local
34 isolate, keys, accumulator.GetKeys(GetKeysConversion::kKeepNumbers),
37 if (!accumulator.is_receiver_simple_enum()) return keys;
  /libcore/ojluni/src/main/java/sun/nio/ch/
MembershipRegistry.java 34 * Simple registry of membership keys for a MulticastChannel.
41 // map multicast group to keys
55 List<MembershipKeyImpl> keys = groups.get(group); local
56 if (keys != null) {
57 for (MembershipKeyImpl key: keys) {
85 List<MembershipKeyImpl> keys; local
88 keys = null;
90 keys = groups.get(group);
92 if (keys == null) {
93 keys = new LinkedList<MembershipKeyImpl>()
104 List<MembershipKeyImpl> keys = groups.get(group); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
IdentityCache.java 73 public synchronized ArrayList<K> keys() { method in class:IdentityCache
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/analytics/
AnalyticsUtils.java 109 final Set<String> keys = intent.getExtras().keySet(); local
110 for (String key : keys) {
127 final Set<String> keys = props.stringPropertyNames(); local
128 for (String key : keys) {
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/
PersistableBundlable.java 44 // Concatenated sorted keys should be good enough as a hash
45 List<String> keys = new ArrayList(toPersistableBundle().keySet()); local
46 Collections.sort(keys);
47 return TextUtils.join(",", keys).hashCode();
83 Set<String> keys = obj1.keySet(); local
84 for (String key : keys) {
  /packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
ConfigureNotificationSettingsTest.java 70 final List<String> keys = ConfigureNotificationSettings.SEARCH_INDEX_DATA_PROVIDER local
73 assertThat(keys).containsAllOf(
SoundSettingsTest.java 63 final List<String> keys = XmlTestUtils.getKeysFromPreferenceXml(context, xmlId); local
64 keys.addAll(XmlTestUtils.getKeysFromPreferenceXml(context, R.xml.zen_mode_settings));
65 // Add keys with hidden resources
66 keys.add("alarm_volume");
67 keys.add("ring_volume");
68 keys.add("notification_volume");
70 assertThat(keys).containsAllIn(niks);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/
ConfigureWifiSettingsTest.java 40 final List<String> keys = XmlTestUtils.getKeysFromPreferenceXml(mContext, xmlId); local
42 assertThat(keys).containsAllIn(niks);
52 final List<String> keys = XmlTestUtils.getKeysFromPreferenceXml(mContext, xmlId); local
53 assertThat(keys).isNotNull();
54 assertThat(niks).containsAllIn(keys);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/tc_act/
tc_pedit.h 30 struct tc_pedit_key keys[0]; member in struct:tc_pedit_sel
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
ObjectBrowser.py 45 keys = dir(self.object)
47 for key in keys:
89 def keys(self): member in class:SequenceTreeItem
93 for key in self.keys():
105 def keys(self): member in class:DictTreeItem
106 keys = self.object.keys()
108 keys.sort()
111 return keys
  /prebuilts/gdb/darwin-x86/lib/python2.7/wsgiref/
headers.py 95 def keys(self): member in class:Headers
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
ObjectBrowser.py 45 keys = dir(self.object)
47 for key in keys:
89 def keys(self): member in class:SequenceTreeItem
93 for key in self.keys():
105 def keys(self): member in class:DictTreeItem
106 keys = self.object.keys()
108 keys.sort()
111 return keys
  /prebuilts/gdb/linux-x86/lib/python2.7/wsgiref/
headers.py 95 def keys(self): member in class:Headers
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
unify_const_pass.cpp 36 // as an array of keys, looks up the trie to find a result id which is stored
38 // is found, creates a trie node with those keys, stores the instruction's
42 auto keys = GetLookUpKeys(inst); local
44 for (uint32_t key : keys) {
81 // The mapping from the keys to the child nodes of this node.
88 std::vector<uint32_t> keys; local
93 keys.push_back(static_cast<uint32_t>(inst.opcode()));
96 keys.insert(keys.end(), operand.words.cbegin(), operand.words.cend());
98 return keys;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ObjectBrowser.py 45 keys = dir(self.object)
47 for key in keys:
89 def keys(self): member in class:SequenceTreeItem
93 for key in self.keys():
105 def keys(self): member in class:DictTreeItem
106 keys = self.object.keys()
108 keys.sort()
111 return keys
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
headers.py 95 def keys(self): member in class:Headers
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ObjectBrowser.py 45 keys = dir(self.object)
47 for key in keys:
89 def keys(self): member in class:SequenceTreeItem
93 for key in self.keys():
105 def keys(self): member in class:DictTreeItem
106 keys = self.object.keys()
108 keys.sort()
111 return keys
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
headers.py 95 def keys(self): member in class:Headers
  /external/guava/guava-tests/test/com/google/common/cache/
PopulatedCachesTest.java 50 // we use integers as keys; make sure the range covers some values that ARE cached by
194 Set<Object> keys = cache.asMap().keySet(); local
198 assertThat(keys).has().exactlyAs(expected);
199 assertThat(keys.toArray()).asList().has().exactlyAs(expected);
200 assertThat(keys.toArray(new Object[0])).asList().has().exactlyAs(expected);
203 .addEqualityGroup(cache.asMap().keySet(), keys)
206 assertEquals(WARMUP_SIZE, keys.size());
209 assertTrue(keys.contains(key));
210 assertTrue(keys.remove(key));
211 assertFalse(keys.remove(key))
    [all...]
  /bootable/recovery/tests/component/
verifier_test.cpp 70 std::string keys = testkey_v4 + "," + testkey_v3 + "," + testkey_v4; local
72 ASSERT_TRUE(android::base::WriteStringToFile(keys, key_file1.path));

Completed in 941 milliseconds

1 2 3 45 6 7 8 91011>>