/third_party/typescript/tests/baselines/reference/ |
H A D | declarationEmitWithDefaultAsComputedName.js | 5 name: Name; 11 name: "foo" 17 [other.name]: 1, 24 name: "foo"
33 _a[other_1.default.name] = 1,
39 name: Name;
|
H A D | declarationEmitWithDefaultAsComputedName2.js | 5 name: Name; 11 name: "foo" 17 [other2.default.name]: 1 24 name: "foo"
33 _a[other2.default.name] = 1,
39 name: Name;
|
H A D | objectLiteralArraySpecialization.js | 7 var thing = create([ { name: "bob", id: 24 }, { name: "doug", id: 32 } ]); // should not error 8 thing.doSomething((x, y) => x.name === "bob"); // should not error 12 var thing = create([{ name: "bob", id: 24 }, { name: "doug", id: 32 }]); // should not error
13 thing.doSomething(function (x, y) { return x.name === "bob"; }); // should not error
|
H A D | privateNameField.js | 3 #name: string; 4 constructor(name: string) { 5 this.#name = name; 20 constructor(name) {
22 __classPrivateFieldSet(this, _A_name, name, "f");
|
/third_party/typescript/tests/arkTSTest/testcase/arkts-no-ambient-decls/ |
H A D | arkts-no-ambient-decls-utils.js | 24 constructor(name) { 25 this.name = name; 29 console.log(`Hello, ${this.name}!`); 35 function sayHello(name) { 36 console.log(`Hello, ${name}!`);
|
/third_party/vk-gl-cts/framework/randomshaders/ |
H A D | rsgNameAllocator.cpp | 38 inline std::string nameNdxToStr (deUint32 name) in nameNdxToStr() argument 43 while (name > alphabetLen) in nameNdxToStr() 45 str.insert(str.begin(), (char)('a' + ((name-1)%alphabetLen))); in nameNdxToStr() 46 name = ((name-1) / alphabetLen); in nameNdxToStr() 49 str.insert(str.begin(), (char)('a' + (name%(alphabetLen+1)) - 1)); in nameNdxToStr()
|
/third_party/vk-gl-cts/modules/gles2/scripts/ |
H A D | gen-keywords.py | 53 def __init__(self, name, identifier): 54 self.name = name 58 params = { "NAME" : self.name, 103 for (name, identifier) in INVALID_IDENTIFIERS: 104 invalidIdentifiers.append(IdentifierCase(name, identifier)) # Invalid identifiers
|
/foundation/multimedia/media_foundation/engine/pipeline/filters/common/ |
H A D | plugin_utils.cpp | 49 int32_t Stringiness(char* buf, size_t maxLen, const char* name, const T& val) in Stringiness() argument 51 MEDIA_LOG_I("no cap trans function for " PUBLIC_LOG_S " may be update?", name); in Stringiness() 56 int32_t FixedCapKeyStringiness(char* buf, size_t maxLen, const char* name, const char* typeName, in FixedCapKeyStringiness() argument 60 auto ret = snprintf_truncated_s(buf, maxLen, "%s:(%s)", name, typeName); in FixedCapKeyStringiness() 69 RETURN_IF_FAILED(Stringiness(buf + pos, maxLen - pos, name, *item), -1, ret); in FixedCapKeyStringiness() 74 int32_t IntervalCapKeyStringiness(char* buf, size_t maxLen, const char* name, const char* typeName, in IntervalCapKeyStringiness() argument 78 auto ret = snprintf_truncated_s(buf, maxLen, "%s:(%s)[", name, typeName); in IntervalCapKeyStringiness() 87 RETURN_IF_FAILED(Stringiness(buf + pos, maxLen - pos, name, item->first), -1, ret); in IntervalCapKeyStringiness() 91 RETURN_IF_FAILED(Stringiness(buf + pos, maxLen - pos, name, item->second), -1, ret); in IntervalCapKeyStringiness() 98 int32_t DiscreteCapKeyStringiness(char* buf, size_t maxLen, const char* name, cons argument 128 CapKeyStringiness(char* buf, size_t maxLen, const char* name, const char* typeName, const Plugin::ValueType& val) CapKeyStringiness() argument 144 Stringiness(char* buf, size_t maxLen, const char* name, const int32_t& val) Stringiness() argument 150 Stringiness(char* buf, size_t maxLen, const char* name, const uint32_t& val) Stringiness() argument 156 Stringiness(char* buf, size_t maxLen, const char* name, const std::string& val) Stringiness() argument 162 Stringiness(char* buf, size_t maxLen, const char* name, const int64_t& val) Stringiness() argument 168 Stringiness(char* buf, size_t maxLen, const char* name, const uint64_t& val) Stringiness() argument 174 Stringiness(char* buf, size_t maxLen, const char* name, const Plugin::AudioSampleFormat& val) Stringiness() argument 184 Stringiness(char* buf, size_t maxLen, const char* name, const Plugin::AudioChannelLayout& val) Stringiness() argument 194 Stringiness(char* buf, size_t maxLen, const char* name, const Plugin::VideoPixelFormat& val) Stringiness() argument 204 Stringiness(char* buf, size_t maxLen, const char* name, const Plugin::VideoBitStreamFormat& val) Stringiness() argument 214 Stringiness(char* buf, size_t maxLen, const char* name, const Plugin::AudioAacProfile& val) Stringiness() argument 224 Stringiness(char* buf, size_t maxLen, const char* name, const Plugin::AudioAacStreamFormat& val) Stringiness() argument 234 Stringiness(char* buf, size_t maxLen, const char* name, const Plugin::CodecConfig& val) Stringiness() argument 240 MetaIDStringiness(char* buf, size_t maxLen, const char* name, const char* typeName, const Plugin::ValueType& val) MetaIDStringiness() argument [all...] |
/kernel/linux/linux-5.10/drivers/base/ |
H A D | platform.c | 133 * resource by name 137 * @name: name of the resource 144 const char *name) in devm_platform_ioremap_resource_byname() 148 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, name); in devm_platform_ioremap_resource_byname() 293 * platform_get_resource_byname - get a resource for a device by name 296 * @name: resource name 300 const char *name) in platform_get_resource_byname() 307 if (unlikely(!r->name)) in platform_get_resource_byname() 143 devm_platform_ioremap_resource_byname(struct platform_device *pdev, const char *name) devm_platform_ioremap_resource_byname() argument 298 platform_get_resource_byname(struct platform_device *dev, unsigned int type, const char *name) platform_get_resource_byname() argument 317 __platform_get_irq_byname(struct platform_device *dev, const char *name) __platform_get_irq_byname() argument 347 platform_get_irq_byname(struct platform_device *dev, const char *name) platform_get_irq_byname() argument 369 platform_get_irq_byname_optional(struct platform_device *dev, const char *name) platform_get_irq_byname_optional() argument 400 char name[]; global() member 454 platform_device_alloc(const char *name, int id) platform_device_alloc() argument [all...] |
/kernel/linux/linux-5.10/arch/powerpc/include/asm/ |
H A D | ppc_asm.h | 200 #define _GLOBAL(name) \ 202 .type name,@function; \ 203 .globl name; \ 204 name: 206 #define _GLOBAL_TOC(name) \ 208 .type name,@function; \ 209 .globl name; \ 210 name: \ 213 .localentry name,.-name [all...] |
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/primitives/asm/ |
H A D | ppc_asm.h | 200 #define _GLOBAL(name) \ 202 .type name,@function; \ 203 .globl name; \ 204 name: 206 #define _GLOBAL_TOC(name) \ 208 .type name,@function; \ 209 .globl name; \ 210 name: \ 213 .localentry name,.-name [all...] |
/kernel/linux/linux-5.10/security/apparmor/ |
H A D | policy.c | 28 * inherit - special name to indicate profile inheritance 35 * a // in a profile or namespace name indicates a hierarchical name with the 36 * name before the // being the parent and the name after the child. 55 * eg. /bin/bash///bin/ls as a name would indicate /bin/ls was started 58 * A profile or namespace name that can contain one or more // separators 62 * An fqname is a name that may contain both namespace and profile hnames. 252 * @hname: name of the profile (NOT NULL) 298 * __strn_find_child - find a profile on @head list using substring of @name 307 __strn_find_child(struct list_head *head, const char *name, int len) __strn_find_child() argument 322 __find_child(struct list_head *head, const char *name) __find_child() argument 334 aa_find_child(struct aa_profile *parent, const char *name) aa_find_child() argument 462 const char *name, *ns_name; aa_fqlookupn_profile() local 508 char *name = NULL; aa_new_null_profile() local 618 audit_policy(struct aa_label *label, const char *op, const char *ns_name, const char *name, const char *info, int error) audit_policy() argument 1100 const char *name = fqname, *info = NULL; aa_remove_profiles() local [all...] |
/kernel/linux/linux-5.10/fs/hfsplus/ |
H A D | xattr.c | 14 static int hfsplus_removexattr(struct inode *inode, const char *name); 24 static int strcmp_xattr_finder_info(const char *name) in strcmp_xattr_finder_info() argument 26 if (name) { in strcmp_xattr_finder_info() 27 return strncmp(name, HFSPLUS_XATTR_FINDER_INFO_NAME, in strcmp_xattr_finder_info() 33 static int strcmp_xattr_acl(const char *name) in strcmp_xattr_acl() argument 35 if (name) { in strcmp_xattr_acl() 36 return strncmp(name, HFSPLUS_XATTR_ACL_NAME, in strcmp_xattr_acl() 42 static bool is_known_namespace(const char *name) in is_known_namespace() argument 44 if (strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN) && in is_known_namespace() 45 strncmp(name, XATTR_USER_PREFI in is_known_namespace() 258 __hfsplus_setxattr(struct inode *inode, const char *name, const void *value, size_t size, int flags) __hfsplus_setxattr() argument 422 hfsplus_setxattr(struct inode *inode, const char *name, const void *value, size_t size, int flags, const char *prefix, size_t prefixlen) hfsplus_setxattr() argument 490 __hfsplus_getxattr(struct inode *inode, const char *name, void *value, size_t size) __hfsplus_getxattr() argument 576 hfsplus_getxattr(struct inode *inode, const char *name, void *value, size_t size, const char *prefix, size_t prefixlen) hfsplus_getxattr() argument 768 hfsplus_removexattr(struct inode *inode, const char *name) hfsplus_removexattr() argument 840 hfsplus_osx_getxattr(const struct xattr_handler *handler, struct dentry *unused, struct inode *inode, const char *name, void *buffer, size_t size) hfsplus_osx_getxattr() argument 860 hfsplus_osx_setxattr(const struct xattr_handler *handler, struct dentry *unused, struct inode *inode, const char *name, const void *buffer, size_t size, int flags) hfsplus_osx_setxattr() argument [all...] |
/kernel/linux/linux-5.10/fs/cifs/ |
H A D | readdir.c | 72 * Find the dentry that matches "name". If there isn't one, create one. If it's 77 cifs_prime_dcache(struct dentry *parent, struct qstr *name, in cifs_prime_dcache() argument 86 cifs_dbg(FYI, "%s: for %s\n", __func__, name->name); in cifs_prime_dcache() 88 dentry = d_hash_and_lookup(parent, name); in cifs_prime_dcache() 99 dentry = d_alloc_parallel(parent, name, &wq); in cifs_prime_dcache() 520 const char *name; member 537 de->name = parsed.name; in cifs_fill_dirent_posix() 546 de->name in cifs_fill_dirent_unix() 845 struct qstr name; cifs_filldir() local 925 cifs_prime_dcache(file_dentry(file), &name, &fattr); cifs_filldir() local [all...] |
/kernel/linux/linux-6.6/fs/hfsplus/ |
H A D | xattr.c | 14 static int hfsplus_removexattr(struct inode *inode, const char *name); 24 static int strcmp_xattr_finder_info(const char *name) in strcmp_xattr_finder_info() argument 26 if (name) { in strcmp_xattr_finder_info() 27 return strncmp(name, HFSPLUS_XATTR_FINDER_INFO_NAME, in strcmp_xattr_finder_info() 33 static int strcmp_xattr_acl(const char *name) in strcmp_xattr_acl() argument 35 if (name) { in strcmp_xattr_acl() 36 return strncmp(name, HFSPLUS_XATTR_ACL_NAME, in strcmp_xattr_acl() 42 static bool is_known_namespace(const char *name) in is_known_namespace() argument 44 if (strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN) && in is_known_namespace() 45 strncmp(name, XATTR_USER_PREFI in is_known_namespace() 257 __hfsplus_setxattr(struct inode *inode, const char *name, const void *value, size_t size, int flags) __hfsplus_setxattr() argument 421 hfsplus_setxattr(struct inode *inode, const char *name, const void *value, size_t size, int flags, const char *prefix, size_t prefixlen) hfsplus_setxattr() argument 489 __hfsplus_getxattr(struct inode *inode, const char *name, void *value, size_t size) __hfsplus_getxattr() argument 575 hfsplus_getxattr(struct inode *inode, const char *name, void *value, size_t size, const char *prefix, size_t prefixlen) hfsplus_getxattr() argument 767 hfsplus_removexattr(struct inode *inode, const char *name) hfsplus_removexattr() argument 839 hfsplus_osx_getxattr(const struct xattr_handler *handler, struct dentry *unused, struct inode *inode, const char *name, void *buffer, size_t size) hfsplus_osx_getxattr() argument 859 hfsplus_osx_setxattr(const struct xattr_handler *handler, struct mnt_idmap *idmap, struct dentry *unused, struct inode *inode, const char *name, const void *buffer, size_t size, int flags) hfsplus_osx_setxattr() argument [all...] |
/test/xts/acts/distributeddatamgr/relationalStoretest/relationalStoreJstest/hap/entry/src/ohosTest/js/test/ |
H A D | RelationalStoreJsunit.test.js | 24 const CREATE_TABLE_TEST = "CREATE TABLE IF NOT EXISTS test (" + "id INTEGER PRIMARY KEY AUTOINCREMENT, " + "name TEXT NOT NULL, " + "age INTEGER, " + "salary REAL, " + "blobType BLOB)";
27 name: "rdbstore.db",
55 * @tc.name testRdbStore0001
78 * @tc.name testRdbStore0002
103 * @tc.name testRdbStore0003
114 name: "/wrong/rdbstore.db",
134 * @tc.name testRdbStore0004
155 * @tc.name testRdbStore0005
177 * @tc.name testRdbStore0006
189 name [all...] |
/third_party/node/lib/internal/crypto/ |
H A D | webcrypto.js | 114 switch (algorithm.name) { 159 throw lazyDOMException('Unrecognized algorithm name', 'NotSupportedError'); 203 if (baseKey.algorithm.name !== algorithm.name) 205 switch (algorithm.name) { 220 throw lazyDOMException('Unrecognized algorithm name', 'NotSupportedError'); 223 function getKeyLength({ name, length, hash }) { 224 switch (name) { 235 return getBlockSize(hash?.name); 288 if (baseKey.algorithm.name ! [all...] |
/kernel/linux/linux-6.6/sound/usb/ |
H A D | mixer.c | 60 int name; member 114 /* get the mapped name if the unit matches */ 120 if (!p || !p->name) in check_mapped_name() 124 len = strscpy(buf, p->name, buflen); in check_mapped_name() 136 if (!p || p->name || p->dB) in check_ignored_ctl() 153 /* get the mapped selector source name */ 612 * get a terminal name string 617 char *name; member 659 unsigned char *name, int maxlen, int term_only) in get_term_name() 664 if (iterm->name) { in get_term_name() 658 get_term_name(struct snd_usb_audio *chip, struct usb_audio_term *iterm, unsigned char *name, int maxlen, int term_only) get_term_name() argument 1044 const char *name; global() member 1494 get_connector_value(struct usb_mixer_elem_info *cval, char *name, int *val) get_connector_value() argument 1848 get_connector_control_name(struct usb_mixer_interface *mixer, struct usb_audio_term *term, bool is_input, char *name, int name_size) get_connector_control_name() argument 2355 char *name; global() member 2478 const char *name = extension_unit ? build_audio_procunit() local 2952 const char *name; global() member [all...] |
/kernel/linux/linux-5.10/drivers/media/pci/cx23885/ |
H A D | cx23885-cards.c | 46 .name = "UNKNOWN/GENERIC", 64 .name = "Hauppauge WinTV-HVR1800lp", 85 .name = "Hauppauge WinTV-HVR1800", 117 .name = "Hauppauge WinTV-HVR1250", 153 .name = "DViCO FusionHDTV5 Express", 157 .name = "Hauppauge WinTV-HVR1500Q", 161 .name = "Hauppauge WinTV-HVR1500", 188 .name = "Hauppauge WinTV-HVR1200", 192 .name = "Hauppauge WinTV-HVR1700", 196 .name [all...] |
/kernel/linux/linux-5.10/kernel/trace/ |
H A D | trace_events_synth.c | 25 C(BAD_NAME, "Illegal name"), \ 102 return strcmp(sev->name, event) == 0 && in synth_event_match() 117 char *name, *type; in synth_event_define_fields() local 125 name = event->fields[i]->name; in synth_event_define_fields() 126 ret = trace_define_field(call, type, name, offset, size, in synth_event_define_fields() 289 char *print_fmt, char *name, in print_synth_event_num_val() 294 trace_seq_printf(s, print_fmt, name, (u8)val, space); in print_synth_event_num_val() 298 trace_seq_printf(s, print_fmt, name, (u16)val, space); in print_synth_event_num_val() 302 trace_seq_printf(s, print_fmt, name, (u3 in print_synth_event_num_val() 288 print_synth_event_num_val(struct trace_seq *s, char *print_fmt, char *name, int size, u64 val, char *space) print_synth_event_num_val() argument 713 alloc_synth_tracepoint(char *name) alloc_synth_tracepoint() argument 730 find_synth_event(const char *name) find_synth_event() argument 833 alloc_synth_event(const char *name, int n_fields, struct synth_field **fields) alloc_synth_event() argument 919 synth_event_add_field(struct dynevent_cmd *cmd, const char *type, const char *name) synth_event_add_field() argument 1056 __synth_event_gen_cmd_start(struct dynevent_cmd *cmd, const char *name, struct module *mod, ...) __synth_event_gen_cmd_start() argument 1077 const char *type, *name; __synth_event_gen_cmd_start() local 1125 synth_event_gen_cmd_array_start(struct dynevent_cmd *cmd, const char *name, struct module *mod, struct synth_field_desc *fields, unsigned int n_fields) synth_event_gen_cmd_array_start() argument 1162 save_cmdstr(int argc, const char *name, const char **argv) save_cmdstr() argument 1193 __create_synth_event(int argc, const char *name, const char **argv) __create_synth_event() argument 1300 synth_event_create(const char *name, struct synth_field_desc *fields, unsigned int n_fields, struct module *mod) synth_event_create() argument 1385 const char *name = argv[0]; create_or_delete_synth_event() local 1941 const char *name = argv[0]; create_synth_event() local [all...] |
/kernel/linux/linux-6.6/drivers/media/pci/cx23885/ |
H A D | cx23885-cards.c | 46 .name = "UNKNOWN/GENERIC", 64 .name = "Hauppauge WinTV-HVR1800lp", 85 .name = "Hauppauge WinTV-HVR1800", 117 .name = "Hauppauge WinTV-HVR1250", 153 .name = "DViCO FusionHDTV5 Express", 157 .name = "Hauppauge WinTV-HVR1500Q", 161 .name = "Hauppauge WinTV-HVR1500", 188 .name = "Hauppauge WinTV-HVR1200", 192 .name = "Hauppauge WinTV-HVR1700", 196 .name [all...] |
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | example.c | 100 const char *name; member 120 { .name = "%eax" }, 121 { .name = "%edx" }, 122 { .name = "%ecx" }, 123 { .name = "%ebx" }, 124 { .name = "%esi" }, 125 { .name = "%edi" }, 127 { .name = "%ebp" }, 128 { .name = "%esp" }, 184 return op->reg->name; in show_op() 1158 const struct ident *name; global() member 1370 const char *name = show_ident(sym->ident); generate_one_insn() local 1698 const char *name = show_storage(storage); generate() local [all...] |
/foundation/filemanagement/dfs_service/test/unittests/clouddisk_database/mock/ |
H A D | meta_file_clouddisk_mock.cpp | 110 int32_t CloudDiskMetaFile::DoLookupAndUpdate(const std::string &name, CloudDiskMetaFileCallBack callback) in DoLookupAndUpdate() argument 112 if (name == "mock") { in DoLookupAndUpdate() 118 int32_t CloudDiskMetaFile::DoChildUpdate(const std::string &name, CloudDiskMetaFileCallBack callback) in DoChildUpdate() argument 120 if (name == "mock") { in DoChildUpdate() 145 static bool IsDotDotdot(const std::string &name) in IsDotDotdot() argument 147 return name == "." || name == ".."; in IsDotDotdot() 198 static uint32_t DentryHash(const std::string &name) in DentryHash() argument 200 if (IsDotDotdot(name)) { in DentryHash() 208 auto len = name in DentryHash() 317 const std::string name = base.name; UpdateDentry() local 395 FindInBlock(HmdfsDentryGroup &dentryBlk, uint32_t namehash, const std::string &name) FindInBlock() argument 548 MoveIntoRecycleDentryfile(uint32_t userId, const std::string &bundleName, const std::string &name, const std::string &parentCloudId, int64_t rowId) MoveIntoRecycleDentryfile() argument 557 RemoveFromRecycleDentryfile(uint32_t userId, const std::string &bundleName, const std::string &name, const std::string &parentCloudId, int64_t rowId) RemoveFromRecycleDentryfile() argument [all...] |
/kernel/linux/linux-5.10/arch/arm/mach-omap2/ |
H A D | powerdomain.c | 65 static struct powerdomain *_pwrdm_lookup(const char *name) in _pwrdm_lookup() argument 72 if (!strcmp(name, temp_pwrdm->name)) { in _pwrdm_lookup() 87 * already registered by the provided name, or 0 upon success. 94 if (!pwrdm || !pwrdm->name) in _pwrdm_register() 100 pwrdm->name); in _pwrdm_register() 104 if (_pwrdm_lookup(pwrdm->name)) in _pwrdm_register() 111 voltdm = voltdm_lookup(pwrdm->voltdm.name); in _pwrdm_register() 114 pwrdm->name, pwrdm->voltdm.name); in _pwrdm_register() 415 pwrdm_lookup(const char *name) pwrdm_lookup() argument [all...] |
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | ext.py | 44 def __new__(mcs, name, bases, d): 45 rv = type.__new__(mcs, name, bases, d) 60 by their import name. The correct way to configure the extension is 65 is a terrible name, ``fragment_cache_prefix`` on the other hand is a good 66 name as includes the name of the extension (fragment cache). 89 def preprocess(self, source, name, filename=None): 107 is the name token that matched. This method has to return one or a 112 def attr(self, name, lineno=None): 120 return nodes.ExtensionAttribute(self.identifier, name, linen [all...] |