4 references to IsArm64Process
System.Drawing.Common.Tests (2)
mono\System.Drawing.Imaging\JpegCodecTests.cs (1)
39public static bool IsWindows7OrIsArm64Process => PlatformDetection.IsWindows7 || PlatformDetection.IsArm64Process;
System\Drawing\GraphicsTests.cs (1)
17public static bool IsWindows7OrWindowsArm64 => PlatformDetection.IsWindows7 || (PlatformDetection.IsWindows && PlatformDetection.IsArm64Process);
System.Windows.Forms.Primitives.TestUtilities (2)
PlatformDetection.cs (2)
20public static bool IsNotArm64Process => !IsArm64Process; 21public static bool IsArmOrArm64Process => IsArmProcess || IsArm64Process;