31 references to FALSE
System.Private.CoreLib (31)
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)
80return Interop.BOOL.FALSE; 107return 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)
358return Interop.BOOL.FALSE; // we found a match, then stop the enumeration 365return Interop.BOOL.FALSE; 380return Interop.BOOL.FALSE; 401return Interop.BOOL.FALSE;
src\libraries\System.Private.CoreLib\src\System\Globalization\Normalization.Nls.cs (1)
32return result != Interop.BOOL.FALSE;
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\TypeMapLazyDictionary.cs (2)
142return Interop.BOOL.FALSE; // Stop processing. 177return Interop.BOOL.FALSE; // Stop processing.
src\System\Enum.CoreCLR.cs (1)
114getNames ? Interop.BOOL.TRUE : Interop.BOOL.FALSE);
src\System\Reflection\RuntimeAssembly.cs (1)
263return GetIsCollectible(new QCallAssembly(ref runtimeAssembly)) != Interop.BOOL.FALSE;
src\System\Reflection\RuntimeCustomAttributeData.cs (1)
1706new 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\Runtime\CompilerServices\RuntimeHelpers.CoreCLR.cs (1)
1227return CanCastTo_NoCacheLookup(srcTH.m_asTAddr, destTH.m_asTAddr) != Interop.BOOL.FALSE;
src\System\RuntimeHandles.cs (8)
353ctorIsPublic = fCtorIsPublicTemp != Interop.BOOL.FALSE; 553bool success = GetFields(typeHandle.AsMethodTable(), buffer, ref countLocal) != Interop.BOOL.FALSE; 751GetInstantiation(new QCallTypeHandle(ref nativeHandle), ObjectHandleOnStack.Create(ref types), Interop.BOOL.FALSE); 863bool result = SatisfiesConstraints(new QCallTypeHandle(ref paramType), new QCallTypeHandle(ref typeContext!), methodContextRaw, new QCallTypeHandle(ref toType)) != Interop.BOOL.FALSE; 1172isConstructor ? Interop.BOOL.TRUE : Interop.BOOL.FALSE, 1235GetMethodInstantiation(EnsureNonNullMethodInfo(method).Value, ObjectHandleOnStack.Create(ref types), Interop.BOOL.FALSE); 2111sig2._sig, sig2._csig, new QCallTypeHandle(ref sig2._declaringType)) != Interop.BOOL.FALSE; 2179required ? Interop.BOOL.TRUE : Interop.BOOL.FALSE,
src\System\RuntimeType.CoreCLR.cs (1)
3235return RuntimeTypeHandle.IsCollectible(new QCallTypeHandle(ref thisType)) != Interop.BOOL.FALSE;
src\System\StubHelpers.cs (2)
150Interop.BOOL defaultCharUsed = Interop.BOOL.FALSE; 171if (defaultCharUsed != Interop.BOOL.FALSE)
src\System\Threading\Thread.CoreCLR.cs (4)
93StartInternal(GetNativeHandle(), _startHelper?._maxStackSize ?? 0, _priority, _isThreadPool ? Interop.BOOL.TRUE : Interop.BOOL.FALSE, pThreadName); 152public static bool Yield() => YieldInternal() != Interop.BOOL.FALSE; 207return res != Interop.BOOL.FALSE; 216SetIsBackground(GetNativeHandle(), value ? Interop.BOOL.TRUE : Interop.BOOL.FALSE);