/drivers/interface/display/buffer/v1_1/include/ |
H A D | idisplay_buffer.h | 41 virtual int32_t ListMetadataKeys(const BufferHandle& handle, std::vector<uint32_t>& keys) = 0;
|
/third_party/curl/lib/ |
H A D | curl_ntlm_core.h | 43 void Curl_ntlm_core_lm_resp(const unsigned char *keys,
|
/third_party/node/test/parallel/ |
H A D | test-event-emitter-subclass.js | 51 assert.deepStrictEqual(Object.keys(myee._events), []);
|
H A D | test-http-agent-maxsockets-respected.js | 49 const sockets = agent.sockets[Object.keys(agent.sockets)[0]];
|
H A D | test-worker-messageport-hasref.js | 22 for (const asyncId of m.keys()) {
|
H A D | test-worker-terminate-source-map.js | 41 Object.keys = increaseCallCount;
|
H A D | test-eventtarget.js | 570 // Event target exported keys 572 deepStrictEqual(Object.keys(eventTarget), []); 574 const parentKeys = Object.keys(Object.getPrototypeOf(eventTarget)).sort(); 575 const keys = ['addEventListener', 'dispatchEvent', 'removeEventListener']; 576 deepStrictEqual(parentKeys, keys);
|
/third_party/node/test/pseudo-tty/ |
H A D | test-async-wrap-getasyncid-tty.js | 26 const objKeys = Object.keys(providers);
|
/third_party/node/benchmark/util/ |
H A D | type-check.js | 29 type: Object.keys(args),
|
H A D | normalize-encoding.js | 23 input: inputs.concat(Object.keys(groupedInputs)),
|
/third_party/node/benchmark/url/ |
H A D | legacy-vs-whatwg-url-searchparams-parse.js | 7 searchParam: Object.keys(searchParams),
|
/third_party/mesa3d/src/mapi/glapi/gen/ |
H A D | api_vtxfmt_init_h.py | 72 for condition in sorted(settings_by_condition.keys()):
|
/third_party/node/deps/npm/node_modules/defaults/ |
H A D | test.js | 10 test("ensure defaults override keys", function(t) { 17 test("ensure defined keys are not overwritten", function(t) { 30 t.equal(Object.keys(result.b).length, 1, 'objects should be clones');
|
/third_party/node/deps/npm/node_modules/@colors/colors/lib/ |
H A D | styles.js | 90 Object.keys(codes).forEach(function(key) {
|
/third_party/openGLES/extensions/ |
H A D | makeindex.py | 51 dict = { k : v for k,v in registry.items() if key in v.keys()}
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ |
H A D | makeindex.py | 61 dict = {k:v for k,v in registry.items() if key in v.keys()}
|
/third_party/python/Lib/unittest/ |
H A D | __init__.py | 91 return globals().keys() | {'IsolatedAsyncioTestCase'}
|
/third_party/python/Objects/ |
H A D | typeslots.py | 35 M = max(res.keys())+1
|
/third_party/libbpf/src/ |
H A D | bpf.c | 517 void *out_batch, void *keys, void *values, in bpf_map_batch_common() 532 attr.batch.keys = ptr_to_u64(keys); in bpf_map_batch_common() 544 int bpf_map_delete_batch(int fd, const void *keys, __u32 *count, in bpf_map_delete_batch() argument 548 NULL, (void *)keys, NULL, count, opts); in bpf_map_delete_batch() 551 int bpf_map_lookup_batch(int fd, void *in_batch, void *out_batch, void *keys, in bpf_map_lookup_batch() argument 556 out_batch, keys, values, count, opts); in bpf_map_lookup_batch() 560 void *keys, void *values, __u32 *count, in bpf_map_lookup_and_delete_batch() 564 fd, in_batch, out_batch, keys, values, in bpf_map_lookup_and_delete_batch() 568 int bpf_map_update_batch(int fd, const void *keys, cons argument 516 bpf_map_batch_common(int cmd, int fd, void *in_batch, void *out_batch, void *keys, void *values, __u32 *count, const struct bpf_map_batch_opts *opts) bpf_map_batch_common() argument 559 bpf_map_lookup_and_delete_batch(int fd, void *in_batch, void *out_batch, void *keys, void *values, __u32 *count, const struct bpf_map_batch_opts *opts) bpf_map_lookup_and_delete_batch() argument [all...] |
/test/xts/acts/communication/wifi_p2p/entry/src/ohosTest/js/test/ |
H A D | WifiP2PFunction.test.js | 551 let resultLength = Object.keys(data).length;
564 let resultLength = Object.keys(result).length;
593 let resultLength = Object.keys(data).length;
627 let len = Object.keys(result).length;
|
/third_party/mbedtls/scripts/ |
H A D | abi_check.py | 64 **Storage format**: the goal is to check that persistent keys stored by the 480 missing = frozenset(old_tests.keys()).difference(new_tests.keys()) 515 shared_modules = list(set(self.old_version.modules.keys()) & 516 set(self.new_version.modules.keys()))
|
/third_party/musl/porting/linux/user/ldso/ |
H A D | ns_config.c | 140 char **keys, **vals; in kvlist_realloc() local 141 keys = (char **)__libc_realloc(kvs->key, size * (sizeof *kvs->key)); in kvlist_realloc() 142 if (!keys) return; in kvlist_realloc() 143 kvs->key = keys; in kvlist_realloc()
|
/third_party/node/deps/npm/node_modules/@npmcli/package-json/lib/ |
H A D | normalize.js | 57 if (Object.keys(pkg.bin).length === 0) { 178 data.bundleDependencies = Object.keys(data.dependencies || {}) 182 data.bundleDependencies = Object.keys(bd) 201 if (!Object.keys(data.dependencies).length) {
|
/third_party/musl/ldso/linux/ |
H A D | ns_config.c | 140 char **keys, **vals; in kvlist_realloc() local 141 keys = (char **)__libc_realloc(kvs->key, size * (sizeof *kvs->key)); in kvlist_realloc() 142 if (!keys) return; in kvlist_realloc() 143 kvs->key = keys; in kvlist_realloc()
|
/third_party/python/Lib/ |
H A D | weakref.py | 115 # A list of keys to be removed 218 def keys(self): member in WeakValueDictionary 226 __iter__ = keys 357 """ Mapping class that references keys weakly. 380 # A list of dead weakrefs (keys to be removed) 391 # However, it means keys may already have been removed. 419 # self._pending_removals may still contain keys which were 468 def keys(self): member in WeakKeyDictionary 475 __iter__ = keys 484 """Return a list of weak references to the keys [all...] |