Lines Matching refs:if
10 rem Run the specified architecture of python (or python_d if -d
11 rem was specified). If omitted, uses %PREFIX% if set or 64-bit.
24 rem Confusing: if you want to pass a comma-separated list, like
39 if "%1"=="-O" (set dashO=-O) & shift & goto CheckOpts
40 if "%1"=="-q" (set qmode=yes) & shift & goto CheckOpts
41 if "%1"=="-d" (set suffix=_d) & shift & goto CheckOpts
42 if "%1"=="-win32" (set prefix=%pcbuild%win32) & shift & goto CheckOpts
43 if "%1"=="-x64" (set prefix=%pcbuild%amd64) & shift & goto CheckOpts
44 if "%1"=="-arm64" (set prefix=%pcbuild%arm64) & shift & goto CheckOpts
45 if "%1"=="-arm32" (set prefix=%pcbuild%arm32) & shift & goto CheckOpts
46 if "%1"=="-p" (call :SetPlatform %~2) & shift & shift & goto CheckOpts
47 if NOT "%1"=="" (set regrtestargs=%regrtestargs% %1) & shift & goto CheckOpts
49 if not defined prefix set prefix=%pcbuild%amd64
52 if defined qmode goto Qmode
58 if exist %prefix%\*._pth del %prefix%\*._pth
69 if /I %1 EQU Win32 (set prefix=%pcbuild%win32) & exit /B 0
70 if /I %1 EQU x64 (set prefix=%pcbuild%amd64) & exit /B 0
71 if /I %1 EQU ARM64 (set prefix=%pcbuild%arm64) & exit /B 0
72 if /I %1 EQU ARM (set prefix=%pcbuild%arm32) & exit /B 0