Searched defs:keys (Results 1 - 25 of 433) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/harmony/
H A Dproxies-ownkeys.js36 var keys = 1; variable
37 handler.ownKeys = function(target) { return keys; };
39 keys = "string";
41 keys = Symbol("foo");
43 keys = null;
47 keys = { 0: "a", 1: "b", 2: "c" };
48 keys.length = 0;
50 keys.length = 1;
52 keys.length = 3;
56 keys
[all...]
H A Dreflect-enumerate.js96 var keys = []; variable
98 keys.push(k);
100 assertEquals(["2147483650"], keys);
H A Dreflect-enumerate-opt.js26 var keys = ["a", "b", "c", "d"]; variable
37 return keys;
64 // assertEquals(keys, f2(o));
65 // assertEquals(keys, has_keys);
/external/v8/test/mjsunit/regress/
H A Dregress-convert-enum2.js40 var keys = ["a", "b", "c"]; variable
44 assertEquals(keys[i], y);
/external/opencv3/samples/cpp/
H A Dopencv_version.cpp4 const char* keys = variable
12 cv::CommandLineParser parser(argc, argv, keys);
/external/v8/test/js-perf-test/Collections/
H A Dcommon.js7 var keys; variable
11 keys = new Array(N * 2);
13 keys[i] = i;
19 keys = new Array(N * 2);
21 keys[i] = 's' + i;
27 keys = new Array(N * 2);
29 keys[i] = {};
/external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
H A Dextension_dict.py27 def keys(self): member in class:ExtensionDict
28 return self._extension_backend.keys()
/external/libcxx/test/std/localization/locale.categories/
H A D__scan_keyword.pass.cpp49 std::string keys[] = {"a", "abb"}; local
52 keys, keys+sizeof(keys)/sizeof(keys[0]),
54 assert(k - keys == 0);
61 std::string keys[] = {"a", "abb"}; local
64 keys, keys+sizeof(keys)/sizeo
73 std::string keys[] = {"a", "abb"}; local
85 std::string keys[] = {"Mon", "Monday", "Tue", "Tuesday"}; local
97 std::string keys[] = {"Mon", "Monday", "Tue", "Tuesday"}; local
109 std::string keys[] = {"Mon", "Monday", "Tue", "Tuesday"}; local
[all...]
/external/opencv3/modules/cudalegacy/test/
H A Dtest_main.cpp57 const std::string keys = local
64 CommandLineParser cmd(argc, (const char**)argv, keys);
/external/autotest/client/tools/
H A Ddiffprofile63 keys = sorted(diff.keys(), key=lambda x : diff[x], reverse = True) variable
65 for key in keys[:results_per_sign]:
70 for key in keys[len(keys)-results_per_sign:]:
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/trie/
H A D_base.py9 def keys(self, prefix=None): member in class:Trie
10 keys = super().keys()
13 return set(keys)
16 return set([x for x in keys if x.startswith(prefix)])
19 for key in self.keys():
H A Ddatrie.py12 for key in data.keys():
14 raise TypeError("All keys must be strings")
34 def keys(self, prefix=None): member in class:Trie
35 return self._data.keys(prefix)
H A Dpy.py11 if not all(isinstance(x, text_type) for x in data.keys()):
12 raise TypeError("All keys must be strings")
15 self._keys = sorted(data.keys())
31 def keys(self, prefix=None): member in class:Trie
41 keys = set()
43 return keys
46 keys.add(self._keys[i])
52 return keys
/external/libbrillo/brillo/
H A Dmap_utils_unittest.cc27 std::set<std::string> keys = GetMapKeys(map_); local
29 keys);
33 std::vector<std::string> keys = GetMapKeysAsVector(map_); local
35 keys);
H A Dmap_utils.h15 // Given an STL map, returns a set containing all keys from the map.
18 std::set<typename T::key_type> keys; local
20 keys.insert(keys.end(), pair.first); // Map keys are already sorted.
21 return keys;
24 // Given an STL map, returns a vector containing all keys from the map.
25 // The keys in the vector are sorted.
28 std::vector<typename T::key_type> keys; local
29 keys
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
H A DFixedKeySet.java24 public FixedKeySet(String[] keys) { argument
25 size = keys.length;
26 set = Collections.unmodifiableSet(new HashSet(Arrays.asList(keys)));
/external/nanopb-c/generator/google/protobuf/internal/
H A Denum_type_wrapper.py65 def keys(self): member in class:EnumTypeWrapper
/external/protobuf/python/google/protobuf/internal/
H A Denum_type_wrapper.py65 def keys(self): member in class:EnumTypeWrapper
/external/skia/src/core/
H A DSkScalar.cpp13 SkScalar SkScalarInterpFunc(SkScalar searchKey, const SkScalar keys[], argument
16 SkASSERT(keys != nullptr);
20 SkASSERT(keys[i] >= keys[i-1]);
23 while (right < length && searchKey > keys[right])
32 SkScalar rightKey = keys[right];
33 SkScalar leftKey = keys[right-1];
/external/v8/test/mjsunit/
H A Dstring-index.js191 var keys = [0, '1', 2, 3.0, -1, 10]; variable
195 var key = keys[index];
202 var keys = [0, Math.floor(2) * 0.5]; variable
206 var key = keys[index];
213 var keys = [0, -0.0]; variable
217 var key = keys[index];
224 var keys = [0, 0.5]; variable
228 var key = keys[index];
235 var keys = [0, -1]; variable
239 var key = keys[inde
245 var keys = [0, 10]; variable
259 var keys = [0, num]; variable
[all...]
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DSparseSwitchPayloadDecodedInstruction.java26 private final int[] keys; field in class:SparseSwitchPayloadDecodedInstruction
38 int opcode, int[] keys, int[] targets) {
41 if (keys.length != targets.length) {
42 throw new IllegalArgumentException("keys/targets length mismatch");
45 this.keys = keys;
55 return keys;
37 SparseSwitchPayloadDecodedInstruction(InstructionCodec format, int opcode, int[] keys, int[] targets) argument
/external/guava/guava/src/com/google/common/cache/
H A DAbstractLoadingCache.java60 public ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException { argument
62 for (K key : keys) {
H A DForwardingLoadingCache.java57 public ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException { argument
58 return delegate().getAll(keys);
H A DLoadingCache.java30 * A semi-persistent mapping from keys to values. Values are automatically loaded by the cache,
57 * multiple threads can concurrently load values for distinct keys.
86 * multiple threads can concurrently load values for distinct keys.
105 * Returns a map of the values associated with {@code keys}, creating or retrieving those values
107 * loaded entries; it will never contain null keys or values.
110 * {@link CacheLoader#loadAll} for all keys which are not already present in the cache. All
113 * {@link CacheLoader#loadAll} returns {@code null}, returns a map containing null keys or values,
116 * <p>Note that duplicate elements in {@code keys}, as determined by {@link Object#equals}, will
128 ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException; argument
/external/icu/icu4c/source/samples/legacy/
H A Dlegacy.cpp25 extern "C" void test_current(UChar data[][5], uint32_t size, uint32_t maxLen, uint8_t keys[][32]);
26 extern "C" void test_legacy(UChar data[][5], uint32_t size, uint32_t maxlen, uint8_t keys[][32]);
49 void printKeys(const char *comment, uint8_t keys[][32], int32_t keySize) { argument
54 currentKey = keys[i];
88 static uint8_t keys[4][32]; local
96 test_current(uTest, 4, 5, keys);
98 printKeys("Current keys", keys, 4);
104 test_legacy(uTest, 4, 5, keys);
106 printKeys("Legacy keys", key
[all...]

Completed in 953 milliseconds

1234567891011>>