21 references to FALSE
System.Private.CoreLib (21)
src\libraries\System.Private.CoreLib\src\System\Environment.Variables.Windows.cs (1)
130Debug.Assert(success != Interop.BOOL.FALSE);
src\libraries\System.Private.CoreLib\src\System\Globalization\CalendarData.Nls.cs (2)
82return Interop.BOOL.FALSE; 109return Interop.BOOL.FALSE;
src\libraries\System.Private.CoreLib\src\System\Globalization\CompareInfo.Nls.cs (1)
66bIgnoreCase ? Interop.BOOL.TRUE : Interop.BOOL.FALSE);
src\libraries\System.Private.CoreLib\src\System\Globalization\CultureData.Nls.cs (4)
360return Interop.BOOL.FALSE; // we found a match, then stop the enumeration 367return Interop.BOOL.FALSE; 382return Interop.BOOL.FALSE; 403return Interop.BOOL.FALSE;
src\libraries\System.Private.CoreLib\src\System\Globalization\Normalization.Nls.cs (1)
53return result != Interop.BOOL.FALSE;
src\System\Enum.CoreCLR.cs (1)
104getNames ? Interop.BOOL.TRUE : Interop.BOOL.FALSE);
src\System\Reflection\RuntimeAssembly.cs (1)
282return GetIsCollectible(new QCallAssembly(ref runtimeAssembly)) != Interop.BOOL.FALSE;
src\System\Reflection\RuntimeCustomAttributeData.cs (1)
1723new QCallModule(ref decoratedModule)) != Interop.BOOL.FALSE;
src\System\Reflection\RuntimeMethodInfo.CoreCLR.cs (1)
322public override bool IsCollectible => RuntimeMethodHandle.GetIsCollectible(new RuntimeMethodHandleInternal(m_handle)) != Interop.BOOL.FALSE;
src\System\RuntimeHandles.cs (3)
291ctorIsPublic = fCtorIsPublicTemp != Interop.BOOL.FALSE; 528GetInstantiation(new QCallTypeHandle(ref nativeHandle), ObjectHandleOnStack.Create(ref types), Interop.BOOL.FALSE); 944GetMethodInstantiation(EnsureNonNullMethodInfo(method).Value, ObjectHandleOnStack.Create(ref types), Interop.BOOL.FALSE);
src\System\RuntimeType.CoreCLR.cs (1)
3250return RuntimeTypeHandle.IsCollectible(new QCallTypeHandle(ref thisType)) != Interop.BOOL.FALSE;
src\System\StubHelpers.cs (2)
144Interop.BOOL defaultCharUsed = Interop.BOOL.FALSE; 165if (defaultCharUsed != Interop.BOOL.FALSE)
src\System\Threading\Thread.CoreCLR.cs (2)
154public static bool Yield() => YieldInternal() != Interop.BOOL.FALSE; 196SetIsBackground(GetNativeHandle(), value ? Interop.BOOL.TRUE : Interop.BOOL.FALSE);