Home
last modified time | relevance | path

Searched refs:id (Results 1 – 25 of 8222) sorted by relevance

12345678910>>...329

/third_party/flutter/skia/third_party/externals/icu/source/data/curr/
DsupplementalData.txt11 id{"SHP"}
20 id{"EUR"}
27 id{"ESP"}
38 id{"FRF"}
49 id{"ADP"}
62 id{"AED"}
71 id{"AFN"}
78 id{"AFA"}
91 id{"XCD"}
100 id{"XCD"}
[all …]
/third_party/skia/third_party/externals/icu/source/data/curr/
DsupplementalData.txt12 id{"SHP"}
21 id{"EUR"}
28 id{"ESP"}
39 id{"FRF"}
50 id{"ADP"}
63 id{"AED"}
72 id{"AFN"}
79 id{"AFA"}
92 id{"XCD"}
101 id{"XCD"}
[all …]
/third_party/icu/icu4c/source/data/curr/
DsupplementalData.txt11 id{"SHP"}
20 id{"EUR"}
27 id{"ESP"}
38 id{"FRF"}
49 id{"ADP"}
62 id{"AED"}
71 id{"AFN"}
78 id{"AFA"}
91 id{"XCD"}
100 id{"XCD"}
[all …]
/third_party/parse5/test/data/parser-feedback/
Dtests22.test48 …"description": "<a><b><div id=1><div id=2><div id=3><div id=4><div id=5><div id=6><div id=7><div i…
49 …"input": "<a><b><div id=1><div id=2><div id=3><div id=4><div id=5><div id=6><div id=7><div id=8>A<…
65 "id": "1"
72 "id": "2"
79 "id": "3"
86 "id": "4"
93 "id": "5"
100 "id": "6"
107 "id": "7"
114 "id": "8"
[all …]
/third_party/mingw-w64/mingw-w64-headers/include/
Dmshtml.idl69 [id (DISPID_IHTMLFILTERSCOLLECTION_LENGTH), propget] HRESULT length ([retval, out] long *p);
70 …[id (DISPID_IHTMLFILTERSCOLLECTION__NEWENUM), propget, hidden, restricted] HRESULT _newEnum ([retv…
71 …[id (DISPID_IHTMLFILTERSCOLLECTION_ITEM)] HRESULT item ([in] VARIANT *pvarIndex,[retval, out] VARI…
1388 …[id (DISPID_IHTMLDOMCONSTRUCTOR_CONSTRUCTOR), propget, hidden] HRESULT constructor ([retval, out] …
1397 [id (DISPID_IHTMLCSSSTYLEDECLARATION_LENGTH), propget] HRESULT length ([retval, out] long *p);
1398 …[id (DISPID_IHTMLCSSSTYLEDECLARATION_PARENTRULE), propget] HRESULT parentRule ([retval, out] VARIA…
1399 …[id (DISPID_IHTMLCSSSTYLEDECLARATION_GETPROPERTYVALUE)] HRESULT getPropertyValue ([in] BSTR bstrPr…
1400 …[id (DISPID_IHTMLCSSSTYLEDECLARATION_GETPROPERTYPRIORITY)] HRESULT getPropertyPriority ([in] BSTR …
1401 …[id (DISPID_IHTMLCSSSTYLEDECLARATION_REMOVEPROPERTY)] HRESULT removeProperty ([in] BSTR bstrProper…
1402 …[id (DISPID_IHTMLCSSSTYLEDECLARATION_SETPROPERTY)] HRESULT setProperty ([in] BSTR bstrPropertyName…
[all …]
/third_party/gstreamer/gstreamer/gst/
Dgstenumtypes.c14 static gsize id = 0; in gst_object_flags_get_type() local
21 if (g_once_init_enter (&id)) { in gst_object_flags_get_type()
23 g_once_init_leave (&id, tmp); in gst_object_flags_get_type()
26 return (GType) id; in gst_object_flags_get_type()
33 static gsize id = 0; in gst_allocator_flags_get_type() local
40 if (g_once_init_enter (&id)) { in gst_allocator_flags_get_type()
42 g_once_init_leave (&id, tmp); in gst_allocator_flags_get_type()
45 return (GType) id; in gst_allocator_flags_get_type()
52 static gsize id = 0; in gst_bin_flags_get_type() local
60 if (g_once_init_enter (&id)) { in gst_bin_flags_get_type()
[all …]
/third_party/typescript/tests/baselines/reference/
DlambdaParamTypes.types18 var thing = create([{ name: "bob", id: 24 }, { name: "doug", id: 32 }]);
19 >thing : MyArrayWrapper<{ name: string; id: number; }>
20 >create([{ name: "bob", id: 24 }, { name: "doug", id: 32 }]) : MyArrayWrapper<{ name: string; id: n…
22 >[{ name: "bob", id: 24 }, { name: "doug", id: 32 }] : { name: string; id: number; }[]
23 >{ name: "bob", id: 24 } : { name: string; id: number; }
26 >id : number
28 >{ name: "doug", id: 32 } : { name: string; id: number; }
31 >id : number
37 >thing.doSomething : (predicate: (x: { name: string; id: number; }, y: { name: string; id: number; …
38 >thing : MyArrayWrapper<{ name: string; id: number; }>
[all …]
DobjectLiteralShorthandPropertiesAssignmentErrorFromMissingIdentifier.types2 var id: number = 10000;
3 >id : number
10 var person: { b: string; id: number } = { name, id }; // error
11 >person : { b: string; id: number; }
13 >id : number
14 >{ name, id } : { name: string; id: number; }
16 >id : number
18 function bar(name: string, id: number): { name: number, id: string } { return { name, id }; } // e…
19 >bar : (name: string, id: number) => { name: number; id: string;}
21 >id : number
[all …]
DindexedAccessWithFreshObjectLiteral.js2 function foo (id: string) {
7 }[id]
10 function bar (id: 'a' | 'b') {
15 }[id]
18 function baz (id: '1' | '2') {
23 }[id]
26 function qux (id: 1 | 2) {
31 }[id]
34 function quux (id: 'a' | 'b' | 'z') {
39 }[id]
[all …]
DcontextualTyping20.types2 var foo:{id:number;}[] = [{id:1}]; foo = [{id:1}, {id:2, name:"foo"}];
3 >foo : { id: number; }[]
4 >id : number
5 >[{id:1}] : { id: number; }[]
6 >{id:1} : { id: number; }
7 >id : number
9 >foo = [{id:1}, {id:2, name:"foo"}] : ({ id: number; } | { id: number; name: string; })[]
10 >foo : { id: number; }[]
11 >[{id:1}, {id:2, name:"foo"}] : ({ id: number; } | { id: number; name: string; })[]
12 >{id:1} : { id: number; }
[all …]
DcontextualTyping19.types2 var foo:{id:number;}[] = [{id:1}]; foo = [{id:1}, {id:2}];
3 >foo : { id: number; }[]
4 >id : number
5 >[{id:1}] : { id: number; }[]
6 >{id:1} : { id: number; }
7 >id : number
9 >foo = [{id:1}, {id:2}] : { id: number; }[]
10 >foo : { id: number; }[]
11 >[{id:1}, {id:2}] : { id: number; }[]
12 >{id:1} : { id: number; }
[all …]
DobjectLiteralShorthandPropertiesAssignment.types2 var id: number = 10000;
3 >id : number
10 var person: { name: string; id: number } = { name, id };
11 >person : { name: string; id: number; }
13 >id : number
14 >{ name, id } : { name: string; id: number; }
16 >id : number
23 function bar(name: string, id: number) { return { name, id }; }
24 >bar : (name: string, id: number) => { name: string; id: number; }
26 >id : number
[all …]
DobjectLiteralShorthandPropertiesAssignmentES6.types2 var id: number = 10000;
3 >id : number
10 var person: { name: string; id: number } = { name, id };
11 >person : { name: string; id: number; }
13 >id : number
14 >{ name, id } : { name: string; id: number; }
16 >id : number
23 function bar(name: string, id: number) { return { name, id }; }
24 >bar : (name: string, id: number) => { name: string; id: number; }
26 >id : number
[all …]
DobjectLiteralShorthandPropertiesAssignmentError.types2 var id: number = 10000;
3 >id : number
10 var person: { b: string; id: number } = { name, id }; // error
11 >person : { b: string; id: number; }
13 >id : number
14 >{ name, id } : { name: string; id: number; }
16 >id : number
18 var person1: { name, id }; // ok
19 >person1 : { name: any; id: any; }
21 >id : any
[all …]
/third_party/uboot/u-boot-2020.01/product/cipher/v2/drv/spacc/
Dspacc_reg.h24 #define chn_n_cipher_iv_out(id) (g_spacc_reg_base + 0x0000 + (id) * 0x10) argument
26 #define cipher_key(id) (g_spacc_reg_base + 0x0100 + (id) * 0x20) argument
27 #define sm1_sk(id) (g_spacc_reg_base + 0x0200 + (id) * 0x10) argument
41 #define chn_n_cipher_ctrl(id) (g_spacc_reg_base + 0x0400 + (id) * 0x80) argument
42 #define chn_n_cipher_in_node_cfg(id) (g_spacc_reg_base + 0x0404 + (id) * 0x80) argument
43 #define chn_n_cipher_in_node_start_addr(id) (g_spacc_reg_base + 0x0408 + (id) * 0x80) argument
44 #define chn_n_cipher_in_buf_rptr(id) (g_spacc_reg_base + 0x040C + (id) * 0x80) argument
45 #define chn_n_cipher_out_node_cfg(id) (g_spacc_reg_base + 0x0430 + (id) * 0x80) argument
46 #define chn_n_cipher_out_node_start_addr(id) (g_spacc_reg_base + 0x0434 + (id) * 0x80) argument
47 #define chn_n_cipher_out_buf_rptr(id) (g_spacc_reg_base + 0x0438 + (id) * 0x80) argument
[all …]
/third_party/uboot/u-boot-2020.01/include/
Dlibata.h425 #define ata_id_is_ata(id) (((id)[0] & (1 << 15)) == 0) argument
426 #define ata_id_has_lba(id) ((id)[49] & (1 << 9)) argument
427 #define ata_id_has_dma(id) ((id)[49] & (1 << 8)) argument
428 #define ata_id_has_ncq(id) ((id)[76] & (1 << 8)) argument
429 #define ata_id_queue_depth(id) (((id)[75] & 0x1f) + 1) argument
430 #define ata_id_removeable(id) ((id)[0] & (1 << 7)) argument
431 #define ata_id_iordy_disable(id) ((id)[49] & (1 << 10)) argument
432 #define ata_id_has_iordy(id) ((id)[49] & (1 << 11)) argument
434 #define ata_id_u32(id,n) \ argument
435 (((u32) (id)[(n) + 1] << 16) | ((u32) (id)[(n)]))
[all …]
/third_party/ffmpeg/libavcodec/
Dcodec_desc.c37 .id = AV_CODEC_ID_MPEG1VIDEO,
44 .id = AV_CODEC_ID_MPEG2VIDEO,
52 .id = AV_CODEC_ID_H261,
59 .id = AV_CODEC_ID_H263,
66 .id = AV_CODEC_ID_RV10,
73 .id = AV_CODEC_ID_RV20,
80 .id = AV_CODEC_ID_MJPEG,
89 .id = AV_CODEC_ID_MJPEGB,
96 .id = AV_CODEC_ID_LJPEG,
103 .id = AV_CODEC_ID_SP5X,
[all …]
/third_party/libsoup/libsoup/
Dsoup-enum-types.c29 static gsize id = 0; in soup_address_family_get_type() local
37 if (g_once_init_enter (&id)) { in soup_address_family_get_type()
39 g_once_init_leave (&id, tmp); in soup_address_family_get_type()
42 return (GType) id; in soup_address_family_get_type()
49 static gsize id = 0; in soup_cacheability_get_type() local
58 if (g_once_init_enter (&id)) { in soup_cacheability_get_type()
60 g_once_init_leave (&id, tmp); in soup_cacheability_get_type()
63 return (GType) id; in soup_cacheability_get_type()
69 static gsize id = 0; in soup_cache_response_get_type() local
77 if (g_once_init_enter (&id)) { in soup_cache_response_get_type()
[all …]
/third_party/selinux/checkpolicy/
Dpolicy_define.c115 int insert_id(const char *id, int push) in insert_id() argument
120 newid = (char *)malloc(strlen(id) + 1); in insert_id()
125 strcpy(newid, id); in insert_id()
141 static int id_has_dot(const char *id) in id_has_dot() argument
143 if (strchr(id, '.') >= id + 1) { in id_has_dot()
151 char *id = 0; in define_class() local
157 id = queue_remove(id_queue); in define_class()
158 free(id); in define_class()
162 id = (char *)queue_remove(id_queue); in define_class()
163 if (!id) { in define_class()
[all …]
/third_party/node/tools/
Dutils.py49 id = platform.system()
50 if id == 'Linux':
52 elif id == 'Darwin':
54 elif id.find('CYGWIN') >= 0:
56 elif id == 'Windows' or id == 'Microsoft':
60 elif id == 'FreeBSD':
62 elif id == 'OpenBSD':
64 elif id == 'SunOS':
66 elif id == 'NetBSD':
68 elif id == 'DragonFly':
[all …]
/third_party/boost/boost/local_function/aux_/macro/code_/
Dbind.hpp35 #define BOOST_LOCAL_FUNCTION_AUX_CODE_BIND_PARAMS_VAR_(id) \ argument
36 BOOST_LOCAL_FUNCTION_AUX_SYMBOL( (params)(id) )
38 #define BOOST_LOCAL_FUNCTION_AUX_CODE_BIND_TAG_DECL_(r, id, i, bind_traits) \ argument
39 BOOST_SCOPE_EXIT_DETAIL_TAG_DECL(r, id, i, \
44 r, id, typename01, i, bind_traits) \ argument
55 BOOST_SCOPE_EXIT_DETAIL_CAPTURE_T(id, i, \
61 r, id, typename01, i, bind_traits) \ argument
64 id \
97 r, id, typename01, i, var) \ argument
101 BOOST_SCOPE_EXIT_DETAIL_PARAM_T(id, i, var) \
[all …]
/third_party/uboot/u-boot-2020.01/drivers/ata/
Dlibata.c10 u64 ata_id_n_sectors(u16 *id) in ata_id_n_sectors() argument
12 if (ata_id_has_lba(id)) { in ata_id_n_sectors()
13 if (ata_id_has_lba48(id)) in ata_id_n_sectors()
14 return ata_id_u64(id, ATA_ID_LBA48_SECTORS); in ata_id_n_sectors()
16 return ata_id_u32(id, ATA_ID_LBA_SECTORS); in ata_id_n_sectors()
42 static void ata_id_string(const u16 *id, unsigned char *s, in ata_id_string() argument
48 c = id[ofs] >> 8; in ata_id_string()
52 c = id[ofs] & 0xff; in ata_id_string()
61 void ata_id_c_string(const u16 *id, unsigned char *s, in ata_id_c_string() argument
66 ata_id_string(id, s, ofs, len - 1); in ata_id_c_string()
[all …]
/third_party/boringssl/src/crypto/obj/
Dobjects.txt40 !Alias id-fieldType ansi-X9-62 1
43 X9-62_characteristic-two-field 3 : id-characteristic-two-basis
47 !Alias id-publicKeyType ansi-X9-62 2
48 X9-62_id-publicKeyType 1 : id-ecPublicKey
79 !Alias id-ecSigType ansi-X9-62 4
155 ISO-US 113533 7 66 13 : id-PasswordBasedMAC : password based MAC
156 ISO-US 113533 7 66 30 : id-DHBasedMac : Diffie-Hellman based MAC
232 SMIME 0 : id-smime-mod
233 SMIME 1 : id-smime-ct
234 SMIME 2 : id-smime-aa
[all …]
/third_party/openssl/crypto/objects/
Dobjects.txt50 !Alias id-fieldType ansi-X9-62 1
53 X9-62_characteristic-two-field 3 : id-characteristic-two-basis
57 !Alias id-publicKeyType ansi-X9-62 2
58 X9-62_id-publicKeyType 1 : id-ecPublicKey
89 !Alias id-ecSigType ansi-X9-62 4
165 ISO-US 113533 7 66 13 : id-PasswordBasedMAC : password based MAC
166 ISO-US 113533 7 66 30 : id-DHBasedMac : Diffie-Hellman based MAC
244 SMIME 0 : id-smime-mod
245 SMIME 1 : id-smime-ct
246 SMIME 2 : id-smime-aa
[all …]
/third_party/boost/boost/
Dscope_exit.hpp263 #define BOOST_SCOPE_EXIT_AUX_GUARD(id) \ argument
264 BOOST_PP_CAT(boost_se_guard_, id)
266 #define BOOST_SCOPE_EXIT_AUX_GUARD_T(id) \ argument
267 BOOST_PP_CAT(boost_se_guard_t_, id)
269 #define BOOST_SCOPE_EXIT_AUX_PARAMS(id) \ argument
270 BOOST_PP_CAT(boost_se_params_, id)
272 #define BOOST_SCOPE_EXIT_AUX_THIS_T(id) \ argument
273 BOOST_PP_CAT(boost_se_this_t_, id)
275 #define BOOST_SCOPE_EXIT_AUX_THIS_CAPTURE_T(id) \ argument
276 BOOST_PP_CAT(boost_se_this_capture_t_, id)
[all …]

12345678910>>...329