Home
last modified time | relevance | path

Searched refs:subkey (Results 1 – 25 of 35) 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/glib/gio/
Dgwin32registrykey.c658 const gchar *subkey, in g_win32_registry_key_get_child() argument
665 g_return_val_if_fail (subkey != NULL, NULL); in g_win32_registry_key_get_child()
668 subkey_w = g_utf8_to_utf16 (subkey, -1, NULL, NULL, error); in g_win32_registry_key_get_child()
692 const gunichar2 *subkey, in g_win32_registry_key_get_child_w() argument
703 g_return_val_if_fail (subkey != NULL, NULL); in g_win32_registry_key_get_child_w()
706 if (subkey[0] == L'\\') in g_win32_registry_key_get_child_w()
708 g_critical ("Subkey name '%S' starts with '\\'", subkey); in g_win32_registry_key_get_child_w()
712 subkey_len = wcslen (subkey); in g_win32_registry_key_get_child_w()
713 end_of_subkey = &subkey[subkey_len]; in g_win32_registry_key_get_child_w()
716 end_of_subkey = subkey; in g_win32_registry_key_get_child_w()
[all …]
Dgwin32registrykey.h172 … const gchar *subkey,
177 … const gunichar2 *subkey,
/third_party/boost/libs/property_tree/doc/
Dwindows_registry_parser.qbk19subkey with name [^\values]. The preceding backslash is there to prevent name clashes with regular…
20 * Types of values of each registry key are stored in a subkey with name [^\types]. These subkeys co…
Dinfo_parser.qbk40 subkey "value split "\
Daccessing.qbk56subkey), use __ptree_get_value__, __ptree_get_value__ (default-value version), and __ptree_get_val…
/third_party/typescript/tests/cases/compiler/
DreturnInfiniteIntersection.ts2 let x = <T>(subkey: T) => recursive();
/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/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/glib/glib/
Dgtimezone.c763 const gunichar2 *subkey = in windows_default_tzname() local
768 if (RegOpenKeyExW (HKEY_LOCAL_MACHINE, subkey, 0, in windows_default_tzname()
835 gchar *subkey = NULL; in rules_from_windows_time_zone() local
865 subkey = g_strconcat (reg_key, key_name, NULL); in rules_from_windows_time_zone()
866 subkey_w = g_utf8_to_utf16 (subkey, -1, NULL, NULL, NULL); in rules_from_windows_time_zone()
870 subkey_dynamic = g_strconcat (subkey, "\\Dynamic DST", NULL); in rules_from_windows_time_zone()
993 g_free (subkey); in rules_from_windows_time_zone()
/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/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/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()

12