56 writes to _object
System.Private.Windows.Core (56)
System\Value.cs (56)
29_object = value; 89_object = TypeFlags.Byte; 97_object = TypeFlags.Byte; 102_object = null; 115_object = TypeFlags.SByte; 123_object = TypeFlags.SByte; 128_object = null; 141_object = TypeFlags.Boolean; 149_object = TypeFlags.Boolean; 154_object = null; 167_object = TypeFlags.Char; 175_object = TypeFlags.Char; 180_object = null; 193_object = TypeFlags.Int16; 201_object = TypeFlags.Int16; 206_object = null; 219_object = TypeFlags.Int32; 227_object = TypeFlags.Int32; 232_object = null; 245_object = TypeFlags.Int64; 253_object = TypeFlags.Int64; 258_object = null; 271_object = TypeFlags.UInt16; 279_object = TypeFlags.UInt16; 284_object = null; 297_object = TypeFlags.UInt32; 305_object = TypeFlags.UInt32; 310_object = null; 323_object = TypeFlags.UInt64; 331_object = TypeFlags.UInt64; 336_object = null; 349_object = TypeFlags.Single; 357_object = TypeFlags.Single; 362_object = null; 375_object = TypeFlags.Double; 383_object = TypeFlags.Double; 388_object = null; 401_object = TypeFlags.Size; 409_object = TypeFlags.Size; 414_object = null; 427_object = TypeFlags.Point; 435_object = TypeFlags.Point; 440_object = null; 455_object = TypeFlags.PackedColor; 461_object = value; 469_object = null; 491_object = TypeFlags.UtcDateTimeOffset; 496_object = TypeFlags.PackedDateTimeOffset; 500_object = value; 508_object = null; 526_object = TypeFlags.DateTime; 533_object = TypeFlags.DateTime; 538_object = value; 554_object = array; 573_object = array; 681_object = o;
54 references to _object
System.Private.Windows.Core (54)
System\Value.cs (54)
41if (_object is null) 45else if (_object is TypeFlag typeFlag) 51type = _object.GetType(); 701if (_object is not null && ((typeof(T) == typeof(bool) && _object == TypeFlags.Boolean) 702|| (typeof(T) == typeof(byte) && _object == TypeFlags.Byte) 703|| (typeof(T) == typeof(char) && _object == TypeFlags.Char) 704|| (typeof(T) == typeof(double) && _object == TypeFlags.Double) 705|| (typeof(T) == typeof(short) && _object == TypeFlags.Int16) 706|| (typeof(T) == typeof(int) && _object == TypeFlags.Int32) 707|| (typeof(T) == typeof(long) && _object == TypeFlags.Int64) 708|| (typeof(T) == typeof(sbyte) && _object == TypeFlags.SByte) 709|| (typeof(T) == typeof(float) && _object == TypeFlags.Single) 710|| (typeof(T) == typeof(ushort) && _object == TypeFlags.UInt16) 711|| (typeof(T) == typeof(uint) && _object == TypeFlags.UInt32) 712|| (typeof(T) == typeof(ulong) && _object == TypeFlags.UInt64) 713|| (typeof(T) == typeof(Size) && _object == TypeFlags.Size) 714|| (typeof(T) == typeof(Point) && _object == TypeFlags.Point))) 719else if (typeof(T) == typeof(Color) && _object == TypeFlags.PackedColor) 725else if (typeof(T) == typeof(DateTime) && _object == TypeFlags.DateTime) 730else if (typeof(T) == typeof(DateTimeOffset) && _object == TypeFlags.UtcDateTimeOffset) 736else if (typeof(T) == typeof(DateTimeOffset) && _object == TypeFlags.PackedDateTimeOffset) 760if (_object is null) 766else if (typeof(T).IsEnum && _object is TypeFlag<T> typeFlag) 771else if (_object is T t) 779if (bits != 0 && _object is byte[] byteArray) 795if (bits != 0 && _object is char[] charArray) 808else if (typeof(T) == typeof(int?) && _object == TypeFlags.Int32) 814else if (typeof(T) == typeof(long?) && _object == TypeFlags.Int64) 820else if (typeof(T) == typeof(bool?) && _object == TypeFlags.Boolean) 826else if (typeof(T) == typeof(float?) && _object == TypeFlags.Single) 832else if (typeof(T) == typeof(double?) && _object == TypeFlags.Double) 838else if (typeof(T) == typeof(uint?) && _object == TypeFlags.UInt32) 844else if (typeof(T) == typeof(ulong?) && _object == TypeFlags.UInt64) 850else if (typeof(T) == typeof(char?) && _object == TypeFlags.Char) 856else if (typeof(T) == typeof(short?) && _object == TypeFlags.Int16) 862else if (typeof(T) == typeof(ushort?) && _object == TypeFlags.UInt16) 868else if (typeof(T) == typeof(byte?) && _object == TypeFlags.Byte) 874else if (typeof(T) == typeof(sbyte?) && _object == TypeFlags.SByte) 880else if (typeof(T) == typeof(Color?) && _object == TypeFlags.PackedColor) 886else if (typeof(T) == typeof(DateTime?) && _object == TypeFlags.DateTime) 892else if (typeof(T) == typeof(DateTimeOffset?) && _object == TypeFlags.UtcDateTimeOffset) 898else if (typeof(T) == typeof(DateTimeOffset?) && _object == TypeFlags.PackedDateTimeOffset) 906&& _object is TypeFlag underlyingTypeFlag 960if (_object is null) 966if (_union.UInt64 == 0 && _object is char[]) 968value = (T)_object; 980if (_union.UInt64 == 0 && _object is byte[]) 982value = (T)_object; 995if (_object is TypeFlag flag) 1000else if (_union.UInt64 != 0 && _object is char[] chars) 1007else if (_union.UInt64 != 0 && _object is byte[] bytes) 1016value = (T)_object; 1020else if (_object is T t)