56 writes to _object
System.Private.Windows.Core (56)
System\Value.cs (56)
30_object = value; 90_object = TypeFlags.Byte; 98_object = TypeFlags.Byte; 103_object = null; 116_object = TypeFlags.SByte; 124_object = TypeFlags.SByte; 129_object = null; 142_object = TypeFlags.Boolean; 150_object = TypeFlags.Boolean; 155_object = null; 168_object = TypeFlags.Char; 176_object = TypeFlags.Char; 181_object = null; 194_object = TypeFlags.Int16; 202_object = TypeFlags.Int16; 207_object = null; 220_object = TypeFlags.Int32; 228_object = TypeFlags.Int32; 233_object = null; 246_object = TypeFlags.Int64; 254_object = TypeFlags.Int64; 259_object = null; 272_object = TypeFlags.UInt16; 280_object = TypeFlags.UInt16; 285_object = null; 298_object = TypeFlags.UInt32; 306_object = TypeFlags.UInt32; 311_object = null; 324_object = TypeFlags.UInt64; 332_object = TypeFlags.UInt64; 337_object = null; 350_object = TypeFlags.Single; 358_object = TypeFlags.Single; 363_object = null; 376_object = TypeFlags.Double; 384_object = TypeFlags.Double; 389_object = null; 402_object = TypeFlags.Size; 410_object = TypeFlags.Size; 415_object = null; 428_object = TypeFlags.Point; 436_object = TypeFlags.Point; 441_object = null; 456_object = TypeFlags.PackedColor; 462_object = value; 470_object = null; 492_object = TypeFlags.UtcDateTimeOffset; 497_object = TypeFlags.PackedDateTimeOffset; 501_object = value; 509_object = null; 527_object = TypeFlags.DateTime; 534_object = TypeFlags.DateTime; 539_object = value; 555_object = array; 574_object = array; 682_object = o;
54 references to _object
System.Private.Windows.Core (54)
System\Value.cs (54)
42if (_object is null) 46else if (_object is TypeFlag typeFlag) 52type = _object.GetType(); 702if (_object is not null && ((typeof(T) == typeof(bool) && _object == TypeFlags.Boolean) 703|| (typeof(T) == typeof(byte) && _object == TypeFlags.Byte) 704|| (typeof(T) == typeof(char) && _object == TypeFlags.Char) 705|| (typeof(T) == typeof(double) && _object == TypeFlags.Double) 706|| (typeof(T) == typeof(short) && _object == TypeFlags.Int16) 707|| (typeof(T) == typeof(int) && _object == TypeFlags.Int32) 708|| (typeof(T) == typeof(long) && _object == TypeFlags.Int64) 709|| (typeof(T) == typeof(sbyte) && _object == TypeFlags.SByte) 710|| (typeof(T) == typeof(float) && _object == TypeFlags.Single) 711|| (typeof(T) == typeof(ushort) && _object == TypeFlags.UInt16) 712|| (typeof(T) == typeof(uint) && _object == TypeFlags.UInt32) 713|| (typeof(T) == typeof(ulong) && _object == TypeFlags.UInt64) 714|| (typeof(T) == typeof(Size) && _object == TypeFlags.Size) 715|| (typeof(T) == typeof(Point) && _object == TypeFlags.Point))) 720else if (typeof(T) == typeof(Color) && _object == TypeFlags.PackedColor) 726else if (typeof(T) == typeof(DateTime) && _object == TypeFlags.DateTime) 731else if (typeof(T) == typeof(DateTimeOffset) && _object == TypeFlags.UtcDateTimeOffset) 737else if (typeof(T) == typeof(DateTimeOffset) && _object == TypeFlags.PackedDateTimeOffset) 761if (_object is null) 767else if (typeof(T).IsEnum && _object is TypeFlag<T> typeFlag) 772else if (_object is T t) 780if (bits != 0 && _object is byte[] byteArray) 796if (bits != 0 && _object is char[] charArray) 809else if (typeof(T) == typeof(int?) && _object == TypeFlags.Int32) 815else if (typeof(T) == typeof(long?) && _object == TypeFlags.Int64) 821else if (typeof(T) == typeof(bool?) && _object == TypeFlags.Boolean) 827else if (typeof(T) == typeof(float?) && _object == TypeFlags.Single) 833else if (typeof(T) == typeof(double?) && _object == TypeFlags.Double) 839else if (typeof(T) == typeof(uint?) && _object == TypeFlags.UInt32) 845else if (typeof(T) == typeof(ulong?) && _object == TypeFlags.UInt64) 851else if (typeof(T) == typeof(char?) && _object == TypeFlags.Char) 857else if (typeof(T) == typeof(short?) && _object == TypeFlags.Int16) 863else if (typeof(T) == typeof(ushort?) && _object == TypeFlags.UInt16) 869else if (typeof(T) == typeof(byte?) && _object == TypeFlags.Byte) 875else if (typeof(T) == typeof(sbyte?) && _object == TypeFlags.SByte) 881else if (typeof(T) == typeof(Color?) && _object == TypeFlags.PackedColor) 887else if (typeof(T) == typeof(DateTime?) && _object == TypeFlags.DateTime) 893else if (typeof(T) == typeof(DateTimeOffset?) && _object == TypeFlags.UtcDateTimeOffset) 899else if (typeof(T) == typeof(DateTimeOffset?) && _object == TypeFlags.PackedDateTimeOffset) 907&& _object is TypeFlag underlyingTypeFlag 961if (_object is null) 967if (_union.UInt64 == 0 && _object is char[]) 969value = (T)_object; 981if (_union.UInt64 == 0 && _object is byte[]) 983value = (T)_object; 996if (_object is TypeFlag flag) 1001else if (_union.UInt64 != 0 && _object is char[] chars) 1008else if (_union.UInt64 != 0 && _object is byte[] bytes) 1017value = (T)_object; 1021else if (_object is T t)