29 references to FALSE
System.Private.CoreLib (29)
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\RuntimeCustomAttributeData.cs (1)
1706new QCallModule(ref decoratedModule)) != Interop.BOOL.FALSE;
src\System\Runtime\CompilerServices\RuntimeHelpers.CoreCLR.cs (1)
1284return 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); 883bool result = SatisfiesConstraints(new QCallTypeHandle(ref paramType), new QCallTypeHandle(ref typeContext!), methodContextRaw, new QCallTypeHandle(ref toType)) != Interop.BOOL.FALSE; 1192isConstructor ? Interop.BOOL.TRUE : Interop.BOOL.FALSE, 1255GetMethodInstantiation(EnsureNonNullMethodInfo(method).Value, ObjectHandleOnStack.Create(ref types), Interop.BOOL.FALSE); 2134sig2._sig, sig2._csig, new QCallTypeHandle(ref sig2._declaringType)) != Interop.BOOL.FALSE; 2202required ? Interop.BOOL.TRUE : Interop.BOOL.FALSE,
src\System\StubHelpers.cs (2)
152Interop.BOOL defaultCharUsed = Interop.BOOL.FALSE; 173if (defaultCharUsed != Interop.BOOL.FALSE)
src\System\Threading\Thread.CoreCLR.cs (5)
102if (StartInternal(GetNativeHandle(), _startHelper?._maxStackSize ?? 0, _priority, _isThreadPool ? Interop.BOOL.TRUE : Interop.BOOL.FALSE, pThreadName, ObjectHandleOnStack.Create(ref exception)) == Interop.BOOL.FALSE) 163public static bool Yield() => YieldInternal() != Interop.BOOL.FALSE; 218return res != Interop.BOOL.FALSE; 227SetIsBackground(GetNativeHandle(), value ? Interop.BOOL.TRUE : Interop.BOOL.FALSE);