Home
last modified time | relevance | path

Searched refs:subkey (Results 1 – 25 of 26) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
DreturnInfiniteIntersection.types3 >recursive : () => (<T>(subkey: T) => any & { p: any; }) & { p: any; }
5 let x = <T>(subkey: T) => recursive();
6 >x : <T>(subkey: T) => any & { p: any; }
7 ><T>(subkey: T) => recursive() : <T>(subkey: T) => any & { p: any; }
8 >subkey : T
9 >recursive() : (<T>(subkey: T) => any & { p: any; }) & { p: any; }
10 >recursive : () => (<T>(subkey: T) => any & { p: any; }) & { p: any; }
13 >x as typeof x & { p } : (<T>(subkey: T) => any & { p: any; }) & { p: any; }
14 >x : <T>(subkey: T) => any & { p: any; }
15 >x : <T>(subkey: T) => any & { p: any; }
[all …]
DreturnInfiniteIntersection.symbols5 let x = <T>(subkey: T) => recursive();
8 >subkey : Symbol(subkey, Decl(returnInfiniteIntersection.ts, 1, 16))
DreturnInfiniteIntersection.js3 let x = <T>(subkey: T) => recursive();
12 var x = function (subkey) { return recursive(); }; argument
/third_party/gn/src/base/win/
Dregistry.cc45 RegKey::RegKey(HKEY rootkey, const char16_t* subkey, REGSAM access) in RegKey() argument
49 Create(rootkey, subkey, access); in RegKey()
51 Open(rootkey, subkey, access); in RegKey()
53 DCHECK(!subkey); in RegKey()
62 LONG RegKey::Create(HKEY rootkey, const char16_t* subkey, REGSAM access) { in Create() argument
64 return CreateWithDisposition(rootkey, subkey, &disposition_value, access); in Create()
68 const char16_t* subkey, in CreateWithDisposition() argument
71 DCHECK(rootkey && subkey && access && disposition); in CreateWithDisposition()
73 LONG result = RegCreateKeyEx(rootkey, ToWCharT(subkey), 0, NULL, in CreateWithDisposition()
96 HKEY subkey = NULL; in CreateKey() local
[all …]
Dregistry.h31 RegKey(HKEY rootkey, const char16_t* subkey, REGSAM access);
34 LONG Create(HKEY rootkey, const char16_t* subkey, REGSAM access);
37 const char16_t* subkey,
45 LONG Open(HKEY rootkey, const char16_t* subkey, REGSAM access);
/third_party/python/Lib/test/test_importlib/
Dtest_windows.py40 def delete_registry_tree(root, subkey): argument
42 hkey = OpenKey(root, subkey, access=KEY_ALL_ACCESS)
54 DeleteKey(root, subkey)
66 subkey = CreateKey(HKEY_CURRENT_USER, key)
69 SetValue(subkey, "", REG_SZ, path)
/third_party/node/tools/icu/
Diculslocs.cc308 icu::LocalUResourceBundlePointer subkey; in list() local
312 subkey.adoptInstead(ures_getByIndex( in list()
313 installedLocales.getAlias(), i, subkey.orphan(), &status)); in list()
316 const char* key = ures_getKey(subkey.getAlias()); in list()
/third_party/python/Tools/msi/bundle/bootstrap/
DPythonBootstrapperApplication.cpp2817 __in LPCWSTR subkey in LoadOptionalFeatureStatesFromKey() argument
2823 res = RegOpenKeyExW(hkHive, subkey, 0, KEY_READ | KEY_WOW64_64KEY, &hKey); in LoadOptionalFeatureStatesFromKey()
2825 res = RegOpenKeyExW(hkHive, subkey, 0, KEY_READ | KEY_WOW64_32KEY, &hKey); in LoadOptionalFeatureStatesFromKey()
2853 __in LPCWSTR subkey in LoadTargetDirFromKey() argument
2862 res = RegOpenKeyExW(hkHive, subkey, 0, KEY_READ | KEY_WOW64_64KEY, &hKey); in LoadTargetDirFromKey()
2864 res = RegOpenKeyExW(hkHive, subkey, 0, KEY_READ | KEY_WOW64_32KEY, &hKey); in LoadTargetDirFromKey()
2885 const LPCWSTR subkey = L"Software\\Python\\PyLauncher"; in LoadAssociateFilesStateFromKey() local
2890 res = RegOpenKeyExW(hkHive, subkey, 0, KEY_READ | KEY_WOW64_32KEY, &hKey); in LoadAssociateFilesStateFromKey()
2914 WCHAR subkey[256]; in LoadOptionalFeatureStates() local
2931 subkeyLen = sizeof(subkey) / sizeof(subkey[0]); in LoadOptionalFeatureStates()
[all …]
/third_party/python/Doc/library/
Dwinreg.rst129 *sub_key* is a string that must be a subkey of the key identified by the *key*
156 *sub_key* is a string that must be a subkey of the key identified by the
202 The function retrieves the name of one subkey each time it is called. It is
221 The function retrieves the name of one subkey each time it is called. It is
283 Creates a subkey under the specified key and stores registration information
284 from a specified file into that subkey.
289 *sub_key* is a string that identifies the subkey to load.
371 *sub_key* is a string that holds the name of the subkey with which the value is
440 *sub_key* is a string that names the subkey with which the value is associated.
468 *value_name* is a string that names the subkey with which the value is
[all …]
/third_party/typescript/tests/cases/compiler/
DreturnInfiniteIntersection.ts2 let x = <T>(subkey: T) => recursive();
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DValidIdentifiers.java137 Datasubtype subkey = Datasubtype.valueOf(rawsubkey);
147 values.put(subkey, new ValiditySet(subvalues, key == Datatype.subdivision));
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DValidIdentifiers.java148 Datasubtype subkey = Datasubtype.valueOf(rawsubkey);
158 values.put(subkey, new ValiditySet(subvalues, key == Datatype.subdivision));
/third_party/python/Lib/test/
Dtest_winreg.py59 def delete_tree(self, root, subkey): argument
61 hkey = OpenKey(root, subkey, 0, KEY_ALL_ACCESS)
73 DeleteKey(root, subkey)
/third_party/python/Lib/
Dmimetypes.py276 with _winreg.OpenKey(hkcr, subkeyname) as subkey:
282 subkey, 'Content Type')
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
DMSVSVersion.py191 root, subkey = key.split('\\', 1)
193 with OpenKey(HKEY_LOCAL_MACHINE, subkey) as hkey:
/third_party/node/tools/gyp/pylib/gyp/
DMSVSVersion.py234 root, subkey = key.split("\\", 1)
236 with OpenKey(HKEY_LOCAL_MACHINE, subkey) as hkey:
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
DREADME-Windows.txt258 parameters and a 'interfaces' subkey with all the interface configuration
259 (adapter to confname mapping). Each such mapping is a subkey that has
289 networks as a subkey. Each network has set of values in the same way as
290 network block in the configuration file. In addition, blobs subkey has
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
DREADME-Windows.txt258 parameters and a 'interfaces' subkey with all the interface configuration
259 (adapter to confname mapping). Each such mapping is a subkey that has
289 networks as a subkey. Each network has set of values in the same way as
290 network block in the configuration file. In addition, blobs subkey has
/third_party/python/Modules/
D_winapi.c1930 HKEY subkey; in _winapi__mimetypes_read_windows_registry_impl() local
1938 err = RegOpenKeyExW(hkcr, ext, 0, KEY_READ, &subkey); in _winapi__mimetypes_read_windows_registry_impl()
1946 err = RegQueryValueExW(subkey, L"Content Type", NULL, in _winapi__mimetypes_read_windows_registry_impl()
1948 RegCloseKey(subkey); in _winapi__mimetypes_read_windows_registry_impl()
/third_party/python/PC/
Dlauncher.c249 _locate_pythons_for_key(HKEY root, LPCWSTR subkey, REGSAM flags, int bits, in _locate_pythons_for_key() argument
253 LSTATUS status = RegOpenKeyExW(root, subkey, 0, flags, &core_root); in _locate_pythons_for_key()
294 L"%ls\\%ls\\InstallPath", subkey, ip_version); in _locate_pythons_for_key()
/third_party/gn/src/gn/
Dvisual_studio_writer.cc112 for (const char16_t* subkey : subkeys) { in GetWindowsKitsIncludeDirs() local
113 base::win::RegKey key(HKEY_LOCAL_MACHINE, subkey, KEY_READ); in GetWindowsKitsIncludeDirs()
/third_party/openssl/providers/implementations/ciphers/
Dcipher_aes_gcm_hw_s390x.inc71 actx->plat.s390x.hsflag = S390X_KMA_HS; /* The hash subkey is set */
/third_party/openssl/crypto/des/asm/
Ddes_enc.m41149 add in1, 120, in3 ! use last subkey for first round
1613 add in4, 120, in4 ! for decryption we use last subkey first
/third_party/python/Tools/msi/
DREADME.txt428 root key, with a subkey "Main Python Documentation" with its default
/third_party/node/doc/guides/
Dreleases.md108 The key you use may be a child/subkey of an existing key.

12