Home
last modified time | relevance | path

Searched refs:name (Results 8726 - 8750 of 60340) sorted by relevance

1...<<341342343344345346347348349350>>...2414

/third_party/node/deps/v8/include/v8-include/
H A Dv8-template.h38 #define V8_DECL_INTRINSIC(name, iname) k##name,
53 void Set(Local<Name> name, Local<Data> value,
55 void SetPrivate(Local<Private> name, Local<Data> value,
57 V8_INLINE void Set(Isolate* isolate, const char* name, Local<Data> value,
61 Local<Name> name,
67 * Whenever the property with the given name is accessed on objects
72 * \param name The name of the property for which an accessor is added.
89 Local<String> name, AccessorGetterCallbac
988 Set(Isolate* isolate, const char* name, Local<Data> value, PropertyAttribute attributes) Set() argument
[all...]
/third_party/python/Tools/scripts/
H A Dfreeze_modules.py33 OS_PATH = 'ntpath' if os.name == 'nt' else 'posixpath'
255 name = self.frozenid.replace('.', '_')
256 return '_Py_M__' + name
275 For stdlib modules the ID will always be the full name
293 class FrozenModule(namedtuple('FrozenModule', 'name ispkg section source')):
295 def __getattr__(self, name):
296 return getattr(self.source, name)
300 return self.name
311 return self.name != orig
320 'module': self.name,
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DBlendFuncExtendedTest.cpp138 virtual GLint getVertexAttribLocation(const char *name) in getVertexAttribLocation() argument
140 return glGetAttribLocation(mProgram, name); in getVertexAttribLocation()
143 virtual GLint getFragmentUniformLocation(const char *name) in getFragmentUniformLocation() argument
145 return glGetUniformLocation(mProgram, name); in getFragmentUniformLocation()
236 virtual void checkOutputIndexQuery(const char *name, GLint expectedIndex) in checkOutputIndexQuery() argument
238 GLint index = glGetFragDataIndexEXT(mProgram, name); in checkOutputIndexQuery()
242 index = glGetProgramResourceLocationIndexEXT(mProgram, GL_PROGRAM_OUTPUT, name); in checkOutputIndexQuery()
247 glGetProgramResourceLocationIndexEXT(mProgram, GL_PROGRAM_OUTPUT, name); in checkOutputIndexQuery()
273 GLint getVertexAttribLocation(const char *name) override
275 return glGetAttribLocation(mVertexProgram, name);
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DLLVMReactorDebugInfo.cpp110 "ReactorFunction", // function name in DebugInfo()
184 oldLocation.function.name.c_str(), newLocation.function.name.c_str()); in syncScope()
215 llvm::itaniumDemangle(location.function.name.c_str(), buf, &size, &status); in syncScope()
216 auto name = "jit!" + (status == 0 ? std::string(buf) : location.function.name); in syncScope() local
220 name, // function name in syncScope()
262 auto name = token.identifier; in EmitVariable() local
278 name in EmitVariable()
[all...]
/third_party/openssl/test/
H A Ddrbgtest.c87 static unsigned int query_rand_uint(EVP_RAND_CTX *drbg, const char *name) in query_rand_uint() argument
92 *params = OSSL_PARAM_construct_uint(name, &n); in query_rand_uint()
98 #define DRBG_UINT(name) \
99 static unsigned int name(EVP_RAND_CTX *drbg) \
101 return query_rand_uint(drbg, #name); \
142 const char *name; in using_fips_rng() local
150 name = OSSL_PROVIDER_get0_name(prov); in using_fips_rng()
151 return strcmp(name, "OpenSSL FIPS Provider") == 0; in using_fips_rng()
293 char name[10]; /* 'parent' resp. 'child 1', 'child 2', ... */ member
426 sprintf(presult[0].name, "chil in test_rand_reseed_on_fork()
[all...]
/third_party/skia/third_party/externals/tint/src/writer/wgsl/
H A Dgenerator_impl_type_test.cc300 const char* name; member
303 out << data.name; in operator <<()
318 EXPECT_EQ(out.str(), param.name); in TEST_P()
341 EXPECT_EQ(out.str(), std::string(param.name) + "<f32>"); in TEST_P()
354 EXPECT_EQ(out.str(), std::string(param.name) + "<i32>"); in TEST_P()
367 EXPECT_EQ(out.str(), std::string(param.name) + "<u32>"); in TEST_P()
391 EXPECT_EQ(out.str(), std::string(param.name) + "<f32>"); in TEST_P()
404 EXPECT_EQ(out.str(), std::string(param.name) + "<i32>"); in TEST_P()
417 EXPECT_EQ(out.str(), std::string(param.name) + "<u32>"); in TEST_P()
429 const char* name; member
471 const char* name; global() member
[all...]
/third_party/toybox/toys/pending/
H A Dcrond.c41 char *name, *val; member
210 char *name, *val, *tokens[5] = {0,}; in parse_line() local
242 name = tokens[0]; in parse_line()
243 if ((val = strchr(name, '='))) *val++ = 0; in parse_line()
247 name = tokens[0]; in parse_line()
248 if ((val = strchr(name, '='))) { in parse_line()
258 name = tokens[0]; in parse_line()
287 if (!strcmp(name, "MAILTO")) cfile->mailto = xstrdup(val); in parse_line()
290 v->name = xstrdup(name); in parse_line()
[all...]
/third_party/protobuf/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/
H A Ddescriptor_test.py17 # * Neither the name of Google Inc. nor the names of its
47 name: 'TestEmptyMessage'
55 name='some/filename/some.proto',
59 name='ForeignEnum',
64 descriptor.EnumValueDescriptor(name='FOREIGN_FOO', index=0, number=4),
65 descriptor.EnumValueDescriptor(name='FOREIGN_BAR', index=1, number=5),
66 descriptor.EnumValueDescriptor(name='FOREIGN_BAZ', index=2, number=6),
69 name='NestedMessage',
76 name='bb',
90 name
[all...]
/third_party/python/Lib/lib2to3/tests/
H A Dtest_util.py79 def _Call(self, name, args=None, prefix=None):
87 return Call(Name(name), children, prefix)
104 def _find_bind_rec(self, name, node):
107 c = fixer_util.find_binding(name, node)
110 c = self._find_bind_rec(name, child)
113 def does_tree_import(self, package, name, string):
117 return fixer_util.does_tree_import(package, name, node)
125 for package, name, import_ in failing_tests:
126 n = self.does_tree_import(package, name, import_ + "\n" + string)
128 n = self.does_tree_import(package, name, strin
[all...]
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/interdrv/common/cipher/src/drv/cipher_v1.0/osal/include/
H A Ddrv_osal_lib_linux.h98 #define crypto_request_irq(irq, func, name) \
99 request_irq(irq, func, IRQF_SHARED, name, (hi_void *)(name))
101 #define crypto_free_irq(irq, name) \
102 free_irq(irq, (hi_void *)(name))
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/
H A Ddns.h22 * 3. The name of the author may not be used to endorse or promote
93 const char *name; member
98 #define DNS_LOCAL_HOSTLIST_ELEM(name, addr_init) {name, addr_init, NULL}
116 * @param name pointer to the name that was looked up.
118 * or NULL if the name could not be found (or on any other error).
124 typedef void (*dns_found_callback)(const char *name, const ip_addr_t *ipaddr, u32_t count, void *callback_arg);
131 * @param name pointer to the name tha
[all...]
/device/soc/rockchip/rk3588/kernel/drivers/pinctrl/
H A Dcore.h89 * @name: the name of this state
94 const char *name; member
128 * @dev_name: the name of the device using this state
145 * @name: a name for the pin, e.g. the name of the pin/pad/finger on a
147 * @dynamic_name: if the name of this pin was dynamically allocated
154 * @mux_owner: The name of device that called pinctrl_get().
157 * the name o
161 const char *name; global() member
195 const char *name; global() member
[all...]
/drivers/hdf_core/framework/support/platform/src/regulator/
H A Dregulator_if.c12 DevHandle RegulatorOpen(const char *name) in RegulatorOpen() argument
14 if (name == NULL) { in RegulatorOpen()
15 HDF_LOGE("RegulatorOpen: name is null!"); in RegulatorOpen()
19 return (DevHandle)RegulatorNodeOpen(name); in RegulatorOpen()
102 node->regulatorInfo.name, minUv, maxUv); in RegulatorSetVoltage()
144 node->regulatorInfo.name, minUa, maxUa); in RegulatorSetCurrent()
/drivers/hdf_core/framework/test/unittest/platform/virtual/
H A Dregulator_linux_current_virtual_driver.c39 .name = "virtual_current_regulator",
54 .name = "virtual_current_regulator_dev",
136 .name = "regulator_virtual_current",
163 g_virtualCurrentRegulatorDesc.name); in VirtualCurrentRegulatorPlatformProbe()
185 .name = "virtual_current_regulator_dev",
/drivers/hdf_core/framework/tools/hdi-gen/codegen/
H A Dcpp_code_emitter.h43 bool IsVersion(const std::string &name) const;
65 std::string MacroName(const std::string &name) const;
69 std::string EmitHeaderNameByInterface(AutoPtr<ASTInterfaceType> interface, const std::string &name);
71 std::string EmitDefinitionByInterface(AutoPtr<ASTInterfaceType> interface, const std::string &name) const;
73 std::string GetNameSpaceByInterface(AutoPtr<ASTInterfaceType> interface, const std::string &name);
/drivers/peripheral/codec/hal/idl_service/src/
H A Dcomponent_mgr.cpp50 std::string name(componentName); in CreateComponentInstance()
51 err = core->GetHandle(handle, name, appData, *callbacks); in CreateComponentInstance()
102 std::string name(""); in AddComponentByLibName()
104 while (HDF_SUCCESS == core->ComponentNameEnum(name, index)) { in AddComponentByLibName()
106 compoentsCore_.emplace(std::make_pair(name, core)); in AddComponentByLibName()
/drivers/peripheral/codec/hal/v2.0/hdi_impl/src/
H A Dcomponent_mgr.cpp51 std::string name(componentName); in CreateComponentInstance()
52 err = core->GetHandle(handle, name, appData, *callbacks); in CreateComponentInstance()
102 std::string name(""); in AddComponentByLibName()
104 while (HDF_SUCCESS == core->ComponentNameEnum(name, index)) { in AddComponentByLibName()
106 compoentsCore_.emplace(std::make_pair(name, core)); in AddComponentByLibName()
/kernel/linux/linux-5.10/drivers/clk/renesas/
H A Drenesas-cpg-mssr.h22 const char *name; member
45 { .name = _name, .id = _id, .type = _type }
65 const char *name; member
76 { .name = _name, .id = MOD_CLK_ID(_mod), .parent = _parent }
84 { .name = _name, .id = MOD_CLK_ID_10(_mod), .parent = _parent }
/kernel/linux/linux-5.10/arch/arm/mach-omap2/
H A Domap_hwmod_43xx_data.c24 .name = "emif",
38 .name = "l4_hs",
52 { .name = "wkup_m3", .rst_shift = 3, .st_shift = 5 },
56 .name = "wkup_m3",
75 .name = "control",
/kernel/linux/linux-5.10/arch/arm/mach-pxa/
H A Dpcm027.c123 .name = "smc91x",
166 .name = "physmap-flash",
179 .name = "led0:red", /* FIXME */
183 .name = "led1:green", /* FIXME */
194 .name = "leds-gpio",
/kernel/linux/linux-5.10/arch/xtensa/kernel/
H A Dmodule.c90 mod->name, relsec, i, in apply_relocate_add()
114 mod->name, relsec, i, in apply_relocate_add()
157 mod->name, in apply_relocate_add()
177 mod->name, in apply_relocate_add()
183 mod->name, in apply_relocate_add()
/kernel/linux/linux-5.10/arch/arm/mach-davinci/
H A Dusb-da8xx.c34 .name = "da8xx-usb-phy",
76 .name = "mc",
83 .name = "musb-da8xx",
118 .name = "ohci-da8xx",
135 .name = "da830-usb-phy-clks",
/kernel/linux/linux-5.10/arch/arm/mach-s3c/
H A Ds3c2412.c83 s3c_device_sdi.name = "s3c2412-sdi"; in s3c2412_init_uarts()
84 s3c_device_lcd.name = "s3c2412-lcd"; in s3c2412_init_uarts()
93 s3c_device_spi0.name = "s3c2412-spi"; in s3c2412_init_uarts()
95 s3c_device_spi1.name = "s3c2412-spi"; in s3c2412_init_uarts()
150 .name = "s3c2412-core",
/kernel/linux/linux-5.10/drivers/acpi/
H A Dpci_slot.c88 char name[SLOT_NAME_SIZE]; in register_slot() local
111 snprintf(name, sizeof(name), "%llu", sun); in register_slot()
112 pci_slot = pci_create_slot(pci_bus, device, name, NULL); in register_slot()
124 pr_debug("%p, pci_bus: %x, device: %d, name: %s\n", in register_slot()
125 pci_slot, pci_bus->number, device, name); in register_slot()
/kernel/linux/linux-5.10/block/partitions/
H A Dmac.c100 mac_fix_string(part->name, 32); in mac_partition()
113 l = strlen(part->name); in mac_partition()
114 if (strcmp(part->name, "/") == 0) in mac_partition()
117 if (strncasecmp(part->name + i, "root", in mac_partition()
123 if (strncasecmp(part->name, "swap", 4) == 0) in mac_partition()

Completed in 23 milliseconds

1...<<341342343344345346347348349350>>...2414