Home
last modified time | relevance | path

Searched refs:pch1 (Results 1 – 9 of 9) sorted by relevance

/reactos/dll/win32/kernel32/winnls/string/
H A Djapanese.c117 LPWSTR pch1, pch2, pch3, pch4; in JapaneseEra_Load() local
155 pch1 = szName; in JapaneseEra_Load()
156 pch2 = wcschr(pch1, L' '); in JapaneseEra_Load()
170 pEntry->wYear = _wtoi(pch1); in JapaneseEra_Load()
179 pch1 = szValue; in JapaneseEra_Load()
180 pch2 = wcschr(pch1, L'_'); in JapaneseEra_Load()
202 RtlStringCbCopyW(pEntry->szEraName, sizeof(pEntry->szEraName), pch1); in JapaneseEra_Load()
/reactos/modules/rostests/apitests/cmd/
H A Dfc.c499 LPSTR pch1, pch2; in ConvertOutput() local
500 pch1 = pch2 = psz; in ConvertOutput()
501 while (*pch1) in ConvertOutput()
503 if (*pch1 != '\r') in ConvertOutput()
505 *pch2++ = *pch1; in ConvertOutput()
507 ++pch1; in ConvertOutput()
/reactos/base/applications/cmdutils/fc/
H A Dfc.c315 LPCWSTR pch, ext, pch0 = wcsrchr(filename, L'\\'), pch1 = wcsrchr(filename, L'/'); in IsBinaryExt() local
316 if (!pch0 && !pch1) in IsBinaryExt()
318 else if (!pch0 && pch1) in IsBinaryExt()
319 pch = pch1; in IsBinaryExt()
320 else if (pch0 && !pch1) in IsBinaryExt()
322 else if (pch0 < pch1) in IsBinaryExt()
323 pch = pch1; in IsBinaryExt()
H A Dtext.h91 LPTSTR pch0, pch1; in DeleteDuplicateSpaces() local
92 for (pch0 = pch1 = psz; *pch0; ++pch0) in DeleteDuplicateSpaces()
94 *pch1++ = *pch0; in DeleteDuplicateSpaces()
104 *pch1 = 0; in DeleteDuplicateSpaces()
/reactos/dll/cpl/appwiz/
H A Dcreatelink.c160 LPWSTR pch1, pch2; in DoConvertNameForFileSystem() local
161 for (pch1 = pch2 = szName; *pch1; ++pch1) in DoConvertNameForFileSystem()
163 if (wcschr(L"\\/:*?\"<>|", *pch1) != NULL) in DoConvertNameForFileSystem()
168 *pch2 = *pch1; in DoConvertNameForFileSystem()
/reactos/base/setup/reactos/
H A Ddrivepage.c62 PWCHAR pch1, pch2; in DoSanitizeText() local
65 for (pch1 = pch2 = pszSanitized; *pch1; ++pch1) in DoSanitizeText()
68 if (!IS_VALID_INSTALL_PATH_CHAR(*pch1)) in DoSanitizeText()
75 *pch2 = *pch1; in DoSanitizeText()
/reactos/base/applications/regedit/
H A Dfind.c79 static BOOL MatchString(LPCWCH pch1, INT cch1, LPCWCH pch2, INT cch2) in MatchString() argument
85 return 2 == CompareStringW(LOCALE_SYSTEM_DEFAULT, dwNorm, pch1, cch1, pch2, cch2); in MatchString()
92 if (2 == CompareStringW(LOCALE_SYSTEM_DEFAULT, dwNorm, pch1 + i, cch2, pch2, cch2)) in MatchString()
/reactos/dll/win32/shell32/wine/
H A Dshellord.c2845 LPWSTR pch1, pch2; in DoSanitizeText() local
2848 for (pch1 = pch2 = pszSanitized; *pch1; ++pch1) in DoSanitizeText()
2852 if (wcschr(pszInvalidChars, *pch1) != NULL) in DoSanitizeText()
2860 if (wcschr(pszValidChars, *pch1) == NULL) in DoSanitizeText()
2867 *pch2 = *pch1; in DoSanitizeText()
/reactos/win32ss/gdi/ntgdi/
H A Dfreetype.c1437 LPWSTR pch0, pch1; in FontLink_Create() local
1452 pch1 = wcschr(pch0, L','); in FontLink_Create()
1453 if (pch1) in FontLink_Create()
1454 RtlStringCchCopyNW(lf.lfFaceName, _countof(lf.lfFaceName), pch0, pch1 - pch0); in FontLink_Create()