Home
last modified time | relevance | path

Searched refs:key (Results 1 – 25 of 7135) sorted by relevance

12345678910>>...286

/third_party/mindspore/tests/ut/data/mindrecord/testCBGData/statistics/
Dstatistics.txt1key": "polyline-example", "count": 4779, "level": [{"key": "polyline-example", "count": 4779, "lev…
2key": "2018-05", "count": 408}, {"key": "2018-06", "count": 758}, {"key": "2018-07", "count": 825}…
3key": "2018-05-14", "count": 122}, {"key": "2018-05-21", "count": 191}, {"key": "2018-05-28", "cou…
4key": "2018-05-16", "count": 5}, {"key": "2018-05-17", "count": 29}, {"key": "2018-05-18", "count"…
/third_party/node/lib/internal/readline/
Dutils.js92 const key = { variable
207 key.ctrl = !!(modifier & 4);
208 key.meta = !!(modifier & 10);
209 key.shift = !!(modifier & 1);
210 key.code = code;
215 case '[P': key.name = 'f1'; break;
216 case '[Q': key.name = 'f2'; break;
217 case '[R': key.name = 'f3'; break;
218 case '[S': key.name = 'f4'; break;
221 case 'OP': key.name = 'f1'; break;
[all …]
/third_party/typescript/tests/baselines/reference/
DnoImplicitAnyStringIndexerOnObject.types17 >c : { get: (key: string) => string; }
18 >{ get: (key: string) => 'foobar'} : { get: (key: string) => string; }
20 get: (key: string) => 'foobar'
21 >get : (key: string) => string
22 >(key: string) => 'foobar' : (key: string) => string
23 >key : string
29 >c : { get: (key: string) => string; }
35 >c : { get: (key: string) => string; }
39 >d : { set: (key: string) => string; }
40 >{ set: (key: string) => 'foobar'} : { set: (key: string) => string; }
[all …]
DunusedVariablesWithUnderscoreInForOfLoop.types5 for (const [_a, b] of [['key', 1]]) {
8 >[['key', 1]] : (string | number)[][]
9 >['key', 1] : (string | number)[]
10 >'key' : "key"
21 for (const [a, _b] of [['key', 1]]) {
24 >[['key', 1]] : (string | number)[][]
25 >['key', 1] : (string | number)[]
26 >'key' : "key"
37 for (const [_a, _b] of [['key', 1]]) {}
40 >[['key', 1]] : (string | number)[][]
[all …]
DparserRealSource4.js26 add(key: string, data): boolean;
27 addOrUpdate(key: string, data): boolean;
32 lookup(key: string): any;
49 public add(key: string, data): boolean {
50 if (this.table[key] != undefined) {
53 this.table[key] = data;
58 public addOrUpdate(key: string, data): boolean {
59 if (this.table[key] != undefined) {
60 this.table[key] = data;
63 this.table[key] = data;
[all …]
DnoImplicitAnyStringIndexerOnObject.js6 get: (key: string) => 'foobar'
12 set: (key: string) => 'foobar'
18 get: (key: string) => 'foobar',
19 set: (key: string) => 'foobar'
29 get: (key: string) => 'foobar',
30 set: (key: string, value: string) => 'foobar'
40 get: (key: "hello" | "world") => 'foobar',
41 set: (key: "hello" | "world", value: string) => 'foobar'
50 ({ get: (key: string) => 'hello', set: (key: string, value: string) => {} })['hello'];
51 …({ get: (key: string) => 'hello', set: (key: string, value: string) => {} })['hello'] = 'modified';
[all …]
DjsdocTemplateTag5.types22 … * @param {K} key the key ok * @returns {V} the value ok */ get(key) { return …
23 >Multimap.prototype : { get(key: K): V; }
25 >prototype : { get(key: K): V; }
26 … * @param {K} key the key ok * @returns {V} the value ok */ get(key) { return …
29 * @param {K} key the key ok
32 get(key) {
33 >get : (key: K) => V
34 >key : K
36 return this._map[key + ''];
37 >this._map[key + ''] : V
[all …]
/third_party/node/deps/npm/node_modules/yargs-parser/
Dindex.js58 var key = opt.key || opt
61 const assignment = Object.keys(opt).map(function (key) { argument
66 })[key]
71 flags[assignment][key] = true
74 flags.arrays[key] = true
75 flags.keys.push(key)
78 ;[].concat(opts.boolean).filter(Boolean).forEach(function (key) { argument
79 flags.bools[key] = true
80 flags.keys.push(key)
83 ;[].concat(opts.string).filter(Boolean).forEach(function (key) { argument
[all …]
/third_party/node/deps/npm/node_modules/minimist/
Dindex.js13 [].concat(opts['boolean']).filter(Boolean).forEach(function (key) { argument
14 flags.bools[key] = true;
19 Object.keys(opts.alias || {}).forEach(function (key) { argument
20 aliases[key] = [].concat(opts.alias[key]);
21 aliases[key].forEach(function (x) {
22 aliases[x] = [key].concat(aliases[key].filter(function (y) {
28 [].concat(opts.string).filter(Boolean).forEach(function (key) { argument
29 flags.strings[key] = true;
30 if (aliases[key]) {
31 flags.strings[aliases[key]] = true;
[all …]
/third_party/node/deps/npm/node_modules/mkdirp/node_modules/minimist/
Dindex.js13 [].concat(opts['boolean']).filter(Boolean).forEach(function (key) { argument
14 flags.bools[key] = true;
19 Object.keys(opts.alias || {}).forEach(function (key) { argument
20 aliases[key] = [].concat(opts.alias[key]);
21 aliases[key].forEach(function (x) {
22 aliases[x] = [key].concat(aliases[key].filter(function (y) {
28 [].concat(opts.string).filter(Boolean).forEach(function (key) { argument
29 flags.strings[key] = true;
30 if (aliases[key]) {
31 flags.strings[aliases[key]] = true;
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/
Drsa.c63 struct crypto_rsa_key *key; in crypto_rsa_import_public_key() local
67 key = os_zalloc(sizeof(*key)); in crypto_rsa_import_public_key()
68 if (key == NULL) in crypto_rsa_import_public_key()
71 key->n = bignum_init(); in crypto_rsa_import_public_key()
72 key->e = bignum_init(); in crypto_rsa_import_public_key()
73 if (key->n == NULL || key->e == NULL) { in crypto_rsa_import_public_key()
74 crypto_rsa_free(key); in crypto_rsa_import_public_key()
93 pos = crypto_rsa_parse_integer(pos, end, key->n); in crypto_rsa_import_public_key()
94 pos = crypto_rsa_parse_integer(pos, end, key->e); in crypto_rsa_import_public_key()
106 return key; in crypto_rsa_import_public_key()
[all …]
/third_party/boost/libs/move/test/
Dalgo_test.cpp121 range2[i].key = i*2; in test_set_difference_normal()
126 range1[0].key = 0u; in test_set_difference_normal()
128 range1[1].key = 1u; in test_set_difference_normal()
130 range1[2].key = 1u; in test_set_difference_normal()
132 range1[3].key = 3u; in test_set_difference_normal()
134 range1[4].key = 4u; in test_set_difference_normal()
138 out[3].key = 998; in test_set_difference_normal()
143 BOOST_TEST(out[0].key == 1u); in test_set_difference_normal()
145 BOOST_TEST(out[1].key == 1u); in test_set_difference_normal()
147 BOOST_TEST(out[2].key == 3u); in test_set_difference_normal()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/
Drsa.c64 struct crypto_rsa_key *key; in crypto_rsa_import_public_key() local
68 key = os_zalloc(sizeof(*key)); in crypto_rsa_import_public_key()
69 if (key == NULL) in crypto_rsa_import_public_key()
72 key->n = bignum_init(); in crypto_rsa_import_public_key()
73 key->e = bignum_init(); in crypto_rsa_import_public_key()
74 if (key->n == NULL || key->e == NULL) { in crypto_rsa_import_public_key()
75 crypto_rsa_free(key); in crypto_rsa_import_public_key()
98 pos = crypto_rsa_parse_integer(pos, end, key->n); in crypto_rsa_import_public_key()
99 pos = crypto_rsa_parse_integer(pos, end, key->e); in crypto_rsa_import_public_key()
111 return key; in crypto_rsa_import_public_key()
[all …]
/third_party/openssl/crypto/des/asm/
Ddest4-sparcv9.pl100 { my ($inp,$out,$len,$key,$ivec) = map("%o$_",(0..4));
127 ldd [$key + 0x00], %f4 ! load key schedule
128 ldd [$key + 0x08], %f6
129 ldd [$key + 0x10], %f8
130 ldd [$key + 0x18], %f10
131 ldd [$key + 0x20], %f12
132 ldd [$key + 0x28], %f14
133 ldd [$key + 0x30], %f16
134 ldd [$key + 0x38], %f18
135 ldd [$key + 0x40], %f20
[all …]
/third_party/glib/gio/tests/
Dorg.gtk.test.gschema.xml.orig4 <key name="greeting" type="s">
10 </key>
11 <key name="farewell" type="s">
13 </key>
21 <key name="test-boolean" type="b">
23 </key>
27 <key name="test-boolean" type="b">
29 </key>
30 <key name="test-byte" type="y">
32 </key>
[all …]
/third_party/selinux/libsepol/src/
Davtab.c93 avtab_insert_node(avtab_t * h, int hvalue, avtab_ptr_t prev, avtab_key_t * key, in avtab_insert_node() argument
103 newnode->key = *key; in avtab_insert_node()
105 if (key->specified & AVTAB_XPERMS) { in avtab_insert_node()
136 int avtab_insert(avtab_t * h, avtab_key_t * key, avtab_datum_t * datum) in avtab_insert() argument
141 key->specified & ~(AVTAB_ENABLED | AVTAB_ENABLED_OLD); in avtab_insert()
146 hvalue = avtab_hash(key, h->mask); in avtab_insert()
149 if (key->source_type == cur->key.source_type && in avtab_insert()
150 key->target_type == cur->key.target_type && in avtab_insert()
151 key->target_class == cur->key.target_class && in avtab_insert()
152 (specified & cur->key.specified)) { in avtab_insert()
[all …]
/third_party/protobuf/src/google/protobuf/testdata/
Dmap_test_data.txt2 key: 0
6 key: 1
10 key: 0
14 key: 1
18 key: 0
22 key: 1
26 key: 0
30 key: 1
34 key: 0
38 key: 1
[all …]
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/
DparserRealSource4.ts25 add(key: string, data): boolean;
26 addOrUpdate(key: string, data): boolean;
31 lookup(key: string): any;
48 public add(key: string, data): boolean {
49 if (this.table[key] != undefined) {
52 this.table[key] = data;
57 public addOrUpdate(key: string, data): boolean {
58 if (this.table[key] != undefined) {
59 this.table[key] = data;
62 this.table[key] = data;
[all …]
/third_party/openssl/crypto/evp/
De_rc4_hmac_md5.c32 void rc4_md5_enc(RC4_KEY *key, const void *in0, void *out,
41 EVP_RC4_HMAC_MD5 *key = data(ctx); in rc4_hmac_md5_init_key() local
43 RC4_set_key(&key->ks, EVP_CIPHER_CTX_key_length(ctx), inkey); in rc4_hmac_md5_init_key()
45 MD5_Init(&key->head); /* handy when benchmarking */ in rc4_hmac_md5_init_key()
46 key->tail = key->head; in rc4_hmac_md5_init_key()
47 key->md = key->head; in rc4_hmac_md5_init_key()
49 key->payload_length = NO_PAYLOAD_LENGTH; in rc4_hmac_md5_init_key()
68 EVP_RC4_HMAC_MD5 *key = data(ctx); in rc4_hmac_md5_cipher() local
70 size_t rc4_off = 32 - 1 - (key->ks.x & (32 - 1)), /* 32 is $MOD from in rc4_hmac_md5_cipher()
72 md5_off = MD5_CBLOCK - key->md.num, blocks; in rc4_hmac_md5_cipher()
[all …]
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dframework_test.dart21 final Key key = UniqueKey();
22 expect(key, hasOneLineDescription);
23 expect(key, isNot(equals(UniqueKey())));
65 final Key key = GlobalKey(debugLabel: 'problematic');
70 key: const ValueKey<int>(1),
71 child: SizedBox(key: key),
74 key: const ValueKey<int>(2),
75 child: Placeholder(key: key),
85 …'The key [GlobalKey#00000 problematic] was used by multiple widgets. The parents of those widgets …
94 final Key key = GlobalKey(debugLabel: 'problematic');
[all …]
/third_party/mindspore/mindspore/lite/test/ut/src/runtime/kernel/arm/test_data/models/mobilenet_quant/
Dmobilenet_v1_1.0_224_quant_eval.pbtxt5 key: "dtype"
11 key: "shape"
34 key: "_class"
42 key: "dtype"
48 key: "value"
66 key: "_class"
74 key: "dtype"
80 key: "value"
95 key: "_class"
103 key: "dtype"
[all …]
/third_party/node/test/fixtures/
Daead-vectors.js3 key: '6970787039613669314d623455536234', property
8 key: '6970787039613669314d623455536234', property
13 key: '6970787039613669314d623455536234', property
18 key: '337a54767a7233703637564336316a6d56353472495975313534357834546c59', property
23 key: '337a54767a7233703637564336316a6d56353472495975313534357834546c59', property
28 key: '1ed2233fa2223ef5d7df08546049406c7305220bca40d4c9', property
39 key: '00000000000000000000000000000000', property
48 key: '00000000000000000000000000000000', property
57 key: 'feffe9928665731c6d6a8f9467308308', property
72 key: 'feffe9928665731c6d6a8f9467308308', property
[all …]
/third_party/openssl/test/certs/
Dsetup.sh7 ./mkcert.sh genroot "Root CA" root-key root-cert
8 DAYS=-1 ./mkcert.sh genroot "Root CA" root-key root-expired
9 ./mkcert.sh genss "Root CA" root-key root-nonca
11 ./mkcert.sh genroot "Root Cert 2" root-key root-name2
12 ./mkcert.sh genroot "Cross Root" cross-key cross-root
13 ./mkcert.sh genca "Root CA" root-key root-cross-cert cross-key cross-root
41 ./mkcert.sh genroot "Root CA" root-key root-cert-md5
44 ./mkcert.sh genroot "Root CA" root-key-768 root-cert-768
49 ./mkcert.sh genroot "Root CA" root-key croot-cert clientAuth
67 ./mkcert.sh genroot "Root CA" root-key sroot-cert serverAuth
[all …]
/third_party/openssl/test/ssl-tests/
D28-seclevel.conf5 test-0 = 0-SECLEVEL 3 with default key
6 test-1 = 1-SECLEVEL 4 with ED448 key
7 test-2 = 2-SECLEVEL 5 server with ED448 key
8 test-3 = 3-SECLEVEL 5 client with ED448 key
9 test-4 = 4-SECLEVEL 3 with P-384 key, X25519 ECDHE
10 test-5 = 5-SECLEVEL 3 with ED448 key, TLSv1.2
13 [0-SECLEVEL 3 with default key]
14 ssl_conf = 0-SECLEVEL 3 with default key-ssl
16 [0-SECLEVEL 3 with default key-ssl]
17 server = 0-SECLEVEL 3 with default key-server
[all …]
/third_party/mesa3d/src/gallium/drivers/v3d/
Dv3d_program.c42 struct v3d_key *key, size_t key_size);
45 struct v3d_key *key);
211 struct v3d_fs_key key = { in v3d_shader_precompile() local
217 key.cbufs |= 1 << 0; in v3d_shader_precompile()
219 key.cbufs |= 1 << (var->data.location - in v3d_shader_precompile()
224 key.logicop_func = PIPE_LOGICOP_COPY; in v3d_shader_precompile()
226 v3d_setup_shared_precompile_key(so, &key.base); in v3d_shader_precompile()
227 v3d_get_compiled_shader(v3d, &key.base, sizeof(key)); in v3d_shader_precompile()
229 struct v3d_gs_key key = { in v3d_shader_precompile() local
234 v3d_setup_shared_precompile_key(so, &key.base); in v3d_shader_precompile()
[all …]

12345678910>>...286