/third_party/typescript/tests/baselines/reference/ |
H A D | booleanFilterAnyArray.js | 21 var foo = [{ name: 'x' }] 22 var foor: Array<{name: string}> 23 var foor = foo.filter(x => x.name) 33 var foo = [{ name: 'x' }];
35 var foor = foo.filter(function (x) { return x.name; });
|
H A D | overloadOnConstConstraintChecks2.js | 7 function foo(name: 'hi'): B; 8 function foo(name: 'bye'): C; 9 function foo(name: string): A; 10 function foo(name: any): A { 50 function foo(name) {
|
H A D | overloadOnConstConstraintChecks3.js | 7 function foo(name: 'hi'): B; 8 function foo(name: 'bye'): C; 9 function foo(name: string): A; 10 function foo(name: any): A { 52 function foo(name) {
|
/third_party/protobuf/js/experimental/runtime/kernel/ |
H A D | sfixed64_test_pairs.js | 13 * @return {!Array<{name: string, longValue: !Int64, bufferDecoder: 19 name: 'zero', 25 name: 'one', 31 name: 'minus one', 37 name: 'max int 2^63 -1', 43 name: 'min int -2^63',
|
/third_party/selinux/libselinux/src/ |
H A D | get_initial_context.c | 14 int security_get_initial_context_raw(const char * name, char ** con) in security_get_initial_context_raw() argument 26 if (strchr(name, '/')) { in security_get_initial_context_raw() 31 ret = snprintf(path, sizeof path, "%s%s%s", selinux_mnt, SELINUX_INITCON_DIR, name); in security_get_initial_context_raw() 66 int security_get_initial_context(const char * name, char ** con) in security_get_initial_context() argument 71 ret = security_get_initial_context_raw(name, &rcon); in security_get_initial_context()
|
/third_party/selinux/libsepol/tests/ |
H A D | libsepol-tests.c | 40 #define DECLARE_SUITE(name) \ 42 suite = CU_add_suite(#name, name##_test_init, name##_test_cleanup); \ 47 if (name##_add_tests(suite)) { \
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuResource.hpp | 58 Resource (const std::string& name) : m_name(name) {} in Resource() argument 75 * Throws resource error if no resource with given name exists. 79 * \param name Resource path 82 virtual Resource* getResource (const char* name) const = 0; 97 Resource* getResource (const char* name) const; 132 virtual Resource* getResource (const char* name) const;
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | ext_password_file.c | 74 * @name: Name of the password to retrieve 77 * This function tries to find a password identified by name in the password 82 static struct wpabuf * ext_password_file_get(void *ctx, const char *name) in ext_password_file_get() argument 98 wpa_printf(MSG_DEBUG, "EXT PW FILE: get(%s)", name); in ext_password_file_get() 115 if (os_strncmp(name, pos, sep - pos) != 0) in ext_password_file_get() 122 wpa_printf(MSG_ERROR, "Password for '%s' was not found.", name); in ext_password_file_get() 132 .name = "file",
|
/kernel/linux/linux-6.6/arch/x86/events/intel/ |
H A D | uncore_snbep.c | 758 .name = "format", 763 .name = "format", 768 .name = "format", 773 .name = "format", 778 .name = "format", 886 .name = "ubox", 1043 .name = "cbox", 1153 .name = "pcu", 1246 .name = "ha", 1254 .name [all...] |
/third_party/typescript/lib/ |
H A D | tsserver.js | 1296 var name = names_1[_i]; 1297 pushIfUnique(result, name); 1751 // We convert the file names to lower case as key for file name on case insensitive file system 1776 * This function is used in places where we want to make file name as a key on these systems 1777 * It is possible on mac to be able to refer to file name with I with dot on top as a fileName with its lower case form 2069 * Given a name and a list of names that are *not* equal to the name, return a spelling suggestion if there is one that is close enough. 2074 * * With no name 2075 * * Whose length differs from the target name by more than 0.34 of the length of the name [all...] |
H A D | tsserverlibrary.js | 1295 var name = names_1[_i]; 1296 pushIfUnique(result, name); 1750 // We convert the file names to lower case as key for file name on case insensitive file system 1775 * This function is used in places where we want to make file name as a key on these systems 1776 * It is possible on mac to be able to refer to file name with I with dot on top as a fileName with its lower case form 2068 * Given a name and a list of names that are *not* equal to the name, return a spelling suggestion if there is one that is close enough. 2073 * * With no name 2074 * * Whose length differs from the target name by more than 0.34 of the length of the name [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/engine/device/ |
H A D | base.c | 58 nvkm_device_list(u64 *name, int size) in nvkm_device_list() argument 65 name[nr - 1] = device->handle; in nvkm_device_list() 73 .name = "NULL", 79 .name = "NV04", 100 .name = "NV05", 121 .name = "NV10", 141 .name = "NV11", 163 .name = "NV15", 185 .name = "NV17", 207 .name 2959 nvkm_device_ctor(const struct nvkm_device_func *func, const struct nvkm_device_quirk *quirk, struct device *dev, enum nvkm_device_type type, u64 handle, const char *name, const char *cfg, const char *dbg, bool detect, bool mmio, u64 subdev_mask, struct nvkm_device *device) nvkm_device_ctor() argument [all...] |
/third_party/openssl/test/ |
H A D | evp_test.c | 40 char *name; member 52 const char *name; member 57 /* Test specific name value pair processing */ 58 int (*parse) (EVP_TEST * t, const char *name, const char *value); 65 char *name; member 84 static int find_key(EVP_PKEY **ppk, const char *name, KEY_LIST *lst); 86 static int is_digest_disabled(const char *name); 87 static int is_pkey_disabled(const char *name); 88 static int is_mac_disabled(const char *name); 89 static int is_cipher_disabled(const char *name); 1679 pkey_test_init(EVP_TEST *t, const char *name, int use_public, int (*keyopinit) (EVP_PKEY_CTX *ctx), int (*keyop)(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, const unsigned char *tbs, size_t tbslen)) pkey_test_init() argument 1823 sign_test_init(EVP_TEST *t, const char *name) sign_test_init() argument 1836 verify_recover_test_init(EVP_TEST *t, const char *name) verify_recover_test_init() argument 1850 decrypt_test_init(EVP_TEST *t, const char *name) decrypt_test_init() argument 1864 verify_test_init(EVP_TEST *t, const char *name) verify_test_init() argument 1887 pderive_test_init(EVP_TEST *t, const char *name) pderive_test_init() argument 2422 rand_test_init(EVP_TEST *t, const char *name) rand_test_init() argument 2687 kdf_test_init(EVP_TEST *t, const char *name) kdf_test_init() argument 2734 char *p, *name; kdf_test_ctrl() local 2834 pkey_kdf_test_init(EVP_TEST *t, const char *name) pkey_kdf_test_init() argument 3238 const char *name = mdata->md == NULL ? NULL : EVP_MD_get0_name(mdata->md); digestsigver_test_parse() local 3462 find_test(const char *name) find_test() argument 3582 find_key(EVP_PKEY **ppk, const char *name, KEY_LIST *lst) find_key() argument 3989 is_digest_disabled(const char *name) is_digest_disabled() argument 4026 is_pkey_disabled(const char *name) is_pkey_disabled() argument 4043 is_mac_disabled(const char *name) is_mac_disabled() argument 4064 is_kdf_disabled(const char *name) is_kdf_disabled() argument 4073 is_cipher_disabled(const char *name) is_cipher_disabled() argument [all...] |
/kernel/linux/linux-6.6/arch/powerpc/perf/ |
H A D | hv-24x7.c | 195 .name = "format", 200 .name = "events", 205 .name = "event_descs", 210 .name = "event_long_descs", 276 * - padding for desc, name, and long/detailed desc is required to be '\0' 290 pr_debug("%s: name length too short: %d", __func__, nl); in event_end() 462 static struct attribute *device_str_attr_create_(char *name, char *str) in device_str_attr_create_() argument 472 attr->attr.attr.name = name; in device_str_attr_create_() 488 static struct attribute *device_str_attr_create(char *name, in argument 565 char *name = event_name(event, &nl); event_to_desc_attr() local 579 char *name = event_name(event, &nl); event_to_long_desc_attr() local 602 const char *name; global() member 632 event_uniq_add(struct rb_root *root, const char *name, int nl, unsigned int domain) event_uniq_add() argument 757 ignore_event(const char *name) ignore_event() argument 880 char *name; create_events_from_catalog() local 944 char *name; create_events_from_catalog() local [all...] |
/kernel/linux/linux-5.10/drivers/media/pci/cx25821/ |
H A D | cx25821-core.c | 33 .name = "VID A", 55 .name = "VID B", 77 .name = "VID C", 99 .name = "VID D", 121 .name = "VID E", 143 .name = "VID F", 165 .name = "VID G", 187 .name = "VID H", 208 .name = "audio from", 222 .name 561 static char *name[] = { cx25821_sram_channel_dump() local 623 static const char * const name[] = { cx25821_sram_channel_dump_audio() local 1241 cx25821_print_irqbits(char *name, char *tag, char **strings, int len, u32 bits, u32 mask) cx25821_print_irqbits() argument [all...] |
/kernel/linux/linux-5.10/drivers/pinctrl/mvebu/ |
H A D | pinctrl-armada-37xx.c | 47 * @name: Name of the pin group, used to lookup the group. 60 const char *name; member 73 char *name; member 79 const char *name; member 115 .name = _name, \ 125 .name = _name, \ 135 .name = _name, \ 145 .name = _name, \ 156 .name = _name, \ 211 .name 339 armada_37xx_pmx_set_by_name(struct pinctrl_dev *pctldev, const char *name, struct armada_37xx_pin_group *grp) armada_37xx_pmx_set_by_name() argument 369 const char *name = info->funcs[selector].name; armada_37xx_pmx_set() local 838 armada_37xx_add_function(struct armada_37xx_pmx_func *funcs, int *funcsize, const char *name) armada_37xx_add_function() argument 931 const char *name = funcs[n].name; armada_37xx_fill_func() local [all...] |
/kernel/linux/linux-5.10/drivers/power/supply/ |
H A D | bq2415x_charger.c | 171 char *name; member 824 if (strcmp(psy->desc->name, bq->init_data.notify_device) != 0) in bq2415x_notifier_call() 1048 if (strcmp(attr->attr.name, "otg_status") == 0) in bq2415x_sysfs_show_status() 1050 else if (strcmp(attr->attr.name, "charge_status") == 0) in bq2415x_sysfs_show_status() 1052 else if (strcmp(attr->attr.name, "boost_status") == 0) in bq2415x_sysfs_show_status() 1054 else if (strcmp(attr->attr.name, "fault_status") == 0) in bq2415x_sysfs_show_status() 1299 if (strcmp(attr->attr.name, "current_limit") == 0) in bq2415x_sysfs_set_limit() 1301 else if (strcmp(attr->attr.name, "weak_battery_voltage") == 0) in bq2415x_sysfs_set_limit() 1303 else if (strcmp(attr->attr.name, "battery_regulation_voltage") == 0) in bq2415x_sysfs_set_limit() 1305 else if (strcmp(attr->attr.name, "charge_curren in bq2415x_sysfs_set_limit() 1528 char *name = NULL; bq2415x_probe() local [all...] |
/kernel/linux/linux-6.6/drivers/power/supply/ |
H A D | bq2415x_charger.c | 171 char *name; member 824 if (strcmp(psy->desc->name, bq->init_data.notify_device) != 0) in bq2415x_notifier_call() 1048 if (strcmp(attr->attr.name, "otg_status") == 0) in bq2415x_sysfs_show_status() 1050 else if (strcmp(attr->attr.name, "charge_status") == 0) in bq2415x_sysfs_show_status() 1052 else if (strcmp(attr->attr.name, "boost_status") == 0) in bq2415x_sysfs_show_status() 1054 else if (strcmp(attr->attr.name, "fault_status") == 0) in bq2415x_sysfs_show_status() 1299 if (strcmp(attr->attr.name, "current_limit") == 0) in bq2415x_sysfs_set_limit() 1301 else if (strcmp(attr->attr.name, "weak_battery_voltage") == 0) in bq2415x_sysfs_set_limit() 1303 else if (strcmp(attr->attr.name, "battery_regulation_voltage") == 0) in bq2415x_sysfs_set_limit() 1305 else if (strcmp(attr->attr.name, "charge_curren in bq2415x_sysfs_set_limit() 1528 char *name = NULL; bq2415x_probe() local [all...] |
/kernel/linux/linux-6.6/drivers/regulator/ |
H A D | bd718x7-regulator.c | 57 #define BD718XX_OPS(name, _list_voltage, _map_voltage, _set_voltage_sel, \ 60 static const struct regulator_ops name = { \ 74 static const struct regulator_ops BD718XX_HWOPNAME(name) = { \ 733 .name = "buck1", 772 .name = "buck2", 807 .name = "buck3", 834 .name = "buck4", 861 .name = "buck5", 883 .name = "buck6", 907 .name [all...] |
/kernel/linux/linux-6.6/drivers/clk/rockchip/ |
H A D | clk.h | 379 * @name: name of this pll clock. 380 * @parent_names: name of the parent clock. 397 const char *name; member 417 .name = _name, \ 431 const char *name, const char *const *parent_names, 475 struct clk *rockchip_clk_register_cpuclk(const char *name, 481 struct clk *rockchip_clk_register_mmc(const char *name, 491 struct clk *rockchip_clk_register_ddrclk(const char *name, int flags, 501 struct clk *rockchip_clk_register_inverter(const char *name, 530 const char *name; global() member [all...] |
/kernel/linux/linux-6.6/drivers/media/pci/cx25821/ |
H A D | cx25821-core.c | 33 .name = "VID A", 55 .name = "VID B", 77 .name = "VID C", 99 .name = "VID D", 121 .name = "VID E", 143 .name = "VID F", 165 .name = "VID G", 187 .name = "VID H", 208 .name = "audio from", 222 .name 554 static char *name[] = { cx25821_sram_channel_dump() local 616 static const char * const name[] = { cx25821_sram_channel_dump_audio() local 1233 cx25821_print_irqbits(char *name, char *tag, char **strings, int len, u32 bits, u32 mask) cx25821_print_irqbits() argument [all...] |
/kernel/linux/linux-6.6/drivers/media/pci/saa7134/ |
H A D | saa7134-core.c | 109 dev->name, mode, (~mode) & status, mode & status, msg); in saa7134_track_gpio() 597 dev->name); in saa7134_irq() 602 dev->name); in saa7134_irq() 608 dev->name); in saa7134_irq() 614 dev->name); in saa7134_irq() 771 i,saa7134_boards[i].name); in must_configure_manually() 826 dev->demod.name = "saa713x"; in saa7134_create_entities() 872 ent->name = saa7134_input_name[in->type]; in saa7134_create_entities() 916 ent->name = saa7134_input_name[in->type]; in saa7134_create_entities() 944 snprintf(vfd->name, sizeo in vdev_init() [all...] |
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-font.cc | 462 char *name, in hb_font_get_glyph_name_nil() 466 if (size) *name = '\0'; in hb_font_get_glyph_name_nil() 474 char *name, in hb_font_get_glyph_name_default() 478 return font->parent->get_glyph_name (glyph, name, size); in hb_font_get_glyph_name_default() 484 const char *name HB_UNUSED, in hb_font_get_glyph_from_name_nil() 496 const char *name, in hb_font_get_glyph_from_name_default() 501 return font->parent->get_glyph_from_name (name, len, glyph); in hb_font_get_glyph_from_name_default() 509 #define HB_FONT_FUNC_IMPLEMENT(name) nullptr, 514 #define HB_FONT_FUNC_IMPLEMENT(name) nullptr, 520 #define HB_FONT_FUNC_IMPLEMENT(name) hb_font_get 459 hb_font_get_glyph_name_nil(hb_font_t *font HB_UNUSED, void *font_data HB_UNUSED, hb_codepoint_t glyph HB_UNUSED, char *name, unsigned int size, void *user_data HB_UNUSED) hb_font_get_glyph_name_nil() argument 471 hb_font_get_glyph_name_default(hb_font_t *font, void *font_data HB_UNUSED, hb_codepoint_t glyph, char *name, unsigned int size, void *user_data HB_UNUSED) hb_font_get_glyph_name_default() argument 494 hb_font_get_glyph_from_name_default(hb_font_t *font, void *font_data HB_UNUSED, const char *name, int len, hb_codepoint_t *glyph, void *user_data HB_UNUSED) hb_font_get_glyph_from_name_default() argument 1139 hb_font_get_glyph_name(hb_font_t *font, hb_codepoint_t glyph, char *name, unsigned int size) hb_font_get_glyph_name() argument 1163 hb_font_get_glyph_from_name(hb_font_t *font, const char *name, int len, hb_codepoint_t *glyph) hb_font_get_glyph_from_name() argument [all...] |
/third_party/protobuf/python/google/protobuf/ |
H A D | text_format.py | 15 # * Neither the name of Google Inc. nor the names of its 54 long = int # pylint: disable=redefined-builtin,invalid-name 175 force_colon: If set, a colon will be added after the field name even if the 266 """Print a single field name/value pair.""" 290 """Print a single field value (not including name).""" 304 type_name: Fully-qualified protobuf message type name string. 382 force_colon: If set, a colon will be added after the field name even if 525 """Print field name.""" 541 # For groups, use the capitalized name. 542 out.write(field.message_type.name) [all...] |
/device/soc/rockchip/common/sdk_linux/drivers/opp/ |
H A D | of.c | 500 char name[NAME_MAX]; in opp_parse_supplies() local 502 /* Search for "opp-microvolt-<name>" */ in opp_parse_supplies() 504 snprintf(name, sizeof(name), "opp-microvolt-%s", opp_table->prop_name); in opp_parse_supplies() 505 prop = of_find_property(opp->np, name, NULL); in opp_parse_supplies() 510 sprintf(name, "opp-microvolt"); in opp_parse_supplies() 511 prop = of_find_property(opp->np, name, NULL); in opp_parse_supplies() 537 vcount = of_property_count_u32_elems(opp->np, name); in opp_parse_supplies() 539 dev_err(dev, "%s: Invalid %s property (%d)\n", __func__, name, vcount); in opp_parse_supplies() 545 dev_err(dev, "%s: Invalid number of elements in %s property (%d) with supplies (%d)\n", __func__, name, vcoun in opp_parse_supplies() 643 const char *name = peak ? "opp-peak-kBps" : "opp-avg-kBps"; _read_bw() local [all...] |