26659 lines
1.1 MiB
26659 lines
1.1 MiB
#include "pch-cpp.hpp"
|
|
|
|
#ifndef _MSC_VER
|
|
# include <alloca.h>
|
|
#else
|
|
# include <malloc.h>
|
|
#endif
|
|
|
|
|
|
#include <limits>
|
|
|
|
|
|
template <typename T1>
|
|
struct VirtualActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct VirtualFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct VirtualFuncInvoker1
|
|
{
|
|
typedef R (*Func)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2, typename T3, typename T4>
|
|
struct VirtualFuncInvoker4
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9>
|
|
struct VirtualFuncInvoker9
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, T7, T8, T9, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7, T8 p8, T9 p9)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, p8, p9, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct GenericVirtualActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct InterfaceActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct GenericInterfaceActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct InvokerActionInvoker2;
|
|
template <typename T1, typename T2>
|
|
struct InvokerActionInvoker2<T1*, T2*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2)
|
|
{
|
|
void* params[2] = { p1, p2 };
|
|
method->invoker_method(methodPtr, method, obj, params, NULL);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3>
|
|
struct InvokerActionInvoker3;
|
|
template <typename T1, typename T2, typename T3>
|
|
struct InvokerActionInvoker3<T1*, T2*, T3*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3)
|
|
{
|
|
void* params[3] = { p1, p2, p3 };
|
|
method->invoker_method(methodPtr, method, obj, params, NULL);
|
|
}
|
|
};
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
|
|
struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
|
|
struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.ISimpleCollator>
|
|
struct Dictionary_2_tFA0E7CD5951B83DD87A65E89D971A68E538F9470;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
|
|
struct Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588;
|
|
// System.Func`2<System.Object,System.Boolean>
|
|
struct Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00;
|
|
// System.DateTimeParse/DS[][]
|
|
struct DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A;
|
|
// System.Byte[]
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
|
// System.Globalization.CalendarId[]
|
|
struct CalendarIdU5BU5D_t559EDBF1B819A695624BE9004EAA4FFA38B65CDA;
|
|
// System.Char[]
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
|
|
// System.Delegate[]
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
// System.Int32[]
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
// System.IntPtr[]
|
|
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
|
// System.Object[]
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
// System.Diagnostics.StackTrace[]
|
|
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
|
// System.String[]
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
// System.Type[]
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
|
// System.Globalization.DateTimeFormatInfo/TokenHashValue[]
|
|
struct TokenHashValueU5BU5D_t3F8794937D04BA380989A813F33418CED58E80B9;
|
|
// System.DateTimeParse/DS[]
|
|
struct DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970;
|
|
// System.TimeZoneInfo/AdjustmentRule[]
|
|
struct AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA;
|
|
// System.ArgumentException
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
|
|
// System.ArgumentNullException
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
|
|
// System.ArgumentOutOfRangeException
|
|
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
|
|
// System.ArithmeticException
|
|
struct ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA;
|
|
// System.Attribute
|
|
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA;
|
|
// System.Reflection.Binder
|
|
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
|
|
// System.Globalization.Calendar
|
|
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B;
|
|
// System.Globalization.CompareInfo
|
|
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57;
|
|
// System.Runtime.ConstrainedExecution.CriticalFinalizerObject
|
|
struct CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9;
|
|
// System.Globalization.CultureData
|
|
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D;
|
|
// System.Globalization.CultureInfo
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0;
|
|
// System.Globalization.DateTimeFormatInfo
|
|
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A;
|
|
// System.Delegate
|
|
struct Delegate_t;
|
|
// System.DelegateData
|
|
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
|
|
// System.DivideByZeroException
|
|
struct DivideByZeroException_tC43171E50A38F5CD4242D258D0B0C6B74898C279;
|
|
// System.DllNotFoundException
|
|
struct DllNotFoundException_t8CAE636A394C482C9FCF38FB7B7929506319D534;
|
|
// System.EntryPointNotFoundException
|
|
struct EntryPointNotFoundException_t15F4C4ABBCF00C39FC1C2C903F15DF41055C1743;
|
|
// System.EventArgs
|
|
struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377;
|
|
// System.EventHandler
|
|
struct EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82;
|
|
// System.Exception
|
|
struct Exception_t;
|
|
// System.ExecutionEngineException
|
|
struct ExecutionEngineException_t9840A50B0A8C687BF6E12A2BD1F26B188BEDD426;
|
|
// System.FieldAccessException
|
|
struct FieldAccessException_t5DD5AAFAF0F0F827EC0D4F89773CD46FD45AE21A;
|
|
// System.FlagsAttribute
|
|
struct FlagsAttribute_t902A411320FCE075B57DB7157C695B392C610D1D;
|
|
// System.FormatException
|
|
struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B;
|
|
// System.Gen2GcCallback
|
|
struct Gen2GcCallback_t95317B7364AE6717C822CED7AD5D4227F8674786;
|
|
// System.IConvertible
|
|
struct IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515;
|
|
// System.Collections.IDictionary
|
|
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
|
// System.IFormatProvider
|
|
struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52;
|
|
// System.Runtime.Serialization.IFormatterConverter
|
|
struct IFormatterConverter_t726606DAC82C384B08C82471313C340968DDB609;
|
|
// System.Globalization.ISimpleCollator
|
|
struct ISimpleCollator_t084383013F96378AFFD4540649E086C9C13BFF5B;
|
|
// System.Int32
|
|
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C;
|
|
// System.InvalidCastException
|
|
struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E;
|
|
// System.MemberAccessException
|
|
struct MemberAccessException_t4BB9AF02B906BB4818600FC8988DECA4D37F2EFC;
|
|
// System.Reflection.MemberFilter
|
|
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
|
|
// System.Reflection.MethodInfo
|
|
struct MethodInfo_t;
|
|
// System.Globalization.NumberFormatInfo
|
|
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472;
|
|
// System.PlatformNotSupportedException
|
|
struct PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A;
|
|
// System.Runtime.Serialization.SafeSerializationManager
|
|
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
|
// System.Runtime.Serialization.SerializationException
|
|
struct SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7;
|
|
// System.Runtime.Serialization.SerializationInfo
|
|
struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37;
|
|
// System.Globalization.SortVersion
|
|
struct SortVersion_tBB62978F95905541FC817E11F73A0B1DB392F07E;
|
|
// System.String
|
|
struct String_t;
|
|
// System.Text.StringBuilder
|
|
struct StringBuilder_t;
|
|
// System.SystemException
|
|
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295;
|
|
// System.Globalization.TextInfo
|
|
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4;
|
|
// System.TimeZoneInfo
|
|
struct TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8;
|
|
// System.Type
|
|
struct Type_t;
|
|
// System.TypeLoadException
|
|
struct TypeLoadException_t6333E3083F7BFF1A582969E6F67ACBA8B0035C32;
|
|
// System.Void
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
|
// System.TimeZoneInfo/CachedData
|
|
struct CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF;
|
|
|
|
IL2CPP_EXTERN_C RuntimeClass* AppContextSwitches_t542F10E9BE2333B7BE24C8858C8A24EFA6C06D38_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Gen2GcCallback_t95317B7364AE6717C822CED7AD5D4227F8674786_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* GregorianCalendar_t6CC2956C5298E69CE93FE53A9DF5AE4F33621815_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Guid_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* HebrewNumber_tF89734089EC4188BCF2BBBAC98D5AEA14DEA3EAF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* JapaneseCalendar_t639E4548E016255B55B31A644186A40A5D055E0E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TaiwanCalendar_tFC159D82844A64A93FE1EB3363CC64DE933EE64B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____0E499E7743BCDFF289B85890E4DFDD635594DB16246DC094C3C19556B6C1262C_3_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____2CCF4119215BDAD102DA7AD5B57E0E6CA19CC8FF5524856FC58907E824213E1F_14_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____3444EB31231B2CCC1B05C7A44EBD1B2A009C1D9977A99B453F52E2F81DD6C32F_15_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____3F62692E2AD5078353EC4471A13421A61EE493294CF59DC66626A6EF9CCCD2C4_17_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____5EC4E50DA95A113769D73E5F7F8221A876185CEE6498ABB16FBB9F0563C15BBF_28_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____6DC92D3617F0357376502FBA4CDD465B5423818DABE8B2CA1A06E1351F2F1C85_32_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____7F777906B0704EB248888E491577584D5BEBE71B375BD595A06444390B471915_36_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____8259E3EBA4D41CA02AE5322BBD280034A9C9860D9CD0D2038139FC9EBE6B6C77_39_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____861FD05B0EAD3D0AA9418B140CC37846BBC5F195214D90CEF42919D1E36EED10_41_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____A252A93D042C5E2453990C2829A425C6DD749CCDCDF13DB58C11BBC78E8D3CE9_53_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____A30E1152CFB528AE968FAC58E83BBEB3611BFDE2E6CF60B4FA9535A7D0A9B8EA_56_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____AAF4528994DD7C464F43C131F6CD44DF41ACC18462C95877252FFC7EAC0164EF_58_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____C5733A1245383FBF067B4A9BDB41E3FB8E3A6BDEF37B3D5418F389422875783F_64_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____CAF8A46B3A07E26F84FE849B57A877051A0D06194B1C057985446B64BCC6E016_68_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____D1A99909A2923269BB67E72C1AED693F74961BDA58360FCC133007740CEBF5F1_70_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____D503954AE2C3616EA32CEB0D66F5B2E119D03CE722773E5D7E1A8BC8F1803631_71_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____D8A29F3D197FBB54CF9F4B105AFBA6B1257ADF6449F0184F843380AAAA24639C_74_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____DCDCF594464B904F763D4CE53B1DBE08A47E551AE86FD5D61F63FD0C3313FDC3_75_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____DF29A050CD2EBD9DFDC783DB1CC74D3D716DAEC1630A337EE31B9E2E03D34D2D_78_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____E2C673A3A737B04369A63F1FB1A30F6E742B066E2CCCD9B1838793CBB5590598_79_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____F4BD8144313C3B67E191C6F3CD8B00540FF1809837C5BCA5C2FDA0D518681563_90_FieldInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral00B50C96368196723209385AC035A494CC7D0E52;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral05ABA3CF47C1FCAEF66432D85D6B44E99603F880;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral061124E28B93E647C6AA75774A91732587C06ECF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0C64494800DCFB8056428332B2D9B374A97F8FF1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral11911B3D4C1551AA9AE78EADF7852BAE78025BB1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral15088A7C50E83E49058833A4287B3C2F1CD730D2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral18B4C3FF17ADD49C3A5FCB657614AF5293A47A25;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1AF30846341A2A4FB9BBDAA67E3C2AD40E1A8AC9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1B336B33429F989E804156C2752D4B75DC0EB2F1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1EEA80CEDFABFC29B06BF4349B427A62D62722AC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral234D19ACC97DBDDB4C2351D9B583DDC8AD958380;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2492BD771F4E0F6822AA68B6D82B11F261E757BB;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral29B3810DD5248A58C29574BDA4100443A74E1DD7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2A9D19DA495F58C5612D1FB82E80D4336D214F35;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2B9B6C84CC15492CCB290C4B79418FA6D7DD24C1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2E071382DB44956A884FF6F8B929901347ACE681;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3BFFD325D0E9B8DB1041A8F32A1F7B2DBB2042C8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3DCC6243286938BE75C3FA773B9BA71160A2E869;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3EE55018ADF7DD670653986FF76F19BB86A91162;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4609D79FE2FAD95C38B6DA64FC671E8594984D4C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4816B2ABCEC514BAEA631C6441D007C41F354C11;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4A8066343C199F418E9759AE5233B4A83D29CE04;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4B4E26F21A69E717A950F1684EADFD0443AD7B19;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4D9C538E6EC016DFB961C75A2EDB9047E7364ADD;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral544DC80A2A82A08B6321F56F8987CB7E5DEED1C4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral554753FB0E8C60CDE47165B077DCCAB9CB27C734;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5942706348DC624AD1C57CB5A1B99A73876BDDE6;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6114CB582F4E13FEEE1CCA0F9E462C7A3BE0729D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral632A16D967E0C773F8BD6CC0C1BC0757266B098C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6D9E79CFA886984022D22A5A9A8CF4B9F5ED9E94;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral77387B78748B05E25D49DF7E83E0FC37687A3FF3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7ED71F768C05670E3698EF09100E41C9E3AC8113;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7FE78C3B1F25A676AC22D36E01B5CF5CC7DC8ED1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8198C3D4DD21FBED5685EAF69C1087FA1961F2F6;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral83EBD43501C62D49B91CCC44587BCA88778AD230;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8BF951CF903ECC622812D47B1157D1A3AFA9FBDC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9C1888F19CB4E2EB7486ACE18CE31178FD9056E2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9DC029E8A2AE7210A6E64E6548ACE71AB0EAC1C4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9E73F441AA920D49C2AE389F5A0431D2B7955821;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9FE21686ED85979C6721683C1AE7814B97848718;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA019FB7F17AA36A9743C530E1F11D5613B8B1158;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA595476C6F6D3E2C3406DD69BC73859EA4408F2F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAA665F32B703053351F7E870B8F846853A461A04;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAC2806EA40D9F7601BBB6DA354C649B46D2D8877;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAEDC38B460FBB683110DEB27588A680B6A5D27D8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAF58B0212B060B5C1E0C49A01A669F6E85E98C07;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBC6164A18588D32CF33FC986D4DFD4EC4CDCAD9D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC2F9A94ED8684F4AE51F264CC8E83B9731EAE480;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC933E93DDFB39592649EC75ECA0E66F2D71BCEF3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCB055AAEFA4D412DEC5D12DE4C0BA4F2A3850EE7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCB0A78B035105B2CCEB9174377B59BDBD1095C96;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCB2F6BDDE5B634595EA1EB4D41AD9B7FC16889AF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCB6B67D4653121AE0F63EE256975A0DBD0FAF6B1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCB8E6E9388768EBCE39ACC521B5A3A8DA3AC5D86;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDCA17A4DF49FD0CA7B9C262B02F93841AF666D1D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDE278963373E67E56D430AA6BB86F447EB47A525;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE3D435CB1D5A50064603B5BC679CDBF100B46F0F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE5C37D372367C69DCD30FE688631A1B0CE49EA73;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEA9F47A6A6AF5C3B1CE61F336CEF44A96DC8CE0A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF13E4BFF086D4E511E68B0617B76ACC5BD5AFFE7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF6A577D434AC942DDB38F171010FC5CEBF94E542;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF7F3659E8021DAE64079570DFC3041787F1C824D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFA21AE346609B8F4B72E20E1720DE0FA22D72B0F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFA6AD0FB1130BFA5AD9F54E775FBEB781B424CF5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFA85549C37D5E928683E7C8CC82CC429B13F9973;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFBC88717BD32A7FD98D754192338108D9C58269D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFF01C47ABD568A459C8EA38273E930831E0F8561;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DateTimeFormat_ExpandPredefinedFormat_mE9FCB4489ABD24F6EBB76F7EE8C5FB331713EF50_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DateTimeFormat_FormatCustomized_m59304DCEF2BAAF79BE928EEA00D9449327489999_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DateTimeFormat_GetRealFormat_m675B6AD6247C73C5048A6F09EF0149A2EF20E5DB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DateTimeFormat_ParseQuoteString_m9D76FA19D6C16F79B944F25899AA6ABBF1D6FD59_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DateTimeOffset_FromUnixTimeSeconds_mE1FA5E04CCCE8A0E8903C9DACC64526C721C0A47_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DateTimeOffset_System_IComparable_CompareTo_m992E97179503D66B0CEC5A97DD205F7F0D0C346E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DateTimeOffset_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC8A5AB3C859C85FC462C4C7BF684B4F467C397F5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DateTimeOffset_System_Runtime_Serialization_ISerializable_GetObjectData_m9708DEBDA52F7130E3E3946C1F86507DCCE1883C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DateTimeOffset_ValidateDate_mCDCD3DE0618C87FB8B45855466077F049C75DAFF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DateTimeOffset_ValidateOffset_m5AC06D0C6ADE061A34727812EB9F2C7518D8F50D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DateTimeOffset__ctor_m3F044A6B1D54C1067C87CFF8C7B930D0F613041D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DateTimeOffset__ctor_m6E6938BD1F5EEE0F96247339B75FB7CEF3665FDC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DateTimeParse_GetJapaneseCalendarDefaultInstance_mB59CA5FACA588F45C5F7129B662935855F6D73B2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DateTimeParse_GetTaiwanCalendarDefaultInstance_m69005FEA5C5D3A0E3551E136D644CB9D266BECB0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DateTimeParse_Lex_mCFD30C9C1058FD72DFB2E3BEDE5289C5EF1E087B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DateTimeParse_Parse_mA20355303009B45379D61C550110547C6C4772B7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Double_CompareTo_m2F47CE23700B216156455DDBF7ED4FA42FD8E941_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Double_System_IConvertible_ToChar_m0180B3FD51938158886299F99C970B197349BC36_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Double_System_IConvertible_ToDateTime_m18B8B48632B59B918FE758F033129ED0CADEF7B0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Guid_CompareTo_m25940E81E692D335CFDE59D11862C99D99D044BB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Guid_Parse_m47AC2E6437504837BAB8F5011FFEC0DEB3C6B8E7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Guid_Parse_mC068B0047F86921D817F600C75C6EBFE15A461D0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Guid_StringToInt_mA5A688F393A47866F6AE04BCB46FC38127646737_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Guid_StringToLong_m832A3F9F7A385B6B42E6D78EC030881ACF95B0DA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Guid_ToString_mD2A93BCA0CBFABB680A93A8FA668AD90E7B56130_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Guid_TryFormat_m9D48F66E2448F329A3DD1234B0A8F3EAF6757E79_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Guid__ctor_m6533072DFD3E81582E8949EB2D5BFABEFC7C403D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Guid__ctor_m9BEFD9FC285BE9ACEC2EB97FC76C0E35E14D725C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Guid__ctor_mAE66BA1C43B4194F4F7991E2E30370E36CBBF830_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MemoryExtensions_SequenceEqual_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m5C4C602E94DF85548E163F2D3FE9DDCA36C7E3E6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MemoryMarshal_CreateReadOnlySpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m6AC28EB03E267661349B40C5A925602DAC3F1C11_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m7FA6FA19030FDE5E3810FBFFD0FD8D6D36172527_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_mDADE08E6B4594775C6675B389078E5FE98C745D5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Span_1_ToString_m12316C6CDC05E2F49EA4BDAD78FD7F1718E6E980_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Span_1_op_Implicit_mA0E9FDCF2C5113BA9F9C4964D17D8BDFBD6F3C98_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* GregorianCalendar_t6CC2956C5298E69CE93FE53A9DF5AE4F33621815_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var;
|
|
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com;
|
|
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke;
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com;
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke;
|
|
struct Delegate_t_marshaled_com;
|
|
struct Delegate_t_marshaled_pinvoke;
|
|
struct Exception_t_marshaled_com;
|
|
struct Exception_t_marshaled_pinvoke;
|
|
|
|
struct DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A;
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
struct DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970;
|
|
|
|
IL2CPP_EXTERN_C_BEGIN
|
|
IL2CPP_EXTERN_C_END
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
|
|
// System.AppContextSwitches
|
|
struct AppContextSwitches_t542F10E9BE2333B7BE24C8858C8A24EFA6C06D38 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.Attribute
|
|
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.Globalization.Calendar
|
|
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B : public RuntimeObject
|
|
{
|
|
// System.Int32 System.Globalization.Calendar::m_currentEraValue
|
|
int32_t ___m_currentEraValue_38;
|
|
// System.Boolean System.Globalization.Calendar::m_isReadOnly
|
|
bool ___m_isReadOnly_39;
|
|
// System.Int32 System.Globalization.Calendar::twoDigitYearMax
|
|
int32_t ___twoDigitYearMax_41;
|
|
};
|
|
|
|
// System.Globalization.CompareInfo
|
|
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57 : public RuntimeObject
|
|
{
|
|
// System.String System.Globalization.CompareInfo::m_name
|
|
String_t* ___m_name_5;
|
|
// System.String System.Globalization.CompareInfo::_sortName
|
|
String_t* ____sortName_6;
|
|
// System.Globalization.SortVersion System.Globalization.CompareInfo::m_SortVersion
|
|
SortVersion_tBB62978F95905541FC817E11F73A0B1DB392F07E* ___m_SortVersion_7;
|
|
// System.Int32 System.Globalization.CompareInfo::culture
|
|
int32_t ___culture_8;
|
|
// System.Globalization.ISimpleCollator System.Globalization.CompareInfo::collator
|
|
RuntimeObject* ___collator_9;
|
|
};
|
|
|
|
// System.Runtime.ConstrainedExecution.CriticalFinalizerObject
|
|
struct CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.Globalization.CultureInfo
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0 : public RuntimeObject
|
|
{
|
|
// System.Boolean System.Globalization.CultureInfo::m_isReadOnly
|
|
bool ___m_isReadOnly_3;
|
|
// System.Int32 System.Globalization.CultureInfo::cultureID
|
|
int32_t ___cultureID_4;
|
|
// System.Int32 System.Globalization.CultureInfo::parent_lcid
|
|
int32_t ___parent_lcid_5;
|
|
// System.Int32 System.Globalization.CultureInfo::datetime_index
|
|
int32_t ___datetime_index_6;
|
|
// System.Int32 System.Globalization.CultureInfo::number_index
|
|
int32_t ___number_index_7;
|
|
// System.Int32 System.Globalization.CultureInfo::default_calendar_type
|
|
int32_t ___default_calendar_type_8;
|
|
// System.Boolean System.Globalization.CultureInfo::m_useUserOverride
|
|
bool ___m_useUserOverride_9;
|
|
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
|
|
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
|
|
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
|
|
// System.String System.Globalization.CultureInfo::m_name
|
|
String_t* ___m_name_13;
|
|
// System.String System.Globalization.CultureInfo::englishname
|
|
String_t* ___englishname_14;
|
|
// System.String System.Globalization.CultureInfo::nativename
|
|
String_t* ___nativename_15;
|
|
// System.String System.Globalization.CultureInfo::iso3lang
|
|
String_t* ___iso3lang_16;
|
|
// System.String System.Globalization.CultureInfo::iso2lang
|
|
String_t* ___iso2lang_17;
|
|
// System.String System.Globalization.CultureInfo::win3lang
|
|
String_t* ___win3lang_18;
|
|
// System.String System.Globalization.CultureInfo::territory
|
|
String_t* ___territory_19;
|
|
// System.String[] System.Globalization.CultureInfo::native_calendar_names
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___native_calendar_names_20;
|
|
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
|
|
// System.Void* System.Globalization.CultureInfo::textinfo_data
|
|
void* ___textinfo_data_22;
|
|
// System.Int32 System.Globalization.CultureInfo::m_dataItem
|
|
int32_t ___m_dataItem_23;
|
|
// System.Globalization.Calendar System.Globalization.CultureInfo::calendar
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___parent_culture_25;
|
|
// System.Boolean System.Globalization.CultureInfo::constructed
|
|
bool ___constructed_26;
|
|
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___cached_serialized_form_27;
|
|
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ___m_cultureData_28;
|
|
// System.Boolean System.Globalization.CultureInfo::m_isInherited
|
|
bool ___m_isInherited_29;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Globalization.CultureInfo
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_isReadOnly_3;
|
|
int32_t ___cultureID_4;
|
|
int32_t ___parent_lcid_5;
|
|
int32_t ___datetime_index_6;
|
|
int32_t ___number_index_7;
|
|
int32_t ___default_calendar_type_8;
|
|
int32_t ___m_useUserOverride_9;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
|
|
char* ___m_name_13;
|
|
char* ___englishname_14;
|
|
char* ___nativename_15;
|
|
char* ___iso3lang_16;
|
|
char* ___iso2lang_17;
|
|
char* ___win3lang_18;
|
|
char* ___territory_19;
|
|
char** ___native_calendar_names_20;
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
|
|
void* ___textinfo_data_22;
|
|
int32_t ___m_dataItem_23;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke* ___parent_culture_25;
|
|
int32_t ___constructed_26;
|
|
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke* ___m_cultureData_28;
|
|
int32_t ___m_isInherited_29;
|
|
};
|
|
// Native definition for COM marshalling of System.Globalization.CultureInfo
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com
|
|
{
|
|
int32_t ___m_isReadOnly_3;
|
|
int32_t ___cultureID_4;
|
|
int32_t ___parent_lcid_5;
|
|
int32_t ___datetime_index_6;
|
|
int32_t ___number_index_7;
|
|
int32_t ___default_calendar_type_8;
|
|
int32_t ___m_useUserOverride_9;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
|
|
Il2CppChar* ___m_name_13;
|
|
Il2CppChar* ___englishname_14;
|
|
Il2CppChar* ___nativename_15;
|
|
Il2CppChar* ___iso3lang_16;
|
|
Il2CppChar* ___iso2lang_17;
|
|
Il2CppChar* ___win3lang_18;
|
|
Il2CppChar* ___territory_19;
|
|
Il2CppChar** ___native_calendar_names_20;
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
|
|
void* ___textinfo_data_22;
|
|
int32_t ___m_dataItem_23;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com* ___parent_culture_25;
|
|
int32_t ___constructed_26;
|
|
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com* ___m_cultureData_28;
|
|
int32_t ___m_isInherited_29;
|
|
};
|
|
|
|
// System.Globalization.DateTimeFormatInfo
|
|
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A : public RuntimeObject
|
|
{
|
|
// System.Globalization.CultureData System.Globalization.DateTimeFormatInfo::_cultureData
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ____cultureData_1;
|
|
// System.String System.Globalization.DateTimeFormatInfo::_name
|
|
String_t* ____name_2;
|
|
// System.String System.Globalization.DateTimeFormatInfo::_langName
|
|
String_t* ____langName_3;
|
|
// System.Globalization.CompareInfo System.Globalization.DateTimeFormatInfo::_compareInfo
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ____compareInfo_4;
|
|
// System.Globalization.CultureInfo System.Globalization.DateTimeFormatInfo::_cultureInfo
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ____cultureInfo_5;
|
|
// System.String System.Globalization.DateTimeFormatInfo::amDesignator
|
|
String_t* ___amDesignator_6;
|
|
// System.String System.Globalization.DateTimeFormatInfo::pmDesignator
|
|
String_t* ___pmDesignator_7;
|
|
// System.String System.Globalization.DateTimeFormatInfo::dateSeparator
|
|
String_t* ___dateSeparator_8;
|
|
// System.String System.Globalization.DateTimeFormatInfo::generalShortTimePattern
|
|
String_t* ___generalShortTimePattern_9;
|
|
// System.String System.Globalization.DateTimeFormatInfo::generalLongTimePattern
|
|
String_t* ___generalLongTimePattern_10;
|
|
// System.String System.Globalization.DateTimeFormatInfo::timeSeparator
|
|
String_t* ___timeSeparator_11;
|
|
// System.String System.Globalization.DateTimeFormatInfo::monthDayPattern
|
|
String_t* ___monthDayPattern_12;
|
|
// System.String System.Globalization.DateTimeFormatInfo::dateTimeOffsetPattern
|
|
String_t* ___dateTimeOffsetPattern_13;
|
|
// System.Globalization.Calendar System.Globalization.DateTimeFormatInfo::calendar
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_17;
|
|
// System.Int32 System.Globalization.DateTimeFormatInfo::firstDayOfWeek
|
|
int32_t ___firstDayOfWeek_18;
|
|
// System.Int32 System.Globalization.DateTimeFormatInfo::calendarWeekRule
|
|
int32_t ___calendarWeekRule_19;
|
|
// System.String System.Globalization.DateTimeFormatInfo::fullDateTimePattern
|
|
String_t* ___fullDateTimePattern_20;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::abbreviatedDayNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___abbreviatedDayNames_21;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::m_superShortDayNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_superShortDayNames_22;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::dayNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___dayNames_23;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::abbreviatedMonthNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___abbreviatedMonthNames_24;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::monthNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___monthNames_25;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::genitiveMonthNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___genitiveMonthNames_26;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::m_genitiveAbbreviatedMonthNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_genitiveAbbreviatedMonthNames_27;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::leapYearMonthNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___leapYearMonthNames_28;
|
|
// System.String System.Globalization.DateTimeFormatInfo::longDatePattern
|
|
String_t* ___longDatePattern_29;
|
|
// System.String System.Globalization.DateTimeFormatInfo::shortDatePattern
|
|
String_t* ___shortDatePattern_30;
|
|
// System.String System.Globalization.DateTimeFormatInfo::yearMonthPattern
|
|
String_t* ___yearMonthPattern_31;
|
|
// System.String System.Globalization.DateTimeFormatInfo::longTimePattern
|
|
String_t* ___longTimePattern_32;
|
|
// System.String System.Globalization.DateTimeFormatInfo::shortTimePattern
|
|
String_t* ___shortTimePattern_33;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::allYearMonthPatterns
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allYearMonthPatterns_34;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::allShortDatePatterns
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allShortDatePatterns_35;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::allLongDatePatterns
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allLongDatePatterns_36;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::allShortTimePatterns
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allShortTimePatterns_37;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::allLongTimePatterns
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___allLongTimePatterns_38;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::m_eraNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_eraNames_39;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::m_abbrevEraNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_abbrevEraNames_40;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::m_abbrevEnglishEraNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_abbrevEnglishEraNames_41;
|
|
// System.Globalization.CalendarId[] System.Globalization.DateTimeFormatInfo::optionalCalendars
|
|
CalendarIdU5BU5D_t559EDBF1B819A695624BE9004EAA4FFA38B65CDA* ___optionalCalendars_42;
|
|
// System.Boolean System.Globalization.DateTimeFormatInfo::_isReadOnly
|
|
bool ____isReadOnly_44;
|
|
// System.Globalization.DateTimeFormatFlags System.Globalization.DateTimeFormatInfo::formatFlags
|
|
int32_t ___formatFlags_45;
|
|
// System.String System.Globalization.DateTimeFormatInfo::_fullTimeSpanPositivePattern
|
|
String_t* ____fullTimeSpanPositivePattern_49;
|
|
// System.String System.Globalization.DateTimeFormatInfo::_fullTimeSpanNegativePattern
|
|
String_t* ____fullTimeSpanNegativePattern_50;
|
|
// System.Globalization.DateTimeFormatInfo/TokenHashValue[] System.Globalization.DateTimeFormatInfo::_dtfiTokenHash
|
|
TokenHashValueU5BU5D_t3F8794937D04BA380989A813F33418CED58E80B9* ____dtfiTokenHash_52;
|
|
};
|
|
|
|
// System.DateTimeParse
|
|
struct DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.EventArgs
|
|
struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.Globalization.GlobalizationMode
|
|
struct GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.Reflection.MemberInfo
|
|
struct MemberInfo_t : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.Globalization.NumberFormatInfo
|
|
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472 : public RuntimeObject
|
|
{
|
|
// System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___numberGroupSizes_1;
|
|
// System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___currencyGroupSizes_2;
|
|
// System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___percentGroupSizes_3;
|
|
// System.String System.Globalization.NumberFormatInfo::positiveSign
|
|
String_t* ___positiveSign_4;
|
|
// System.String System.Globalization.NumberFormatInfo::negativeSign
|
|
String_t* ___negativeSign_5;
|
|
// System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator
|
|
String_t* ___numberDecimalSeparator_6;
|
|
// System.String System.Globalization.NumberFormatInfo::numberGroupSeparator
|
|
String_t* ___numberGroupSeparator_7;
|
|
// System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator
|
|
String_t* ___currencyGroupSeparator_8;
|
|
// System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator
|
|
String_t* ___currencyDecimalSeparator_9;
|
|
// System.String System.Globalization.NumberFormatInfo::currencySymbol
|
|
String_t* ___currencySymbol_10;
|
|
// System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol
|
|
String_t* ___ansiCurrencySymbol_11;
|
|
// System.String System.Globalization.NumberFormatInfo::nanSymbol
|
|
String_t* ___nanSymbol_12;
|
|
// System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol
|
|
String_t* ___positiveInfinitySymbol_13;
|
|
// System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol
|
|
String_t* ___negativeInfinitySymbol_14;
|
|
// System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator
|
|
String_t* ___percentDecimalSeparator_15;
|
|
// System.String System.Globalization.NumberFormatInfo::percentGroupSeparator
|
|
String_t* ___percentGroupSeparator_16;
|
|
// System.String System.Globalization.NumberFormatInfo::percentSymbol
|
|
String_t* ___percentSymbol_17;
|
|
// System.String System.Globalization.NumberFormatInfo::perMilleSymbol
|
|
String_t* ___perMilleSymbol_18;
|
|
// System.String[] System.Globalization.NumberFormatInfo::nativeDigits
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___nativeDigits_19;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::m_dataItem
|
|
int32_t ___m_dataItem_20;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits
|
|
int32_t ___numberDecimalDigits_21;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits
|
|
int32_t ___currencyDecimalDigits_22;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern
|
|
int32_t ___currencyPositivePattern_23;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern
|
|
int32_t ___currencyNegativePattern_24;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern
|
|
int32_t ___numberNegativePattern_25;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern
|
|
int32_t ___percentPositivePattern_26;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern
|
|
int32_t ___percentNegativePattern_27;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits
|
|
int32_t ___percentDecimalDigits_28;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution
|
|
int32_t ___digitSubstitution_29;
|
|
// System.Boolean System.Globalization.NumberFormatInfo::isReadOnly
|
|
bool ___isReadOnly_30;
|
|
// System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride
|
|
bool ___m_useUserOverride_31;
|
|
// System.Boolean System.Globalization.NumberFormatInfo::m_isInvariant
|
|
bool ___m_isInvariant_32;
|
|
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber
|
|
bool ___validForParseAsNumber_33;
|
|
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency
|
|
bool ___validForParseAsCurrency_34;
|
|
};
|
|
|
|
// System.Runtime.Serialization.SerializationInfo
|
|
struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37 : public RuntimeObject
|
|
{
|
|
// System.String[] System.Runtime.Serialization.SerializationInfo::m_members
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_members_3;
|
|
// System.Object[] System.Runtime.Serialization.SerializationInfo::m_data
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_data_4;
|
|
// System.Type[] System.Runtime.Serialization.SerializationInfo::m_types
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___m_types_5;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex
|
|
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___m_nameToIndex_6;
|
|
// System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember
|
|
int32_t ___m_currMember_7;
|
|
// System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter
|
|
RuntimeObject* ___m_converter_8;
|
|
// System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName
|
|
String_t* ___m_fullTypeName_9;
|
|
// System.String System.Runtime.Serialization.SerializationInfo::m_assemName
|
|
String_t* ___m_assemName_10;
|
|
// System.Type System.Runtime.Serialization.SerializationInfo::objectType
|
|
Type_t* ___objectType_11;
|
|
// System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit
|
|
bool ___isFullTypeNameSetExplicit_12;
|
|
// System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit
|
|
bool ___isAssemblyNameSetExplicit_13;
|
|
// System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust
|
|
bool ___requireSameTokenInPartialTrust_14;
|
|
};
|
|
|
|
// System.String
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
// System.Int32 System.String::_stringLength
|
|
int32_t ____stringLength_4;
|
|
// System.Char System.String::_firstChar
|
|
Il2CppChar ____firstChar_5;
|
|
};
|
|
|
|
// System.Text.StringBuilder
|
|
struct StringBuilder_t : public RuntimeObject
|
|
{
|
|
// System.Char[] System.Text.StringBuilder::m_ChunkChars
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars_0;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
|
|
StringBuilder_t* ___m_ChunkPrevious_1;
|
|
// System.Int32 System.Text.StringBuilder::m_ChunkLength
|
|
int32_t ___m_ChunkLength_2;
|
|
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
|
|
int32_t ___m_ChunkOffset_3;
|
|
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
|
|
int32_t ___m_MaxCapacity_4;
|
|
};
|
|
|
|
// System.ValueType
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
|
{
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.ValueType
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
|
{
|
|
};
|
|
// Native definition for COM marshalling of System.ValueType
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
|
{
|
|
};
|
|
|
|
// System.Boolean
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
|
|
{
|
|
// System.Boolean System.Boolean::m_value
|
|
bool ___m_value_0;
|
|
};
|
|
|
|
// System.Byte
|
|
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
|
|
{
|
|
// System.Byte System.Byte::m_value
|
|
uint8_t ___m_value_0;
|
|
};
|
|
|
|
// System.Char
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
|
|
{
|
|
// System.Char System.Char::m_value
|
|
Il2CppChar ___m_value_0;
|
|
};
|
|
|
|
// System.DateTime
|
|
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D
|
|
{
|
|
// System.UInt64 System.DateTime::_dateData
|
|
uint64_t ____dateData_46;
|
|
};
|
|
|
|
// System.DateTimeRawInfo
|
|
struct DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03
|
|
{
|
|
// System.Int32* System.DateTimeRawInfo::num
|
|
int32_t* ___num_0;
|
|
// System.Int32 System.DateTimeRawInfo::numCount
|
|
int32_t ___numCount_1;
|
|
// System.Int32 System.DateTimeRawInfo::month
|
|
int32_t ___month_2;
|
|
// System.Int32 System.DateTimeRawInfo::year
|
|
int32_t ___year_3;
|
|
// System.Int32 System.DateTimeRawInfo::dayOfWeek
|
|
int32_t ___dayOfWeek_4;
|
|
// System.Int32 System.DateTimeRawInfo::era
|
|
int32_t ___era_5;
|
|
// System.DateTimeParse/TM System.DateTimeRawInfo::timeMark
|
|
int32_t ___timeMark_6;
|
|
// System.Double System.DateTimeRawInfo::fraction
|
|
double ___fraction_7;
|
|
// System.Boolean System.DateTimeRawInfo::hasSameDateAndTimeSeparators
|
|
bool ___hasSameDateAndTimeSeparators_8;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.DateTimeRawInfo
|
|
struct DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03_marshaled_pinvoke
|
|
{
|
|
int32_t* ___num_0;
|
|
int32_t ___numCount_1;
|
|
int32_t ___month_2;
|
|
int32_t ___year_3;
|
|
int32_t ___dayOfWeek_4;
|
|
int32_t ___era_5;
|
|
int32_t ___timeMark_6;
|
|
double ___fraction_7;
|
|
int32_t ___hasSameDateAndTimeSeparators_8;
|
|
};
|
|
// Native definition for COM marshalling of System.DateTimeRawInfo
|
|
struct DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03_marshaled_com
|
|
{
|
|
int32_t* ___num_0;
|
|
int32_t ___numCount_1;
|
|
int32_t ___month_2;
|
|
int32_t ___year_3;
|
|
int32_t ___dayOfWeek_4;
|
|
int32_t ___era_5;
|
|
int32_t ___timeMark_6;
|
|
double ___fraction_7;
|
|
int32_t ___hasSameDateAndTimeSeparators_8;
|
|
};
|
|
|
|
// System.DateTimeToken
|
|
struct DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4
|
|
{
|
|
// System.DateTimeParse/DTT System.DateTimeToken::dtt
|
|
int32_t ___dtt_0;
|
|
// System.TokenType System.DateTimeToken::suffix
|
|
int32_t ___suffix_1;
|
|
// System.Int32 System.DateTimeToken::num
|
|
int32_t ___num_2;
|
|
};
|
|
|
|
// System.Decimal
|
|
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
// System.Int32 System.Decimal::flags
|
|
int32_t ___flags_5;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
int32_t ___flags_5_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___hi_6_OffsetPadding[4];
|
|
// System.Int32 System.Decimal::hi
|
|
int32_t ___hi_6;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___hi_6_OffsetPadding_forAlignmentOnly[4];
|
|
int32_t ___hi_6_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___lo_7_OffsetPadding[8];
|
|
// System.Int32 System.Decimal::lo
|
|
int32_t ___lo_7;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___lo_7_OffsetPadding_forAlignmentOnly[8];
|
|
int32_t ___lo_7_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___mid_8_OffsetPadding[12];
|
|
// System.Int32 System.Decimal::mid
|
|
int32_t ___mid_8;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___mid_8_OffsetPadding_forAlignmentOnly[12];
|
|
int32_t ___mid_8_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___ulomidLE_9_OffsetPadding[8];
|
|
// System.UInt64 System.Decimal::ulomidLE
|
|
uint64_t ___ulomidLE_9;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___ulomidLE_9_OffsetPadding_forAlignmentOnly[8];
|
|
uint64_t ___ulomidLE_9_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
|
|
// System.Double
|
|
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
|
|
{
|
|
// System.Double System.Double::m_value
|
|
double ___m_value_0;
|
|
};
|
|
|
|
// System.Enum
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
|
|
{
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Enum
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
|
|
{
|
|
};
|
|
// Native definition for COM marshalling of System.Enum
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
|
|
{
|
|
};
|
|
|
|
// System.FlagsAttribute
|
|
struct FlagsAttribute_t902A411320FCE075B57DB7157C695B392C610D1D : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
|
|
{
|
|
};
|
|
|
|
// System.Guid
|
|
struct Guid_t
|
|
{
|
|
// System.Int32 System.Guid::_a
|
|
int32_t ____a_1;
|
|
// System.Int16 System.Guid::_b
|
|
int16_t ____b_2;
|
|
// System.Int16 System.Guid::_c
|
|
int16_t ____c_3;
|
|
// System.Byte System.Guid::_d
|
|
uint8_t ____d_4;
|
|
// System.Byte System.Guid::_e
|
|
uint8_t ____e_5;
|
|
// System.Byte System.Guid::_f
|
|
uint8_t ____f_6;
|
|
// System.Byte System.Guid::_g
|
|
uint8_t ____g_7;
|
|
// System.Byte System.Guid::_h
|
|
uint8_t ____h_8;
|
|
// System.Byte System.Guid::_i
|
|
uint8_t ____i_9;
|
|
// System.Byte System.Guid::_j
|
|
uint8_t ____j_10;
|
|
// System.Byte System.Guid::_k
|
|
uint8_t ____k_11;
|
|
};
|
|
|
|
// System.Int16
|
|
struct Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175
|
|
{
|
|
// System.Int16 System.Int16::m_value
|
|
int16_t ___m_value_0;
|
|
};
|
|
|
|
// System.Int32
|
|
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
|
|
{
|
|
// System.Int32 System.Int32::m_value
|
|
int32_t ___m_value_0;
|
|
};
|
|
|
|
// System.Int64
|
|
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
|
|
{
|
|
// System.Int64 System.Int64::m_value
|
|
int64_t ___m_value_0;
|
|
};
|
|
|
|
// System.IntPtr
|
|
struct IntPtr_t
|
|
{
|
|
// System.Void* System.IntPtr::m_value
|
|
void* ___m_value_0;
|
|
};
|
|
|
|
// System.SByte
|
|
struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5
|
|
{
|
|
// System.SByte System.SByte::m_value
|
|
int8_t ___m_value_0;
|
|
};
|
|
|
|
// System.Single
|
|
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
|
|
{
|
|
// System.Single System.Single::m_value
|
|
float ___m_value_0;
|
|
};
|
|
|
|
// System.Runtime.Serialization.StreamingContext
|
|
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677
|
|
{
|
|
// System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext
|
|
RuntimeObject* ___m_additionalContext_0;
|
|
// System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state
|
|
int32_t ___m_state_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
|
|
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_pinvoke
|
|
{
|
|
Il2CppIUnknown* ___m_additionalContext_0;
|
|
int32_t ___m_state_1;
|
|
};
|
|
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
|
|
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_com
|
|
{
|
|
Il2CppIUnknown* ___m_additionalContext_0;
|
|
int32_t ___m_state_1;
|
|
};
|
|
|
|
// System.TimeSpan
|
|
struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A
|
|
{
|
|
// System.Int64 System.TimeSpan::_ticks
|
|
int64_t ____ticks_22;
|
|
};
|
|
|
|
// System.UInt16
|
|
struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
|
|
{
|
|
// System.UInt16 System.UInt16::m_value
|
|
uint16_t ___m_value_0;
|
|
};
|
|
|
|
// System.UInt32
|
|
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
|
|
{
|
|
// System.UInt32 System.UInt32::m_value
|
|
uint32_t ___m_value_0;
|
|
};
|
|
|
|
// System.UInt64
|
|
struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
|
|
{
|
|
// System.UInt64 System.UInt64::m_value
|
|
uint64_t ___m_value_0;
|
|
};
|
|
|
|
// System.Void
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
|
};
|
|
};
|
|
|
|
// System.ByReference`1<System.Byte>
|
|
struct ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC
|
|
{
|
|
// System.IntPtr System.ByReference`1::_value
|
|
intptr_t ____value_0;
|
|
};
|
|
|
|
// System.ByReference`1<System.Char>
|
|
struct ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5
|
|
{
|
|
// System.IntPtr System.ByReference`1::_value
|
|
intptr_t ____value_0;
|
|
};
|
|
|
|
// System.DateTimeFormat
|
|
struct DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.DateTimeOffset
|
|
struct DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4
|
|
{
|
|
// System.DateTime System.DateTimeOffset::_dateTime
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____dateTime_3;
|
|
// System.Int16 System.DateTimeOffset::_offsetMinutes
|
|
int16_t ____offsetMinutes_4;
|
|
};
|
|
|
|
// System.Delegate
|
|
struct Delegate_t : public RuntimeObject
|
|
{
|
|
// System.IntPtr System.Delegate::method_ptr
|
|
Il2CppMethodPointer ___method_ptr_0;
|
|
// System.IntPtr System.Delegate::invoke_impl
|
|
intptr_t ___invoke_impl_1;
|
|
// System.Object System.Delegate::m_target
|
|
RuntimeObject* ___m_target_2;
|
|
// System.IntPtr System.Delegate::method
|
|
intptr_t ___method_3;
|
|
// System.IntPtr System.Delegate::delegate_trampoline
|
|
intptr_t ___delegate_trampoline_4;
|
|
// System.IntPtr System.Delegate::extra_arg
|
|
intptr_t ___extra_arg_5;
|
|
// System.IntPtr System.Delegate::method_code
|
|
intptr_t ___method_code_6;
|
|
// System.IntPtr System.Delegate::interp_method
|
|
intptr_t ___interp_method_7;
|
|
// System.IntPtr System.Delegate::interp_invoke_impl
|
|
intptr_t ___interp_invoke_impl_8;
|
|
// System.Reflection.MethodInfo System.Delegate::method_info
|
|
MethodInfo_t* ___method_info_9;
|
|
// System.Reflection.MethodInfo System.Delegate::original_method_info
|
|
MethodInfo_t* ___original_method_info_10;
|
|
// System.DelegateData System.Delegate::data
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
|
|
// System.Boolean System.Delegate::method_is_virtual
|
|
bool ___method_is_virtual_12;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Delegate
|
|
struct Delegate_t_marshaled_pinvoke
|
|
{
|
|
intptr_t ___method_ptr_0;
|
|
intptr_t ___invoke_impl_1;
|
|
Il2CppIUnknown* ___m_target_2;
|
|
intptr_t ___method_3;
|
|
intptr_t ___delegate_trampoline_4;
|
|
intptr_t ___extra_arg_5;
|
|
intptr_t ___method_code_6;
|
|
intptr_t ___interp_method_7;
|
|
intptr_t ___interp_invoke_impl_8;
|
|
MethodInfo_t* ___method_info_9;
|
|
MethodInfo_t* ___original_method_info_10;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
|
|
int32_t ___method_is_virtual_12;
|
|
};
|
|
// Native definition for COM marshalling of System.Delegate
|
|
struct Delegate_t_marshaled_com
|
|
{
|
|
intptr_t ___method_ptr_0;
|
|
intptr_t ___invoke_impl_1;
|
|
Il2CppIUnknown* ___m_target_2;
|
|
intptr_t ___method_3;
|
|
intptr_t ___delegate_trampoline_4;
|
|
intptr_t ___extra_arg_5;
|
|
intptr_t ___method_code_6;
|
|
intptr_t ___interp_method_7;
|
|
intptr_t ___interp_invoke_impl_8;
|
|
MethodInfo_t* ___method_info_9;
|
|
MethodInfo_t* ___original_method_info_10;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
|
|
int32_t ___method_is_virtual_12;
|
|
};
|
|
|
|
// System.Exception
|
|
struct Exception_t : public RuntimeObject
|
|
{
|
|
// System.String System.Exception::_className
|
|
String_t* ____className_1;
|
|
// System.String System.Exception::_message
|
|
String_t* ____message_2;
|
|
// System.Collections.IDictionary System.Exception::_data
|
|
RuntimeObject* ____data_3;
|
|
// System.Exception System.Exception::_innerException
|
|
Exception_t* ____innerException_4;
|
|
// System.String System.Exception::_helpURL
|
|
String_t* ____helpURL_5;
|
|
// System.Object System.Exception::_stackTrace
|
|
RuntimeObject* ____stackTrace_6;
|
|
// System.String System.Exception::_stackTraceString
|
|
String_t* ____stackTraceString_7;
|
|
// System.String System.Exception::_remoteStackTraceString
|
|
String_t* ____remoteStackTraceString_8;
|
|
// System.Int32 System.Exception::_remoteStackIndex
|
|
int32_t ____remoteStackIndex_9;
|
|
// System.Object System.Exception::_dynamicMethods
|
|
RuntimeObject* ____dynamicMethods_10;
|
|
// System.Int32 System.Exception::_HResult
|
|
int32_t ____HResult_11;
|
|
// System.String System.Exception::_source
|
|
String_t* ____source_12;
|
|
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
|
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
|
// System.IntPtr[] System.Exception::native_trace_ips
|
|
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
|
|
// System.Int32 System.Exception::caught_in_unmanaged
|
|
int32_t ___caught_in_unmanaged_16;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Exception
|
|
struct Exception_t_marshaled_pinvoke
|
|
{
|
|
char* ____className_1;
|
|
char* ____message_2;
|
|
RuntimeObject* ____data_3;
|
|
Exception_t_marshaled_pinvoke* ____innerException_4;
|
|
char* ____helpURL_5;
|
|
Il2CppIUnknown* ____stackTrace_6;
|
|
char* ____stackTraceString_7;
|
|
char* ____remoteStackTraceString_8;
|
|
int32_t ____remoteStackIndex_9;
|
|
Il2CppIUnknown* ____dynamicMethods_10;
|
|
int32_t ____HResult_11;
|
|
char* ____source_12;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
|
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
|
|
int32_t ___caught_in_unmanaged_16;
|
|
};
|
|
// Native definition for COM marshalling of System.Exception
|
|
struct Exception_t_marshaled_com
|
|
{
|
|
Il2CppChar* ____className_1;
|
|
Il2CppChar* ____message_2;
|
|
RuntimeObject* ____data_3;
|
|
Exception_t_marshaled_com* ____innerException_4;
|
|
Il2CppChar* ____helpURL_5;
|
|
Il2CppIUnknown* ____stackTrace_6;
|
|
Il2CppChar* ____stackTraceString_7;
|
|
Il2CppChar* ____remoteStackTraceString_8;
|
|
int32_t ____remoteStackIndex_9;
|
|
Il2CppIUnknown* ____dynamicMethods_10;
|
|
int32_t ____HResult_11;
|
|
Il2CppChar* ____source_12;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
|
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
|
|
int32_t ___caught_in_unmanaged_16;
|
|
};
|
|
|
|
// System.Runtime.InteropServices.GCHandle
|
|
struct GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC
|
|
{
|
|
// System.IntPtr System.Runtime.InteropServices.GCHandle::handle
|
|
intptr_t ___handle_0;
|
|
};
|
|
|
|
// System.RuntimeFieldHandle
|
|
struct RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5
|
|
{
|
|
// System.IntPtr System.RuntimeFieldHandle::value
|
|
intptr_t ___value_0;
|
|
};
|
|
|
|
// System.RuntimeTypeHandle
|
|
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
|
|
{
|
|
// System.IntPtr System.RuntimeTypeHandle::value
|
|
intptr_t ___value_0;
|
|
};
|
|
|
|
// System.TimeZoneInfo
|
|
struct TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8 : public RuntimeObject
|
|
{
|
|
// System.String System.TimeZoneInfo::_id
|
|
String_t* ____id_0;
|
|
// System.String System.TimeZoneInfo::_displayName
|
|
String_t* ____displayName_1;
|
|
// System.String System.TimeZoneInfo::_standardDisplayName
|
|
String_t* ____standardDisplayName_2;
|
|
// System.String System.TimeZoneInfo::_daylightDisplayName
|
|
String_t* ____daylightDisplayName_3;
|
|
// System.TimeSpan System.TimeZoneInfo::_baseUtcOffset
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ____baseUtcOffset_4;
|
|
// System.Boolean System.TimeZoneInfo::_supportsDaylightSavingTime
|
|
bool ____supportsDaylightSavingTime_5;
|
|
// System.TimeZoneInfo/AdjustmentRule[] System.TimeZoneInfo::_adjustmentRules
|
|
AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ____adjustmentRules_6;
|
|
};
|
|
|
|
// System.Array/RawData
|
|
struct RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0 : public RuntimeObject
|
|
{
|
|
// System.IntPtr System.Array/RawData::Bounds
|
|
intptr_t ___Bounds_0;
|
|
// System.IntPtr System.Array/RawData::Count
|
|
intptr_t ___Count_1;
|
|
// System.Byte System.Array/RawData::Data
|
|
uint8_t ___Data_2;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Array/RawData
|
|
struct RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0_marshaled_pinvoke
|
|
{
|
|
intptr_t ___Bounds_0;
|
|
intptr_t ___Count_1;
|
|
uint8_t ___Data_2;
|
|
};
|
|
// Native definition for COM marshalling of System.Array/RawData
|
|
struct RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0_marshaled_com
|
|
{
|
|
intptr_t ___Bounds_0;
|
|
intptr_t ___Count_1;
|
|
uint8_t ___Data_2;
|
|
};
|
|
|
|
// System.DateTimeParse/DS
|
|
struct DS_t4210ADFA858C9858D9B59DDB281DAAEA614E4CC9
|
|
{
|
|
// System.Int32 System.DateTimeParse/DS::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Guid/GuidResult
|
|
struct GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79
|
|
{
|
|
// System.Guid System.Guid/GuidResult::_parsedGuid
|
|
Guid_t ____parsedGuid_0;
|
|
// System.Guid/GuidParseThrowStyle System.Guid/GuidResult::_throwStyle
|
|
int32_t ____throwStyle_1;
|
|
// System.Guid/ParseFailureKind System.Guid/GuidResult::_failure
|
|
int32_t ____failure_2;
|
|
// System.String System.Guid/GuidResult::_failureMessageID
|
|
String_t* ____failureMessageID_3;
|
|
// System.Object System.Guid/GuidResult::_failureMessageFormatArgument
|
|
RuntimeObject* ____failureMessageFormatArgument_4;
|
|
// System.String System.Guid/GuidResult::_failureArgumentName
|
|
String_t* ____failureArgumentName_5;
|
|
// System.Exception System.Guid/GuidResult::_innerException
|
|
Exception_t* ____innerException_6;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Guid/GuidResult
|
|
struct GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79_marshaled_pinvoke
|
|
{
|
|
Guid_t ____parsedGuid_0;
|
|
int32_t ____throwStyle_1;
|
|
int32_t ____failure_2;
|
|
char* ____failureMessageID_3;
|
|
Il2CppIUnknown* ____failureMessageFormatArgument_4;
|
|
char* ____failureArgumentName_5;
|
|
Exception_t_marshaled_pinvoke* ____innerException_6;
|
|
};
|
|
// Native definition for COM marshalling of System.Guid/GuidResult
|
|
struct GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79_marshaled_com
|
|
{
|
|
Guid_t ____parsedGuid_0;
|
|
int32_t ____throwStyle_1;
|
|
int32_t ____failure_2;
|
|
Il2CppChar* ____failureMessageID_3;
|
|
Il2CppIUnknown* ____failureMessageFormatArgument_4;
|
|
Il2CppChar* ____failureArgumentName_5;
|
|
Exception_t_marshaled_com* ____innerException_6;
|
|
};
|
|
|
|
// System.ReadOnlySpan`1<System.Byte>
|
|
struct ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D
|
|
{
|
|
// System.ByReference`1<T> System.ReadOnlySpan`1::_pointer
|
|
ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC ____pointer_0;
|
|
// System.Int32 System.ReadOnlySpan`1::_length
|
|
int32_t ____length_1;
|
|
};
|
|
|
|
// System.ReadOnlySpan`1<System.Char>
|
|
struct ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1
|
|
{
|
|
// System.ByReference`1<T> System.ReadOnlySpan`1::_pointer
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer_0;
|
|
// System.Int32 System.ReadOnlySpan`1::_length
|
|
int32_t ____length_1;
|
|
};
|
|
|
|
// System.Span`1<System.Byte>
|
|
struct Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305
|
|
{
|
|
// System.ByReference`1<T> System.Span`1::_pointer
|
|
ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC ____pointer_0;
|
|
// System.Int32 System.Span`1::_length
|
|
int32_t ____length_1;
|
|
};
|
|
|
|
// System.Span`1<System.Char>
|
|
struct Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D
|
|
{
|
|
// System.ByReference`1<T> System.Span`1::_pointer
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer_0;
|
|
// System.Int32 System.Span`1::_length
|
|
int32_t ____length_1;
|
|
};
|
|
|
|
// System.Gen2GcCallback
|
|
struct Gen2GcCallback_t95317B7364AE6717C822CED7AD5D4227F8674786 : public CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9
|
|
{
|
|
// System.Func`2<System.Object,System.Boolean> System.Gen2GcCallback::_callback
|
|
Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ____callback_0;
|
|
// System.Runtime.InteropServices.GCHandle System.Gen2GcCallback::_weakTargetObj
|
|
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ____weakTargetObj_1;
|
|
};
|
|
|
|
// System.MulticastDelegate
|
|
struct MulticastDelegate_t : public Delegate_t
|
|
{
|
|
// System.Delegate[] System.MulticastDelegate::delegates
|
|
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.MulticastDelegate
|
|
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
|
|
{
|
|
Delegate_t_marshaled_pinvoke** ___delegates_13;
|
|
};
|
|
// Native definition for COM marshalling of System.MulticastDelegate
|
|
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
|
|
{
|
|
Delegate_t_marshaled_com** ___delegates_13;
|
|
};
|
|
|
|
// System.SystemException
|
|
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
|
{
|
|
};
|
|
|
|
// System.Type
|
|
struct Type_t : public MemberInfo_t
|
|
{
|
|
// System.RuntimeTypeHandle System.Type::_impl
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8;
|
|
};
|
|
|
|
// System.Func`2<System.Object,System.Boolean>
|
|
struct Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.ArgumentException
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
// System.String System.ArgumentException::_paramName
|
|
String_t* ____paramName_18;
|
|
};
|
|
|
|
// System.ArithmeticException
|
|
struct ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// System.DTSubString
|
|
struct DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70
|
|
{
|
|
// System.ReadOnlySpan`1<System.Char> System.DTSubString::s
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___s_0;
|
|
// System.Int32 System.DTSubString::index
|
|
int32_t ___index_1;
|
|
// System.Int32 System.DTSubString::length
|
|
int32_t ___length_2;
|
|
// System.DTSubStringType System.DTSubString::type
|
|
int32_t ___type_3;
|
|
// System.Int32 System.DTSubString::value
|
|
int32_t ___value_4;
|
|
};
|
|
|
|
// System.DateTimeResult
|
|
struct DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722
|
|
{
|
|
// System.Int32 System.DateTimeResult::Year
|
|
int32_t ___Year_0;
|
|
// System.Int32 System.DateTimeResult::Month
|
|
int32_t ___Month_1;
|
|
// System.Int32 System.DateTimeResult::Day
|
|
int32_t ___Day_2;
|
|
// System.Int32 System.DateTimeResult::Hour
|
|
int32_t ___Hour_3;
|
|
// System.Int32 System.DateTimeResult::Minute
|
|
int32_t ___Minute_4;
|
|
// System.Int32 System.DateTimeResult::Second
|
|
int32_t ___Second_5;
|
|
// System.Double System.DateTimeResult::fraction
|
|
double ___fraction_6;
|
|
// System.Int32 System.DateTimeResult::era
|
|
int32_t ___era_7;
|
|
// System.ParseFlags System.DateTimeResult::flags
|
|
int32_t ___flags_8;
|
|
// System.TimeSpan System.DateTimeResult::timeZoneOffset
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___timeZoneOffset_9;
|
|
// System.Globalization.Calendar System.DateTimeResult::calendar
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_10;
|
|
// System.DateTime System.DateTimeResult::parsedDate
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___parsedDate_11;
|
|
// System.ParseFailureKind System.DateTimeResult::failure
|
|
int32_t ___failure_12;
|
|
// System.String System.DateTimeResult::failureMessageID
|
|
String_t* ___failureMessageID_13;
|
|
// System.Object System.DateTimeResult::failureMessageFormatArgument
|
|
RuntimeObject* ___failureMessageFormatArgument_14;
|
|
// System.String System.DateTimeResult::failureArgumentName
|
|
String_t* ___failureArgumentName_15;
|
|
// System.ReadOnlySpan`1<System.Char> System.DateTimeResult::originalDateTimeString
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___originalDateTimeString_16;
|
|
// System.ReadOnlySpan`1<System.Char> System.DateTimeResult::failedFormatSpecifier
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___failedFormatSpecifier_17;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.DateTimeResult
|
|
struct DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722_marshaled_pinvoke
|
|
{
|
|
int32_t ___Year_0;
|
|
int32_t ___Month_1;
|
|
int32_t ___Day_2;
|
|
int32_t ___Hour_3;
|
|
int32_t ___Minute_4;
|
|
int32_t ___Second_5;
|
|
double ___fraction_6;
|
|
int32_t ___era_7;
|
|
int32_t ___flags_8;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___timeZoneOffset_9;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_10;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___parsedDate_11;
|
|
int32_t ___failure_12;
|
|
char* ___failureMessageID_13;
|
|
Il2CppIUnknown* ___failureMessageFormatArgument_14;
|
|
char* ___failureArgumentName_15;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___originalDateTimeString_16;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___failedFormatSpecifier_17;
|
|
};
|
|
// Native definition for COM marshalling of System.DateTimeResult
|
|
struct DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722_marshaled_com
|
|
{
|
|
int32_t ___Year_0;
|
|
int32_t ___Month_1;
|
|
int32_t ___Day_2;
|
|
int32_t ___Hour_3;
|
|
int32_t ___Minute_4;
|
|
int32_t ___Second_5;
|
|
double ___fraction_6;
|
|
int32_t ___era_7;
|
|
int32_t ___flags_8;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___timeZoneOffset_9;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_10;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___parsedDate_11;
|
|
int32_t ___failure_12;
|
|
Il2CppChar* ___failureMessageID_13;
|
|
Il2CppIUnknown* ___failureMessageFormatArgument_14;
|
|
Il2CppChar* ___failureArgumentName_15;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___originalDateTimeString_16;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___failedFormatSpecifier_17;
|
|
};
|
|
|
|
// System.EventHandler
|
|
struct EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.ExecutionEngineException
|
|
struct ExecutionEngineException_t9840A50B0A8C687BF6E12A2BD1F26B188BEDD426 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// System.FormatException
|
|
struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// System.IndexOutOfRangeException
|
|
struct IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// System.InvalidCastException
|
|
struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// System.MemberAccessException
|
|
struct MemberAccessException_t4BB9AF02B906BB4818600FC8988DECA4D37F2EFC : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// System.NotSupportedException
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// System.Runtime.Serialization.SerializationException
|
|
struct SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// System.TypeLoadException
|
|
struct TypeLoadException_t6333E3083F7BFF1A582969E6F67ACBA8B0035C32 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
// System.String System.TypeLoadException::ClassName
|
|
String_t* ___ClassName_18;
|
|
// System.String System.TypeLoadException::AssemblyName
|
|
String_t* ___AssemblyName_19;
|
|
// System.String System.TypeLoadException::MessageArg
|
|
String_t* ___MessageArg_20;
|
|
// System.Int32 System.TypeLoadException::ResourceId
|
|
int32_t ___ResourceId_21;
|
|
};
|
|
|
|
// System.__DTString
|
|
struct __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637
|
|
{
|
|
// System.ReadOnlySpan`1<System.Char> System.__DTString::Value
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___Value_0;
|
|
// System.Int32 System.__DTString::Index
|
|
int32_t ___Index_1;
|
|
// System.Char System.__DTString::m_current
|
|
Il2CppChar ___m_current_2;
|
|
// System.Globalization.CompareInfo System.__DTString::m_info
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___m_info_3;
|
|
// System.Boolean System.__DTString::m_checkDigitToken
|
|
bool ___m_checkDigitToken_4;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.__DTString
|
|
struct __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_marshaled_pinvoke
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___Value_0;
|
|
int32_t ___Index_1;
|
|
uint8_t ___m_current_2;
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___m_info_3;
|
|
int32_t ___m_checkDigitToken_4;
|
|
};
|
|
// Native definition for COM marshalling of System.__DTString
|
|
struct __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_marshaled_com
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___Value_0;
|
|
int32_t ___Index_1;
|
|
uint8_t ___m_current_2;
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___m_info_3;
|
|
int32_t ___m_checkDigitToken_4;
|
|
};
|
|
|
|
// System.ArgumentNullException
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
};
|
|
|
|
// System.ArgumentOutOfRangeException
|
|
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
// System.Object System.ArgumentOutOfRangeException::_actualValue
|
|
RuntimeObject* ____actualValue_19;
|
|
};
|
|
|
|
// System.DivideByZeroException
|
|
struct DivideByZeroException_tC43171E50A38F5CD4242D258D0B0C6B74898C279 : public ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA
|
|
{
|
|
};
|
|
|
|
// System.DllNotFoundException
|
|
struct DllNotFoundException_t8CAE636A394C482C9FCF38FB7B7929506319D534 : public TypeLoadException_t6333E3083F7BFF1A582969E6F67ACBA8B0035C32
|
|
{
|
|
};
|
|
|
|
// System.EntryPointNotFoundException
|
|
struct EntryPointNotFoundException_t15F4C4ABBCF00C39FC1C2C903F15DF41055C1743 : public TypeLoadException_t6333E3083F7BFF1A582969E6F67ACBA8B0035C32
|
|
{
|
|
};
|
|
|
|
// System.FieldAccessException
|
|
struct FieldAccessException_t5DD5AAFAF0F0F827EC0D4F89773CD46FD45AE21A : public MemberAccessException_t4BB9AF02B906BB4818600FC8988DECA4D37F2EFC
|
|
{
|
|
};
|
|
|
|
// System.OverflowException
|
|
struct OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C : public ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA
|
|
{
|
|
};
|
|
|
|
// System.PlatformNotSupportedException
|
|
struct PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A : public NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A
|
|
{
|
|
};
|
|
|
|
// System.AppContextSwitches
|
|
struct AppContextSwitches_t542F10E9BE2333B7BE24C8858C8A24EFA6C06D38_StaticFields
|
|
{
|
|
// System.Boolean System.AppContextSwitches::EnforceJapaneseEraYearRanges
|
|
bool ___EnforceJapaneseEraYearRanges_0;
|
|
// System.Boolean System.AppContextSwitches::FormatJapaneseFirstYearAsANumber
|
|
bool ___FormatJapaneseFirstYearAsANumber_1;
|
|
// System.Boolean System.AppContextSwitches::EnforceLegacyJapaneseDateParsing
|
|
bool ___EnforceLegacyJapaneseDateParsing_2;
|
|
};
|
|
|
|
// System.AppContextSwitches
|
|
|
|
// System.Attribute
|
|
|
|
// System.Attribute
|
|
|
|
// System.Globalization.Calendar
|
|
|
|
// System.Globalization.Calendar
|
|
|
|
// System.Globalization.CompareInfo
|
|
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields
|
|
{
|
|
// System.Globalization.CompareInfo System.Globalization.CompareInfo::Invariant
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___Invariant_4;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.ISimpleCollator> System.Globalization.CompareInfo::collators
|
|
Dictionary_2_tFA0E7CD5951B83DD87A65E89D971A68E538F9470* ___collators_10;
|
|
// System.Boolean System.Globalization.CompareInfo::managedCollation
|
|
bool ___managedCollation_11;
|
|
// System.Boolean System.Globalization.CompareInfo::managedCollationChecked
|
|
bool ___managedCollationChecked_12;
|
|
};
|
|
|
|
// System.Globalization.CompareInfo
|
|
|
|
// System.Runtime.ConstrainedExecution.CriticalFinalizerObject
|
|
|
|
// System.Runtime.ConstrainedExecution.CriticalFinalizerObject
|
|
|
|
// System.Globalization.CultureInfo
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_StaticFields
|
|
{
|
|
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___invariant_culture_info_0;
|
|
// System.Object System.Globalization.CultureInfo::shared_table_lock
|
|
RuntimeObject* ___shared_table_lock_1;
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___default_current_culture_2;
|
|
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentUICulture_34;
|
|
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentCulture_35;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
|
|
Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number_36;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
|
|
Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28* ___shared_by_name_37;
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::s_UserPreferredCultureInfoInAppX
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_UserPreferredCultureInfoInAppX_38;
|
|
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
|
|
bool ___IsTaiwanSku_39;
|
|
};
|
|
|
|
// System.Globalization.CultureInfo
|
|
|
|
// System.Globalization.DateTimeFormatInfo
|
|
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_StaticFields
|
|
{
|
|
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_invariantInfo
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___s_invariantInfo_0;
|
|
// System.Char[] System.Globalization.DateTimeFormatInfo::s_monthSpaces
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___s_monthSpaces_46;
|
|
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_jajpDTFI
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___s_jajpDTFI_80;
|
|
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_zhtwDTFI
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___s_zhtwDTFI_81;
|
|
};
|
|
|
|
// System.Globalization.DateTimeFormatInfo
|
|
|
|
// System.DateTimeParse
|
|
struct DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_StaticFields
|
|
{
|
|
// System.DateTimeParse/DS[][] System.DateTimeParse::dateParsingStates
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* ___dateParsingStates_0;
|
|
};
|
|
|
|
// System.DateTimeParse
|
|
|
|
// System.EventArgs
|
|
struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_StaticFields
|
|
{
|
|
// System.EventArgs System.EventArgs::Empty
|
|
EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___Empty_0;
|
|
};
|
|
|
|
// System.EventArgs
|
|
|
|
// System.Globalization.GlobalizationMode
|
|
struct GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_StaticFields
|
|
{
|
|
// System.Boolean System.Globalization.GlobalizationMode::<Invariant>k__BackingField
|
|
bool ___U3CInvariantU3Ek__BackingField_0;
|
|
};
|
|
|
|
// System.Globalization.GlobalizationMode
|
|
|
|
// System.Globalization.NumberFormatInfo
|
|
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472_StaticFields
|
|
{
|
|
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.NumberFormatInfo::invariantInfo
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___invariantInfo_0;
|
|
};
|
|
|
|
// System.Globalization.NumberFormatInfo
|
|
|
|
// System.Runtime.Serialization.SerializationInfo
|
|
|
|
// System.Runtime.Serialization.SerializationInfo
|
|
|
|
// System.String
|
|
struct String_t_StaticFields
|
|
{
|
|
// System.String System.String::Empty
|
|
String_t* ___Empty_6;
|
|
};
|
|
|
|
// System.String
|
|
|
|
// System.Text.StringBuilder
|
|
|
|
// System.Text.StringBuilder
|
|
|
|
// System.Boolean
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
|
|
{
|
|
// System.String System.Boolean::TrueString
|
|
String_t* ___TrueString_5;
|
|
// System.String System.Boolean::FalseString
|
|
String_t* ___FalseString_6;
|
|
};
|
|
|
|
// System.Boolean
|
|
|
|
// System.Byte
|
|
|
|
// System.Byte
|
|
|
|
// System.Char
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
|
|
{
|
|
// System.Byte[] System.Char::s_categoryForLatin1
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3;
|
|
};
|
|
|
|
// System.Char
|
|
|
|
// System.DateTime
|
|
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields
|
|
{
|
|
// System.Int32[] System.DateTime::s_daysToMonth365
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth365_30;
|
|
// System.Int32[] System.DateTime::s_daysToMonth366
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth366_31;
|
|
// System.DateTime System.DateTime::MinValue
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MinValue_32;
|
|
// System.DateTime System.DateTime::MaxValue
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MaxValue_33;
|
|
// System.DateTime System.DateTime::UnixEpoch
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___UnixEpoch_34;
|
|
};
|
|
|
|
// System.DateTime
|
|
|
|
// System.DateTimeRawInfo
|
|
|
|
// System.DateTimeRawInfo
|
|
|
|
// System.DateTimeToken
|
|
|
|
// System.DateTimeToken
|
|
|
|
// System.Decimal
|
|
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields
|
|
{
|
|
// System.Decimal System.Decimal::Zero
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___Zero_0;
|
|
// System.Decimal System.Decimal::One
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___One_1;
|
|
// System.Decimal System.Decimal::MinusOne
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinusOne_2;
|
|
// System.Decimal System.Decimal::MaxValue
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MaxValue_3;
|
|
// System.Decimal System.Decimal::MinValue
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinValue_4;
|
|
};
|
|
|
|
// System.Decimal
|
|
|
|
// System.Double
|
|
|
|
// System.Double
|
|
|
|
// System.FlagsAttribute
|
|
|
|
// System.FlagsAttribute
|
|
|
|
// System.Guid
|
|
struct Guid_t_StaticFields
|
|
{
|
|
// System.Guid System.Guid::Empty
|
|
Guid_t ___Empty_0;
|
|
};
|
|
|
|
// System.Guid
|
|
|
|
// System.Int16
|
|
|
|
// System.Int16
|
|
|
|
// System.Int32
|
|
|
|
// System.Int32
|
|
|
|
// System.Int64
|
|
|
|
// System.Int64
|
|
|
|
// System.IntPtr
|
|
struct IntPtr_t_StaticFields
|
|
{
|
|
// System.IntPtr System.IntPtr::Zero
|
|
intptr_t ___Zero_1;
|
|
};
|
|
|
|
// System.IntPtr
|
|
|
|
// System.SByte
|
|
|
|
// System.SByte
|
|
|
|
// System.Single
|
|
|
|
// System.Single
|
|
|
|
// System.Runtime.Serialization.StreamingContext
|
|
|
|
// System.Runtime.Serialization.StreamingContext
|
|
|
|
// System.TimeSpan
|
|
struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields
|
|
{
|
|
// System.TimeSpan System.TimeSpan::Zero
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Zero_19;
|
|
// System.TimeSpan System.TimeSpan::MaxValue
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MaxValue_20;
|
|
// System.TimeSpan System.TimeSpan::MinValue
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MinValue_21;
|
|
};
|
|
|
|
// System.TimeSpan
|
|
|
|
// System.UInt16
|
|
|
|
// System.UInt16
|
|
|
|
// System.UInt32
|
|
|
|
// System.UInt32
|
|
|
|
// System.UInt64
|
|
|
|
// System.UInt64
|
|
|
|
// System.Void
|
|
|
|
// System.Void
|
|
|
|
// System.ByReference`1<System.Byte>
|
|
|
|
// System.ByReference`1<System.Byte>
|
|
|
|
// System.ByReference`1<System.Char>
|
|
|
|
// System.ByReference`1<System.Char>
|
|
|
|
// System.DateTimeFormat
|
|
struct DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields
|
|
{
|
|
// System.TimeSpan System.DateTimeFormat::NullOffset
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___NullOffset_0;
|
|
// System.Char[] System.DateTimeFormat::allStandardFormats
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___allStandardFormats_1;
|
|
// System.Globalization.DateTimeFormatInfo System.DateTimeFormat::InvariantFormatInfo
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___InvariantFormatInfo_2;
|
|
// System.String[] System.DateTimeFormat::InvariantAbbreviatedMonthNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___InvariantAbbreviatedMonthNames_3;
|
|
// System.String[] System.DateTimeFormat::InvariantAbbreviatedDayNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___InvariantAbbreviatedDayNames_4;
|
|
// System.String[] System.DateTimeFormat::fixedNumberFormats
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___fixedNumberFormats_5;
|
|
};
|
|
|
|
// System.DateTimeFormat
|
|
|
|
// System.DateTimeOffset
|
|
struct DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_StaticFields
|
|
{
|
|
// System.DateTimeOffset System.DateTimeOffset::MinValue
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___MinValue_0;
|
|
// System.DateTimeOffset System.DateTimeOffset::MaxValue
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___MaxValue_1;
|
|
// System.DateTimeOffset System.DateTimeOffset::UnixEpoch
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___UnixEpoch_2;
|
|
};
|
|
|
|
// System.DateTimeOffset
|
|
|
|
// System.Delegate
|
|
|
|
// System.Delegate
|
|
|
|
// System.Exception
|
|
struct Exception_t_StaticFields
|
|
{
|
|
// System.Object System.Exception::s_EDILock
|
|
RuntimeObject* ___s_EDILock_0;
|
|
};
|
|
|
|
// System.Exception
|
|
|
|
// System.Runtime.InteropServices.GCHandle
|
|
|
|
// System.Runtime.InteropServices.GCHandle
|
|
|
|
// System.RuntimeFieldHandle
|
|
|
|
// System.RuntimeFieldHandle
|
|
|
|
// System.RuntimeTypeHandle
|
|
|
|
// System.RuntimeTypeHandle
|
|
|
|
// System.TimeZoneInfo
|
|
struct TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields
|
|
{
|
|
// System.TimeZoneInfo System.TimeZoneInfo::s_utcTimeZone
|
|
TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___s_utcTimeZone_7;
|
|
// System.TimeZoneInfo/CachedData System.TimeZoneInfo::s_cachedData
|
|
CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* ___s_cachedData_8;
|
|
// System.DateTime System.TimeZoneInfo::s_maxDateOnly
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___s_maxDateOnly_9;
|
|
// System.DateTime System.TimeZoneInfo::s_minDateOnly
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___s_minDateOnly_10;
|
|
// System.TimeSpan System.TimeZoneInfo::MaxOffset
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MaxOffset_11;
|
|
// System.TimeSpan System.TimeZoneInfo::MinOffset
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MinOffset_12;
|
|
};
|
|
|
|
// System.TimeZoneInfo
|
|
|
|
// System.Array/RawData
|
|
|
|
// System.Array/RawData
|
|
|
|
// System.DateTimeParse/DS
|
|
|
|
// System.DateTimeParse/DS
|
|
|
|
// System.Guid/GuidResult
|
|
|
|
// System.Guid/GuidResult
|
|
|
|
// System.ReadOnlySpan`1<System.Byte>
|
|
|
|
// System.ReadOnlySpan`1<System.Byte>
|
|
|
|
// System.ReadOnlySpan`1<System.Char>
|
|
|
|
// System.ReadOnlySpan`1<System.Char>
|
|
|
|
// System.Span`1<System.Byte>
|
|
|
|
// System.Span`1<System.Byte>
|
|
|
|
// System.Span`1<System.Char>
|
|
|
|
// System.Span`1<System.Char>
|
|
|
|
// System.Gen2GcCallback
|
|
|
|
// System.Gen2GcCallback
|
|
|
|
// System.SystemException
|
|
|
|
// System.SystemException
|
|
|
|
// System.Type
|
|
struct Type_t_StaticFields
|
|
{
|
|
// System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder
|
|
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0;
|
|
// System.Char System.Type::Delimiter
|
|
Il2CppChar ___Delimiter_1;
|
|
// System.Type[] System.Type::EmptyTypes
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2;
|
|
// System.Object System.Type::Missing
|
|
RuntimeObject* ___Missing_3;
|
|
// System.Reflection.MemberFilter System.Type::FilterAttribute
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4;
|
|
// System.Reflection.MemberFilter System.Type::FilterName
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5;
|
|
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6;
|
|
};
|
|
|
|
// System.Type
|
|
|
|
// System.Func`2<System.Object,System.Boolean>
|
|
|
|
// System.Func`2<System.Object,System.Boolean>
|
|
|
|
// System.ArgumentException
|
|
|
|
// System.ArgumentException
|
|
|
|
// System.ArithmeticException
|
|
|
|
// System.ArithmeticException
|
|
|
|
// System.DTSubString
|
|
|
|
// System.DTSubString
|
|
|
|
// System.DateTimeResult
|
|
|
|
// System.DateTimeResult
|
|
|
|
// System.EventHandler
|
|
|
|
// System.EventHandler
|
|
|
|
// System.ExecutionEngineException
|
|
|
|
// System.ExecutionEngineException
|
|
|
|
// System.FormatException
|
|
|
|
// System.FormatException
|
|
|
|
// System.IndexOutOfRangeException
|
|
|
|
// System.IndexOutOfRangeException
|
|
|
|
// System.InvalidCastException
|
|
|
|
// System.InvalidCastException
|
|
|
|
// System.MemberAccessException
|
|
|
|
// System.MemberAccessException
|
|
|
|
// System.Runtime.Serialization.SerializationException
|
|
struct SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_StaticFields
|
|
{
|
|
// System.String System.Runtime.Serialization.SerializationException::s_nullMessage
|
|
String_t* ___s_nullMessage_18;
|
|
};
|
|
|
|
// System.Runtime.Serialization.SerializationException
|
|
|
|
// System.TypeLoadException
|
|
|
|
// System.TypeLoadException
|
|
|
|
// System.__DTString
|
|
struct __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_StaticFields
|
|
{
|
|
// System.Char[] System.__DTString::WhiteSpaceChecks
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___WhiteSpaceChecks_5;
|
|
};
|
|
|
|
// System.__DTString
|
|
|
|
// System.ArgumentNullException
|
|
|
|
// System.ArgumentNullException
|
|
|
|
// System.ArgumentOutOfRangeException
|
|
|
|
// System.ArgumentOutOfRangeException
|
|
|
|
// System.DivideByZeroException
|
|
|
|
// System.DivideByZeroException
|
|
|
|
// System.DllNotFoundException
|
|
|
|
// System.DllNotFoundException
|
|
|
|
// System.EntryPointNotFoundException
|
|
|
|
// System.EntryPointNotFoundException
|
|
|
|
// System.FieldAccessException
|
|
|
|
// System.FieldAccessException
|
|
|
|
// System.OverflowException
|
|
|
|
// System.OverflowException
|
|
|
|
// System.PlatformNotSupportedException
|
|
|
|
// System.PlatformNotSupportedException
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
// System.Delegate[]
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Delegate_t* m_Items[1];
|
|
|
|
inline Delegate_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.String[]
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) String_t* m_Items[1];
|
|
|
|
inline String_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline String_t** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, String_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Char[]
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Il2CppChar m_Items[1];
|
|
|
|
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// System.DateTimeParse/DS[]
|
|
struct DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) int32_t m_Items[1];
|
|
|
|
inline int32_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// System.DateTimeParse/DS[][]
|
|
struct DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* m_Items[1];
|
|
|
|
inline DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Byte[]
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) uint8_t m_Items[1];
|
|
|
|
inline uint8_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
|
|
|
|
// TResult System.Func`2<System.Object,System.Boolean>::Invoke(T)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Func_2_Invoke_m2014423FB900F135C8FF994125604FF9E6AAE829_gshared_inline (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method) ;
|
|
// System.Int32 System.ReadOnlySpan`1<System.Char>::get_Length()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method) ;
|
|
// System.ReadOnlySpan`1<T> System.Runtime.InteropServices.MemoryMarshal::CreateReadOnlySpan<System.Char>(T&,System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryMarshal_CreateReadOnlySpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m6AC28EB03E267661349B40C5A925602DAC3F1C11_gshared_inline (Il2CppChar* ___0_reference, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
// System.Void System.Span`1<System.Char>::.ctor(System.Void*,System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
// System.Span`1<T> System.Span`1<System.Char>::Slice(System.Int32,System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, int32_t ___0_start, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
// System.String System.Span`1<System.Char>::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Span_1_ToString_m12316C6CDC05E2F49EA4BDAD78FD7F1718E6E980_gshared (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Span`1<System.Char>::.ctor(T&,System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Span`1<System.Char>::get_Length()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, const RuntimeMethod* method) ;
|
|
// System.ReadOnlySpan`1<T> System.ReadOnlySpan`1<System.Char>::Slice(System.Int32,System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, int32_t ___0_start, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
// System.Void System.ReadOnlySpan`1<System.Byte>::.ctor(T[])
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, const RuntimeMethod* method) ;
|
|
// System.Int32 System.ReadOnlySpan`1<System.Byte>::get_Length()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.MemoryExtensions::IndexOf<System.Char>(System.ReadOnlySpan`1<T>,T)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_span, Il2CppChar ___1_value, const RuntimeMethod* method) ;
|
|
// System.ReadOnlySpan`1<T> System.ReadOnlySpan`1<System.Char>::Slice(System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, int32_t ___0_start, const RuntimeMethod* method) ;
|
|
// System.Void System.Span`1<System.Byte>::.ctor(System.Void*,System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Span`1<System.Byte>::get_Length()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, const RuntimeMethod* method) ;
|
|
// System.Span`1<T> System.Span`1<System.Char>::op_Implicit(T[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_op_Implicit_mA0E9FDCF2C5113BA9F9C4964D17D8BDFBD6F3C98_gshared (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_array, const RuntimeMethod* method) ;
|
|
// System.Void System.ReadOnlySpan`1<System.Char>::CopyTo(System.Span`1<T>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, const RuntimeMethod* method) ;
|
|
// System.Void System.ReadOnlySpan`1<System.Char>::.ctor(T[],System.Int32,System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_mDADE08E6B4594775C6675B389078E5FE98C745D5_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_array, int32_t ___1_start, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
// T& System.Runtime.InteropServices.MemoryMarshal::GetReference<System.Char>(System.Span`1<T>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m7FA6FA19030FDE5E3810FBFFD0FD8D6D36172527_gshared (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_span, const RuntimeMethod* method) ;
|
|
// System.Void System.ReadOnlySpan`1<System.Char>::.ctor(T&,System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
// System.Boolean System.MemoryExtensions::SequenceEqual<System.Char>(System.ReadOnlySpan`1<T>,System.ReadOnlySpan`1<T>)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MemoryExtensions_SequenceEqual_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m5C4C602E94DF85548E163F2D3FE9DDCA36C7E3E6_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_span, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_other, const RuntimeMethod* method) ;
|
|
|
|
// System.Int16 System.DateTimeOffset::ValidateOffset(System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t DateTimeOffset_ValidateOffset_m5AC06D0C6ADE061A34727812EB9F2C7518D8F50D (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_offset, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTime::.ctor(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int64_t ___0_ticks, const RuntimeMethod* method) ;
|
|
// System.DateTime System.DateTimeOffset::ValidateDate(System.DateTime,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeOffset_ValidateDate_mCDCD3DE0618C87FB8B45855466077F049C75DAFF (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_offset, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeOffset::.ctor(System.Int64,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffset__ctor_m81DCBFF0B9D7029AD6B8B80EA4CB8846387DFB9A (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, int64_t ___0_ticks, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_offset, const RuntimeMethod* method) ;
|
|
// System.DateTimeKind System.DateTime::get_Kind()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
|
|
// System.TimeSpan System.TimeZoneInfo::GetLocalUtcOffset(System.DateTime,System.TimeZoneInfoOptions)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetLocalUtcOffset_m3D55DA415FB33A0721CF19FBCAB899EB8EAC4433 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, int32_t ___1_flags, const RuntimeMethod* method) ;
|
|
// System.Void System.TimeSpan::.ctor(System.Int64)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimeSpan__ctor_m061B122FA11D2063FE751C1F1D019DF1C8B10B1F_inline (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, int64_t ___0_ticks, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeOffset::.ctor(System.DateTime)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffset__ctor_mB1671EA00463E92811C8DEA80797DC89B2FFCA62 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, const RuntimeMethod* method) ;
|
|
// System.Boolean System.TimeSpan::op_Inequality(System.TimeSpan,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_Inequality_m2248419A8BCC8744CADE25174238B24AE34F17DB (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_t1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t2, const RuntimeMethod* method) ;
|
|
// System.Void System.ArgumentException::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, String_t* ___1_paramName, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeOffset::.ctor(System.DateTime,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffset__ctor_m6E6938BD1F5EEE0F96247339B75FB7CEF3665FDC (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_offset, const RuntimeMethod* method) ;
|
|
// System.DateTime System.DateTime::SpecifyKind(System.DateTime,System.DateTimeKind)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_SpecifyKind_mFC3F6DD6AD017F62A8AF81DAD5620AEC474871D0 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_value, int32_t ___1_kind, const RuntimeMethod* method) ;
|
|
// System.DateTime System.DateTimeOffset::get_UtcDateTime()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, const RuntimeMethod* method) ;
|
|
// System.TimeSpan System.DateTimeOffset::get_Offset()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTimeOffset_get_Offset_mE90E2548227F1EE8BF4A6A5EB71B32D48D3035A4 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, const RuntimeMethod* method) ;
|
|
// System.DateTime System.DateTime::op_Addition(System.DateTime,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_op_Addition_m652BE1306897DBE4CDF3ADA99FFFE2E70BFE3865 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_d, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t, const RuntimeMethod* method) ;
|
|
// System.Int64 System.DateTime::get_Ticks()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTime::.ctor(System.Int64,System.DateTimeKind)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int64_t ___0_ticks, int32_t ___1_kind, const RuntimeMethod* method) ;
|
|
// System.DateTime System.DateTimeOffset::get_ClockDateTime()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeOffset_get_ClockDateTime_mEBD2897618EB54200ADD029865ED6F73CB762D43 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.TimeSpan::.ctor(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, int32_t ___0_hours, int32_t ___1_minutes, int32_t ___2_seconds, const RuntimeMethod* method) ;
|
|
// System.DateTime System.DateTime::AddTicks(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int64_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.DateTimeOffset System.DateTimeOffset::AddTicks(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 DateTimeOffset_AddTicks_mE58569EF44AAA299CC921A935AF5277DC2D10902 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, int64_t ___0_ticks, const RuntimeMethod* method) ;
|
|
// System.Void System.ArgumentException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTime::op_GreaterThan(System.DateTime,System.DateTime)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_GreaterThan_m8F1FA3C039A0148FC1500E790A77CB44F025EA9F (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_t1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_t2, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTime::op_LessThan(System.DateTime,System.DateTime)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_t1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_t2, const RuntimeMethod* method) ;
|
|
// System.Int32 System.DateTimeOffset::System.IComparable.CompareTo(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeOffset_System_IComparable_CompareTo_m992E97179503D66B0CEC5A97DD205F7F0D0C346E (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Int32 System.DateTimeOffset::CompareTo(System.DateTimeOffset)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeOffset_CompareTo_mDBDCA54C17FD088B3EE9ACDA2118C9FAD1DA103A (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___0_other, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTime::Equals(System.DateTime)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_Equals_m83D001F1C86DC58C2B0AE99DD2FAB12669B10C1B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_value, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeOffset::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeOffset_Equals_m140EDD50EA8FDA74619AA64737497663B56B0483 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeOffset::Equals(System.DateTimeOffset)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeOffset_Equals_m68D2F02214D74BE8742B3F089E7EB019AA5B90E7 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___0_other, const RuntimeMethod* method) ;
|
|
// System.DateTime System.DateTime::FromFileTime(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_FromFileTime_m222D518E725E95C1FBD8F4FADE4162D6878101DA (int64_t ___0_fileTime, const RuntimeMethod* method) ;
|
|
// System.String SR::Format(System.String,System.Object,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02 (String_t* ___0_resourceFormat, RuntimeObject* ___1_p1, RuntimeObject* ___2_p2, const RuntimeMethod* method) ;
|
|
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___0_paramName, String_t* ___1_message, const RuntimeMethod* method) ;
|
|
// System.Void System.Runtime.Serialization.SerializationException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationException__ctor_m8CF86DA30D4F95904BF5C1A9CF646DE92EB8C161 (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeOffset::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffset_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC8A5AB3C859C85FC462C4C7BF684B4F467C397F5 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, RuntimeObject* ___0_sender, const RuntimeMethod* method) ;
|
|
// System.Void System.ArgumentNullException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
|
|
// System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.DateTime)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m820C29058E845C4A30DDA9D7A235F693469C0358 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int16)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m813739AF0F2C3F6FC96CD5EE4200134E39D6BDB3 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, int16_t ___1_value, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeOffset::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffset_System_Runtime_Serialization_ISerializable_GetObjectData_m9708DEBDA52F7130E3E3946C1F86507DCCE1883C (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ;
|
|
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___0_handle, const RuntimeMethod* method) ;
|
|
// System.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, Type_t* ___1_type, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeOffset::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffset__ctor_m3F044A6B1D54C1067C87CFF8C7B930D0F613041D (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ;
|
|
// System.Int32 System.DateTime::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_GetHashCode_m206A3B9394E6D089311A1A81305A5A1AB30B2D99 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.DateTimeOffset::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeOffset_GetHashCode_mD133F5089095D2C75A1B7C90D71D62D39F0D11CD (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, const RuntimeMethod* method) ;
|
|
// System.DateTimeOffset System.DateTimeOffset::ToLocalTime(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 DateTimeOffset_ToLocalTime_mBB86E57ECB88BB909D4853F584CB2C213A758462 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, bool ___0_throwOnOverflow, const RuntimeMethod* method) ;
|
|
// System.DateTimeOffset System.DateTimeOffset::ToLocalTime()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 DateTimeOffset_ToLocalTime_mEFEE0815D555AF14CBDB4C8ACF508C8E9601549B (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, const RuntimeMethod* method) ;
|
|
// System.DateTime System.DateTime::ToLocalTime(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_ToLocalTime_mC7A8D4FD1DBFDD1E596D1BEE0257AA777FCB0595 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, bool ___0_throwOnOverflow, const RuntimeMethod* method) ;
|
|
// System.String System.DateTimeFormat::Format(System.DateTime,System.String,System.IFormatProvider,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormat_Format_mE29072D46A40E3F42E100A7F85452B42B8DC692B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, String_t* ___1_format, RuntimeObject* ___2_provider, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___3_offset, const RuntimeMethod* method) ;
|
|
// System.String System.DateTimeOffset::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeOffset_ToString_m6179A30F1E22CDF5F9340DFE115E923C18BC13F9 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, const RuntimeMethod* method) ;
|
|
// System.String System.DateTimeOffset::ToString(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeOffset_ToString_m4B5BB65E069D2146E808A1CE5F424ACA2F4D2281 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, String_t* ___0_format, RuntimeObject* ___1_formatProvider, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeFormat::TryFormat(System.DateTime,System.Span`1<System.Char>,System.Int32&,System.ReadOnlySpan`1<System.Char>,System.IFormatProvider,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeFormat_TryFormat_mFBA0ED63E8D61B02348D9278A7132CEAE2258837 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___1_destination, int32_t* ___2_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___3_format, RuntimeObject* ___4_provider, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___5_offset, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeOffset::TryFormat(System.Span`1<System.Char>,System.Int32&,System.ReadOnlySpan`1<System.Char>,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeOffset_TryFormat_mBC9268BD19855CF3E7CF947720996B57CCD98F06 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, RuntimeObject* ___3_formatProvider, const RuntimeMethod* method) ;
|
|
// System.Int64 System.TimeSpan::get_Ticks()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.ArithmeticException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_m84E573C2093803DC9E6219461275B351D225C16A (ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
// System.Void System.Exception::set_HResult(System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline (Exception_t* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.ArithmeticException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_m9F97AB2FDC9EED4A59627F1F2F6165AB592F8942 (ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ;
|
|
// System.Void System.TypeLoadException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeLoadException__ctor_m8C6FC5CF78B256F19356A241115BF03E64B7C00A (TypeLoadException_t6333E3083F7BFF1A582969E6F67ACBA8B0035C32* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
// System.Void System.TypeLoadException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeLoadException__ctor_m89C9BE840B2C552C3F378FE56804FE42BA69B583 (TypeLoadException_t6333E3083F7BFF1A582969E6F67ACBA8B0035C32* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ;
|
|
// System.Int64 System.BitConverter::DoubleToInt64Bits(System.Double)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline (double ___0_value, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Double::IsNaN(System.Double)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Double_IsNaN_mF2BC6D1FD4813179B2CAE58D29770E42830D0883_inline (double ___0_d, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Double::CompareTo(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_CompareTo_m2F47CE23700B216156455DDBF7ED4FA42FD8E941 (double* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Double::CompareTo(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_CompareTo_m40FD7CA33B178CCFA4B6755267DC67841092CCFC (double* __this, double ___0_value, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Double::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_Equals_m342E8F178661ABF8306D58D5F2130C58E0601DA3 (double* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Double::Equals(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_Equals_mAB526D98719C44EA42107A297B23A739F2E14138 (double* __this, double ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Double::GetHashCode()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Double_GetHashCode_m3761FC05AD24D97A68FA1E8412A9454DF3880E32_inline (double* __this, const RuntimeMethod* method) ;
|
|
// System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::get_CurrentInfo()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* NumberFormatInfo_get_CurrentInfo_m121C9878F777AD81289C7B2BF589293E509FD9B4 (const RuntimeMethod* method) ;
|
|
// System.String System.Number::FormatDouble(System.Double,System.String,System.Globalization.NumberFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Number_FormatDouble_m8200155FEB88CCDD03BF9C683156C0986AA5EFB0 (double ___0_value, String_t* ___1_format, NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___2_info, const RuntimeMethod* method) ;
|
|
// System.String System.Double::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m7499A5D792419537DCB9470A3675CEF5117DE339 (double* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Double::ToString(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m70EC76E1DAD7E8B5B47AF9292189BF3711B24B75 (double* __this, String_t* ___0_format, const RuntimeMethod* method) ;
|
|
// System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::GetInstance(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* NumberFormatInfo_GetInstance_m705987E5E7D3E5EC5C5DD2D088FBC9BCBA0FC31F (RuntimeObject* ___0_formatProvider, const RuntimeMethod* method) ;
|
|
// System.String System.Double::ToString(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m4318830D9F771852FDCF21C14CF9E8ABC7E77357 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ;
|
|
// System.String System.Double::ToString(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m7E3930DDFB35B1919FE538A246A59C3FC62AF789 (double* __this, String_t* ___0_format, RuntimeObject* ___1_provider, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Number::TryFormatDouble(System.Double,System.ReadOnlySpan`1<System.Char>,System.Globalization.NumberFormatInfo,System.Span`1<System.Char>,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_TryFormatDouble_m85B2DA0BCF2FF78A125AD3FAA11962B04D5C6C45 (double ___0_value, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_format, NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___2_info, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___3_destination, int32_t* ___4_charsWritten, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Double::TryFormat(System.Span`1<System.Char>,System.Int32&,System.ReadOnlySpan`1<System.Char>,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_TryFormat_m8629D6A6E11794F16DA5B6FB3B132A716CCF2BDF (double* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, RuntimeObject* ___3_provider, const RuntimeMethod* method) ;
|
|
// System.Void System.ThrowHelper::ThrowArgumentNullException(System.ExceptionArgument)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC (int32_t ___0_argument, const RuntimeMethod* method) ;
|
|
// System.ReadOnlySpan`1<System.Char> System.String::op_Implicit(System.String)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline (String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Double System.Number::ParseDouble(System.ReadOnlySpan`1<System.Char>,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Number_ParseDouble_mD1A4797230EA682B33EB458C5CADF71B575D482A (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_value, int32_t ___1_styles, NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___2_info, const RuntimeMethod* method) ;
|
|
// System.Void System.Globalization.NumberFormatInfo::ValidateParseStyleFloatingPoint(System.Globalization.NumberStyles)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatInfo_ValidateParseStyleFloatingPoint_mD18024FEBFD9A00AB82AB8EDBBD804368012CCF2 (int32_t ___0_style, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Double::TryParse(System.ReadOnlySpan`1<System.Char>,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo,System.Double&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_TryParse_m934BA1C2C971AB2A18256A6136B6E69316B35511 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_s, int32_t ___1_style, NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___2_info, double* ___3_result, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Number::TryParseDouble(System.ReadOnlySpan`1<System.Char>,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo,System.Double&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_TryParseDouble_m2E83A8A8DBA16DFE8B54050DCA10FC17C9A8D268 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_value, int32_t ___1_styles, NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___2_info, double* ___3_result, const RuntimeMethod* method) ;
|
|
// System.ReadOnlySpan`1<System.Char> System.MemoryExtensions::Trim(System.ReadOnlySpan`1<System.Char>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_Trim_m8062B15A9D800FE916FEF8755F6C4F38B66E6030 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_span, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.NumberFormatInfo::get_PositiveInfinitySymbol()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_PositiveInfinitySymbol_m022DC518C4D976C05E9160891169F238E744B160_inline (NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.MemoryExtensions::EqualsOrdinal(System.ReadOnlySpan`1<System.Char>,System.ReadOnlySpan`1<System.Char>)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MemoryExtensions_EqualsOrdinal_m50F3366691F8C10406AF0D385B5784D6EEA80C0A_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_span, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_value, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.NumberFormatInfo::get_NegativeInfinitySymbol()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NegativeInfinitySymbol_mE8995F15D392D0114D2A6DCE3C2B440A7BFE4173_inline (NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.NumberFormatInfo::get_NaNSymbol()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NaNSymbol_mD64FD5783A434442A15DF6DEDC6BC561ACB91ABC_inline (NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* __this, const RuntimeMethod* method) ;
|
|
// System.TypeCode System.Double::GetTypeCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_GetTypeCode_m111F564D8EDDBEB1C7D86F6985C2871982682F5B (double* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Convert::ToBoolean(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m92A8027B40D880C42CCBF1527275E85CCF79BFF4 (double ___0_value, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Double::System.IConvertible.ToBoolean(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_System_IConvertible_ToBoolean_mD8041628FF4EDD14D5FAD0ED5ADD928C5CF84193 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ;
|
|
// System.Void System.InvalidCastException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644 (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
// System.Char System.Double::System.IConvertible.ToChar(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Double_System_IConvertible_ToChar_m0180B3FD51938158886299F99C970B197349BC36 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ;
|
|
// System.SByte System.Convert::ToSByte(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m05A832AD69077878500D5430BAA62CEAE0C69E9A (double ___0_value, const RuntimeMethod* method) ;
|
|
// System.SByte System.Double::System.IConvertible.ToSByte(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Double_System_IConvertible_ToSByte_m4700059616C8EE45A3C88680192992CC77C0E3A8 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ;
|
|
// System.Byte System.Convert::ToByte(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m88201B22EF9B335B5792606D43769F0648B98B55 (double ___0_value, const RuntimeMethod* method) ;
|
|
// System.Byte System.Double::System.IConvertible.ToByte(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Double_System_IConvertible_ToByte_m360BF62CB5F1E1D13E9E6146B814D6ABF38FD125 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ;
|
|
// System.Int16 System.Convert::ToInt16(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mF86636F78E7A272307B7F20FE4E6318A1213138E (double ___0_value, const RuntimeMethod* method) ;
|
|
// System.Int16 System.Double::System.IConvertible.ToInt16(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Double_System_IConvertible_ToInt16_mD6B49313715DDEDFCAAF4CCD8BECE76745651EB9 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ;
|
|
// System.UInt16 System.Convert::ToUInt16(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mD76E9E8434AC1C72D68248D744D9DA2B2E9E9DD3 (double ___0_value, const RuntimeMethod* method) ;
|
|
// System.UInt16 System.Double::System.IConvertible.ToUInt16(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Double_System_IConvertible_ToUInt16_m05489B3BFCBE019A99D522B7154D39E49E770375 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Convert::ToInt32(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m6D078D86ABAED9A1C7F1D380527DBA5EC3F6C97A (double ___0_value, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Double::System.IConvertible.ToInt32(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_System_IConvertible_ToInt32_m926BDB2463A46A1E87CC43138C7CFABA6E06833C (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ;
|
|
// System.UInt32 System.Convert::ToUInt32(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m98F6DEA958A20A5F4B103F07BD5B28BA2FB80F1B (double ___0_value, const RuntimeMethod* method) ;
|
|
// System.UInt32 System.Double::System.IConvertible.ToUInt32(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Double_System_IConvertible_ToUInt32_m9C20743D40DC640E94EE49A8FD7B1381CB7989DC (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ;
|
|
// System.Int64 System.Convert::ToInt64(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mB8E05FE41BD8996D61DDD3402C93FA7AD654E333 (double ___0_value, const RuntimeMethod* method) ;
|
|
// System.Int64 System.Double::System.IConvertible.ToInt64(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Double_System_IConvertible_ToInt64_m399D9B7A0FB9CFB7436F235F0FE9AF0E1CF43A8C (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ;
|
|
// System.UInt64 System.Convert::ToUInt64(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m8C51AD1E162EAC585EF8A5D72ED494E24492F095 (double ___0_value, const RuntimeMethod* method) ;
|
|
// System.UInt64 System.Double::System.IConvertible.ToUInt64(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Double_System_IConvertible_ToUInt64_mC7C759018889167DDFFE91026F5DFA3DC687F6DA (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ;
|
|
// System.Single System.Convert::ToSingle(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mF6ADEF60A6A97E9E7E410D8D15B26F2D5995151E (double ___0_value, const RuntimeMethod* method) ;
|
|
// System.Single System.Double::System.IConvertible.ToSingle(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Double_System_IConvertible_ToSingle_m6525BEF8D090C2DD279D85E92AA0557CE0898AB7 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ;
|
|
// System.Double System.Double::System.IConvertible.ToDouble(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_System_IConvertible_ToDouble_m2B515020002716E0FD2DAF7E146FB31AE0C2BB98 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ;
|
|
// System.Decimal System.Convert::ToDecimal(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_mAF1D2181BB8C5D3F25C0963245437B4AF4E6C575 (double ___0_value, const RuntimeMethod* method) ;
|
|
// System.Decimal System.Double::System.IConvertible.ToDecimal(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Double_System_IConvertible_ToDecimal_m85928A32723C1E26C9EC2F91D9F67560B84C329E (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ;
|
|
// System.DateTime System.Double::System.IConvertible.ToDateTime(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Double_System_IConvertible_ToDateTime_m18B8B48632B59B918FE758F033129ED0CADEF7B0 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method) ;
|
|
// System.Object System.Convert::DefaultToType(System.IConvertible,System.Type,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Convert_DefaultToType_m96EC48A7341F41CDC22A33461E9A8C1C60FB51EC (RuntimeObject* ___0_value, Type_t* ___1_targetType, RuntimeObject* ___2_provider, const RuntimeMethod* method) ;
|
|
// System.Object System.Double::System.IConvertible.ToType(System.Type,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Double_System_IConvertible_ToType_m3D460190E7F9A622C80CE98B28C50CDEC62662B6 (double* __this, Type_t* ___0_type, RuntimeObject* ___1_provider, const RuntimeMethod* method) ;
|
|
// System.Void System.Object::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.EventArgs::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_mC6F9412D03203ADEF854117542C8EBF61624C8C3 (EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.SystemException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
// System.Void System.SystemException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ;
|
|
// System.Void System.MemberAccessException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAccessException__ctor_mC0B4A3FB8F14C8E93326AFF606A96CFBC5661E5C (MemberAccessException_t4BB9AF02B906BB4818600FC8988DECA4D37F2EFC* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
// System.Void System.MemberAccessException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAccessException__ctor_m6B77F48BC7148B3BF739E7B852FFDC090DD31DDB (MemberAccessException_t4BB9AF02B906BB4818600FC8988DECA4D37F2EFC* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ;
|
|
// System.Void System.Attribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2 (Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.SystemException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_m0FC84CACD2A5D66222998AA601A5C41CEC36A611 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method) ;
|
|
// System.Void System.Runtime.ConstrainedExecution.CriticalFinalizerObject::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CriticalFinalizerObject__ctor_m688241D670D6A0857F938CDC8CD07B1BE4A1C733 (CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Gen2GcCallback::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Gen2GcCallback__ctor_m6EBCC0D319C0B8B0041CBC840A150792CC496412 (Gen2GcCallback_t95317B7364AE6717C822CED7AD5D4227F8674786* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Gen2GcCallback::Setup(System.Func`2<System.Object,System.Boolean>,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Gen2GcCallback_Setup_m96C642FE5DE8087E00BC0347B05D5015366656CD (Gen2GcCallback_t95317B7364AE6717C822CED7AD5D4227F8674786* __this, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___0_callback, RuntimeObject* ___1_targetObj, const RuntimeMethod* method) ;
|
|
// System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.GCHandle::Alloc(System.Object,System.Runtime.InteropServices.GCHandleType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC GCHandle_Alloc_m3BFD398427352FC756FFE078F01A504B681352EC (RuntimeObject* ___0_value, int32_t ___1_type, const RuntimeMethod* method) ;
|
|
// System.Void System.Runtime.ConstrainedExecution.CriticalFinalizerObject::Finalize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CriticalFinalizerObject_Finalize_m232B8F4BCBB58BB7D0A0B10611234BCCE2A86020 (CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9* __this, const RuntimeMethod* method) ;
|
|
// System.Object System.Runtime.InteropServices.GCHandle::get_Target()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5 (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Runtime.InteropServices.GCHandle::Free()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GCHandle_Free_m1320A260E487EB1EA6D95F9E54BFFCB5A4EF83A3 (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* __this, const RuntimeMethod* method) ;
|
|
// TResult System.Func`2<System.Object,System.Boolean>::Invoke(T)
|
|
inline bool Func_2_Invoke_m2014423FB900F135C8FF994125604FF9E6AAE829_inline (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, RuntimeObject*, const RuntimeMethod*))Func_2_Invoke_m2014423FB900F135C8FF994125604FF9E6AAE829_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
// System.Boolean System.Environment::get_HasShutdownStarted()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Environment_get_HasShutdownStarted_m1C31268C20C079988F412BC629BF3F6133CED761 (const RuntimeMethod* method) ;
|
|
// System.Void System.GC::ReRegisterForFinalize(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_ReRegisterForFinalize_m5896580D5E233681641CF8DC17A806FC087E03BF (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeFormat::FormatDigits(System.Text.StringBuilder,System.Int32,System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormat_FormatDigits_mD365F889657EBF490E1E9AA135378245149030BF (StringBuilder_t* ___0_outputBuffer, int32_t ___1_value, int32_t ___2_len, bool ___3_overrideLengthLimit, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char*,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m3B01AD486432033546C698FB95D3067DCB1A1448 (StringBuilder_t* __this, Il2CppChar* ___0_value, int32_t ___1_valueCount, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.HebrewNumber::ToString(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HebrewNumber_ToString_mFC30A1831DD94BF5D1BDEDA5D2B2255BE3C337BB (int32_t ___0_Number, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D (StringBuilder_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Int32 System.ReadOnlySpan`1<System.Char>::get_Length()
|
|
inline int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, const RuntimeMethod*))ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline)(__this, method);
|
|
}
|
|
// System.String System.Globalization.DateTimeFormatInfo::GetAbbreviatedDayName(System.DayOfWeek)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_GetAbbreviatedDayName_m12EC6E4400C2FC1B69A7F987338F9EF0A100277E (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, int32_t ___0_dayofweek, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::GetDayName(System.DayOfWeek)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_GetDayName_m7C4E70449F205F063D75944FEC66A3B0FFD3F20A (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, int32_t ___0_dayofweek, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::GetAbbreviatedMonthName(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_GetAbbreviatedMonthName_mC0DF9D2AABADA5B7F47C6856F78B7BCC11FC8C89 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, int32_t ___0_month, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::GetMonthName(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_GetMonthName_mCCCA8C327C346C7B2AE22AFD9C42C4DCBF48B539 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, int32_t ___0_month, const RuntimeMethod* method) ;
|
|
// System.Globalization.Calendar System.Globalization.DateTimeFormatInfo::get_Calendar()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* DateTimeFormatInfo_get_Calendar_m1280AC2F196ECBE7B664394CC3821062015DEF99_inline (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::internalGetMonthName(System.Int32,System.Globalization.MonthNameStyles,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_internalGetMonthName_m670C3977E0F91474E492C2F9E1AAB435D846CB14 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, int32_t ___0_month, int32_t ___1_style, bool ___2_abbreviated, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.FormatException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5 (const RuntimeMethod* method) ;
|
|
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m3844098E7C18576D263AAF62F69BE5C70BF9A744 (RuntimeObject* ___0_provider, String_t* ___1_format, RuntimeObject* ___2_arg0, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilderCache::Acquire(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilderCache_Acquire_m1CF9421EC0F3431719E18A8EE78669748DF10892 (int32_t ___0_capacity, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Globalization.GlobalizationMode::get_Invariant()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool GlobalizationMode_get_Invariant_m07C027203B17E9B629D292376366608B7DDB2903_inline (const RuntimeMethod* method) ;
|
|
// System.Int32 System.DateTimeFormat::ParseRepeatPattern(System.ReadOnlySpan`1<System.Char>,System.Int32,System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeFormat_ParseRepeatPattern_mE2BAC459E579F2A45A2DEA762F22C89BA89FFB55 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, int32_t ___1_pos, Il2CppChar ___2_patternChar, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::GetEraName(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_GetEraName_mEFEC407D99F9C8D98C332FB785B1D32A8BC8202F (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, int32_t ___0_era, const RuntimeMethod* method) ;
|
|
// System.Int32 System.DateTime::get_Hour()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeFormat::FormatDigits(System.Text.StringBuilder,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormat_FormatDigits_m8271E32BC853A6B3A164561CFAACC17018F78949 (StringBuilder_t* ___0_outputBuffer, int32_t ___1_value, int32_t ___2_len, const RuntimeMethod* method) ;
|
|
// System.Int32 System.DateTime::get_Minute()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.DateTime::get_Second()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
|
|
// System.Double System.Math::Pow(System.Double,System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Math_Pow_mEAE651F0858203FBE12B72B6A53951BBD0FB5265 (double ___0_x, double ___1_y, const RuntimeMethod* method) ;
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6 (const RuntimeMethod* method) ;
|
|
// System.String System.Int32::ToString(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_mE871810BC163EE4EF88E7C7682A6AD39911173B8 (int32_t* __this, String_t* ___0_format, RuntimeObject* ___1_provider, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Text.StringBuilder::get_Length()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8 (StringBuilder_t* __this, const RuntimeMethod* method) ;
|
|
// System.Char System.Text.StringBuilder::get_Chars(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar StringBuilder_get_Chars_m254FD6F2F75C00B0D353D73B2A4A19316BD7624D (StringBuilder_t* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::Remove(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Remove_m0D93692674D1C09795C7D6542420A3B6C5F81E90 (StringBuilder_t* __this, int32_t ___0_startIndex, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
// System.Void System.Text.StringBuilderCache::Release(System.Text.StringBuilder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilderCache_Release_m65C472D3E200ECA86BF7EFDAAF55CA6109678EB5 (StringBuilder_t* ___0_sb, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_AMDesignator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_AMDesignator_m132D601293E679B6FC624E88517B25246F6EC4CB (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.String::get_Length()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
|
|
// System.Char System.String::get_Chars(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_PMDesignator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_PMDesignator_m3B06ECAF8B79E1AAAF8159198A9334658EB1F2CC (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeFormat::HebrewFormatDigits(System.Text.StringBuilder,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormat_HebrewFormatDigits_m178C122EED75AE85562AB67B62F871377CF9A5AD (StringBuilder_t* ___0_outputBuffer, int32_t ___1_digits, const RuntimeMethod* method) ;
|
|
// System.String System.DateTimeFormat::FormatDayOfWeek(System.Int32,System.Int32,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormat_FormatDayOfWeek_mD448EE6829AF76AAB2A3C0FE30071FA43FBFE328 (int32_t ___0_dayOfWeek, int32_t ___1_repeat, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, const RuntimeMethod* method) ;
|
|
// System.String System.DateTimeFormat::FormatHebrewMonthName(System.DateTime,System.Int32,System.Int32,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormat_FormatHebrewMonthName_m95B9D906B91C4337A023D4EA4910F8C97BAB13B8 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, int32_t ___1_month, int32_t ___2_repeatCount, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___3_dtfi, const RuntimeMethod* method) ;
|
|
// System.Globalization.DateTimeFormatFlags System.Globalization.DateTimeFormatInfo::get_FormatFlags()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeFormatInfo_get_FormatFlags_m02C18CB504B5F1547635C20439FF6E468D08A669 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeFormat::IsUseGenitiveForm(System.ReadOnlySpan`1<System.Char>,System.Int32,System.Int32,System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeFormat_IsUseGenitiveForm_mCB8EA1952903F82277215B9005D414CDAB6E46CB (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, int32_t ___1_index, int32_t ___2_tokenLen, Il2CppChar ___3_patternToMatch, const RuntimeMethod* method) ;
|
|
// System.String System.DateTimeFormat::FormatMonth(System.Int32,System.Int32,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormat_FormatMonth_m676D06657AC9D857C2CF727905F362BFCA73DDD2 (int32_t ___0_month, int32_t ___1_repeatCount, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Globalization.DateTimeFormatInfo::get_HasForceTwoDigitYears()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeFormatInfo_get_HasForceTwoDigitYears_m25CFF727E1A830DF26A757917BAD564C99DE3899 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Int32::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5 (int32_t* __this, const RuntimeMethod* method) ;
|
|
// System.String System.String::Concat(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9E3155FB84015C823606188F53B47CB44C444991 (String_t* ___0_str0, String_t* ___1_str1, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeFormat::FormatCustomizedTimeZone(System.DateTime,System.TimeSpan,System.ReadOnlySpan`1<System.Char>,System.Int32,System.Boolean,System.Text.StringBuilder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormat_FormatCustomizedTimeZone_mBC1915E9AE8B09D78CEDF603906F95195BE8C5E4 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_offset, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, int32_t ___3_tokenLen, bool ___4_timeOnly, StringBuilder_t* ___5_result, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeFormat::FormatCustomizedRoundripTimeZone(System.DateTime,System.TimeSpan,System.Text.StringBuilder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormat_FormatCustomizedRoundripTimeZone_mF92EE63C8F199D445F23094DC24E5F5D1D0971BB (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_offset, StringBuilder_t* ___2_result, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_TimeSeparator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_TimeSeparator_m708070A0307E7FB6D0FB9C5FF3E371EBF8800791 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_DateSeparator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_DateSeparator_mBD2B8F51FE1491BC6695B10CB1973754BBF54CDD (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.DateTimeFormat::ParseQuoteString(System.ReadOnlySpan`1<System.Char>,System.Int32,System.Text.StringBuilder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeFormat_ParseQuoteString_m9D76FA19D6C16F79B944F25899AA6ABBF1D6FD59 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, int32_t ___1_pos, StringBuilder_t* ___2_result, const RuntimeMethod* method) ;
|
|
// System.Int32 System.DateTimeFormat::ParseNextChar(System.ReadOnlySpan`1<System.Char>,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeFormat_ParseNextChar_mC5A3CB9DAE112DA97E1B081354496AA56FB3BF17 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, int32_t ___1_pos, const RuntimeMethod* method) ;
|
|
// System.ReadOnlySpan`1<T> System.Runtime.InteropServices.MemoryMarshal::CreateReadOnlySpan<System.Char>(T&,System.Int32)
|
|
inline ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryMarshal_CreateReadOnlySpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m6AC28EB03E267661349B40C5A925602DAC3F1C11_inline (Il2CppChar* ___0_reference, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
return (( ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 (*) (Il2CppChar*, int32_t, const RuntimeMethod*))MemoryMarshal_CreateReadOnlySpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m6AC28EB03E267661349B40C5A925602DAC3F1C11_gshared_inline)(___0_reference, ___1_length, method);
|
|
}
|
|
// System.Text.StringBuilder System.DateTimeFormat::FormatCustomized(System.DateTime,System.ReadOnlySpan`1<System.Char>,System.Globalization.DateTimeFormatInfo,System.TimeSpan,System.Text.StringBuilder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* DateTimeFormat_FormatCustomized_m59304DCEF2BAAF79BE928EEA00D9449327489999 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_format, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___3_offset, StringBuilder_t* ___4_result, const RuntimeMethod* method) ;
|
|
// System.Boolean System.TimeSpan::op_Equality(System.TimeSpan,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_Equality_m951689F806957B14F237DAFCEE4CB322799A723E (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_t1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t2, const RuntimeMethod* method) ;
|
|
// System.DateTime System.DateTime::get_Now()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_get_Now_m636CB9651A9099D20BA1CF813A0C69637317325C (const RuntimeMethod* method) ;
|
|
// System.Boolean System.TimeSpan::op_GreaterThanOrEqual(System.TimeSpan,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_GreaterThanOrEqual_m75F60A7DA7C0BB62E4A21E7784E6FFE6D2D73CFE (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_t1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t2, const RuntimeMethod* method) ;
|
|
// System.TimeSpan System.TimeSpan::Negate()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_Negate_m3BF3036191A2FDC35250891CD82AD3283A13ABB4 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.TimeSpan::get_Hours()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_get_Hours_m770B4B777A816E051EFDA317C28DA9A4F39D6CFB (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.IFormatProvider,System.String,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_AppendFormat_m91278D58CD695B07613B9A3941B745B815542E1E (StringBuilder_t* __this, RuntimeObject* ___0_provider, String_t* ___1_format, RuntimeObject* ___2_arg0, const RuntimeMethod* method) ;
|
|
// System.Int32 System.TimeSpan::get_Minutes()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_get_Minutes_m93E37D01CD6DA2DE5B35609D740D322E270B678F (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeFormat::Append2DigitNumber(System.Text.StringBuilder,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormat_Append2DigitNumber_m77D515E4A4D5204955DAA12F4F1EC018FE86122F (StringBuilder_t* ___0_result, int32_t ___1_val, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_ShortDatePattern()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_ShortDatePattern_m8B5B3BC573F1836C9257B9CCB9C3C4B890E66A0D (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_LongDatePattern()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_LongDatePattern_m5745B956A1340A9F6304C86F0C574B5338BF56B1 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_ShortTimePattern()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_ShortTimePattern_m1ECB24D998656104918CCFD092207FA9FA4300A6 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.String System.String::Concat(System.String,System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B (String_t* ___0_str0, String_t* ___1_str1, String_t* ___2_str2, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_FullDateTimePattern()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_FullDateTimePattern_mD9F9E7F88253C37BAB91B7A6EFD4D750CBA10170 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_GeneralShortTimePattern()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_GeneralShortTimePattern_mAC0D32A71DD6FCDDC1EB0D08D4D89E73603B9957 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_GeneralLongTimePattern()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_GeneralLongTimePattern_m492FC4744C69B014F6A443F152BDEB0F2D0B912A (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_MonthDayPattern()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_MonthDayPattern_m868752F743E864688FC5D251412A5657747EEEFD (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_RFC1123Pattern()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_RFC1123Pattern_mCE40B43C4A95F9F745A271CA52E93510CA338A66 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_SortableDateTimePattern()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_SortableDateTimePattern_mABB0FA1D64D9A0528F77F8AB3395969A5C16E9B2 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_LongTimePattern()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_LongTimePattern_m8ECFC475A70921D789E02878FA99C407B2C01BC7 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_UniversalSortableDateTimePattern()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_UniversalSortableDateTimePattern_mBF940398A8E235EF9D29B889E984FC73ECDB7F7E (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_YearMonthPattern()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_YearMonthPattern_m98C6AAE1CA577D103C522991D843FCD5817EDF04 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.Globalization.DateTimeFormatInfo System.Globalization.DateTimeFormatInfo::get_InvariantInfo()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* DateTimeFormatInfo_get_InvariantInfo_m24804C20A94D2952323C82193D4A59ADF171C8AA (const RuntimeMethod* method) ;
|
|
// System.DateTime System.DateTime::op_Subtraction(System.DateTime,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_d, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeFormat::InvalidFormatForLocal(System.ReadOnlySpan`1<System.Char>,System.DateTime)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormat_InvalidFormatForLocal_m1D87DD7363D0483D04165AA1DCB83A31A6C046BA (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_dateTime, const RuntimeMethod* method) ;
|
|
// System.Object System.Globalization.DateTimeFormatInfo::Clone()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DateTimeFormatInfo_Clone_mCBA61859E15A29FC79AC3CDAA616D063901540E8 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.Type System.Object::GetType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Type::op_Inequality(System.Type,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172 (Type_t* ___0_left, Type_t* ___1_right, const RuntimeMethod* method) ;
|
|
// System.Globalization.Calendar System.Globalization.GregorianCalendar::GetDefaultInstance()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* GregorianCalendar_GetDefaultInstance_mD47205AFE3A1E57FAE3857D4B82041A08FDB346A (const RuntimeMethod* method) ;
|
|
// System.Void System.Globalization.DateTimeFormatInfo::set_Calendar(System.Globalization.Calendar)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormatInfo_set_Calendar_m46840C102CBE9D5BF30C44F0910426969A543564 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___0_value, const RuntimeMethod* method) ;
|
|
// System.DateTime System.DateTime::ToUniversalTime()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_ToUniversalTime_m52CA1EAD0BE0A357BCACC38747ECA4A8810155A9 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
|
|
// System.String System.DateTimeFormat::GetRealFormat(System.ReadOnlySpan`1<System.Char>,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormat_GetRealFormat_m675B6AD6247C73C5048A6F09EF0149A2EF20E5DB (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___1_dtfi, const RuntimeMethod* method) ;
|
|
// System.Void System.Span`1<System.Char>::.ctor(System.Void*,System.Int32)
|
|
inline void Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, void*, int32_t, const RuntimeMethod*))Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_gshared_inline)(__this, ___0_pointer, ___1_length, method);
|
|
}
|
|
// System.Boolean System.DateTimeFormat::TryFormatO(System.DateTime,System.TimeSpan,System.Span`1<System.Char>,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeFormat_TryFormatO_mC912440E1FEC92BCAC15952B877E2040FDD72222 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_offset, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___2_destination, int32_t* ___3_charsWritten, const RuntimeMethod* method) ;
|
|
// System.Span`1<T> System.Span`1<System.Char>::Slice(System.Int32,System.Int32)
|
|
inline Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, int32_t ___0_start, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
return (( Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, int32_t, int32_t, const RuntimeMethod*))Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_gshared_inline)(__this, ___0_start, ___1_length, method);
|
|
}
|
|
// System.String System.Span`1<System.Char>::ToString()
|
|
inline String_t* Span_1_ToString_m12316C6CDC05E2F49EA4BDAD78FD7F1718E6E980 (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, const RuntimeMethod*))Span_1_ToString_m12316C6CDC05E2F49EA4BDAD78FD7F1718E6E980_gshared)(__this, method);
|
|
}
|
|
// System.String System.String::FastAllocateString(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104 (int32_t ___0_length, const RuntimeMethod* method) ;
|
|
// System.Char& System.String::GetRawStringData()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D (String_t* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Span`1<System.Char>::.ctor(T&,System.Int32)
|
|
inline void Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, Il2CppChar*, int32_t, const RuntimeMethod*))Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_gshared_inline)(__this, ___0_ptr, ___1_length, method);
|
|
}
|
|
// System.Boolean System.DateTimeFormat::TryFormatR(System.DateTime,System.TimeSpan,System.Span`1<System.Char>,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeFormat_TryFormatR_mDC3E241C6B05B68584FCB7305296955D9DCE2142 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_offset, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___2_destination, int32_t* ___3_charsWritten, const RuntimeMethod* method) ;
|
|
// System.Globalization.DateTimeFormatInfo System.Globalization.DateTimeFormatInfo::GetInstance(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* DateTimeFormatInfo_GetInstance_m610566C9C55DA97F13DA7436BCC18E796AAB1CBD (RuntimeObject* ___0_provider, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.DateTimeFormat::FormatStringBuilder(System.DateTime,System.ReadOnlySpan`1<System.Char>,System.Globalization.DateTimeFormatInfo,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* DateTimeFormat_FormatStringBuilder_m071EEEF2B4B029A44BEAF4C4504D5F41053C7E28 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_format, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___3_offset, const RuntimeMethod* method) ;
|
|
// System.String System.Text.StringBuilderCache::GetStringAndRelease(System.Text.StringBuilder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringBuilderCache_GetStringAndRelease_m4A7AB11554F7E80352AB8C3AC72D7AD4C7108FB0 (StringBuilder_t* ___0_sb, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Span`1<System.Char>::get_Length()
|
|
inline int32_t Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, const RuntimeMethod*))Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void System.Text.StringBuilder::CopyTo(System.Int32,System.Span`1<System.Char>,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_CopyTo_m1AB15F7BF71359119085BA7D3420AF75A524F746 (StringBuilder_t* __this, int32_t ___0_sourceIndex, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___1_destination, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_DateTimeOffsetPattern()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_DateTimeOffsetPattern_m100011083D539153415ECC8E86725B35FB12EA57 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.String System.DateTimeFormat::ExpandPredefinedFormat(System.ReadOnlySpan`1<System.Char>,System.DateTime&,System.Globalization.DateTimeFormatInfo&,System.TimeSpan&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormat_ExpandPredefinedFormat_mE9FCB4489ABD24F6EBB76F7EE8C5FB331713EF50 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* ___1_dateTime, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** ___2_dtfi, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* ___3_offset, const RuntimeMethod* method) ;
|
|
// System.TimeZoneInfo System.TimeZoneInfo::get_Local()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_get_Local_mC43C34632FAEEF6BD0E3B5C04417E9C90277445F (const RuntimeMethod* method) ;
|
|
// System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_mFAA1957ED9222C7526A197E6FF1AE0D05B46EDB0 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, const RuntimeMethod* method) ;
|
|
// System.Int32 System.DateTime::get_Year()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeFormat::WriteFourDecimalDigits(System.UInt32,System.Span`1<System.Char>,System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DateTimeFormat_WriteFourDecimalDigits_m029CF7826B6763DFB20656E4713B5180FDED19CD_inline (uint32_t ___0_value, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___1_buffer, int32_t ___2_startingIndex, const RuntimeMethod* method) ;
|
|
// System.Int32 System.DateTime::get_Month()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeFormat::WriteTwoDecimalDigits(System.UInt32,System.Span`1<System.Char>,System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DateTimeFormat_WriteTwoDecimalDigits_mFF3D64FC4AE7785ABE28875436942F3C25C89AF9_inline (uint32_t ___0_value, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___1_destination, int32_t ___2_offset, const RuntimeMethod* method) ;
|
|
// System.Int32 System.DateTime::get_Day()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeFormat::WriteDigits(System.UInt64,System.Span`1<System.Char>)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DateTimeFormat_WriteDigits_mE655D6367964D63DC44E158B2C3EA6F7C6030137_inline (uint64_t ___0_value, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___1_buffer, const RuntimeMethod* method) ;
|
|
// System.Boolean System.TimeSpan::op_LessThan(System.TimeSpan,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_LessThan_m91C76FBEB38D80680A92A5FACA3A93810349B0FF (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_t1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t2, const RuntimeMethod* method) ;
|
|
// System.TimeSpan System.TimeSpan::FromTicks(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_FromTicks_m9C683B1D142312F22E8CC6C803E32EF6D42F9003 (int64_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTime::GetDatePart(System.Int32&,System.Int32&,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime_GetDatePart_m85E7446E253F012D1662467EAEFB4CD9C50AE86D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t* ___0_year, int32_t* ___1_month, int32_t* ___2_day, const RuntimeMethod* method) ;
|
|
// System.DayOfWeek System.DateTime::get_DayOfWeek()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_DayOfWeek_mAC680139BCAA1613FC134454D1AD1B502CB1BB68 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B (RuntimeArray* ___0_array, RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 ___1_fldHandle, const RuntimeMethod* method) ;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::get_AbbreviatedMonthNames()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* DateTimeFormatInfo_get_AbbreviatedMonthNames_m8C049BD0316BBE69A99AC1A71A3EF5C6FF792007 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::get_AbbreviatedDayNames()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* DateTimeFormatInfo_get_AbbreviatedDayNames_m5FF3B8C196AFAF3053AF1D23B23142BF8C59447D (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.__DTString::GetNext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool __DTString_GetNext_m2DAFC0E1EB763649B66110695BDB206B71B1407F (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::IsDigit(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_IsDigit_m6B5476FF200B01E7DFE11AEB34706EE1CC796AF1 (Il2CppChar ___0_ch, const RuntimeMethod* method) ;
|
|
// System.DTSubString System.__DTString::GetSubString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 __DTString_GetSubString_mCAA1E40658D9C121F7F93E9FD9471BA32ADE5E27 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method) ;
|
|
// System.Char System.DTSubString::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar DTSubString_get_Item_m1F52F78057FA33F0CB350659CF94DC678C4725B6 (DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70* __this, int32_t ___0_relativeIndex, const RuntimeMethod* method) ;
|
|
// System.Void System.__DTString::ConsumeSubString(System.DTSubString)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __DTString_ConsumeSubString_m5EA5ACB00CE8435A7710E7A41EB2378293F4177F (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 ___0_sub, const RuntimeMethod* method) ;
|
|
// System.Int32 System.__DTString::get_Length()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Char::IsWhiteSpace(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924 (Il2CppChar ___0_c, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeResult::SetBadDateTimeFailure()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::ParseTimeZone(System.__DTString&,System.TimeSpan&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_ParseTimeZone_mC6D964CA55CC3922B0912AA1BEB5ECD5EF5E18CF (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___0_str, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* ___1_result, const RuntimeMethod* method) ;
|
|
// System.Void System.__DTString::GetRegularToken(System.TokenType&,System.Int32&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __DTString_GetRegularToken_mF7E4F8A3FDA483D70D31E919BD247BE18834842A (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, int32_t* ___0_tokenType, int32_t* ___1_tokenValue, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::ParseFraction(System.__DTString&,System.Double&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_ParseFraction_mC56E08E358B2C3452E536E6F3D62ACA05EAC1C31 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___0_str, double* ___1_result, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::HandleTimeZone(System.__DTString&,System.DateTimeResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_HandleTimeZone_mAE754D4103830063693D7E20D8F802FF1E36E01F (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___0_str, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___1_result, const RuntimeMethod* method) ;
|
|
// System.TokenType System.__DTString::GetSeparatorToken(System.Globalization.DateTimeFormatInfo,System.Int32&,System.Char&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t __DTString_GetSeparatorToken_m9ADF41C54B30D0AE706F3CB6E1433B1E51B6CA84 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___0_dtfi, int32_t* ___1_indexBeforeSeparator, Il2CppChar* ___2_charBeforeSeparator, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeRawInfo::AddNumber(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeRawInfo_AddNumber_m2DA05B04979A1CE5D6022B4926B4837CDD9AC9BA (DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::ProcessTerminalState(System.DateTimeParse/DS,System.__DTString&,System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_ProcessTerminalState_m1635E1524D64F67289FC2CBAD1FCDBC948EC1474 (int32_t ___0_dps, __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___1_str, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___2_result, int32_t* ___3_styles, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___4_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___5_dtfi, const RuntimeMethod* method) ;
|
|
// System.Void System.PlatformNotSupportedException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlatformNotSupportedException__ctor_mD5DBE8E9A6FF4B75EF02671029C6D67A51EAFBD1 (PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A* __this, const RuntimeMethod* method) ;
|
|
// System.Globalization.Calendar System.DateTimeParse::GetJapaneseCalendarDefaultInstance()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* DateTimeParse_GetJapaneseCalendarDefaultInstance_mB59CA5FACA588F45C5F7129B662935855F6D73B2 (const RuntimeMethod* method) ;
|
|
// System.Globalization.DateTimeFormatInfo System.Globalization.DateTimeFormatInfo::GetJapaneseCalendarDTFI()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* DateTimeFormatInfo_GetJapaneseCalendarDTFI_m7EFE92E42018E6706062C56BAB24AFFE75B4F69D (const RuntimeMethod* method) ;
|
|
// System.Globalization.Calendar System.DateTimeParse::GetTaiwanCalendarDefaultInstance()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* DateTimeParse_GetTaiwanCalendarDefaultInstance_m69005FEA5C5D3A0E3551E136D644CB9D266BECB0 (const RuntimeMethod* method) ;
|
|
// System.Globalization.DateTimeFormatInfo System.Globalization.DateTimeFormatInfo::GetTaiwanCalendarDTFI()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* DateTimeFormatInfo_GetTaiwanCalendarDTFI_m0C8EC567ABDEEAD46157F36D438A93BC9A87291C (const RuntimeMethod* method) ;
|
|
// System.Boolean System.Char::IsLetter(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetter_m4363120285B51739DEE559E5C81E89580DDC78C0 (Il2CppChar ___0_c, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeResult::SetFailure(System.ParseFailureKind,System.String,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeResult_SetFailure_m24BEDE43DC1A95BE46B6A6F9F37F74383FF01953 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* __this, int32_t ___0_failure, String_t* ___1_failureMessageID, RuntimeObject* ___2_failureMessageFormatArgument, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::VerifyValidPunctuation(System.__DTString&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_VerifyValidPunctuation_mC1B41036A753D97D308AB0E940DD204A23B5C128 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___0_str, const RuntimeMethod* method) ;
|
|
// System.Globalization.Calendar System.Globalization.JapaneseCalendar::GetDefaultInstance()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* JapaneseCalendar_GetDefaultInstance_m5589EE694818CED9EEB6ED73C683971A7B6D53D1 (const RuntimeMethod* method) ;
|
|
// System.Globalization.Calendar System.Globalization.TaiwanCalendar::GetDefaultInstance()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* TaiwanCalendar_GetDefaultInstance_m66CEDD8A02B6AB4786E93CD2D5FA125FE54F9B84 (const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeResult::SetDate(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeResult_SetDate_m5277FA9E5EB765F95AC12AAE43C9FB5AE93D9CEE (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* __this, int32_t ___0_year, int32_t ___1_month, int32_t ___2_day, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::SetDateYMD(System.DateTimeResult&,System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t ___1_year, int32_t ___2_month, int32_t ___3_day, const RuntimeMethod* method) ;
|
|
// System.DateTime System.DateTimeParse::GetDateTimeNow(System.DateTimeResult&,System.Globalization.DateTimeStyles&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeParse_GetDateTimeNow_m12B3392F05B943A1834648699DBD5E24351FB544 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t* ___1_styles, const RuntimeMethod* method) ;
|
|
// System.Int32 System.DateTimeRawInfo::GetNumber(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1 (DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeParse::GetDefaultYear(System.DateTimeResult&,System.Globalization.DateTimeStyles&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeParse_GetDefaultYear_mE56B2E51B06360593D3706E4602814EFD46B8E34 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t* ___1_styles, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetMonthDayOrder(System.String,System.Globalization.DateTimeFormatInfo,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetMonthDayOrder_m30E015ED29548A3C43FD72F05EB1C76BB47F3069 (String_t* ___0_pattern, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___1_dtfi, int32_t* ___2_order, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetYearMonthDayOrder(System.String,System.Globalization.DateTimeFormatInfo,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetYearMonthDayOrder_m55496E783E5A65A2FA6DA3095C15D14A52339C80 (String_t* ___0_datePattern, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___1_dtfi, int32_t* ___2_order, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::TryAdjustYear(System.DateTimeResult&,System.Int32,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_TryAdjustYear_m26365769C1D80C2BB5569B4C61474F644317CF4A (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t ___1_year, int32_t* ___2_adjustedYear, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::SetDateMDY(System.DateTimeResult&,System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_SetDateMDY_mA0B9F27A64970C9BF92754F1B3D1183CCC8FF9F6 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t ___1_month, int32_t ___2_day, int32_t ___3_year, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::SetDateDMY(System.DateTimeResult&,System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_SetDateDMY_m47A14A57B35A265CF59A623C5061A1A2ABFF28AF (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t ___1_day, int32_t ___2_month, int32_t ___3_year, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::SetDateYDM(System.DateTimeResult&,System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_SetDateYDM_m32B11C9F65942A89F8A8A024DF1E56DB61E34AC3 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t ___1_year, int32_t ___2_day, int32_t ___3_month, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetYearMonthOrder(System.String,System.Globalization.DateTimeFormatInfo,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetYearMonthOrder_mFAB37BA13AEB39810B6344DBD80E744E260317B7 (String_t* ___0_pattern, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___1_dtfi, int32_t* ___2_order, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Globalization.DateTimeFormatInfo::YearMonthAdjustment(System.Int32&,System.Int32&,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeFormatInfo_YearMonthAdjustment_m92A876ED6E935255CFFBFA4BD022D293181436EF (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, int32_t* ___0_year, int32_t* ___1_month, bool ___2_parsedMonthName, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeResult::SetFailure(System.ParseFailureKind,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeResult_SetFailure_m84403A0901C5114A46BB7F56E0208072C95AFB2A (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* __this, int32_t ___0_failure, String_t* ___1_failureMessageID, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetDayOfMNN(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfMNN_m0E6FFE70FC040B210A8AF4C8C69DA21F0CCBE629 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetDayOfYMN(System.DateTimeResult&,System.DateTimeRawInfo&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfYMN_mFFF3449C750D04BA6E9CE83AECF4B7DE16FF0642 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetDayOfNNY(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfNNY_m2203BB15601556266B90698E9D73CFD02021D0AF (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetHebrewDayOfNM(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetHebrewDayOfNM_mD4EA6F932655FB3210289787A90BA7F9557FCEF4 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetDayOfYM(System.DateTimeResult&,System.DateTimeRawInfo&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfYM_m28FF22A12675C0D1939C13AA512D93D8DA08370C (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetTimeOfN(System.DateTimeResult&,System.DateTimeRawInfo&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetTimeOfN_m0A36C0793C91E4A721C06FD56177FA594AD377B7 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetTimeOfNN(System.DateTimeResult&,System.DateTimeRawInfo&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetTimeOfNN_mB43596CCEF17A01D6DB03384A160026422A3E418 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetTimeOfNNN(System.DateTimeResult&,System.DateTimeRawInfo&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetTimeOfNNN_m4711F85847B4CB5AEBD8C5EB7130F7510709DEDE (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetDayOfNN(System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfNN_mD22CC6A4487C4D1C41183C997E1C9FB6E01B94B6 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t* ___1_styles, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___2_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___3_dtfi, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetDayOfNNN(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfNNN_mD3086C89CCAA727518CC519F5504BBAB4041506D (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetDayOfMN(System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfMN_m8655BD2945C26B528C85D5E04485A8FC7D6291DC (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t* ___1_styles, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___2_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___3_dtfi, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetDayOfNM(System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfNM_m097A0070DFA787294F8D883E249A733269F79638 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t* ___1_styles, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___2_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___3_dtfi, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetDayOfYNN(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfYNN_m816F3FBCDC6AF274A29D1BD9C55D2A5D6E203528 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetDayOfYN(System.DateTimeResult&,System.DateTimeRawInfo&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfYN_mB78AB5FF5BD6C311C3AC88B5A85D5601C341D7AA (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetDateOfDSN(System.DateTimeResult&,System.DateTimeRawInfo&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDateOfDSN_m6B6BBC576E3DE54963D2DA4D2A46FE1833253299 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetDateOfNDS(System.DateTimeResult&,System.DateTimeRawInfo&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDateOfNDS_m58F710C09D1EBE97FC3D86F21429502D943990B5 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::GetDateOfNNDS(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDateOfNNDS_mCAC1D8ADCC1EAFC4BEE0C491F8D42C59C7D1BAEE (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeResult::Init(System.ReadOnlySpan`1<System.Char>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeResult_Init_mA6717EEF433A842BEAB6C2DD78D1139C2B4BB63D (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_originalDateTimeString, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::TryParse(System.ReadOnlySpan`1<System.Char>,System.Globalization.DateTimeFormatInfo,System.Globalization.DateTimeStyles,System.DateTimeResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_TryParse_m78F4F4910B11488044E249056D2E9546AA3E7617 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_s, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___1_dtfi, int32_t ___2_styles, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___3_result, const RuntimeMethod* method) ;
|
|
// System.Exception System.DateTimeParse::GetDateTimeParseException(System.DateTimeResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* DateTimeParse_GetDateTimeParseException_m06B7086328CD3F5D28FFD26013FB47043D6E5D0A (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeRawInfo::Init(System.Int32*)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeRawInfo_Init_m58939922AA569BAE7260CFD425D079C654D0731B (DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* __this, int32_t* ___0_numberBuffer, const RuntimeMethod* method) ;
|
|
// System.Boolean System.String::Equals(System.String,System.StringComparison)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m7BDFC0B951005B9DC2BAED464AFE68FF7E9ACE5A (String_t* __this, String_t* ___0_value, int32_t ___1_comparisonType, const RuntimeMethod* method) ;
|
|
// System.Void System.__DTString::.ctor(System.ReadOnlySpan`1<System.Char>,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __DTString__ctor_mA373A18F43531434E2B5644E88171623C86416F6 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___1_dtfi, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::Lex(System.DateTimeParse/DS,System.__DTString&,System.DateTimeToken&,System.DateTimeRawInfo&,System.DateTimeResult&,System.Globalization.DateTimeFormatInfo&,System.Globalization.DateTimeStyles)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_Lex_mCFD30C9C1058FD72DFB2E3BEDE5289C5EF1E087B (int32_t ___0_dps, __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___1_str, DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* ___2_dtok, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___3_raw, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___4_result, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** ___5_dtfi, int32_t ___6_styles, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::ProcessDateTimeSuffix(System.DateTimeResult&,System.DateTimeRawInfo&,System.DateTimeToken&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_ProcessDateTimeSuffix_m89FF28A0D52FEC3359FE56ABD0D797B5FA86D6C5 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* ___2_dtok, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::ParseISO8601(System.DateTimeRawInfo&,System.__DTString&,System.Globalization.DateTimeStyles,System.DateTimeResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_ParseISO8601_m1C2FF613F8756547385C1C32635BA23029FEA7CB (DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___0_raw, __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___1_str, int32_t ___2_styles, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___3_result, const RuntimeMethod* method) ;
|
|
// System.Boolean System.__DTString::AtEnd()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool __DTString_AtEnd_m842272A109A260E9175838B489D9A8582400E59A (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::ProcessHebrewTerminalState(System.DateTimeParse/DS,System.__DTString&,System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_ProcessHebrewTerminalState_m78C00EA31E59EEE2D083BAD9151DD22E3CBA834D (int32_t ___0_dps, __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___1_str, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___2_result, int32_t* ___3_styles, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___4_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___5_dtfi, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTimeParse::AdjustTimeMark(System.Globalization.DateTimeFormatInfo,System.DateTimeRawInfo&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeParse_AdjustTimeMark_m1BD073173719E6B8681B9FB310E7166C2ACD3048 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___0_dtfi, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::AdjustHour(System.Int32&,System.DateTimeParse/TM)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_AdjustHour_m1ACF46BC6F29D4CDFD4D6785838EECFE3963A397 (int32_t* ___0_hour, int32_t ___1_timeMark, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::CheckDefaultDateTime(System.DateTimeResult&,System.Globalization.Calendar&,System.Globalization.DateTimeStyles)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_CheckDefaultDateTime_mEB866B24DCD1C5B2FDD6C490F71EAF2F316D77E9 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B** ___1_cal, int32_t ___2_styles, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::DetermineTimeZoneAdjustments(System.__DTString&,System.DateTimeResult&,System.Globalization.DateTimeStyles,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_DetermineTimeZoneAdjustments_m1371F204F9CD47963E2A1E82E50E808472D593A9 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___0_str, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___1_result, int32_t ___2_styles, bool ___3_bTimeOnly, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::DateTimeOffsetTimeZonePostProcessing(System.__DTString&,System.DateTimeResult&,System.Globalization.DateTimeStyles)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_DateTimeOffsetTimeZonePostProcessing_m9E4D03E6BC6DC2A4165281C0CB4504183F986949 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___0_str, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___1_result, int32_t ___2_styles, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::AdjustTimeZoneToUniversal(System.DateTimeResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_AdjustTimeZoneToUniversal_mF1124073B1DC0A796A6A97F4C0CA28CC593D34B9 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::AdjustTimeZoneToLocal(System.DateTimeResult&,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_AdjustTimeZoneToLocal_mECDC1152FAAD82F47DAC66BDBFC7F03125F5D7DE (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, bool ___1_bTimeOnly, const RuntimeMethod* method) ;
|
|
// System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime,System.TimeZoneInfoOptions)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_m0BDDBF392737305C4A4AA517DD3CB0DA40C7D375 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, int32_t ___1_flags, const RuntimeMethod* method) ;
|
|
// System.TimeSpan System.TimeZoneInfo::GetUtcOffsetFromUtc(System.DateTime,System.TimeZoneInfo,System.Boolean&,System.Boolean&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffsetFromUtc_mF8355640EDDE18145F010556290EFF1910EEFAD2 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___1_zone, bool* ___2_isDaylightSavings, bool* ___3_isAmbiguousLocalDst, const RuntimeMethod* method) ;
|
|
// System.Void System.DateTime::.ctor(System.Int64,System.DateTimeKind,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m8CFD20DDCCB14AB28392A047FC4EE3F11929B8F2 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int64_t ___0_ticks, int32_t ___1_kind, bool ___2_isAmbiguousDst, const RuntimeMethod* method) ;
|
|
// System.Void System.__DTString::SkipWhiteSpaces()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __DTString_SkipWhiteSpaces_mC7F076DEEEECFB3F54E2C516C8F662FDFB86FA33 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::ParseDigits(System.__DTString&,System.Int32,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_ParseDigits_mFF092ACCCF892D92899E7C413624900EAC24D81D (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___0_str, int32_t ___1_digitLen, int32_t* ___2_result, const RuntimeMethod* method) ;
|
|
// System.Boolean System.__DTString::Match(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool __DTString_Match_m480E53CC8F4EF31DF728891F4D0A5C476C0A6B6A (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, Il2CppChar ___0_ch, const RuntimeMethod* method) ;
|
|
// System.Char System.__DTString::GetChar()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar __DTString_GetChar_m30E31D23B3403023076FE096F5BD09824F4FA92A (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.DateTimeParse::ParseDigits(System.__DTString&,System.Int32,System.Int32,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_ParseDigits_m4CFA9E934F44809D2B1794710731A62BCAA790F2 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___0_str, int32_t ___1_minDigitLen, int32_t ___2_maxDigitLen, int32_t* ___3_result, const RuntimeMethod* method) ;
|
|
// System.Boolean System.__DTString::GetNextDigit()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool __DTString_GetNextDigit_m078932668F40B02FE142720C8BB0C1A43F2B81A4_inline (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.__DTString::GetDigit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t __DTString_GetDigit_m2C1710445781E19205ECECC147287B2A1E325A4B (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method) ;
|
|
// System.DateTime System.DateTime::get_UtcNow()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_get_UtcNow_m06B6E9995FE16846A0F71EC9DB23E90BE2C5F9FA (const RuntimeMethod* method) ;
|
|
// System.String SR::GetResourceString(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetResourceString_m10BCB05F0B61836C66DAC9C1A8D68C82B0781F1E (String_t* ___0_str, const RuntimeMethod* method) ;
|
|
// System.Void System.ArgumentNullException::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155 (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, String_t* ___1_message, const RuntimeMethod* method) ;
|
|
// System.String SR::Format(System.String,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09 (String_t* ___0_resourceFormat, RuntimeObject* ___1_p1, const RuntimeMethod* method) ;
|
|
// System.String System.String::CreateString(System.ReadOnlySpan`1<System.Char>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m1618CF9F1145C9832FC830A4BD6DD96A540012F8 (String_t* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_value, const RuntimeMethod* method) ;
|
|
// System.Globalization.CompareInfo System.Globalization.DateTimeFormatInfo::get_CompareInfo()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* DateTimeFormatInfo_get_CompareInfo_m5EE0D2D859788948D1A235DD8166A25B30908426 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Globalization.DateTimeFormatInfo::Tokenize(System.TokenType,System.TokenType&,System.Int32&,System.__DTString&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeFormatInfo_Tokenize_mF3AFCE9FF7A9E916C1FD45D74259144A5F9B773F (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, int32_t ___0_TokenMask, int32_t* ___1_tokenType, int32_t* ___2_tokenValue, __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___3_str, const RuntimeMethod* method) ;
|
|
// System.Boolean System.__DTString::SkipWhiteSpaceCurrent()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool __DTString_SkipWhiteSpaceCurrent_mEFCC8DCABD43754458F9DB4C371AE9BBE9961D91 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method) ;
|
|
// System.ReadOnlySpan`1<T> System.ReadOnlySpan`1<System.Char>::Slice(System.Int32,System.Int32)
|
|
inline ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, int32_t ___0_start, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
return (( ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, int32_t, int32_t, const RuntimeMethod*))ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_gshared_inline)(__this, ___0_start, ___1_length, method);
|
|
}
|
|
// System.Int32 System.Globalization.CompareInfo::Compare(System.ReadOnlySpan`1<System.Char>,System.String,System.Globalization.CompareOptions)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_Compare_mFD591987EB505C7B67AFF638293F718976A215C6 (CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_string1, String_t* ___1_string2, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
// System.Int32 System.String::IndexOfAny(System.Char[],System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfAny_m1AE18DB3B14A0D05EF4A2D3403D4DC1930A199F3 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_anyOf, int32_t ___1_startIndex, const RuntimeMethod* method) ;
|
|
// System.ReadOnlySpan`1<System.Char> System.MemoryExtensions::AsSpan(System.String,System.Int32,System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline (String_t* ___0_text, int32_t ___1_start, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Globalization.CompareInfo::CompareOptionIgnoreCase(System.ReadOnlySpan`1<System.Char>,System.ReadOnlySpan`1<System.Char>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_CompareOptionIgnoreCase_m707A09DA84BE513742B5F7A05138A6E96809EEBE (CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_string1, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_string2, const RuntimeMethod* method) ;
|
|
// System.Void Interop::GetRandomBytes(System.Byte*,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Interop_GetRandomBytes_mCA054362D47D8B1BB32A7501F26A646DD8CA6947 (uint8_t* ___0_buffer, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
// System.Void System.ReadOnlySpan`1<System.Byte>::.ctor(T[])
|
|
inline void ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, const RuntimeMethod*))ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_gshared_inline)(__this, ___0_array, method);
|
|
}
|
|
// System.Void System.Guid::.ctor(System.ReadOnlySpan`1<System.Byte>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_m6533072DFD3E81582E8949EB2D5BFABEFC7C403D (Guid_t* __this, ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D ___0_b, const RuntimeMethod* method) ;
|
|
// System.Void System.Guid::.ctor(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_m9BEFD9FC285BE9ACEC2EB97FC76C0E35E14D725C (Guid_t* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_b, const RuntimeMethod* method) ;
|
|
// System.Int32 System.ReadOnlySpan`1<System.Byte>::get_Length()
|
|
inline int32_t ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D*, const RuntimeMethod*))ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void System.Guid::.ctor(System.Int32,System.Int16,System.Int16,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_mC52E0191E06C110F9F6E0A417BCA4437D79CC130 (Guid_t* __this, int32_t ___0_a, int16_t ___1_b, int16_t ___2_c, uint8_t ___3_d, uint8_t ___4_e, uint8_t ___5_f, uint8_t ___6_g, uint8_t ___7_h, uint8_t ___8_i, uint8_t ___9_j, uint8_t ___10_k, const RuntimeMethod* method) ;
|
|
// System.Void System.Guid/GuidResult::Init(System.Guid/GuidParseThrowStyle)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void GuidResult_Init_mA6B695110665C265D17C97D0AB8AA25D25D874AB_inline (GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* __this, int32_t ___0_canThrow, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Guid::TryParseGuid(System.ReadOnlySpan`1<System.Char>,System.Guid/GuidStyles,System.Guid/GuidResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_TryParseGuid_m6792F3C351DA8944391B880568730DDEA8A34E01 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_guidString, int32_t ___1_flags, GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* ___2_result, const RuntimeMethod* method) ;
|
|
// System.Exception System.Guid/GuidResult::GetGuidParseException()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* GuidResult_GetGuidParseException_m64B716090AACED88AAA921D1B6EE7BC3AB7F606B (GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Guid::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_mAE66BA1C43B4194F4F7991E2E30370E36CBBF830 (Guid_t* __this, String_t* ___0_g, const RuntimeMethod* method) ;
|
|
// System.Guid System.Guid::Parse(System.ReadOnlySpan`1<System.Char>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t Guid_Parse_m47AC2E6437504837BAB8F5011FFEC0DEB3C6B8E7 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_input, const RuntimeMethod* method) ;
|
|
// System.Void System.Guid/GuidResult::SetFailure(System.Guid/ParseFailureKind,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA (GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* __this, int32_t ___0_failure, String_t* ___1_failureMessageID, const RuntimeMethod* method) ;
|
|
// System.Int32 System.MemoryExtensions::IndexOf<System.Char>(System.ReadOnlySpan`1<T>,T)
|
|
inline int32_t MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_span, Il2CppChar ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Il2CppChar, const RuntimeMethod*))MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_gshared_inline)(___0_span, ___1_value, method);
|
|
}
|
|
// System.Boolean System.Guid::TryParseGuidWithDashes(System.ReadOnlySpan`1<System.Char>,System.Guid/GuidResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_TryParseGuidWithDashes_mA7FFE85E8078F0A465092E6DD009B66B5C731A30 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_guidString, GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* ___1_result, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Guid::TryParseGuidWithHexPrefix(System.ReadOnlySpan`1<System.Char>,System.Guid/GuidResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_TryParseGuidWithHexPrefix_mF5E0432278A7EE8AA096136CD3F252E97B81E0EF (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_guidString, GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* ___1_result, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Guid::TryParseGuidWithNoStyle(System.ReadOnlySpan`1<System.Char>,System.Guid/GuidResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_TryParseGuidWithNoStyle_mACE2E31EA05846B0D70FCC50D8D6D2D169B5F60C (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_guidString, GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* ___1_result, const RuntimeMethod* method) ;
|
|
// System.Void System.Guid/GuidResult::SetFailure(System.Guid/ParseFailureKind,System.String,System.Object,System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidResult_SetFailure_m0F74454921C3AAAC764BC7144BF33D95CF131AE8 (GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* __this, int32_t ___0_failure, String_t* ___1_failureMessageID, RuntimeObject* ___2_failureMessageFormatArgument, String_t* ___3_failureArgumentName, Exception_t* ___4_innerException, const RuntimeMethod* method) ;
|
|
// System.ReadOnlySpan`1<System.Char> System.Guid::EatAllWhitespace(System.ReadOnlySpan`1<System.Char>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Guid_EatAllWhitespace_m30F6DA8C5546820D86DABCF509A9DAA9CFE8214E (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Guid::IsHexPrefix(System.ReadOnlySpan`1<System.Char>,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_IsHexPrefix_m1D3D917C7223786C87C58914798833F77181A222 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, int32_t ___1_i, const RuntimeMethod* method) ;
|
|
// System.Void System.Guid/GuidResult::SetFailure(System.Guid/ParseFailureKind,System.String,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidResult_SetFailure_m15EA2A1141E6D694F88A1B01982D8FD25B77635A (GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* __this, int32_t ___0_failure, String_t* ___1_failureMessageID, RuntimeObject* ___2_failureMessageFormatArgument, const RuntimeMethod* method) ;
|
|
// System.ReadOnlySpan`1<T> System.ReadOnlySpan`1<System.Char>::Slice(System.Int32)
|
|
inline ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, int32_t ___0_start, const RuntimeMethod* method)
|
|
{
|
|
return (( ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, int32_t, const RuntimeMethod*))ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_gshared_inline)(__this, ___0_start, method);
|
|
}
|
|
// System.Boolean System.Guid::StringToInt(System.ReadOnlySpan`1<System.Char>,System.Int32,System.Int32,System.Int32&,System.Guid/GuidResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_StringToInt_m2F526068E0F36DA2FB0B6328189B5458D9F9B2AC (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, int32_t ___1_requiredLength, int32_t ___2_flags, int32_t* ___3_result, GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* ___4_parseResult, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Guid::StringToShort(System.ReadOnlySpan`1<System.Char>,System.Int32,System.Int32,System.Int16&,System.Guid/GuidResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_StringToShort_m8A05D2DF2760542B040A24B5D489A457E9059EC6 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, int32_t ___1_requiredLength, int32_t ___2_flags, int16_t* ___3_result, GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* ___4_parseResult, const RuntimeMethod* method) ;
|
|
// System.Void System.Span`1<System.Byte>::.ctor(System.Void*,System.Int32)
|
|
inline void Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305*, void*, int32_t, const RuntimeMethod*))Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_gshared_inline)(__this, ___0_pointer, ___1_length, method);
|
|
}
|
|
// System.Int32 System.Span`1<System.Byte>::get_Length()
|
|
inline int32_t Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305*, const RuntimeMethod*))Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_gshared_inline)(__this, method);
|
|
}
|
|
// System.Char System.Char::ToUpperInvariant(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpperInvariant_m43EADCB6987DB5FC44A6BFDBA8800EBACCEC68C8 (Il2CppChar ___0_c, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Guid::StringToLong(System.ReadOnlySpan`1<System.Char>,System.Int32&,System.Int32,System.Int64&,System.Guid/GuidResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_StringToLong_m832A3F9F7A385B6B42E6D78EC030881ACF95B0DA (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, int32_t* ___1_parsePos, int32_t ___2_flags, int64_t* ___3_result, GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* ___4_parseResult, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Guid::StringToInt(System.ReadOnlySpan`1<System.Char>,System.Int32&,System.Int32,System.Int32,System.Int32&,System.Guid/GuidResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_StringToInt_mA5A688F393A47866F6AE04BCB46FC38127646737 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, int32_t* ___1_parsePos, int32_t ___2_requiredLength, int32_t ___3_flags, int32_t* ___4_result, GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* ___5_parseResult, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Guid::StringToShort(System.ReadOnlySpan`1<System.Char>,System.Int32&,System.Int32,System.Int32,System.Int16&,System.Guid/GuidResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_StringToShort_m3EF9E1B0048A5C23DA7D2467BB99ECFA54E93730 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, int32_t* ___1_parsePos, int32_t ___2_requiredLength, int32_t ___3_flags, int16_t* ___4_result, GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* ___5_parseResult, const RuntimeMethod* method) ;
|
|
// System.Int32 System.ParseNumbers::StringToInt(System.ReadOnlySpan`1<System.Char>,System.Int32,System.Int32,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ParseNumbers_StringToInt_mE762839BFF1D52853DC70197BDDD20F9FFB834A2 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_s, int32_t ___1_radix, int32_t ___2_flags, int32_t* ___3_currPos, const RuntimeMethod* method) ;
|
|
// System.Void System.FormatException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mE31CCFC2A6FA296CA9E9C6813112D7850FE682D4 (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method) ;
|
|
// System.Void System.Guid/GuidResult::SetFailure(System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidResult_SetFailure_mA88DCBD6280AA9823F2A2810AD3B0BDF50EAD239 (GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* __this, Exception_t* ___0_nativeException, const RuntimeMethod* method) ;
|
|
// System.Int64 System.ParseNumbers::StringToLong(System.ReadOnlySpan`1<System.Char>,System.Int32,System.Int32,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ParseNumbers_StringToLong_m88499EFA2A45950A789D61466A3656D9D1351A2E (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_s, int32_t ___1_radix, int32_t ___2_flags, int32_t* ___3_currPos, const RuntimeMethod* method) ;
|
|
// System.Span`1<T> System.Span`1<System.Char>::op_Implicit(T[])
|
|
inline Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_op_Implicit_mA0E9FDCF2C5113BA9F9C4964D17D8BDFBD6F3C98 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
return (( Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D (*) (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, const RuntimeMethod*))Span_1_op_Implicit_mA0E9FDCF2C5113BA9F9C4964D17D8BDFBD6F3C98_gshared)(___0_array, method);
|
|
}
|
|
// System.Void System.ReadOnlySpan`1<System.Char>::CopyTo(System.Span`1<T>)
|
|
inline void ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D, const RuntimeMethod*))ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030_gshared)(__this, ___0_destination, method);
|
|
}
|
|
// System.Void System.ReadOnlySpan`1<System.Char>::.ctor(T[],System.Int32,System.Int32)
|
|
inline void ReadOnlySpan_1__ctor_mDADE08E6B4594775C6675B389078E5FE98C745D5_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_array, int32_t ___1_start, int32_t ___2_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t, const RuntimeMethod*))ReadOnlySpan_1__ctor_mDADE08E6B4594775C6675B389078E5FE98C745D5_gshared_inline)(__this, ___0_array, ___1_start, ___2_length, method);
|
|
}
|
|
// System.Char System.Char::ToLowerInvariant(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLowerInvariant_m983C1CD07015E41B97D71F466B4B686F1145E60D (Il2CppChar ___0_c, const RuntimeMethod* method) ;
|
|
// System.String System.Guid::ToString(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Guid_ToString_mD2A93BCA0CBFABB680A93A8FA668AD90E7B56130 (Guid_t* __this, String_t* ___0_format, RuntimeObject* ___1_provider, const RuntimeMethod* method) ;
|
|
// System.String System.Guid::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Guid_ToString_m2BFFD5FA726E03FA707AAFCCF065896C46D5290C (Guid_t* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Guid::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Guid_GetHashCode_m239B7679BB9ED5A207B3D2F858B5F30FFC455408 (Guid_t* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Guid::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_Equals_mC7349E47BF1CBCBFB4C9032C050DE54AAC10000B (Guid_t* __this, RuntimeObject* ___0_o, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Guid::Equals(System.Guid)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_Equals_m1839AD036DD7C056E8439A64D5D82490C1F08E0C (Guid_t* __this, Guid_t ___0_g, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Guid::GetResult(System.UInt32,System.UInt32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C (Guid_t* __this, uint32_t ___0_me, uint32_t ___1_them, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Guid::CompareTo(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Guid_CompareTo_m25940E81E692D335CFDE59D11862C99D99D044BB (Guid_t* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Guid::CompareTo(System.Guid)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Guid_CompareTo_mC22A00A14BBCCBF55F303C89A567FCA43925B586 (Guid_t* __this, Guid_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.String System.Guid::ToString(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Guid_ToString_mDAA91A4A993E3A7AD8339665E3F0CC35FE00E833 (Guid_t* __this, String_t* ___0_format, const RuntimeMethod* method) ;
|
|
// System.Char System.Guid::HexToChar(System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar Guid_HexToChar_mBA9068B41C7375C0B48FAC9F543DF59ECE37C31F_inline (int32_t ___0_a, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::get_OffsetToStringData()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_m90A5D27EF88BE9432BF7093B7D7E7A0ACB0A8FBD (const RuntimeMethod* method) ;
|
|
// System.Boolean System.Guid::TryFormat(System.Span`1<System.Char>,System.Int32&,System.ReadOnlySpan`1<System.Char>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_TryFormat_m9D48F66E2448F329A3DD1234B0A8F3EAF6757E79 (Guid_t* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, const RuntimeMethod* method) ;
|
|
// T& System.Runtime.InteropServices.MemoryMarshal::GetReference<System.Char>(System.Span`1<T>)
|
|
inline Il2CppChar* MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m7FA6FA19030FDE5E3810FBFFD0FD8D6D36172527 (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_span, const RuntimeMethod* method)
|
|
{
|
|
return (( Il2CppChar* (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D, const RuntimeMethod*))MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m7FA6FA19030FDE5E3810FBFFD0FD8D6D36172527_gshared)(___0_span, method);
|
|
}
|
|
// System.Int32 System.Guid::HexsToChars(System.Char*,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Guid_HexsToChars_m9951D597B3F5132533658BA1940410B2CDB9B354 (Il2CppChar* ___0_guidChars, int32_t ___1_a, int32_t ___2_b, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Guid::HexsToCharsHexOutput(System.Char*,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Guid_HexsToCharsHexOutput_m3A01A028F16D95ADDF615E0EBA6B5F93D21C1A62 (Il2CppChar* ___0_guidChars, int32_t ___1_a, int32_t ___2_b, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Guid::System.ISpanFormattable.TryFormat(System.Span`1<System.Char>,System.Int32&,System.ReadOnlySpan`1<System.Char>,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_System_ISpanFormattable_TryFormat_mAA4B1A160D805A87D08267AA47C933CE1480404D (Guid_t* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, RuntimeObject* ___3_provider, const RuntimeMethod* method) ;
|
|
// System.Void System.ReadOnlySpan`1<System.Char>::.ctor(T&,System.Int32)
|
|
inline void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, Il2CppChar*, int32_t, const RuntimeMethod*))ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline)(__this, ___0_ptr, ___1_length, method);
|
|
}
|
|
// System.Boolean System.MemoryExtensions::SequenceEqual<System.Char>(System.ReadOnlySpan`1<T>,System.ReadOnlySpan`1<T>)
|
|
inline bool MemoryExtensions_SequenceEqual_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m5C4C602E94DF85548E163F2D3FE9DDCA36C7E3E6_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_span, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_other, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, const RuntimeMethod*))MemoryExtensions_SequenceEqual_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m5C4C602E94DF85548E163F2D3FE9DDCA36C7E3E6_gshared_inline)(___0_span, ___1_other, method);
|
|
}
|
|
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException(System.ExceptionArgument)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m9B335696876184D17D1F8D7AF94C1B5B0869AA97 (int32_t ___0_argument, const RuntimeMethod* method) ;
|
|
// System.Void System.ThrowHelper::ThrowInvalidTypeWithPointersNotSupported(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowInvalidTypeWithPointersNotSupported_m5707DE408588F6EAC3FC7D10F9520308CF8C8CCF (Type_t* ___0_targetType, const RuntimeMethod* method) ;
|
|
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56 (const RuntimeMethod* method) ;
|
|
// System.Byte& System.Array::GetRawSzArrayData()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t* Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline (RuntimeArray* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC (Type_t* ___0_left, Type_t* ___1_right, const RuntimeMethod* method) ;
|
|
// System.Int32 System.SpanHelpers::IndexOf(System.Byte&,System.Byte,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SpanHelpers_IndexOf_mB37566B16F2F4C7D14E1CD6EA781AC67110E8C4C (uint8_t* ___0_searchSpace, uint8_t ___1_value, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
// System.Int32 System.SpanHelpers::IndexOf(System.Char&,System.Char,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SpanHelpers_IndexOf_m1EBE4594F5288D2297A3A8E8E4F365BE4BD211DC (Il2CppChar* ___0_searchSpace, Il2CppChar ___1_value, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
// System.Boolean System.SpanHelpers::SequenceEqual(System.Byte&,System.Byte&,System.UInt64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SpanHelpers_SequenceEqual_m69781B64721462BCA1ED200A1BB853E9B7026F2E (uint8_t* ___0_first, uint8_t* ___1_second, uint64_t ___2_length, const RuntimeMethod* method) ;
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.DateTimeOffset::.ctor(System.Int64,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffset__ctor_m81DCBFF0B9D7029AD6B8B80EA4CB8846387DFB9A (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, int64_t ___0_ticks, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_offset, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ___1_offset;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
|
|
int16_t L_1;
|
|
L_1 = DateTimeOffset_ValidateOffset_m5AC06D0C6ADE061A34727812EB9F2C7518D8F50D(L_0, NULL);
|
|
__this->____offsetMinutes_4 = L_1;
|
|
int64_t L_2 = ___0_ticks;
|
|
DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441((&V_0), L_2, NULL);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = V_0;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_4 = ___1_offset;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5;
|
|
L_5 = DateTimeOffset_ValidateDate_mCDCD3DE0618C87FB8B45855466077F049C75DAFF(L_3, L_4, NULL);
|
|
__this->____dateTime_3 = L_5;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DateTimeOffset__ctor_m81DCBFF0B9D7029AD6B8B80EA4CB8846387DFB9A_AdjustorThunk (RuntimeObject* __this, int64_t ___0_ticks, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_offset, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
DateTimeOffset__ctor_m81DCBFF0B9D7029AD6B8B80EA4CB8846387DFB9A(_thisAdjusted, ___0_ticks, ___1_offset, method);
|
|
}
|
|
// System.Void System.DateTimeOffset::.ctor(System.DateTime)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffset__ctor_mB1671EA00463E92811C8DEA80797DC89B2FFCA62 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
int32_t L_0;
|
|
L_0 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___0_dateTime), NULL);
|
|
if ((((int32_t)L_0) == ((int32_t)1)))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = ___0_dateTime;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2;
|
|
L_2 = TimeZoneInfo_GetLocalUtcOffset_m3D55DA415FB33A0721CF19FBCAB899EB8EAC4433(L_1, 2, NULL);
|
|
V_0 = L_2;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
TimeSpan__ctor_m061B122FA11D2063FE751C1F1D019DF1C8B10B1F_inline((&V_0), ((int64_t)0), NULL);
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
|
|
int16_t L_4;
|
|
L_4 = DateTimeOffset_ValidateOffset_m5AC06D0C6ADE061A34727812EB9F2C7518D8F50D(L_3, NULL);
|
|
__this->____offsetMinutes_4 = L_4;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = ___0_dateTime;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6 = V_0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7;
|
|
L_7 = DateTimeOffset_ValidateDate_mCDCD3DE0618C87FB8B45855466077F049C75DAFF(L_5, L_6, NULL);
|
|
__this->____dateTime_3 = L_7;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DateTimeOffset__ctor_mB1671EA00463E92811C8DEA80797DC89B2FFCA62_AdjustorThunk (RuntimeObject* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
DateTimeOffset__ctor_mB1671EA00463E92811C8DEA80797DC89B2FFCA62(_thisAdjusted, ___0_dateTime, method);
|
|
}
|
|
// System.Void System.DateTimeOffset::.ctor(System.DateTime,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffset__ctor_m6E6938BD1F5EEE0F96247339B75FB7CEF3665FDC (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_offset, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0;
|
|
L_0 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___0_dateTime), NULL);
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___1_offset;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2 = ___0_dateTime;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3;
|
|
L_3 = TimeZoneInfo_GetLocalUtcOffset_m3D55DA415FB33A0721CF19FBCAB899EB8EAC4433(L_2, 2, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = TimeSpan_op_Inequality_m2248419A8BCC8744CADE25174238B24AE34F17DB(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_5 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_5);
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCB2F6BDDE5B634595EA1EB4D41AD9B7FC16889AF)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral544DC80A2A82A08B6321F56F8987CB7E5DEED1C4)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeOffset__ctor_m6E6938BD1F5EEE0F96247339B75FB7CEF3665FDC_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
int32_t L_6;
|
|
L_6 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___0_dateTime), NULL);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7 = ___1_offset;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19;
|
|
bool L_9;
|
|
L_9 = TimeSpan_op_Inequality_m2248419A8BCC8744CADE25174238B24AE34F17DB(L_7, L_8, NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_10 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_10);
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDE278963373E67E56D430AA6BB86F447EB47A525)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral544DC80A2A82A08B6321F56F8987CB7E5DEED1C4)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeOffset__ctor_m6E6938BD1F5EEE0F96247339B75FB7CEF3665FDC_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11 = ___1_offset;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
|
|
int16_t L_12;
|
|
L_12 = DateTimeOffset_ValidateOffset_m5AC06D0C6ADE061A34727812EB9F2C7518D8F50D(L_11, NULL);
|
|
__this->____offsetMinutes_4 = L_12;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13 = ___0_dateTime;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_14 = ___1_offset;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15;
|
|
L_15 = DateTimeOffset_ValidateDate_mCDCD3DE0618C87FB8B45855466077F049C75DAFF(L_13, L_14, NULL);
|
|
__this->____dateTime_3 = L_15;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DateTimeOffset__ctor_m6E6938BD1F5EEE0F96247339B75FB7CEF3665FDC_AdjustorThunk (RuntimeObject* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_offset, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
DateTimeOffset__ctor_m6E6938BD1F5EEE0F96247339B75FB7CEF3665FDC(_thisAdjusted, ___0_dateTime, ___1_offset, method);
|
|
}
|
|
// System.DateTime System.DateTimeOffset::get_UtcDateTime()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____dateTime_3;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1;
|
|
L_1 = DateTime_SpecifyKind_mFC3F6DD6AD017F62A8AF81DAD5620AEC474871D0(L_0, 1, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue;
|
|
_returnValue = DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.DateTime System.DateTimeOffset::get_ClockDateTime()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeOffset_get_ClockDateTime_mEBD2897618EB54200ADD029865ED6F73CB762D43 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____dateTime_3;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1;
|
|
L_1 = DateTimeOffset_get_Offset_mE90E2548227F1EE8BF4A6A5EB71B32D48D3035A4(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2;
|
|
L_2 = DateTime_op_Addition_m652BE1306897DBE4CDF3ADA99FFFE2E70BFE3865(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
int64_t L_3;
|
|
L_3 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&V_0), NULL);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_4), L_3, 0, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeOffset_get_ClockDateTime_mEBD2897618EB54200ADD029865ED6F73CB762D43_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue;
|
|
_returnValue = DateTimeOffset_get_ClockDateTime_mEBD2897618EB54200ADD029865ED6F73CB762D43(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.TimeSpan System.DateTimeOffset::get_Offset()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTimeOffset_get_Offset_mE90E2548227F1EE8BF4A6A5EB71B32D48D3035A4 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int16_t L_0 = __this->____offsetMinutes_4;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&L_1), 0, L_0, 0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTimeOffset_get_Offset_mE90E2548227F1EE8BF4A6A5EB71B32D48D3035A4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A _returnValue;
|
|
_returnValue = DateTimeOffset_get_Offset_mE90E2548227F1EE8BF4A6A5EB71B32D48D3035A4(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.DateTimeOffset System.DateTimeOffset::AddTicks(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 DateTimeOffset_AddTicks_mE58569EF44AAA299CC921A935AF5277DC2D10902 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, int64_t ___0_ticks, const RuntimeMethod* method)
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0;
|
|
L_0 = DateTimeOffset_get_ClockDateTime_mEBD2897618EB54200ADD029865ED6F73CB762D43(__this, NULL);
|
|
V_0 = L_0;
|
|
int64_t L_1 = ___0_ticks;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2;
|
|
L_2 = DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D((&V_0), L_1, NULL);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3;
|
|
L_3 = DateTimeOffset_get_Offset_mE90E2548227F1EE8BF4A6A5EB71B32D48D3035A4(__this, NULL);
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
DateTimeOffset__ctor_m6E6938BD1F5EEE0F96247339B75FB7CEF3665FDC((&L_4), L_2, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 DateTimeOffset_AddTicks_mE58569EF44AAA299CC921A935AF5277DC2D10902_AdjustorThunk (RuntimeObject* __this, int64_t ___0_ticks, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 _returnValue;
|
|
_returnValue = DateTimeOffset_AddTicks_mE58569EF44AAA299CC921A935AF5277DC2D10902(_thisAdjusted, ___0_ticks, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 System.DateTimeOffset::System.IComparable.CompareTo(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeOffset_System_IComparable_CompareTo_m992E97179503D66B0CEC5A97DD205F7F0D0C346E (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
if (L_0)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1AF30846341A2A4FB9BBDAA67E3C2AD40E1A8AC9)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeOffset_System_IComparable_CompareTo_m992E97179503D66B0CEC5A97DD205F7F0D0C346E_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
RuntimeObject* L_3 = ___0_obj;
|
|
V_2 = ((*(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)((DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)UnBox(L_3, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var))));
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4;
|
|
L_4 = DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40((&V_2), NULL);
|
|
V_0 = L_4;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5;
|
|
L_5 = DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40(__this, NULL);
|
|
V_1 = L_5;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6 = V_1;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
bool L_8;
|
|
L_8 = DateTime_op_GreaterThan_m8F1FA3C039A0148FC1500E790A77CB44F025EA9F(L_6, L_7, NULL);
|
|
if (!L_8)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9 = V_1;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_10 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
bool L_11;
|
|
L_11 = DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17(L_9, L_10, NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t DateTimeOffset_System_IComparable_CompareTo_m992E97179503D66B0CEC5A97DD205F7F0D0C346E_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = DateTimeOffset_System_IComparable_CompareTo_m992E97179503D66B0CEC5A97DD205F7F0D0C346E(_thisAdjusted, ___0_obj, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 System.DateTimeOffset::CompareTo(System.DateTimeOffset)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeOffset_CompareTo_mDBDCA54C17FD088B3EE9ACDA2118C9FAD1DA103A (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0;
|
|
L_0 = DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40((&___0_other), NULL);
|
|
V_0 = L_0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1;
|
|
L_1 = DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40(__this, NULL);
|
|
V_1 = L_1;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2 = V_1;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = DateTime_op_GreaterThan_m8F1FA3C039A0148FC1500E790A77CB44F025EA9F(L_2, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = V_1;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
bool L_7;
|
|
L_7 = DateTime_op_LessThan_m2A02FFF5F35E33417FB32CB9F948769CA15AED17(L_5, L_6, NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t DateTimeOffset_CompareTo_mDBDCA54C17FD088B3EE9ACDA2118C9FAD1DA103A_AdjustorThunk (RuntimeObject* __this, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = DateTimeOffset_CompareTo_mDBDCA54C17FD088B3EE9ACDA2118C9FAD1DA103A(_thisAdjusted, ___0_other, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean System.DateTimeOffset::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeOffset_Equals_m140EDD50EA8FDA74619AA64737497663B56B0483 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1;
|
|
L_1 = DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40(__this, NULL);
|
|
V_0 = L_1;
|
|
RuntimeObject* L_2 = ___0_obj;
|
|
V_1 = ((*(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)((DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)UnBox(L_2, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var))));
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3;
|
|
L_3 = DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40((&V_1), NULL);
|
|
bool L_4;
|
|
L_4 = DateTime_Equals_m83D001F1C86DC58C2B0AE99DD2FAB12669B10C1B((&V_0), L_3, NULL);
|
|
return L_4;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool DateTimeOffset_Equals_m140EDD50EA8FDA74619AA64737497663B56B0483_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = DateTimeOffset_Equals_m140EDD50EA8FDA74619AA64737497663B56B0483(_thisAdjusted, ___0_obj, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean System.DateTimeOffset::Equals(System.DateTimeOffset)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeOffset_Equals_m68D2F02214D74BE8742B3F089E7EB019AA5B90E7 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0;
|
|
L_0 = DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40(__this, NULL);
|
|
V_0 = L_0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1;
|
|
L_1 = DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40((&___0_other), NULL);
|
|
bool L_2;
|
|
L_2 = DateTime_Equals_m83D001F1C86DC58C2B0AE99DD2FAB12669B10C1B((&V_0), L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool DateTimeOffset_Equals_m68D2F02214D74BE8742B3F089E7EB019AA5B90E7_AdjustorThunk (RuntimeObject* __this, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = DateTimeOffset_Equals_m68D2F02214D74BE8742B3F089E7EB019AA5B90E7(_thisAdjusted, ___0_other, method);
|
|
return _returnValue;
|
|
}
|
|
// System.DateTimeOffset System.DateTimeOffset::FromFileTime(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 DateTimeOffset_FromFileTime_m91913654F9CA7F5367A35D1E25E321D7735CC32C (int64_t ___0_fileTime, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int64_t L_0 = ___0_fileTime;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1;
|
|
L_1 = DateTime_FromFileTime_m222D518E725E95C1FBD8F4FADE4162D6878101DA(L_0, NULL);
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
DateTimeOffset__ctor_mB1671EA00463E92811C8DEA80797DC89B2FFCA62((&L_2), L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.DateTimeOffset System.DateTimeOffset::FromUnixTimeSeconds(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 DateTimeOffset_FromUnixTimeSeconds_mE1FA5E04CCCE8A0E8903C9DACC64526C721C0A47 (int64_t ___0_seconds, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int64_t L_0 = ___0_seconds;
|
|
if ((((int64_t)L_0) < ((int64_t)((int64_t)-62135596800LL))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_1 = ___0_seconds;
|
|
if ((((int64_t)L_1) <= ((int64_t)((int64_t)253402300799LL))))
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int64_t L_2 = ((int64_t)-62135596800LL);
|
|
RuntimeObject* L_3 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var)), &L_2);
|
|
int64_t L_4 = ((int64_t)253402300799LL);
|
|
RuntimeObject* L_5 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var)), &L_4);
|
|
String_t* L_6;
|
|
L_6 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCB6B67D4653121AE0F63EE256975A0DBD0FAF6B1)), L_3, L_5, NULL);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_7 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_7);
|
|
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAC2806EA40D9F7601BBB6DA354C649B46D2D8877)), L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeOffset_FromUnixTimeSeconds_mE1FA5E04CCCE8A0E8903C9DACC64526C721C0A47_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
int64_t L_8 = ___0_seconds;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19;
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_10;
|
|
memset((&L_10), 0, sizeof(L_10));
|
|
DateTimeOffset__ctor_m81DCBFF0B9D7029AD6B8B80EA4CB8846387DFB9A((&L_10), ((int64_t)il2cpp_codegen_add(((int64_t)il2cpp_codegen_multiply(L_8, ((int64_t)((int32_t)10000000)))), ((int64_t)621355968000000000LL))), L_9, /*hidden argument*/NULL);
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeOffset::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffset_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC8A5AB3C859C85FC462C4C7BF684B4F467C397F5 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, RuntimeObject* ___0_sender, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* V_0 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
try
|
|
{// begin try (depth: 1)
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0;
|
|
L_0 = DateTimeOffset_get_Offset_mE90E2548227F1EE8BF4A6A5EB71B32D48D3035A4(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
|
|
int16_t L_1;
|
|
L_1 = DateTimeOffset_ValidateOffset_m5AC06D0C6ADE061A34727812EB9F2C7518D8F50D(L_0, NULL);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2;
|
|
L_2 = DateTimeOffset_get_ClockDateTime_mEBD2897618EB54200ADD029865ED6F73CB762D43(__this, NULL);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3;
|
|
L_3 = DateTimeOffset_get_Offset_mE90E2548227F1EE8BF4A6A5EB71B32D48D3035A4(__this, NULL);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4;
|
|
L_4 = DateTimeOffset_ValidateDate_mCDCD3DE0618C87FB8B45855466077F049C75DAFF(L_2, L_3, NULL);
|
|
goto IL_002d;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0020;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0020:
|
|
{// begin catch(System.ArgumentException)
|
|
V_0 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*));
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_5 = V_0;
|
|
SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_6 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_6);
|
|
SerializationException__ctor_m8CF86DA30D4F95904BF5C1A9CF646DE92EB8C161(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA595476C6F6D3E2C3406DD69BC73859EA4408F2F)), L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeOffset_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC8A5AB3C859C85FC462C4C7BF684B4F467C397F5_RuntimeMethod_var)));
|
|
}// end catch (depth: 1)
|
|
|
|
IL_002d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DateTimeOffset_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC8A5AB3C859C85FC462C4C7BF684B4F467C397F5_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_sender, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
DateTimeOffset_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC8A5AB3C859C85FC462C4C7BF684B4F467C397F5(_thisAdjusted, ___0_sender, method);
|
|
}
|
|
// System.Void System.DateTimeOffset::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffset_System_Runtime_Serialization_ISerializable_GetObjectData_m9708DEBDA52F7130E3E3946C1F86507DCCE1883C (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2A9D19DA495F58C5612D1FB82E80D4336D214F35);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeOffset_System_Runtime_Serialization_ISerializable_GetObjectData_m9708DEBDA52F7130E3E3946C1F86507DCCE1883C_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = __this->____dateTime_3;
|
|
NullCheck(L_2);
|
|
SerializationInfo_AddValue_m820C29058E845C4A30DDA9D7A235F693469C0358(L_2, _stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA, L_3, NULL);
|
|
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_4 = ___0_info;
|
|
int16_t L_5 = __this->____offsetMinutes_4;
|
|
NullCheck(L_4);
|
|
SerializationInfo_AddValue_m813739AF0F2C3F6FC96CD5EE4200134E39D6BDB3(L_4, _stringLiteral2A9D19DA495F58C5612D1FB82E80D4336D214F35, L_5, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DateTimeOffset_System_Runtime_Serialization_ISerializable_GetObjectData_m9708DEBDA52F7130E3E3946C1F86507DCCE1883C_AdjustorThunk (RuntimeObject* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
DateTimeOffset_System_Runtime_Serialization_ISerializable_GetObjectData_m9708DEBDA52F7130E3E3946C1F86507DCCE1883C(_thisAdjusted, ___0_info, ___1_context, method);
|
|
}
|
|
// System.Void System.DateTimeOffset::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffset__ctor_m3F044A6B1D54C1067C87CFF8C7B930D0F613041D (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2A9D19DA495F58C5612D1FB82E80D4336D214F35);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeOffset__ctor_m3F044A6B1D54C1067C87CFF8C7B930D0F613041D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_4;
|
|
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
|
|
NullCheck(L_2);
|
|
RuntimeObject* L_5;
|
|
L_5 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_2, _stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA, L_4, NULL);
|
|
__this->____dateTime_3 = ((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_5, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))));
|
|
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_6 = ___0_info;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
|
|
Type_t* L_8;
|
|
L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL);
|
|
NullCheck(L_6);
|
|
RuntimeObject* L_9;
|
|
L_9 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_6, _stringLiteral2A9D19DA495F58C5612D1FB82E80D4336D214F35, L_8, NULL);
|
|
__this->____offsetMinutes_4 = ((*(int16_t*)((int16_t*)(int16_t*)UnBox(L_9, Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var))));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DateTimeOffset__ctor_m3F044A6B1D54C1067C87CFF8C7B930D0F613041D_AdjustorThunk (RuntimeObject* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
DateTimeOffset__ctor_m3F044A6B1D54C1067C87CFF8C7B930D0F613041D(_thisAdjusted, ___0_info, ___1_context, method);
|
|
}
|
|
// System.Int32 System.DateTimeOffset::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeOffset_GetHashCode_mD133F5089095D2C75A1B7C90D71D62D39F0D11CD (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, const RuntimeMethod* method)
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0;
|
|
L_0 = DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40(__this, NULL);
|
|
V_0 = L_0;
|
|
int32_t L_1;
|
|
L_1 = DateTime_GetHashCode_m206A3B9394E6D089311A1A81305A5A1AB30B2D99((&V_0), NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t DateTimeOffset_GetHashCode_mD133F5089095D2C75A1B7C90D71D62D39F0D11CD_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = DateTimeOffset_GetHashCode_mD133F5089095D2C75A1B7C90D71D62D39F0D11CD(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.DateTimeOffset System.DateTimeOffset::ToLocalTime()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 DateTimeOffset_ToLocalTime_mEFEE0815D555AF14CBDB4C8ACF508C8E9601549B (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_0;
|
|
L_0 = DateTimeOffset_ToLocalTime_mBB86E57ECB88BB909D4853F584CB2C213A758462(__this, (bool)0, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 DateTimeOffset_ToLocalTime_mEFEE0815D555AF14CBDB4C8ACF508C8E9601549B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 _returnValue;
|
|
_returnValue = DateTimeOffset_ToLocalTime_mEFEE0815D555AF14CBDB4C8ACF508C8E9601549B(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.DateTimeOffset System.DateTimeOffset::ToLocalTime(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 DateTimeOffset_ToLocalTime_mBB86E57ECB88BB909D4853F584CB2C213A758462 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, bool ___0_throwOnOverflow, const RuntimeMethod* method)
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0;
|
|
L_0 = DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40(__this, NULL);
|
|
V_0 = L_0;
|
|
bool L_1 = ___0_throwOnOverflow;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2;
|
|
L_2 = DateTime_ToLocalTime_mC7A8D4FD1DBFDD1E596D1BEE0257AA777FCB0595((&V_0), L_1, NULL);
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
DateTimeOffset__ctor_mB1671EA00463E92811C8DEA80797DC89B2FFCA62((&L_3), L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 DateTimeOffset_ToLocalTime_mBB86E57ECB88BB909D4853F584CB2C213A758462_AdjustorThunk (RuntimeObject* __this, bool ___0_throwOnOverflow, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 _returnValue;
|
|
_returnValue = DateTimeOffset_ToLocalTime_mBB86E57ECB88BB909D4853F584CB2C213A758462(_thisAdjusted, ___0_throwOnOverflow, method);
|
|
return _returnValue;
|
|
}
|
|
// System.String System.DateTimeOffset::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeOffset_ToString_m6179A30F1E22CDF5F9340DFE115E923C18BC13F9 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0;
|
|
L_0 = DateTimeOffset_get_ClockDateTime_mEBD2897618EB54200ADD029865ED6F73CB762D43(__this, NULL);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1;
|
|
L_1 = DateTimeOffset_get_Offset_mE90E2548227F1EE8BF4A6A5EB71B32D48D3035A4(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
String_t* L_2;
|
|
L_2 = DateTimeFormat_Format_mE29072D46A40E3F42E100A7F85452B42B8DC692B(L_0, (String_t*)NULL, (RuntimeObject*)NULL, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* DateTimeOffset_ToString_m6179A30F1E22CDF5F9340DFE115E923C18BC13F9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = DateTimeOffset_ToString_m6179A30F1E22CDF5F9340DFE115E923C18BC13F9(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.String System.DateTimeOffset::ToString(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeOffset_ToString_m4B5BB65E069D2146E808A1CE5F424ACA2F4D2281 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, String_t* ___0_format, RuntimeObject* ___1_formatProvider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0;
|
|
L_0 = DateTimeOffset_get_ClockDateTime_mEBD2897618EB54200ADD029865ED6F73CB762D43(__this, NULL);
|
|
String_t* L_1 = ___0_format;
|
|
RuntimeObject* L_2 = ___1_formatProvider;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3;
|
|
L_3 = DateTimeOffset_get_Offset_mE90E2548227F1EE8BF4A6A5EB71B32D48D3035A4(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
String_t* L_4;
|
|
L_4 = DateTimeFormat_Format_mE29072D46A40E3F42E100A7F85452B42B8DC692B(L_0, L_1, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* DateTimeOffset_ToString_m4B5BB65E069D2146E808A1CE5F424ACA2F4D2281_AdjustorThunk (RuntimeObject* __this, String_t* ___0_format, RuntimeObject* ___1_formatProvider, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = DateTimeOffset_ToString_m4B5BB65E069D2146E808A1CE5F424ACA2F4D2281(_thisAdjusted, ___0_format, ___1_formatProvider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean System.DateTimeOffset::TryFormat(System.Span`1<System.Char>,System.Int32&,System.ReadOnlySpan`1<System.Char>,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeOffset_TryFormat_mBC9268BD19855CF3E7CF947720996B57CCD98F06 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, RuntimeObject* ___3_formatProvider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0;
|
|
L_0 = DateTimeOffset_get_ClockDateTime_mEBD2897618EB54200ADD029865ED6F73CB762D43(__this, NULL);
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_1 = ___0_destination;
|
|
int32_t* L_2 = ___1_charsWritten;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3 = ___2_format;
|
|
RuntimeObject* L_4 = ___3_formatProvider;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5;
|
|
L_5 = DateTimeOffset_get_Offset_mE90E2548227F1EE8BF4A6A5EB71B32D48D3035A4(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = DateTimeFormat_TryFormat_mFBA0ED63E8D61B02348D9278A7132CEAE2258837(L_0, L_1, L_2, L_3, L_4, L_5, NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool DateTimeOffset_TryFormat_mBC9268BD19855CF3E7CF947720996B57CCD98F06_AdjustorThunk (RuntimeObject* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, RuntimeObject* ___3_formatProvider, const RuntimeMethod* method)
|
|
{
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = DateTimeOffset_TryFormat_mBC9268BD19855CF3E7CF947720996B57CCD98F06(_thisAdjusted, ___0_destination, ___1_charsWritten, ___2_format, ___3_formatProvider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int16 System.DateTimeOffset::ValidateOffset(System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t DateTimeOffset_ValidateOffset_m5AC06D0C6ADE061A34727812EB9F2C7518D8F50D (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_offset, const RuntimeMethod* method)
|
|
{
|
|
int64_t V_0 = 0;
|
|
{
|
|
int64_t L_0;
|
|
L_0 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&___0_offset), NULL);
|
|
V_0 = L_0;
|
|
int64_t L_1 = V_0;
|
|
if (!((int64_t)(L_1%((int64_t)((int32_t)600000000)))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9C1888F19CB4E2EB7486ACE18CE31178FD9056E2)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral544DC80A2A82A08B6321F56F8987CB7E5DEED1C4)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeOffset_ValidateOffset_m5AC06D0C6ADE061A34727812EB9F2C7518D8F50D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int64_t L_3 = V_0;
|
|
if ((((int64_t)L_3) < ((int64_t)((int64_t)-504000000000LL))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_4 = V_0;
|
|
if ((((int64_t)L_4) <= ((int64_t)((int64_t)504000000000LL))))
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_5);
|
|
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral544DC80A2A82A08B6321F56F8987CB7E5DEED1C4)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4816B2ABCEC514BAEA631C6441D007C41F354C11)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeOffset_ValidateOffset_m5AC06D0C6ADE061A34727812EB9F2C7518D8F50D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
int64_t L_6;
|
|
L_6 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&___0_offset), NULL);
|
|
return ((int16_t)((int64_t)(L_6/((int64_t)((int32_t)600000000)))));
|
|
}
|
|
}
|
|
// System.DateTime System.DateTimeOffset::ValidateDate(System.DateTime,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeOffset_ValidateDate_mCDCD3DE0618C87FB8B45855466077F049C75DAFF (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_offset, const RuntimeMethod* method)
|
|
{
|
|
int64_t V_0 = 0;
|
|
{
|
|
int64_t L_0;
|
|
L_0 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___0_dateTime), NULL);
|
|
int64_t L_1;
|
|
L_1 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&___1_offset), NULL);
|
|
V_0 = ((int64_t)il2cpp_codegen_subtract(L_0, L_1));
|
|
int64_t L_2 = V_0;
|
|
if ((((int64_t)L_2) < ((int64_t)((int64_t)0))))
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_3 = V_0;
|
|
if ((((int64_t)L_3) <= ((int64_t)((int64_t)3155378975999999999LL))))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_4 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_4);
|
|
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral544DC80A2A82A08B6321F56F8987CB7E5DEED1C4)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0C64494800DCFB8056428332B2D9B374A97F8FF1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeOffset_ValidateDate_mCDCD3DE0618C87FB8B45855466077F049C75DAFF_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
int64_t L_5 = V_0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_6), L_5, 0, /*hidden argument*/NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeOffset::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffset__cctor_mBCE615F0D7E795B8B27590F8E3FE5F924E1415B6 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19;
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
DateTimeOffset__ctor_m81DCBFF0B9D7029AD6B8B80EA4CB8846387DFB9A((&L_1), ((int64_t)0), L_0, /*hidden argument*/NULL);
|
|
((DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var))->___MinValue_0 = L_1;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19;
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
DateTimeOffset__ctor_m81DCBFF0B9D7029AD6B8B80EA4CB8846387DFB9A((&L_3), ((int64_t)3155378975999999999LL), L_2, /*hidden argument*/NULL);
|
|
((DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var))->___MaxValue_1 = L_3;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_4 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19;
|
|
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_5;
|
|
memset((&L_5), 0, sizeof(L_5));
|
|
DateTimeOffset__ctor_m81DCBFF0B9D7029AD6B8B80EA4CB8846387DFB9A((&L_5), ((int64_t)621355968000000000LL), L_4, /*hidden argument*/NULL);
|
|
((DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var))->___UnixEpoch_2 = L_5;
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.DivideByZeroException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DivideByZeroException__ctor_m5E24CFDDA1E75D77F39D139152C20B62C3E4C3BA (DivideByZeroException_tC43171E50A38F5CD4242D258D0B0C6B74898C279* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFA85549C37D5E928683E7C8CC82CC429B13F9973);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ArithmeticException__ctor_m84E573C2093803DC9E6219461275B351D225C16A(__this, _stringLiteralFA85549C37D5E928683E7C8CC82CC429B13F9973, NULL);
|
|
Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147352558), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.DivideByZeroException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DivideByZeroException__ctor_m8656A4270F42D78B00BB718445A40D3048190246 (DivideByZeroException_tC43171E50A38F5CD4242D258D0B0C6B74898C279* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info;
|
|
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context;
|
|
ArithmeticException__ctor_m9F97AB2FDC9EED4A59627F1F2F6165AB592F8942(__this, L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.DllNotFoundException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DllNotFoundException__ctor_mF194AA55062A8A63CC0231F8CC3FE580A396035F (DllNotFoundException_t8CAE636A394C482C9FCF38FB7B7929506319D534* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6114CB582F4E13FEEE1CCA0F9E462C7A3BE0729D);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
TypeLoadException__ctor_m8C6FC5CF78B256F19356A241115BF03E64B7C00A(__this, _stringLiteral6114CB582F4E13FEEE1CCA0F9E462C7A3BE0729D, NULL);
|
|
Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233052), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.DllNotFoundException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DllNotFoundException__ctor_mDDF9EDD5E6D017A2370BCD4219960A662AD23FF0 (DllNotFoundException_t8CAE636A394C482C9FCF38FB7B7929506319D534* __this, String_t* ___0_message, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_message;
|
|
TypeLoadException__ctor_m8C6FC5CF78B256F19356A241115BF03E64B7C00A(__this, L_0, NULL);
|
|
Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233052), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.DllNotFoundException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DllNotFoundException__ctor_m196A31524CAE31E8F788D8D0EFF63FA5FBBD8269 (DllNotFoundException_t8CAE636A394C482C9FCF38FB7B7929506319D534* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info;
|
|
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context;
|
|
TypeLoadException__ctor_m89C9BE840B2C552C3F378FE56804FE42BA69B583(__this, L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Boolean System.Double::IsFinite(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_IsFinite_m8C71862AC402EB926F88D63FCD0E03B7433B5CEB (double ___0_d, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = ___0_d;
|
|
il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
|
|
int64_t L_1;
|
|
L_1 = BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(L_0, NULL);
|
|
return (bool)((((int64_t)((int64_t)(L_1&((int64_t)(std::numeric_limits<int64_t>::max)())))) < ((int64_t)((int64_t)9218868437227405312LL)))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.Double::IsNaN(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_IsNaN_mF2BC6D1FD4813179B2CAE58D29770E42830D0883 (double ___0_d, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = ___0_d;
|
|
il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
|
|
int64_t L_1;
|
|
L_1 = BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(L_0, NULL);
|
|
return (bool)((((int64_t)((int64_t)(L_1&((int64_t)(std::numeric_limits<int64_t>::max)())))) > ((int64_t)((int64_t)9218868437227405312LL)))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.Double::IsNegative(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_IsNegative_m6C4CE2A8F357F745C60B3B0059BA0DAE4533B363 (double ___0_d, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = ___0_d;
|
|
il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
|
|
int64_t L_1;
|
|
L_1 = BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(L_0, NULL);
|
|
return (bool)((((int64_t)((int64_t)(L_1&((int64_t)(std::numeric_limits<int64_t>::min)())))) == ((int64_t)((int64_t)(std::numeric_limits<int64_t>::min)())))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.Double::IsPositiveInfinity(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_IsPositiveInfinity_m2987455D4BE481D4568F1A47120843F2A8A5FFB0 (double ___0_d, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
double L_0 = ___0_d;
|
|
return (bool)((((double)L_0) == ((double)(std::numeric_limits<double>::infinity())))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Int32 System.Double::CompareTo(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_CompareTo_m2F47CE23700B216156455DDBF7ED4FA42FD8E941 (double* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
double V_0 = 0.0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_value;
|
|
if (L_0)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
RuntimeObject* L_1 = ___0_value;
|
|
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___0_value;
|
|
V_0 = ((*(double*)((double*)(double*)UnBox(L_2, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var))));
|
|
double L_3 = *((double*)__this);
|
|
double L_4 = V_0;
|
|
if ((!(((double)L_3) < ((double)L_4))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
double L_5 = *((double*)__this);
|
|
double L_6 = V_0;
|
|
if ((!(((double)L_5) > ((double)L_6))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
double L_7 = *((double*)__this);
|
|
double L_8 = V_0;
|
|
if ((!(((double)L_7) == ((double)L_8))))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
double L_9 = *((double*)__this);
|
|
bool L_10;
|
|
L_10 = Double_IsNaN_mF2BC6D1FD4813179B2CAE58D29770E42830D0883_inline(L_9, NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
double L_11 = V_0;
|
|
bool L_12;
|
|
L_12 = Double_IsNaN_mF2BC6D1FD4813179B2CAE58D29770E42830D0883_inline(L_11, NULL);
|
|
if (L_12)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_13 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_13);
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEA9F47A6A6AF5C3B1CE61F336CEF44A96DC8CE0A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Double_CompareTo_m2F47CE23700B216156455DDBF7ED4FA42FD8E941_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Double_CompareTo_m2F47CE23700B216156455DDBF7ED4FA42FD8E941_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = Double_CompareTo_m2F47CE23700B216156455DDBF7ED4FA42FD8E941(_thisAdjusted, ___0_value, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 System.Double::CompareTo(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_CompareTo_m40FD7CA33B178CCFA4B6755267DC67841092CCFC (double* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
double L_1 = ___0_value;
|
|
if ((!(((double)L_0) < ((double)L_1))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
double L_2 = *((double*)__this);
|
|
double L_3 = ___0_value;
|
|
if ((!(((double)L_2) > ((double)L_3))))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
double L_4 = *((double*)__this);
|
|
double L_5 = ___0_value;
|
|
if ((!(((double)L_4) == ((double)L_5))))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
double L_6 = *((double*)__this);
|
|
bool L_7;
|
|
L_7 = Double_IsNaN_mF2BC6D1FD4813179B2CAE58D29770E42830D0883_inline(L_6, NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
double L_8 = ___0_value;
|
|
bool L_9;
|
|
L_9 = Double_IsNaN_mF2BC6D1FD4813179B2CAE58D29770E42830D0883_inline(L_8, NULL);
|
|
if (L_9)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
return 1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Double_CompareTo_m40FD7CA33B178CCFA4B6755267DC67841092CCFC_AdjustorThunk (RuntimeObject* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = Double_CompareTo_m40FD7CA33B178CCFA4B6755267DC67841092CCFC(_thisAdjusted, ___0_value, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean System.Double::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_Equals_m342E8F178661ABF8306D58D5F2130C58E0601DA3 (double* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
double V_0 = 0.0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
V_0 = ((*(double*)((double*)(double*)UnBox(L_1, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var))));
|
|
double L_2 = V_0;
|
|
double L_3 = *((double*)__this);
|
|
if ((!(((double)L_2) == ((double)L_3))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
double L_4 = V_0;
|
|
bool L_5;
|
|
L_5 = Double_IsNaN_mF2BC6D1FD4813179B2CAE58D29770E42830D0883_inline(L_4, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
double L_6 = *((double*)__this);
|
|
bool L_7;
|
|
L_7 = Double_IsNaN_mF2BC6D1FD4813179B2CAE58D29770E42830D0883_inline(L_6, NULL);
|
|
return L_7;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Double_Equals_m342E8F178661ABF8306D58D5F2130C58E0601DA3_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Double_Equals_m342E8F178661ABF8306D58D5F2130C58E0601DA3(_thisAdjusted, ___0_obj, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean System.Double::Equals(System.Double)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_Equals_mAB526D98719C44EA42107A297B23A739F2E14138 (double* __this, double ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
double L_0 = ___0_obj;
|
|
double L_1 = *((double*)__this);
|
|
if ((!(((double)L_0) == ((double)L_1))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
double L_2 = ___0_obj;
|
|
bool L_3;
|
|
L_3 = Double_IsNaN_mF2BC6D1FD4813179B2CAE58D29770E42830D0883_inline(L_2, NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
double L_4 = *((double*)__this);
|
|
bool L_5;
|
|
L_5 = Double_IsNaN_mF2BC6D1FD4813179B2CAE58D29770E42830D0883_inline(L_4, NULL);
|
|
return L_5;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Double_Equals_mAB526D98719C44EA42107A297B23A739F2E14138_AdjustorThunk (RuntimeObject* __this, double ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Double_Equals_mAB526D98719C44EA42107A297B23A739F2E14138(_thisAdjusted, ___0_obj, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 System.Double::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_GetHashCode_m3761FC05AD24D97A68FA1E8412A9454DF3880E32 (double* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int64_t V_0 = 0;
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
|
|
int64_t L_1;
|
|
L_1 = BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
int64_t L_2 = V_0;
|
|
if ((((int64_t)((int64_t)(((int64_t)il2cpp_codegen_subtract(L_2, ((int64_t)1)))&((int64_t)(std::numeric_limits<int64_t>::max)())))) < ((int64_t)((int64_t)9218868437227405312LL))))
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_3 = V_0;
|
|
V_0 = ((int64_t)(L_3&((int64_t)9218868437227405312LL)));
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
int64_t L_4 = V_0;
|
|
int64_t L_5 = V_0;
|
|
return ((int32_t)(((int32_t)L_4)^((int32_t)((int64_t)(L_5>>((int32_t)32))))));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Double_GetHashCode_m3761FC05AD24D97A68FA1E8412A9454DF3880E32_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = Double_GetHashCode_m3761FC05AD24D97A68FA1E8412A9454DF3880E32_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.String System.Double::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m7499A5D792419537DCB9470A3675CEF5117DE339 (double* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_1;
|
|
L_1 = NumberFormatInfo_get_CurrentInfo_m121C9878F777AD81289C7B2BF589293E509FD9B4(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var);
|
|
String_t* L_2;
|
|
L_2 = Number_FormatDouble_m8200155FEB88CCDD03BF9C683156C0986AA5EFB0(L_0, (String_t*)NULL, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Double_ToString_m7499A5D792419537DCB9470A3675CEF5117DE339_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = Double_ToString_m7499A5D792419537DCB9470A3675CEF5117DE339(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.String System.Double::ToString(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m70EC76E1DAD7E8B5B47AF9292189BF3711B24B75 (double* __this, String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
String_t* L_1 = ___0_format;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_2;
|
|
L_2 = NumberFormatInfo_get_CurrentInfo_m121C9878F777AD81289C7B2BF589293E509FD9B4(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var);
|
|
String_t* L_3;
|
|
L_3 = Number_FormatDouble_m8200155FEB88CCDD03BF9C683156C0986AA5EFB0(L_0, L_1, L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Double_ToString_m70EC76E1DAD7E8B5B47AF9292189BF3711B24B75_AdjustorThunk (RuntimeObject* __this, String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = Double_ToString_m70EC76E1DAD7E8B5B47AF9292189BF3711B24B75(_thisAdjusted, ___0_format, method);
|
|
return _returnValue;
|
|
}
|
|
// System.String System.Double::ToString(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m4318830D9F771852FDCF21C14CF9E8ABC7E77357 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
RuntimeObject* L_1 = ___0_provider;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_2;
|
|
L_2 = NumberFormatInfo_GetInstance_m705987E5E7D3E5EC5C5DD2D088FBC9BCBA0FC31F(L_1, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var);
|
|
String_t* L_3;
|
|
L_3 = Number_FormatDouble_m8200155FEB88CCDD03BF9C683156C0986AA5EFB0(L_0, (String_t*)NULL, L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Double_ToString_m4318830D9F771852FDCF21C14CF9E8ABC7E77357_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = Double_ToString_m4318830D9F771852FDCF21C14CF9E8ABC7E77357(_thisAdjusted, ___0_provider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.String System.Double::ToString(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m7E3930DDFB35B1919FE538A246A59C3FC62AF789 (double* __this, String_t* ___0_format, RuntimeObject* ___1_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
String_t* L_1 = ___0_format;
|
|
RuntimeObject* L_2 = ___1_provider;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_3;
|
|
L_3 = NumberFormatInfo_GetInstance_m705987E5E7D3E5EC5C5DD2D088FBC9BCBA0FC31F(L_2, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var);
|
|
String_t* L_4;
|
|
L_4 = Number_FormatDouble_m8200155FEB88CCDD03BF9C683156C0986AA5EFB0(L_0, L_1, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Double_ToString_m7E3930DDFB35B1919FE538A246A59C3FC62AF789_AdjustorThunk (RuntimeObject* __this, String_t* ___0_format, RuntimeObject* ___1_provider, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = Double_ToString_m7E3930DDFB35B1919FE538A246A59C3FC62AF789(_thisAdjusted, ___0_format, ___1_provider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean System.Double::TryFormat(System.Span`1<System.Char>,System.Int32&,System.ReadOnlySpan`1<System.Char>,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_TryFormat_m8629D6A6E11794F16DA5B6FB3B132A716CCF2BDF (double* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, RuntimeObject* ___3_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = ___2_format;
|
|
RuntimeObject* L_2 = ___3_provider;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_3;
|
|
L_3 = NumberFormatInfo_GetInstance_m705987E5E7D3E5EC5C5DD2D088FBC9BCBA0FC31F(L_2, NULL);
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_4 = ___0_destination;
|
|
int32_t* L_5 = ___1_charsWritten;
|
|
il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = Number_TryFormatDouble_m85B2DA0BCF2FF78A125AD3FAA11962B04D5C6C45(L_0, L_1, L_3, L_4, L_5, NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Double_TryFormat_m8629D6A6E11794F16DA5B6FB3B132A716CCF2BDF_AdjustorThunk (RuntimeObject* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, RuntimeObject* ___3_provider, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Double_TryFormat_m8629D6A6E11794F16DA5B6FB3B132A716CCF2BDF(_thisAdjusted, ___0_destination, ___1_charsWritten, ___2_format, ___3_provider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Double System.Double::Parse(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_mEBC644CE0C86A405283EC4839F872EF9E556670A (String_t* ___0_s, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___0_s;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC(((int32_t)48), NULL);
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
String_t* L_1 = ___0_s;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2;
|
|
L_2 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(L_1, NULL);
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_3;
|
|
L_3 = NumberFormatInfo_get_CurrentInfo_m121C9878F777AD81289C7B2BF589293E509FD9B4(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var);
|
|
double L_4;
|
|
L_4 = Number_ParseDouble_mD1A4797230EA682B33EB458C5CADF71B575D482A(L_2, ((int32_t)231), L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Double System.Double::Parse(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_m4566961BEFC86A927E00D2843F98EE83162EF2AB (String_t* ___0_s, RuntimeObject* ___1_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___0_s;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC(((int32_t)48), NULL);
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
String_t* L_1 = ___0_s;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2;
|
|
L_2 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(L_1, NULL);
|
|
RuntimeObject* L_3 = ___1_provider;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_4;
|
|
L_4 = NumberFormatInfo_GetInstance_m705987E5E7D3E5EC5C5DD2D088FBC9BCBA0FC31F(L_3, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var);
|
|
double L_5;
|
|
L_5 = Number_ParseDouble_mD1A4797230EA682B33EB458C5CADF71B575D482A(L_2, ((int32_t)231), L_4, NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Double System.Double::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_mA6BD954627BB3B2317D7BA7D4B29DCA53C660058 (String_t* ___0_s, int32_t ___1_style, RuntimeObject* ___2_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___1_style;
|
|
NumberFormatInfo_ValidateParseStyleFloatingPoint_mD18024FEBFD9A00AB82AB8EDBBD804368012CCF2(L_0, NULL);
|
|
String_t* L_1 = ___0_s;
|
|
if (L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentNullException_m05B7DB75576C421D7CA84FA73F84D7E114974CEC(((int32_t)48), NULL);
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
String_t* L_2 = ___0_s;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3;
|
|
L_3 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(L_2, NULL);
|
|
int32_t L_4 = ___1_style;
|
|
RuntimeObject* L_5 = ___2_provider;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_6;
|
|
L_6 = NumberFormatInfo_GetInstance_m705987E5E7D3E5EC5C5DD2D088FBC9BCBA0FC31F(L_5, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var);
|
|
double L_7;
|
|
L_7 = Number_ParseDouble_mD1A4797230EA682B33EB458C5CADF71B575D482A(L_3, L_4, L_6, NULL);
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Boolean System.Double::TryParse(System.String,System.Double&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_TryParse_m60AD55BC181D70F661BC2A2294E66B5466C3C018 (String_t* ___0_s, double* ___1_result, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_s;
|
|
if (L_0)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
double* L_1 = ___1_result;
|
|
*((double*)L_1) = (double)(0.0);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
String_t* L_2 = ___0_s;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3;
|
|
L_3 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(L_2, NULL);
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_4;
|
|
L_4 = NumberFormatInfo_get_CurrentInfo_m121C9878F777AD81289C7B2BF589293E509FD9B4(NULL);
|
|
double* L_5 = ___1_result;
|
|
bool L_6;
|
|
L_6 = Double_TryParse_m934BA1C2C971AB2A18256A6136B6E69316B35511(L_3, ((int32_t)231), L_4, L_5, NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Boolean System.Double::TryParse(System.ReadOnlySpan`1<System.Char>,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo,System.Double&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_TryParse_m934BA1C2C971AB2A18256A6136B6E69316B35511 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_s, int32_t ___1_style, NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___2_info, double* ___3_result, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_s;
|
|
int32_t L_1 = ___1_style;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_2 = ___2_info;
|
|
double* L_3 = ___3_result;
|
|
il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = Number_TryParseDouble_m2E83A8A8DBA16DFE8B54050DCA10FC17C9A8D268(L_0, L_1, L_2, L_3, NULL);
|
|
if (L_4)
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5 = ___0_s;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_6;
|
|
L_6 = MemoryExtensions_Trim_m8062B15A9D800FE916FEF8755F6C4F38B66E6030(L_5, NULL);
|
|
V_0 = L_6;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_7 = V_0;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_8 = ___2_info;
|
|
NullCheck(L_8);
|
|
String_t* L_9;
|
|
L_9 = NumberFormatInfo_get_PositiveInfinitySymbol_m022DC518C4D976C05E9160891169F238E744B160_inline(L_8, NULL);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_10;
|
|
L_10 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(L_9, NULL);
|
|
bool L_11;
|
|
L_11 = MemoryExtensions_EqualsOrdinal_m50F3366691F8C10406AF0D385B5784D6EEA80C0A_inline(L_7, L_10, NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
double* L_12 = ___3_result;
|
|
*((double*)L_12) = (double)(std::numeric_limits<double>::infinity());
|
|
goto IL_0074;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_13 = V_0;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_14 = ___2_info;
|
|
NullCheck(L_14);
|
|
String_t* L_15;
|
|
L_15 = NumberFormatInfo_get_NegativeInfinitySymbol_mE8995F15D392D0114D2A6DCE3C2B440A7BFE4173_inline(L_14, NULL);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_16;
|
|
L_16 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(L_15, NULL);
|
|
bool L_17;
|
|
L_17 = MemoryExtensions_EqualsOrdinal_m50F3366691F8C10406AF0D385B5784D6EEA80C0A_inline(L_13, L_16, NULL);
|
|
if (!L_17)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
double* L_18 = ___3_result;
|
|
*((double*)L_18) = (double)(-std::numeric_limits<double>::infinity());
|
|
goto IL_0074;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_19 = V_0;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_20 = ___2_info;
|
|
NullCheck(L_20);
|
|
String_t* L_21;
|
|
L_21 = NumberFormatInfo_get_NaNSymbol_mD64FD5783A434442A15DF6DEDC6BC561ACB91ABC_inline(L_20, NULL);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_22;
|
|
L_22 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = MemoryExtensions_EqualsOrdinal_m50F3366691F8C10406AF0D385B5784D6EEA80C0A_inline(L_19, L_22, NULL);
|
|
if (!L_23)
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
double* L_24 = ___3_result;
|
|
*((double*)L_24) = (double)(std::numeric_limits<double>::quiet_NaN());
|
|
goto IL_0074;
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.TypeCode System.Double::GetTypeCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_GetTypeCode_m111F564D8EDDBEB1C7D86F6985C2871982682F5B (double* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (int32_t)(((int32_t)14));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Double_GetTypeCode_m111F564D8EDDBEB1C7D86F6985C2871982682F5B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = Double_GetTypeCode_m111F564D8EDDBEB1C7D86F6985C2871982682F5B(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean System.Double::System.IConvertible.ToBoolean(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_System_IConvertible_ToBoolean_mD8041628FF4EDD14D5FAD0ED5ADD928C5CF84193 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Convert_ToBoolean_m92A8027B40D880C42CCBF1527275E85CCF79BFF4(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Double_System_IConvertible_ToBoolean_mD8041628FF4EDD14D5FAD0ED5ADD928C5CF84193_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Double_System_IConvertible_ToBoolean_mD8041628FF4EDD14D5FAD0ED5ADD928C5CF84193(_thisAdjusted, ___0_provider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Char System.Double::System.IConvertible.ToChar(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Double_System_IConvertible_ToChar_m0180B3FD51938158886299F99C970B197349BC36 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0;
|
|
L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF13E4BFF086D4E511E68B0617B76ACC5BD5AFFE7)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E)), NULL);
|
|
InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Double_System_IConvertible_ToChar_m0180B3FD51938158886299F99C970B197349BC36_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Il2CppChar Double_System_IConvertible_ToChar_m0180B3FD51938158886299F99C970B197349BC36_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
Il2CppChar _returnValue;
|
|
_returnValue = Double_System_IConvertible_ToChar_m0180B3FD51938158886299F99C970B197349BC36(_thisAdjusted, ___0_provider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.SByte System.Double::System.IConvertible.ToSByte(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Double_System_IConvertible_ToSByte_m4700059616C8EE45A3C88680192992CC77C0E3A8 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
int8_t L_1;
|
|
L_1 = Convert_ToSByte_m05A832AD69077878500D5430BAA62CEAE0C69E9A(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int8_t Double_System_IConvertible_ToSByte_m4700059616C8EE45A3C88680192992CC77C0E3A8_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
int8_t _returnValue;
|
|
_returnValue = Double_System_IConvertible_ToSByte_m4700059616C8EE45A3C88680192992CC77C0E3A8(_thisAdjusted, ___0_provider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Byte System.Double::System.IConvertible.ToByte(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Double_System_IConvertible_ToByte_m360BF62CB5F1E1D13E9E6146B814D6ABF38FD125 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
uint8_t L_1;
|
|
L_1 = Convert_ToByte_m88201B22EF9B335B5792606D43769F0648B98B55(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint8_t Double_System_IConvertible_ToByte_m360BF62CB5F1E1D13E9E6146B814D6ABF38FD125_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
uint8_t _returnValue;
|
|
_returnValue = Double_System_IConvertible_ToByte_m360BF62CB5F1E1D13E9E6146B814D6ABF38FD125(_thisAdjusted, ___0_provider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int16 System.Double::System.IConvertible.ToInt16(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Double_System_IConvertible_ToInt16_mD6B49313715DDEDFCAAF4CCD8BECE76745651EB9 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
int16_t L_1;
|
|
L_1 = Convert_ToInt16_mF86636F78E7A272307B7F20FE4E6318A1213138E(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int16_t Double_System_IConvertible_ToInt16_mD6B49313715DDEDFCAAF4CCD8BECE76745651EB9_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
int16_t _returnValue;
|
|
_returnValue = Double_System_IConvertible_ToInt16_mD6B49313715DDEDFCAAF4CCD8BECE76745651EB9(_thisAdjusted, ___0_provider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.UInt16 System.Double::System.IConvertible.ToUInt16(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Double_System_IConvertible_ToUInt16_m05489B3BFCBE019A99D522B7154D39E49E770375 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
uint16_t L_1;
|
|
L_1 = Convert_ToUInt16_mD76E9E8434AC1C72D68248D744D9DA2B2E9E9DD3(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint16_t Double_System_IConvertible_ToUInt16_m05489B3BFCBE019A99D522B7154D39E49E770375_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
uint16_t _returnValue;
|
|
_returnValue = Double_System_IConvertible_ToUInt16_m05489B3BFCBE019A99D522B7154D39E49E770375(_thisAdjusted, ___0_provider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 System.Double::System.IConvertible.ToInt32(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_System_IConvertible_ToInt32_m926BDB2463A46A1E87CC43138C7CFABA6E06833C (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
int32_t L_1;
|
|
L_1 = Convert_ToInt32_m6D078D86ABAED9A1C7F1D380527DBA5EC3F6C97A(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Double_System_IConvertible_ToInt32_m926BDB2463A46A1E87CC43138C7CFABA6E06833C_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = Double_System_IConvertible_ToInt32_m926BDB2463A46A1E87CC43138C7CFABA6E06833C(_thisAdjusted, ___0_provider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.UInt32 System.Double::System.IConvertible.ToUInt32(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Double_System_IConvertible_ToUInt32_m9C20743D40DC640E94EE49A8FD7B1381CB7989DC (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
uint32_t L_1;
|
|
L_1 = Convert_ToUInt32_m98F6DEA958A20A5F4B103F07BD5B28BA2FB80F1B(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint32_t Double_System_IConvertible_ToUInt32_m9C20743D40DC640E94EE49A8FD7B1381CB7989DC_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
uint32_t _returnValue;
|
|
_returnValue = Double_System_IConvertible_ToUInt32_m9C20743D40DC640E94EE49A8FD7B1381CB7989DC(_thisAdjusted, ___0_provider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int64 System.Double::System.IConvertible.ToInt64(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Double_System_IConvertible_ToInt64_m399D9B7A0FB9CFB7436F235F0FE9AF0E1CF43A8C (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
int64_t L_1;
|
|
L_1 = Convert_ToInt64_mB8E05FE41BD8996D61DDD3402C93FA7AD654E333(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int64_t Double_System_IConvertible_ToInt64_m399D9B7A0FB9CFB7436F235F0FE9AF0E1CF43A8C_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
int64_t _returnValue;
|
|
_returnValue = Double_System_IConvertible_ToInt64_m399D9B7A0FB9CFB7436F235F0FE9AF0E1CF43A8C(_thisAdjusted, ___0_provider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.UInt64 System.Double::System.IConvertible.ToUInt64(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Double_System_IConvertible_ToUInt64_mC7C759018889167DDFFE91026F5DFA3DC687F6DA (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
uint64_t L_1;
|
|
L_1 = Convert_ToUInt64_m8C51AD1E162EAC585EF8A5D72ED494E24492F095(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint64_t Double_System_IConvertible_ToUInt64_mC7C759018889167DDFFE91026F5DFA3DC687F6DA_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
uint64_t _returnValue;
|
|
_returnValue = Double_System_IConvertible_ToUInt64_mC7C759018889167DDFFE91026F5DFA3DC687F6DA(_thisAdjusted, ___0_provider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Single System.Double::System.IConvertible.ToSingle(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Double_System_IConvertible_ToSingle_m6525BEF8D090C2DD279D85E92AA0557CE0898AB7 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
float L_1;
|
|
L_1 = Convert_ToSingle_mF6ADEF60A6A97E9E7E410D8D15B26F2D5995151E(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float Double_System_IConvertible_ToSingle_m6525BEF8D090C2DD279D85E92AA0557CE0898AB7_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = Double_System_IConvertible_ToSingle_m6525BEF8D090C2DD279D85E92AA0557CE0898AB7(_thisAdjusted, ___0_provider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Double System.Double::System.IConvertible.ToDouble(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_System_IConvertible_ToDouble_m2B515020002716E0FD2DAF7E146FB31AE0C2BB98 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C double Double_System_IConvertible_ToDouble_m2B515020002716E0FD2DAF7E146FB31AE0C2BB98_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
double _returnValue;
|
|
_returnValue = Double_System_IConvertible_ToDouble_m2B515020002716E0FD2DAF7E146FB31AE0C2BB98(_thisAdjusted, ___0_provider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Decimal System.Double::System.IConvertible.ToDecimal(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Double_System_IConvertible_ToDecimal_m85928A32723C1E26C9EC2F91D9F67560B84C329E (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1;
|
|
L_1 = Convert_ToDecimal_mAF1D2181BB8C5D3F25C0963245437B4AF4E6C575(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Double_System_IConvertible_ToDecimal_m85928A32723C1E26C9EC2F91D9F67560B84C329E_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F _returnValue;
|
|
_returnValue = Double_System_IConvertible_ToDecimal_m85928A32723C1E26C9EC2F91D9F67560B84C329E(_thisAdjusted, ___0_provider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.DateTime System.Double::System.IConvertible.ToDateTime(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Double_System_IConvertible_ToDateTime_m18B8B48632B59B918FE758F033129ED0CADEF7B0 (double* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0;
|
|
L_0 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF13E4BFF086D4E511E68B0617B76ACC5BD5AFFE7)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), NULL);
|
|
InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Double_System_IConvertible_ToDateTime_m18B8B48632B59B918FE758F033129ED0CADEF7B0_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Double_System_IConvertible_ToDateTime_m18B8B48632B59B918FE758F033129ED0CADEF7B0_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_provider, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue;
|
|
_returnValue = Double_System_IConvertible_ToDateTime_m18B8B48632B59B918FE758F033129ED0CADEF7B0(_thisAdjusted, ___0_provider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Object System.Double::System.IConvertible.ToType(System.Type,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Double_System_IConvertible_ToType_m3D460190E7F9A622C80CE98B28C50CDEC62662B6 (double* __this, Type_t* ___0_type, RuntimeObject* ___1_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
double L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_1);
|
|
Type_t* L_3 = ___0_type;
|
|
RuntimeObject* L_4 = ___1_provider;
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_5;
|
|
L_5 = Convert_DefaultToType_m96EC48A7341F41CDC22A33461E9A8C1C60FB51EC((RuntimeObject*)L_2, L_3, L_4, NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* Double_System_IConvertible_ToType_m3D460190E7F9A622C80CE98B28C50CDEC62662B6_AdjustorThunk (RuntimeObject* __this, Type_t* ___0_type, RuntimeObject* ___1_provider, const RuntimeMethod* method)
|
|
{
|
|
double* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<double*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = Double_System_IConvertible_ToType_m3D460190E7F9A622C80CE98B28C50CDEC62662B6(_thisAdjusted, ___0_type, ___1_provider, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.EntryPointNotFoundException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EntryPointNotFoundException__ctor_m94E33C3E1F16974280A31C5F33E7F82F2BB879DA (EntryPointNotFoundException_t15F4C4ABBCF00C39FC1C2C903F15DF41055C1743* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE3D435CB1D5A50064603B5BC679CDBF100B46F0F);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
TypeLoadException__ctor_m8C6FC5CF78B256F19356A241115BF03E64B7C00A(__this, _stringLiteralE3D435CB1D5A50064603B5BC679CDBF100B46F0F, NULL);
|
|
Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233053), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.EntryPointNotFoundException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EntryPointNotFoundException__ctor_mF65249E9706FA84C5B67C60A9C7190FF8ADA5345 (EntryPointNotFoundException_t15F4C4ABBCF00C39FC1C2C903F15DF41055C1743* __this, String_t* ___0_message, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_message;
|
|
TypeLoadException__ctor_m8C6FC5CF78B256F19356A241115BF03E64B7C00A(__this, L_0, NULL);
|
|
Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233053), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.EntryPointNotFoundException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EntryPointNotFoundException__ctor_mA0A5CF2965D27FCBC30C6101138E57B747121868 (EntryPointNotFoundException_t15F4C4ABBCF00C39FC1C2C903F15DF41055C1743* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info;
|
|
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context;
|
|
TypeLoadException__ctor_m89C9BE840B2C552C3F378FE56804FE42BA69B583(__this, L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.EventArgs::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_mC6F9412D03203ADEF854117542C8EBF61624C8C3 (EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.EventArgs::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__cctor_m664E2F70C4A6DE560CF2E8BAB06E0B1A1DAD714E (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* L_0 = (EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377*)il2cpp_codegen_object_new(EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
EventArgs__ctor_mC6F9412D03203ADEF854117542C8EBF61624C8C3(L_0, NULL);
|
|
((EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_StaticFields*)il2cpp_codegen_static_fields_for(EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var))->___Empty_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_StaticFields*)il2cpp_codegen_static_fields_for(EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var))->___Empty_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
void EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_Multicast(EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* __this, RuntimeObject* ___0_sender, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___1_e, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_array_size_t length = __this->___delegates_13->max_length;
|
|
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* currentDelegate = reinterpret_cast<EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82*>(delegatesToInvoke[i]);
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377*, const RuntimeMethod*);
|
|
((FunctionPointerType)currentDelegate->___invoke_impl_1)((Il2CppObject*)currentDelegate->___method_code_6, ___0_sender, ___1_e, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
|
|
}
|
|
}
|
|
void EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_OpenInst(EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* __this, RuntimeObject* ___0_sender, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___1_e, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_sender);
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___method_ptr_0)(___0_sender, ___1_e, method);
|
|
}
|
|
void EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_OpenStatic(EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* __this, RuntimeObject* ___0_sender, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___1_e, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___method_ptr_0)(___0_sender, ___1_e, method);
|
|
}
|
|
void EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_OpenStaticInvoker(EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* __this, RuntimeObject* ___0_sender, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___1_e, const RuntimeMethod* method)
|
|
{
|
|
InvokerActionInvoker2< RuntimeObject*, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* >::Invoke(__this->___method_ptr_0, method, NULL, ___0_sender, ___1_e);
|
|
}
|
|
void EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_ClosedStaticInvoker(EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* __this, RuntimeObject* ___0_sender, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___1_e, const RuntimeMethod* method)
|
|
{
|
|
InvokerActionInvoker3< RuntimeObject*, RuntimeObject*, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___0_sender, ___1_e);
|
|
}
|
|
void EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_OpenVirtual(EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* __this, RuntimeObject* ___0_sender, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___1_e, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_sender);
|
|
VirtualActionInvoker1< EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* >::Invoke(il2cpp_codegen_method_get_slot(method), ___0_sender, ___1_e);
|
|
}
|
|
void EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_OpenInterface(EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* __this, RuntimeObject* ___0_sender, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___1_e, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_sender);
|
|
InterfaceActionInvoker1< EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___0_sender, ___1_e);
|
|
}
|
|
void EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_OpenGenericVirtual(EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* __this, RuntimeObject* ___0_sender, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___1_e, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_sender);
|
|
GenericVirtualActionInvoker1< EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* >::Invoke(method, ___0_sender, ___1_e);
|
|
}
|
|
void EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_OpenGenericInterface(EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* __this, RuntimeObject* ___0_sender, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___1_e, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_sender);
|
|
GenericInterfaceActionInvoker1< EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* >::Invoke(method, ___0_sender, ___1_e);
|
|
}
|
|
// System.Void System.EventHandler::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler__ctor_m95444CE8D5A6F1AFC9793866C3FE884E732DCEB2 (EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___1_method);
|
|
__this->___method_3 = ___1_method;
|
|
__this->___m_target_2 = ___0_object;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___0_object);
|
|
int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
|
|
__this->___method_code_6 = (intptr_t)__this;
|
|
if (MethodIsStatic((RuntimeMethod*)___1_method))
|
|
{
|
|
bool isOpen = parameterCount == 2;
|
|
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___1_method))
|
|
if (isOpen)
|
|
__this->___invoke_impl_1 = (intptr_t)&EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_OpenStaticInvoker;
|
|
else
|
|
__this->___invoke_impl_1 = (intptr_t)&EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_ClosedStaticInvoker;
|
|
else
|
|
if (isOpen)
|
|
__this->___invoke_impl_1 = (intptr_t)&EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_OpenStatic;
|
|
else
|
|
{
|
|
__this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0;
|
|
__this->___method_code_6 = (intptr_t)__this->___m_target_2;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bool isOpen = parameterCount == 1;
|
|
if (isOpen)
|
|
{
|
|
if (__this->___method_is_virtual_12)
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___1_method))
|
|
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
|
|
__this->___invoke_impl_1 = (intptr_t)&EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_OpenGenericInterface;
|
|
else
|
|
__this->___invoke_impl_1 = (intptr_t)&EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_OpenGenericVirtual;
|
|
else
|
|
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
|
|
__this->___invoke_impl_1 = (intptr_t)&EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_OpenInterface;
|
|
else
|
|
__this->___invoke_impl_1 = (intptr_t)&EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_OpenVirtual;
|
|
}
|
|
else
|
|
{
|
|
__this->___invoke_impl_1 = (intptr_t)&EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_OpenInst;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (___0_object == NULL)
|
|
il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
|
|
__this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0;
|
|
__this->___method_code_6 = (intptr_t)__this->___m_target_2;
|
|
}
|
|
}
|
|
__this->___extra_arg_5 = (intptr_t)&EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96_Multicast;
|
|
}
|
|
// System.Void System.EventHandler::Invoke(System.Object,System.EventArgs)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler_Invoke_m9D3126CBE291A3E7E7C304094E1DA846832F9B96 (EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* __this, RuntimeObject* ___0_sender, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___1_e, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_sender, ___1_e, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ExecutionEngineException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionEngineException__ctor_m677665B0528AF137B4705A98BD7AA15F3C2832FC (ExecutionEngineException_t9840A50B0A8C687BF6E12A2BD1F26B188BEDD426* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral554753FB0E8C60CDE47165B077DCCAB9CB27C734);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, _stringLiteral554753FB0E8C60CDE47165B077DCCAB9CB27C734, NULL);
|
|
Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233082), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ExecutionEngineException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionEngineException__ctor_mB32094910FE9A1903561AFE4242DEE28EAD903E8 (ExecutionEngineException_t9840A50B0A8C687BF6E12A2BD1F26B188BEDD426* __this, String_t* ___0_message, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_message;
|
|
SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, L_0, NULL);
|
|
Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233082), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ExecutionEngineException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionEngineException__ctor_m5D38C8FAB4A76A412C026A796F6033E1C590628A (ExecutionEngineException_t9840A50B0A8C687BF6E12A2BD1F26B188BEDD426* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info;
|
|
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context;
|
|
SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879(__this, L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.FieldAccessException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldAccessException__ctor_m63B3066C52E3240564AFD6A11B0B133B6F504DCF (FieldAccessException_t5DD5AAFAF0F0F827EC0D4F89773CD46FD45AE21A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCB055AAEFA4D412DEC5D12DE4C0BA4F2A3850EE7);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MemberAccessException__ctor_mC0B4A3FB8F14C8E93326AFF606A96CFBC5661E5C(__this, _stringLiteralCB055AAEFA4D412DEC5D12DE4C0BA4F2A3850EE7, NULL);
|
|
Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233081), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.FieldAccessException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldAccessException__ctor_m4F43973D29BE1D1D480E2A90CFA97629FF8016B4 (FieldAccessException_t5DD5AAFAF0F0F827EC0D4F89773CD46FD45AE21A* __this, String_t* ___0_message, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_message;
|
|
MemberAccessException__ctor_mC0B4A3FB8F14C8E93326AFF606A96CFBC5661E5C(__this, L_0, NULL);
|
|
Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233081), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.FieldAccessException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldAccessException__ctor_m650568873270A84A599BE03B4AF848B64809987B (FieldAccessException_t5DD5AAFAF0F0F827EC0D4F89773CD46FD45AE21A* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info;
|
|
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context;
|
|
MemberAccessException__ctor_m6B77F48BC7148B3BF739E7B852FFDC090DD31DDB(__this, L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.FlagsAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FlagsAttribute__ctor_m1C9807785E89163EC73CFF1E7AAA9C1098885475 (FlagsAttribute_t902A411320FCE075B57DB7157C695B392C610D1D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.FormatException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mF29D430E15E766845220AB94DEE48CFC341A2DFE (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1B336B33429F989E804156C2752D4B75DC0EB2F1);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, _stringLiteral1B336B33429F989E804156C2752D4B75DC0EB2F1, NULL);
|
|
Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233033), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.FormatException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* __this, String_t* ___0_message, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_message;
|
|
SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, L_0, NULL);
|
|
Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233033), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.FormatException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mE31CCFC2A6FA296CA9E9C6813112D7850FE682D4 (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_message;
|
|
Exception_t* L_1 = ___1_innerException;
|
|
SystemException__ctor_m0FC84CACD2A5D66222998AA601A5C41CEC36A611(__this, L_0, L_1, NULL);
|
|
Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233033), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.FormatException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mC5676E4279E9B264450F42CAE47EE7A3F2031B9B (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info;
|
|
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context;
|
|
SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879(__this, L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.Gen2GcCallback::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Gen2GcCallback__ctor_m6EBCC0D319C0B8B0041CBC840A150792CC496412 (Gen2GcCallback_t95317B7364AE6717C822CED7AD5D4227F8674786* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
CriticalFinalizerObject__ctor_m688241D670D6A0857F938CDC8CD07B1BE4A1C733(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Gen2GcCallback::Register(System.Func`2<System.Object,System.Boolean>,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Gen2GcCallback_Register_m45FEB71EF5D984FDE7F903231B9DC7A358AB58E7 (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___0_callback, RuntimeObject* ___1_targetObj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Gen2GcCallback_t95317B7364AE6717C822CED7AD5D4227F8674786_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Gen2GcCallback_t95317B7364AE6717C822CED7AD5D4227F8674786* L_0 = (Gen2GcCallback_t95317B7364AE6717C822CED7AD5D4227F8674786*)il2cpp_codegen_object_new(Gen2GcCallback_t95317B7364AE6717C822CED7AD5D4227F8674786_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
Gen2GcCallback__ctor_m6EBCC0D319C0B8B0041CBC840A150792CC496412(L_0, NULL);
|
|
Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = ___0_callback;
|
|
RuntimeObject* L_2 = ___1_targetObj;
|
|
NullCheck(L_0);
|
|
Gen2GcCallback_Setup_m96C642FE5DE8087E00BC0347B05D5015366656CD(L_0, L_1, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Gen2GcCallback::Setup(System.Func`2<System.Object,System.Boolean>,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Gen2GcCallback_Setup_m96C642FE5DE8087E00BC0347B05D5015366656CD (Gen2GcCallback_t95317B7364AE6717C822CED7AD5D4227F8674786* __this, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___0_callback, RuntimeObject* ___1_targetObj, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_0 = ___0_callback;
|
|
__this->____callback_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____callback_0), (void*)L_0);
|
|
RuntimeObject* L_1 = ___1_targetObj;
|
|
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_2;
|
|
L_2 = GCHandle_Alloc_m3BFD398427352FC756FFE078F01A504B681352EC(L_1, 0, NULL);
|
|
__this->____weakTargetObj_1 = L_2;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.Gen2GcCallback::Finalize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Gen2GcCallback_Finalize_m7992D119F175DF805577B87D9812D764A51A5301 (Gen2GcCallback_t95317B7364AE6717C822CED7AD5D4227F8674786* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0041:
|
|
{// begin finally (depth: 1)
|
|
CriticalFinalizerObject_Finalize_m232B8F4BCBB58BB7D0A0B10611234BCCE2A86020(__this, NULL);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* L_0 = (&__this->____weakTargetObj_1);
|
|
RuntimeObject* L_1;
|
|
L_1 = GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5(L_0, NULL);
|
|
V_0 = L_1;
|
|
RuntimeObject* L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_001c_1;
|
|
}
|
|
}
|
|
{
|
|
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* L_3 = (&__this->____weakTargetObj_1);
|
|
GCHandle_Free_m1320A260E487EB1EA6D95F9E54BFFCB5A4EF83A3(L_3, NULL);
|
|
goto IL_0048;
|
|
}
|
|
|
|
IL_001c_1:
|
|
{
|
|
}
|
|
try
|
|
{// begin try (depth: 2)
|
|
{
|
|
Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_4 = __this->____callback_0;
|
|
RuntimeObject* L_5 = V_0;
|
|
NullCheck(L_4);
|
|
bool L_6;
|
|
L_6 = Func_2_Invoke_m2014423FB900F135C8FF994125604FF9E6AAE829_inline(L_4, L_5, NULL);
|
|
if (L_6)
|
|
{
|
|
goto IL_002d_2;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
|
|
IL_002d_2:
|
|
{
|
|
goto IL_0032_1;
|
|
}
|
|
}// end try (depth: 2)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_002f_1;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_002f_1:
|
|
{// begin catch(System.Object)
|
|
IL2CPP_POP_ACTIVE_EXCEPTION();
|
|
goto IL_0032_1;
|
|
}// end catch (depth: 2)
|
|
|
|
IL_0032_1:
|
|
{
|
|
bool L_7;
|
|
L_7 = Environment_get_HasShutdownStarted_m1C31268C20C079988F412BC629BF3F6133CED761(NULL);
|
|
if (L_7)
|
|
{
|
|
goto IL_003f_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
GC_ReRegisterForFinalize_m5896580D5E233681641CF8DC17A806FC087E03BF(__this, NULL);
|
|
}
|
|
|
|
IL_003f_1:
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.DateTimeFormat::FormatDigits(System.Text.StringBuilder,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormat_FormatDigits_m8271E32BC853A6B3A164561CFAACC17018F78949 (StringBuilder_t* ___0_outputBuffer, int32_t ___1_value, int32_t ___2_len, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
StringBuilder_t* L_0 = ___0_outputBuffer;
|
|
int32_t L_1 = ___1_value;
|
|
int32_t L_2 = ___2_len;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
DateTimeFormat_FormatDigits_mD365F889657EBF490E1E9AA135378245149030BF(L_0, L_1, L_2, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeFormat::FormatDigits(System.Text.StringBuilder,System.Int32,System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormat_FormatDigits_mD365F889657EBF490E1E9AA135378245149030BF (StringBuilder_t* ___0_outputBuffer, int32_t ___1_value, int32_t ___2_len, bool ___3_overrideLengthLimit, const RuntimeMethod* method)
|
|
{
|
|
Il2CppChar* V_0 = NULL;
|
|
Il2CppChar* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
bool L_0 = ___3_overrideLengthLimit;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___2_len;
|
|
if ((((int32_t)L_1) <= ((int32_t)2)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
___2_len = 2;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
uintptr_t L_2 = ((uintptr_t)((int32_t)32));
|
|
int8_t* L_3 = (int8_t*) (L_2 ? alloca(L_2) : NULL);
|
|
memset(L_3, 0, L_2);
|
|
V_0 = (Il2CppChar*)(L_3);
|
|
Il2CppChar* L_4 = V_0;
|
|
V_1 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)16)), 2))));
|
|
int32_t L_5 = ___1_value;
|
|
V_2 = L_5;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
Il2CppChar* L_6 = V_1;
|
|
Il2CppChar* L_7 = ((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_6, 2));
|
|
V_1 = L_7;
|
|
int32_t L_8 = V_2;
|
|
*((int16_t*)L_7) = (int16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add(((int32_t)(L_8%((int32_t)10))), ((int32_t)48))));
|
|
int32_t L_9 = V_2;
|
|
V_2 = ((int32_t)(L_9/((int32_t)10)));
|
|
int32_t L_10 = V_2;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar* L_11 = V_1;
|
|
Il2CppChar* L_12 = V_0;
|
|
if ((!(((uintptr_t)L_11) <= ((uintptr_t)L_12))))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
Il2CppChar* L_13 = V_0;
|
|
Il2CppChar* L_14 = V_1;
|
|
V_3 = ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_13, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)16)), 2)))), (intptr_t)L_14))/2))));
|
|
goto IL_0050;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
Il2CppChar* L_15 = V_1;
|
|
Il2CppChar* L_16 = ((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_15, 2));
|
|
V_1 = L_16;
|
|
*((int16_t*)L_16) = (int16_t)((int32_t)48);
|
|
int32_t L_17 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_17, 1));
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
int32_t L_18 = V_3;
|
|
int32_t L_19 = ___2_len;
|
|
if ((((int32_t)L_18) >= ((int32_t)L_19)))
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar* L_20 = V_1;
|
|
Il2CppChar* L_21 = V_0;
|
|
if ((!(((uintptr_t)L_20) <= ((uintptr_t)L_21))))
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
StringBuilder_t* L_22 = ___0_outputBuffer;
|
|
Il2CppChar* L_23 = V_1;
|
|
int32_t L_24 = V_3;
|
|
NullCheck(L_22);
|
|
StringBuilder_t* L_25;
|
|
L_25 = StringBuilder_Append_m3B01AD486432033546C698FB95D3067DCB1A1448(L_22, L_23, L_24, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeFormat::HebrewFormatDigits(System.Text.StringBuilder,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormat_HebrewFormatDigits_m178C122EED75AE85562AB67B62F871377CF9A5AD (StringBuilder_t* ___0_outputBuffer, int32_t ___1_digits, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HebrewNumber_tF89734089EC4188BCF2BBBAC98D5AEA14DEA3EAF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
StringBuilder_t* L_0 = ___0_outputBuffer;
|
|
int32_t L_1 = ___1_digits;
|
|
il2cpp_codegen_runtime_class_init_inline(HebrewNumber_tF89734089EC4188BCF2BBBAC98D5AEA14DEA3EAF_il2cpp_TypeInfo_var);
|
|
String_t* L_2;
|
|
L_2 = HebrewNumber_ToString_mFC30A1831DD94BF5D1BDEDA5D2B2255BE3C337BB(L_1, NULL);
|
|
NullCheck(L_0);
|
|
StringBuilder_t* L_3;
|
|
L_3 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_0, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 System.DateTimeFormat::ParseRepeatPattern(System.ReadOnlySpan`1<System.Char>,System.Int32,System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeFormat_ParseRepeatPattern_mE2BAC459E579F2A45A2DEA762F22C89BA89FFB55 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, int32_t ___1_pos, Il2CppChar ___2_patternChar, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_format), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
V_0 = L_0;
|
|
int32_t L_1 = ___1_pos;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_1, 1));
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
int32_t L_3 = V_1;
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_3) >= ((int32_t)L_4)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
Il2CppChar* L_6;
|
|
L_6 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_format))->____pointer_0))->value, (L_5), ((&___0_format))->____length_1);
|
|
int32_t L_7 = *((uint16_t*)L_6);
|
|
Il2CppChar L_8 = ___2_patternChar;
|
|
if ((((int32_t)L_7) == ((int32_t)L_8)))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_9 = V_1;
|
|
int32_t L_10 = ___1_pos;
|
|
return ((int32_t)il2cpp_codegen_subtract(L_9, L_10));
|
|
}
|
|
}
|
|
// System.String System.DateTimeFormat::FormatDayOfWeek(System.Int32,System.Int32,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormat_FormatDayOfWeek_mD448EE6829AF76AAB2A3C0FE30071FA43FBFE328 (int32_t ___0_dayOfWeek, int32_t ___1_repeat, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_repeat;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)3))))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_1 = ___2_dtfi;
|
|
int32_t L_2 = ___0_dayOfWeek;
|
|
NullCheck(L_1);
|
|
String_t* L_3;
|
|
L_3 = DateTimeFormatInfo_GetAbbreviatedDayName_m12EC6E4400C2FC1B69A7F987338F9EF0A100277E(L_1, L_2, NULL);
|
|
return L_3;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_4 = ___2_dtfi;
|
|
int32_t L_5 = ___0_dayOfWeek;
|
|
NullCheck(L_4);
|
|
String_t* L_6;
|
|
L_6 = DateTimeFormatInfo_GetDayName_m7C4E70449F205F063D75944FEC66A3B0FFD3F20A(L_4, L_5, NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.String System.DateTimeFormat::FormatMonth(System.Int32,System.Int32,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormat_FormatMonth_m676D06657AC9D857C2CF727905F362BFCA73DDD2 (int32_t ___0_month, int32_t ___1_repeatCount, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_repeatCount;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)3))))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_1 = ___2_dtfi;
|
|
int32_t L_2 = ___0_month;
|
|
NullCheck(L_1);
|
|
String_t* L_3;
|
|
L_3 = DateTimeFormatInfo_GetAbbreviatedMonthName_mC0DF9D2AABADA5B7F47C6856F78B7BCC11FC8C89(L_1, L_2, NULL);
|
|
return L_3;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_4 = ___2_dtfi;
|
|
int32_t L_5 = ___0_month;
|
|
NullCheck(L_4);
|
|
String_t* L_6;
|
|
L_6 = DateTimeFormatInfo_GetMonthName_mCCCA8C327C346C7B2AE22AFD9C42C4DCBF48B539(L_4, L_5, NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.String System.DateTimeFormat::FormatHebrewMonthName(System.DateTime,System.Int32,System.Int32,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormat_FormatHebrewMonthName_m95B9D906B91C4337A023D4EA4910F8C97BAB13B8 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_time, int32_t ___1_month, int32_t ___2_repeatCount, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___3_dtfi, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_0 = ___3_dtfi;
|
|
NullCheck(L_0);
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_1;
|
|
L_1 = DateTimeFormatInfo_get_Calendar_m1280AC2F196ECBE7B664394CC3821062015DEF99_inline(L_0, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_2 = ___3_dtfi;
|
|
NullCheck(L_2);
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_3;
|
|
L_3 = DateTimeFormatInfo_get_Calendar_m1280AC2F196ECBE7B664394CC3821062015DEF99_inline(L_2, NULL);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4 = ___0_time;
|
|
NullCheck(L_3);
|
|
int32_t L_5;
|
|
L_5 = VirtualFuncInvoker1< int32_t, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D >::Invoke(19 /* System.Int32 System.Globalization.Calendar::GetYear(System.DateTime) */, L_3, L_4);
|
|
NullCheck(L_1);
|
|
bool L_6;
|
|
L_6 = VirtualFuncInvoker1< bool, int32_t >::Invoke(20 /* System.Boolean System.Globalization.Calendar::IsLeapYear(System.Int32) */, L_1, L_5);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_7 = ___3_dtfi;
|
|
int32_t L_8 = ___1_month;
|
|
int32_t L_9 = ___2_repeatCount;
|
|
NullCheck(L_7);
|
|
String_t* L_10;
|
|
L_10 = DateTimeFormatInfo_internalGetMonthName_m670C3977E0F91474E492C2F9E1AAB435D846CB14(L_7, L_8, 2, (bool)((((int32_t)L_9) == ((int32_t)3))? 1 : 0), NULL);
|
|
return L_10;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
int32_t L_11 = ___1_month;
|
|
if ((((int32_t)L_11) < ((int32_t)7)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_12 = ___1_month;
|
|
___1_month = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
int32_t L_13 = ___2_repeatCount;
|
|
if ((!(((uint32_t)L_13) == ((uint32_t)3))))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_14 = ___3_dtfi;
|
|
int32_t L_15 = ___1_month;
|
|
NullCheck(L_14);
|
|
String_t* L_16;
|
|
L_16 = DateTimeFormatInfo_GetAbbreviatedMonthName_mC0DF9D2AABADA5B7F47C6856F78B7BCC11FC8C89(L_14, L_15, NULL);
|
|
return L_16;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_17 = ___3_dtfi;
|
|
int32_t L_18 = ___1_month;
|
|
NullCheck(L_17);
|
|
String_t* L_19;
|
|
L_19 = DateTimeFormatInfo_GetMonthName_mCCCA8C327C346C7B2AE22AFD9C42C4DCBF48B539(L_17, L_18, NULL);
|
|
return L_19;
|
|
}
|
|
}
|
|
// System.Int32 System.DateTimeFormat::ParseQuoteString(System.ReadOnlySpan`1<System.Char>,System.Int32,System.Text.StringBuilder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeFormat_ParseQuoteString_m9D76FA19D6C16F79B944F25899AA6ABBF1D6FD59 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, int32_t ___1_pos, StringBuilder_t* ___2_result, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
bool V_3 = false;
|
|
Il2CppChar V_4 = 0x0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_format), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
V_0 = L_0;
|
|
int32_t L_1 = ___1_pos;
|
|
V_1 = L_1;
|
|
int32_t L_2 = ___1_pos;
|
|
int32_t L_3 = L_2;
|
|
___1_pos = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
Il2CppChar* L_4;
|
|
L_4 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_format))->____pointer_0))->value, (L_3), ((&___0_format))->____length_1);
|
|
int32_t L_5 = *((uint16_t*)L_4);
|
|
V_2 = L_5;
|
|
V_3 = (bool)0;
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_6 = ___1_pos;
|
|
int32_t L_7 = L_6;
|
|
___1_pos = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
Il2CppChar* L_8;
|
|
L_8 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_format))->____pointer_0))->value, (L_7), ((&___0_format))->____length_1);
|
|
int32_t L_9 = *((uint16_t*)L_8);
|
|
V_4 = L_9;
|
|
Il2CppChar L_10 = V_4;
|
|
Il2CppChar L_11 = V_2;
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)L_11))))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (bool)1;
|
|
goto IL_006f;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
Il2CppChar L_12 = V_4;
|
|
if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)92)))))
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_13 = ___1_pos;
|
|
int32_t L_14 = V_0;
|
|
if ((((int32_t)L_13) >= ((int32_t)L_14)))
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_15 = ___2_result;
|
|
int32_t L_16 = ___1_pos;
|
|
int32_t L_17 = L_16;
|
|
___1_pos = ((int32_t)il2cpp_codegen_add(L_17, 1));
|
|
Il2CppChar* L_18;
|
|
L_18 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_format))->____pointer_0))->value, (L_17), ((&___0_format))->____length_1);
|
|
int32_t L_19 = *((uint16_t*)L_18);
|
|
NullCheck(L_15);
|
|
StringBuilder_t* L_20;
|
|
L_20 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_15, L_19, NULL);
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_21 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_21);
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_21, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7ED71F768C05670E3698EF09100E41C9E3AC8113)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeFormat_ParseQuoteString_m9D76FA19D6C16F79B944F25899AA6ABBF1D6FD59_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
StringBuilder_t* L_22 = ___2_result;
|
|
Il2CppChar L_23 = V_4;
|
|
NullCheck(L_22);
|
|
StringBuilder_t* L_24;
|
|
L_24 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_22, L_23, NULL);
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
int32_t L_25 = ___1_pos;
|
|
int32_t L_26 = V_0;
|
|
if ((((int32_t)L_25) < ((int32_t)L_26)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
bool L_27 = V_3;
|
|
if (L_27)
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_28;
|
|
L_28 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
|
|
Il2CppChar L_29 = V_2;
|
|
Il2CppChar L_30 = L_29;
|
|
RuntimeObject* L_31 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)), &L_30);
|
|
String_t* L_32;
|
|
L_32 = String_Format_m3844098E7C18576D263AAF62F69BE5C70BF9A744(L_28, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAEDC38B460FBB683110DEB27588A680B6A5D27D8)), L_31, NULL);
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_33 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_33);
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_33, L_32, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeFormat_ParseQuoteString_m9D76FA19D6C16F79B944F25899AA6ABBF1D6FD59_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
int32_t L_34 = ___1_pos;
|
|
int32_t L_35 = V_1;
|
|
return ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
|
|
}
|
|
}
|
|
// System.Int32 System.DateTimeFormat::ParseNextChar(System.ReadOnlySpan`1<System.Char>,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeFormat_ParseNextChar_mC5A3CB9DAE112DA97E1B081354496AA56FB3BF17 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, int32_t ___1_pos, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___1_pos;
|
|
int32_t L_1;
|
|
L_1 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_format), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)L_0) < ((int32_t)((int32_t)il2cpp_codegen_subtract(L_1, 1)))))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = ___1_pos;
|
|
Il2CppChar* L_3;
|
|
L_3 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_format))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(L_2, 1))), ((&___0_format))->____length_1);
|
|
int32_t L_4 = *((uint16_t*)L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeFormat::IsUseGenitiveForm(System.ReadOnlySpan`1<System.Char>,System.Int32,System.Int32,System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeFormat_IsUseGenitiveForm_mCB8EA1952903F82277215B9005D414CDAB6E46CB (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, int32_t ___1_index, int32_t ___2_tokenLen, Il2CppChar ___3_patternToMatch, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
V_1 = 0;
|
|
int32_t L_0 = ___1_index;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_0, 1));
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) < ((int32_t)0)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
Il2CppChar* L_4;
|
|
L_4 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_format))->____pointer_0))->value, (L_3), ((&___0_format))->____length_1);
|
|
int32_t L_5 = *((uint16_t*)L_4);
|
|
Il2CppChar L_6 = ___3_patternToMatch;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) < ((int32_t)0)))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_8 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
int32_t L_9 = V_0;
|
|
int32_t L_10 = ((int32_t)il2cpp_codegen_subtract(L_9, 1));
|
|
V_0 = L_10;
|
|
if ((((int32_t)L_10) < ((int32_t)0)))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = V_0;
|
|
Il2CppChar* L_12;
|
|
L_12 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_format))->____pointer_0))->value, (L_11), ((&___0_format))->____length_1);
|
|
int32_t L_13 = *((uint16_t*)L_12);
|
|
Il2CppChar L_14 = ___3_patternToMatch;
|
|
if ((((int32_t)L_13) == ((int32_t)L_14)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
int32_t L_15 = V_1;
|
|
if ((((int32_t)L_15) > ((int32_t)1)))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
int32_t L_16 = ___1_index;
|
|
int32_t L_17 = ___2_tokenLen;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_16, L_17));
|
|
goto IL_004a;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
int32_t L_18 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_18, 1));
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
int32_t L_19 = V_0;
|
|
int32_t L_20;
|
|
L_20 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_format), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)L_19) >= ((int32_t)L_20)))
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_21 = V_0;
|
|
Il2CppChar* L_22;
|
|
L_22 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_format))->____pointer_0))->value, (L_21), ((&___0_format))->____length_1);
|
|
int32_t L_23 = *((uint16_t*)L_22);
|
|
Il2CppChar L_24 = ___3_patternToMatch;
|
|
if ((!(((uint32_t)L_23) == ((uint32_t)L_24))))
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26;
|
|
L_26 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_format), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)L_25) >= ((int32_t)L_26)))
|
|
{
|
|
goto IL_0092;
|
|
}
|
|
}
|
|
{
|
|
V_1 = 0;
|
|
goto IL_0072;
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
int32_t L_27 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_27, 1));
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
int32_t L_28 = V_0;
|
|
int32_t L_29 = ((int32_t)il2cpp_codegen_add(L_28, 1));
|
|
V_0 = L_29;
|
|
int32_t L_30;
|
|
L_30 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_format), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)L_29) >= ((int32_t)L_30)))
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_31 = V_0;
|
|
Il2CppChar* L_32;
|
|
L_32 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_format))->____pointer_0))->value, (L_31), ((&___0_format))->____length_1);
|
|
int32_t L_33 = *((uint16_t*)L_32);
|
|
Il2CppChar L_34 = ___3_patternToMatch;
|
|
if ((((int32_t)L_33) == ((int32_t)L_34)))
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
int32_t L_35 = V_1;
|
|
if ((((int32_t)L_35) > ((int32_t)1)))
|
|
{
|
|
goto IL_0092;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0092:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Text.StringBuilder System.DateTimeFormat::FormatCustomized(System.DateTime,System.ReadOnlySpan`1<System.Char>,System.Globalization.DateTimeFormatInfo,System.TimeSpan,System.Text.StringBuilder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* DateTimeFormat_FormatCustomized_m59304DCEF2BAAF79BE928EEA00D9449327489999 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_format, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___3_offset, StringBuilder_t* ___4_result, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AppContextSwitches_t542F10E9BE2333B7BE24C8858C8A24EFA6C06D38_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryMarshal_CreateReadOnlySpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m6AC28EB03E267661349B40C5A925602DAC3F1C11_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA019FB7F17AA36A9743C530E1F11D5613B8B1158);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC2F9A94ED8684F4AE51F264CC8E83B9731EAE480);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCB8E6E9388768EBCE39ACC521B5A3A8DA3AC5D86);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
int32_t V_5 = 0;
|
|
int32_t V_6 = 0;
|
|
int32_t V_7 = 0;
|
|
Il2CppChar V_8 = 0x0;
|
|
int32_t V_9 = 0;
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int64_t V_12 = 0;
|
|
int32_t V_13 = 0;
|
|
int32_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
int32_t V_16 = 0;
|
|
String_t* V_17 = NULL;
|
|
Il2CppChar V_18 = 0x0;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B8_0 = 0;
|
|
StringBuilder_t* G_B70_0 = NULL;
|
|
StringBuilder_t* G_B69_0 = NULL;
|
|
String_t* G_B71_0 = NULL;
|
|
StringBuilder_t* G_B71_1 = NULL;
|
|
int32_t G_B91_0 = 0;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* G_B91_1 = NULL;
|
|
StringBuilder_t* G_B91_2 = NULL;
|
|
int32_t G_B90_0 = 0;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* G_B90_1 = NULL;
|
|
StringBuilder_t* G_B90_2 = NULL;
|
|
int32_t G_B92_0 = 0;
|
|
int32_t G_B92_1 = 0;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* G_B92_2 = NULL;
|
|
StringBuilder_t* G_B92_3 = NULL;
|
|
int32_t G_B105_0 = 0;
|
|
StringBuilder_t* G_B105_1 = NULL;
|
|
int32_t G_B104_0 = 0;
|
|
StringBuilder_t* G_B104_1 = NULL;
|
|
int32_t G_B106_0 = 0;
|
|
int32_t G_B106_1 = 0;
|
|
StringBuilder_t* G_B106_2 = NULL;
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_0 = ___2_dtfi;
|
|
NullCheck(L_0);
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_1;
|
|
L_1 = DateTimeFormatInfo_get_Calendar_m1280AC2F196ECBE7B664394CC3821062015DEF99_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
V_1 = (bool)0;
|
|
StringBuilder_t* L_2 = ___4_result;
|
|
if (L_2)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)1;
|
|
StringBuilder_t* L_3;
|
|
L_3 = StringBuilderCache_Acquire_m1CF9421EC0F3431719E18A8EE78669748DF10892(((int32_t)16), NULL);
|
|
___4_result = L_3;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = GlobalizationMode_get_Invariant_m07C027203B17E9B629D292376366608B7DDB2903_inline(NULL);
|
|
if (L_4)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Globalization.Calendar::get_ID() */, L_5);
|
|
G_B5_0 = ((((int32_t)((int32_t)(uint16_t)L_6)) == ((int32_t)8))? 1 : 0);
|
|
goto IL_002c;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
V_2 = (bool)G_B5_0;
|
|
il2cpp_codegen_runtime_class_init_inline(GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
bool L_7;
|
|
L_7 = GlobalizationMode_get_Invariant_m07C027203B17E9B629D292376366608B7DDB2903_inline(NULL);
|
|
if (L_7)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_8 = V_0;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Globalization.Calendar::get_ID() */, L_8);
|
|
G_B8_0 = ((((int32_t)((int32_t)(uint16_t)L_9)) == ((int32_t)3))? 1 : 0);
|
|
goto IL_0041;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
V_3 = (bool)G_B8_0;
|
|
V_4 = (bool)1;
|
|
V_5 = 0;
|
|
goto IL_069a;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
int32_t L_10 = V_5;
|
|
Il2CppChar* L_11;
|
|
L_11 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_format))->____pointer_0))->value, (L_10), ((&___1_format))->____length_1);
|
|
int32_t L_12 = *((uint16_t*)L_11);
|
|
V_8 = L_12;
|
|
Il2CppChar L_13 = V_8;
|
|
if ((!(((uint32_t)L_13) <= ((uint32_t)((int32_t)75)))))
|
|
{
|
|
goto IL_00cd;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_14 = V_8;
|
|
if ((!(((uint32_t)L_14) <= ((uint32_t)((int32_t)47)))))
|
|
{
|
|
goto IL_0099;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_15 = V_8;
|
|
if ((!(((uint32_t)L_15) <= ((uint32_t)((int32_t)37)))))
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_16 = V_8;
|
|
if ((((int32_t)L_16) == ((int32_t)((int32_t)34))))
|
|
{
|
|
goto IL_05fa;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_17 = V_8;
|
|
if ((((int32_t)L_17) == ((int32_t)((int32_t)37))))
|
|
{
|
|
goto IL_060b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0686;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
Il2CppChar L_18 = V_8;
|
|
if ((((int32_t)L_18) == ((int32_t)((int32_t)39))))
|
|
{
|
|
goto IL_05fa;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_19 = V_8;
|
|
if ((((int32_t)L_19) == ((int32_t)((int32_t)47))))
|
|
{
|
|
goto IL_05e4;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0686;
|
|
}
|
|
|
|
IL_0099:
|
|
{
|
|
Il2CppChar L_20 = V_8;
|
|
if ((!(((uint32_t)L_20) <= ((uint32_t)((int32_t)70)))))
|
|
{
|
|
goto IL_00b6;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_21 = V_8;
|
|
if ((((int32_t)L_21) == ((int32_t)((int32_t)58))))
|
|
{
|
|
goto IL_05ce;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_22 = V_8;
|
|
if ((((int32_t)L_22) == ((int32_t)((int32_t)70))))
|
|
{
|
|
goto IL_0209;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0686;
|
|
}
|
|
|
|
IL_00b6:
|
|
{
|
|
Il2CppChar L_23 = V_8;
|
|
if ((((int32_t)L_23) == ((int32_t)((int32_t)72))))
|
|
{
|
|
goto IL_01a6;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_24 = V_8;
|
|
if ((((int32_t)L_24) == ((int32_t)((int32_t)75))))
|
|
{
|
|
goto IL_05bd;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0686;
|
|
}
|
|
|
|
IL_00cd:
|
|
{
|
|
Il2CppChar L_25 = V_8;
|
|
if ((!(((uint32_t)L_25) <= ((uint32_t)((int32_t)109)))))
|
|
{
|
|
goto IL_011c;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_26 = V_8;
|
|
if ((!(((uint32_t)L_26) <= ((uint32_t)((int32_t)92)))))
|
|
{
|
|
goto IL_00f0;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_27 = V_8;
|
|
if ((((int32_t)L_27) == ((int32_t)((int32_t)77))))
|
|
{
|
|
goto IL_0407;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_28 = V_8;
|
|
if ((((int32_t)L_28) == ((int32_t)((int32_t)92))))
|
|
{
|
|
goto IL_0652;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0686;
|
|
}
|
|
|
|
IL_00f0:
|
|
{
|
|
Il2CppChar L_29 = V_8;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_29, ((int32_t)100))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_03a8;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0686;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0209;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0150;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0176;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_30 = V_8;
|
|
if ((((int32_t)L_30) == ((int32_t)((int32_t)109))))
|
|
{
|
|
goto IL_01c7;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0686;
|
|
}
|
|
|
|
IL_011c:
|
|
{
|
|
Il2CppChar L_31 = V_8;
|
|
if ((!(((uint32_t)L_31) <= ((uint32_t)((int32_t)116)))))
|
|
{
|
|
goto IL_0139;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_32 = V_8;
|
|
if ((((int32_t)L_32) == ((int32_t)((int32_t)115))))
|
|
{
|
|
goto IL_01e8;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_33 = V_8;
|
|
if ((((int32_t)L_33) == ((int32_t)((int32_t)116))))
|
|
{
|
|
goto IL_0312;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0686;
|
|
}
|
|
|
|
IL_0139:
|
|
{
|
|
Il2CppChar L_34 = V_8;
|
|
if ((((int32_t)L_34) == ((int32_t)((int32_t)121))))
|
|
{
|
|
goto IL_04b0;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_35 = V_8;
|
|
if ((((int32_t)L_35) == ((int32_t)((int32_t)122))))
|
|
{
|
|
goto IL_059e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0686;
|
|
}
|
|
|
|
IL_0150:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_36 = ___1_format;
|
|
int32_t L_37 = V_5;
|
|
Il2CppChar L_38 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
int32_t L_39;
|
|
L_39 = DateTimeFormat_ParseRepeatPattern_mE2BAC459E579F2A45A2DEA762F22C89BA89FFB55(L_36, L_37, L_38, NULL);
|
|
V_6 = L_39;
|
|
StringBuilder_t* L_40 = ___4_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_41 = ___2_dtfi;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_42 = V_0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_43 = ___0_dateTime;
|
|
NullCheck(L_42);
|
|
int32_t L_44;
|
|
L_44 = VirtualFuncInvoker1< int32_t, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D >::Invoke(15 /* System.Int32 System.Globalization.Calendar::GetEra(System.DateTime) */, L_42, L_43);
|
|
NullCheck(L_41);
|
|
String_t* L_45;
|
|
L_45 = DateTimeFormatInfo_GetEraName_mEFEC407D99F9C8D98C332FB785B1D32A8BC8202F(L_41, L_44, NULL);
|
|
NullCheck(L_40);
|
|
StringBuilder_t* L_46;
|
|
L_46 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_40, L_45, NULL);
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_0176:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_47 = ___1_format;
|
|
int32_t L_48 = V_5;
|
|
Il2CppChar L_49 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
int32_t L_50;
|
|
L_50 = DateTimeFormat_ParseRepeatPattern_mE2BAC459E579F2A45A2DEA762F22C89BA89FFB55(L_47, L_48, L_49, NULL);
|
|
V_6 = L_50;
|
|
int32_t L_51;
|
|
L_51 = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3((&___0_dateTime), NULL);
|
|
V_7 = ((int32_t)(L_51%((int32_t)12)));
|
|
int32_t L_52 = V_7;
|
|
if (L_52)
|
|
{
|
|
goto IL_0196;
|
|
}
|
|
}
|
|
{
|
|
V_7 = ((int32_t)12);
|
|
}
|
|
|
|
IL_0196:
|
|
{
|
|
StringBuilder_t* L_53 = ___4_result;
|
|
int32_t L_54 = V_7;
|
|
int32_t L_55 = V_6;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
DateTimeFormat_FormatDigits_m8271E32BC853A6B3A164561CFAACC17018F78949(L_53, L_54, L_55, NULL);
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_01a6:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_56 = ___1_format;
|
|
int32_t L_57 = V_5;
|
|
Il2CppChar L_58 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
int32_t L_59;
|
|
L_59 = DateTimeFormat_ParseRepeatPattern_mE2BAC459E579F2A45A2DEA762F22C89BA89FFB55(L_56, L_57, L_58, NULL);
|
|
V_6 = L_59;
|
|
StringBuilder_t* L_60 = ___4_result;
|
|
int32_t L_61;
|
|
L_61 = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3((&___0_dateTime), NULL);
|
|
int32_t L_62 = V_6;
|
|
DateTimeFormat_FormatDigits_m8271E32BC853A6B3A164561CFAACC17018F78949(L_60, L_61, L_62, NULL);
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_01c7:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_63 = ___1_format;
|
|
int32_t L_64 = V_5;
|
|
Il2CppChar L_65 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
int32_t L_66;
|
|
L_66 = DateTimeFormat_ParseRepeatPattern_mE2BAC459E579F2A45A2DEA762F22C89BA89FFB55(L_63, L_64, L_65, NULL);
|
|
V_6 = L_66;
|
|
StringBuilder_t* L_67 = ___4_result;
|
|
int32_t L_68;
|
|
L_68 = DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973((&___0_dateTime), NULL);
|
|
int32_t L_69 = V_6;
|
|
DateTimeFormat_FormatDigits_m8271E32BC853A6B3A164561CFAACC17018F78949(L_67, L_68, L_69, NULL);
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_01e8:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_70 = ___1_format;
|
|
int32_t L_71 = V_5;
|
|
Il2CppChar L_72 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
int32_t L_73;
|
|
L_73 = DateTimeFormat_ParseRepeatPattern_mE2BAC459E579F2A45A2DEA762F22C89BA89FFB55(L_70, L_71, L_72, NULL);
|
|
V_6 = L_73;
|
|
StringBuilder_t* L_74 = ___4_result;
|
|
int32_t L_75;
|
|
L_75 = DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA((&___0_dateTime), NULL);
|
|
int32_t L_76 = V_6;
|
|
DateTimeFormat_FormatDigits_m8271E32BC853A6B3A164561CFAACC17018F78949(L_74, L_75, L_76, NULL);
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_0209:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_77 = ___1_format;
|
|
int32_t L_78 = V_5;
|
|
Il2CppChar L_79 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
int32_t L_80;
|
|
L_80 = DateTimeFormat_ParseRepeatPattern_mE2BAC459E579F2A45A2DEA762F22C89BA89FFB55(L_77, L_78, L_79, NULL);
|
|
V_6 = L_80;
|
|
int32_t L_81 = V_6;
|
|
if ((((int32_t)L_81) > ((int32_t)7)))
|
|
{
|
|
goto IL_02fd;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_82;
|
|
L_82 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___0_dateTime), NULL);
|
|
V_12 = ((int64_t)(L_82%((int64_t)((int32_t)10000000))));
|
|
int64_t L_83 = V_12;
|
|
int32_t L_84 = V_6;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
double L_85;
|
|
L_85 = Math_Pow_mEAE651F0858203FBE12B72B6A53951BBD0FB5265((10.0), ((double)((int32_t)il2cpp_codegen_subtract(7, L_84))), NULL);
|
|
V_12 = ((int64_t)(L_83/il2cpp_codegen_cast_double_to_int<int64_t>(L_85)));
|
|
Il2CppChar L_86 = V_8;
|
|
if ((!(((uint32_t)L_86) == ((uint32_t)((int32_t)102)))))
|
|
{
|
|
goto IL_0274;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_87 = ___4_result;
|
|
int64_t L_88 = V_12;
|
|
V_13 = ((int32_t)L_88);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_89 = ((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___fixedNumberFormats_5;
|
|
int32_t L_90 = V_6;
|
|
NullCheck(L_89);
|
|
int32_t L_91 = ((int32_t)il2cpp_codegen_subtract(L_90, 1));
|
|
String_t* L_92 = (L_89)->GetAt(static_cast<il2cpp_array_size_t>(L_91));
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_93;
|
|
L_93 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
String_t* L_94;
|
|
L_94 = Int32_ToString_mE871810BC163EE4EF88E7C7682A6AD39911173B8((&V_13), L_92, L_93, NULL);
|
|
NullCheck(L_87);
|
|
StringBuilder_t* L_95;
|
|
L_95 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_87, L_94, NULL);
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_0274:
|
|
{
|
|
int32_t L_96 = V_6;
|
|
V_14 = L_96;
|
|
goto IL_0290;
|
|
}
|
|
|
|
IL_027a:
|
|
{
|
|
int64_t L_97 = V_12;
|
|
if (((int64_t)(L_97%((int64_t)((int32_t)10)))))
|
|
{
|
|
goto IL_0295;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_98 = V_12;
|
|
V_12 = ((int64_t)(L_98/((int64_t)((int32_t)10))));
|
|
int32_t L_99 = V_14;
|
|
V_14 = ((int32_t)il2cpp_codegen_subtract(L_99, 1));
|
|
}
|
|
|
|
IL_0290:
|
|
{
|
|
int32_t L_100 = V_14;
|
|
if ((((int32_t)L_100) > ((int32_t)0)))
|
|
{
|
|
goto IL_027a;
|
|
}
|
|
}
|
|
|
|
IL_0295:
|
|
{
|
|
int32_t L_101 = V_14;
|
|
if ((((int32_t)L_101) <= ((int32_t)0)))
|
|
{
|
|
goto IL_02c2;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_102 = ___4_result;
|
|
int64_t L_103 = V_12;
|
|
V_13 = ((int32_t)L_103);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_104 = ((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___fixedNumberFormats_5;
|
|
int32_t L_105 = V_14;
|
|
NullCheck(L_104);
|
|
int32_t L_106 = ((int32_t)il2cpp_codegen_subtract(L_105, 1));
|
|
String_t* L_107 = (L_104)->GetAt(static_cast<il2cpp_array_size_t>(L_106));
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_108;
|
|
L_108 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
String_t* L_109;
|
|
L_109 = Int32_ToString_mE871810BC163EE4EF88E7C7682A6AD39911173B8((&V_13), L_107, L_108, NULL);
|
|
NullCheck(L_102);
|
|
StringBuilder_t* L_110;
|
|
L_110 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_102, L_109, NULL);
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_02c2:
|
|
{
|
|
StringBuilder_t* L_111 = ___4_result;
|
|
NullCheck(L_111);
|
|
int32_t L_112;
|
|
L_112 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_111, NULL);
|
|
if ((((int32_t)L_112) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0693;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_113 = ___4_result;
|
|
StringBuilder_t* L_114 = ___4_result;
|
|
NullCheck(L_114);
|
|
int32_t L_115;
|
|
L_115 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_114, NULL);
|
|
NullCheck(L_113);
|
|
Il2CppChar L_116;
|
|
L_116 = StringBuilder_get_Chars_m254FD6F2F75C00B0D353D73B2A4A19316BD7624D(L_113, ((int32_t)il2cpp_codegen_subtract(L_115, 1)), NULL);
|
|
if ((!(((uint32_t)L_116) == ((uint32_t)((int32_t)46)))))
|
|
{
|
|
goto IL_0693;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_117 = ___4_result;
|
|
StringBuilder_t* L_118 = ___4_result;
|
|
NullCheck(L_118);
|
|
int32_t L_119;
|
|
L_119 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_118, NULL);
|
|
NullCheck(L_117);
|
|
StringBuilder_t* L_120;
|
|
L_120 = StringBuilder_Remove_m0D93692674D1C09795C7D6542420A3B6C5F81E90(L_117, ((int32_t)il2cpp_codegen_subtract(L_119, 1)), 1, NULL);
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_02fd:
|
|
{
|
|
bool L_121 = V_1;
|
|
if (!L_121)
|
|
{
|
|
goto IL_0307;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_122 = ___4_result;
|
|
StringBuilderCache_Release_m65C472D3E200ECA86BF7EFDAAF55CA6109678EB5(L_122, NULL);
|
|
}
|
|
|
|
IL_0307:
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_123 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_123);
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_123, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7ED71F768C05670E3698EF09100E41C9E3AC8113)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_123, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeFormat_FormatCustomized_m59304DCEF2BAAF79BE928EEA00D9449327489999_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0312:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_124 = ___1_format;
|
|
int32_t L_125 = V_5;
|
|
Il2CppChar L_126 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
int32_t L_127;
|
|
L_127 = DateTimeFormat_ParseRepeatPattern_mE2BAC459E579F2A45A2DEA762F22C89BA89FFB55(L_124, L_125, L_126, NULL);
|
|
V_6 = L_127;
|
|
int32_t L_128 = V_6;
|
|
if ((!(((uint32_t)L_128) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0382;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_129;
|
|
L_129 = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3((&___0_dateTime), NULL);
|
|
if ((((int32_t)L_129) >= ((int32_t)((int32_t)12))))
|
|
{
|
|
goto IL_0358;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_130 = ___2_dtfi;
|
|
NullCheck(L_130);
|
|
String_t* L_131;
|
|
L_131 = DateTimeFormatInfo_get_AMDesignator_m132D601293E679B6FC624E88517B25246F6EC4CB(L_130, NULL);
|
|
NullCheck(L_131);
|
|
int32_t L_132;
|
|
L_132 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_131, NULL);
|
|
if ((((int32_t)L_132) < ((int32_t)1)))
|
|
{
|
|
goto IL_0693;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_133 = ___4_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_134 = ___2_dtfi;
|
|
NullCheck(L_134);
|
|
String_t* L_135;
|
|
L_135 = DateTimeFormatInfo_get_AMDesignator_m132D601293E679B6FC624E88517B25246F6EC4CB(L_134, NULL);
|
|
NullCheck(L_135);
|
|
Il2CppChar L_136;
|
|
L_136 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_135, 0, NULL);
|
|
NullCheck(L_133);
|
|
StringBuilder_t* L_137;
|
|
L_137 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_133, L_136, NULL);
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_0358:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_138 = ___2_dtfi;
|
|
NullCheck(L_138);
|
|
String_t* L_139;
|
|
L_139 = DateTimeFormatInfo_get_PMDesignator_m3B06ECAF8B79E1AAAF8159198A9334658EB1F2CC(L_138, NULL);
|
|
NullCheck(L_139);
|
|
int32_t L_140;
|
|
L_140 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_139, NULL);
|
|
if ((((int32_t)L_140) < ((int32_t)1)))
|
|
{
|
|
goto IL_0693;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_141 = ___4_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_142 = ___2_dtfi;
|
|
NullCheck(L_142);
|
|
String_t* L_143;
|
|
L_143 = DateTimeFormatInfo_get_PMDesignator_m3B06ECAF8B79E1AAAF8159198A9334658EB1F2CC(L_142, NULL);
|
|
NullCheck(L_143);
|
|
Il2CppChar L_144;
|
|
L_144 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_143, 0, NULL);
|
|
NullCheck(L_141);
|
|
StringBuilder_t* L_145;
|
|
L_145 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_141, L_144, NULL);
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_0382:
|
|
{
|
|
StringBuilder_t* L_146 = ___4_result;
|
|
int32_t L_147;
|
|
L_147 = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3((&___0_dateTime), NULL);
|
|
G_B69_0 = L_146;
|
|
if ((((int32_t)L_147) < ((int32_t)((int32_t)12))))
|
|
{
|
|
G_B70_0 = L_146;
|
|
goto IL_0397;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_148 = ___2_dtfi;
|
|
NullCheck(L_148);
|
|
String_t* L_149;
|
|
L_149 = DateTimeFormatInfo_get_PMDesignator_m3B06ECAF8B79E1AAAF8159198A9334658EB1F2CC(L_148, NULL);
|
|
G_B71_0 = L_149;
|
|
G_B71_1 = G_B69_0;
|
|
goto IL_039d;
|
|
}
|
|
|
|
IL_0397:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_150 = ___2_dtfi;
|
|
NullCheck(L_150);
|
|
String_t* L_151;
|
|
L_151 = DateTimeFormatInfo_get_AMDesignator_m132D601293E679B6FC624E88517B25246F6EC4CB(L_150, NULL);
|
|
G_B71_0 = L_151;
|
|
G_B71_1 = G_B70_0;
|
|
}
|
|
|
|
IL_039d:
|
|
{
|
|
NullCheck(G_B71_1);
|
|
StringBuilder_t* L_152;
|
|
L_152 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B71_1, G_B71_0, NULL);
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_03a8:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_153 = ___1_format;
|
|
int32_t L_154 = V_5;
|
|
Il2CppChar L_155 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
int32_t L_156;
|
|
L_156 = DateTimeFormat_ParseRepeatPattern_mE2BAC459E579F2A45A2DEA762F22C89BA89FFB55(L_153, L_154, L_155, NULL);
|
|
V_6 = L_156;
|
|
int32_t L_157 = V_6;
|
|
if ((((int32_t)L_157) > ((int32_t)2)))
|
|
{
|
|
goto IL_03e4;
|
|
}
|
|
}
|
|
{
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_158 = V_0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_159 = ___0_dateTime;
|
|
NullCheck(L_158);
|
|
int32_t L_160;
|
|
L_160 = VirtualFuncInvoker1< int32_t, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D >::Invoke(11 /* System.Int32 System.Globalization.Calendar::GetDayOfMonth(System.DateTime) */, L_158, L_159);
|
|
V_15 = L_160;
|
|
bool L_161 = V_2;
|
|
if (!L_161)
|
|
{
|
|
goto IL_03d7;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
bool L_162;
|
|
L_162 = GlobalizationMode_get_Invariant_m07C027203B17E9B629D292376366608B7DDB2903_inline(NULL);
|
|
if (L_162)
|
|
{
|
|
goto IL_03d7;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_163 = ___4_result;
|
|
int32_t L_164 = V_15;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
DateTimeFormat_HebrewFormatDigits_m178C122EED75AE85562AB67B62F871377CF9A5AD(L_163, L_164, NULL);
|
|
goto IL_03ff;
|
|
}
|
|
|
|
IL_03d7:
|
|
{
|
|
StringBuilder_t* L_165 = ___4_result;
|
|
int32_t L_166 = V_15;
|
|
int32_t L_167 = V_6;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
DateTimeFormat_FormatDigits_m8271E32BC853A6B3A164561CFAACC17018F78949(L_165, L_166, L_167, NULL);
|
|
goto IL_03ff;
|
|
}
|
|
|
|
IL_03e4:
|
|
{
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_168 = V_0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_169 = ___0_dateTime;
|
|
NullCheck(L_168);
|
|
int32_t L_170;
|
|
L_170 = VirtualFuncInvoker1< int32_t, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D >::Invoke(12 /* System.DayOfWeek System.Globalization.Calendar::GetDayOfWeek(System.DateTime) */, L_168, L_169);
|
|
V_16 = L_170;
|
|
StringBuilder_t* L_171 = ___4_result;
|
|
int32_t L_172 = V_16;
|
|
int32_t L_173 = V_6;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_174 = ___2_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
String_t* L_175;
|
|
L_175 = DateTimeFormat_FormatDayOfWeek_mD448EE6829AF76AAB2A3C0FE30071FA43FBFE328(L_172, L_173, L_174, NULL);
|
|
NullCheck(L_171);
|
|
StringBuilder_t* L_176;
|
|
L_176 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_171, L_175, NULL);
|
|
}
|
|
|
|
IL_03ff:
|
|
{
|
|
V_4 = (bool)0;
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_0407:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_177 = ___1_format;
|
|
int32_t L_178 = V_5;
|
|
Il2CppChar L_179 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
int32_t L_180;
|
|
L_180 = DateTimeFormat_ParseRepeatPattern_mE2BAC459E579F2A45A2DEA762F22C89BA89FFB55(L_177, L_178, L_179, NULL);
|
|
V_6 = L_180;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_181 = V_0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_182 = ___0_dateTime;
|
|
NullCheck(L_181);
|
|
int32_t L_183;
|
|
L_183 = VirtualFuncInvoker1< int32_t, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D >::Invoke(17 /* System.Int32 System.Globalization.Calendar::GetMonth(System.DateTime) */, L_181, L_182);
|
|
V_10 = L_183;
|
|
int32_t L_184 = V_6;
|
|
if ((((int32_t)L_184) > ((int32_t)2)))
|
|
{
|
|
goto IL_0443;
|
|
}
|
|
}
|
|
{
|
|
bool L_185 = V_2;
|
|
if (!L_185)
|
|
{
|
|
goto IL_0436;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
bool L_186;
|
|
L_186 = GlobalizationMode_get_Invariant_m07C027203B17E9B629D292376366608B7DDB2903_inline(NULL);
|
|
if (L_186)
|
|
{
|
|
goto IL_0436;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_187 = ___4_result;
|
|
int32_t L_188 = V_10;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
DateTimeFormat_HebrewFormatDigits_m178C122EED75AE85562AB67B62F871377CF9A5AD(L_187, L_188, NULL);
|
|
goto IL_04a8;
|
|
}
|
|
|
|
IL_0436:
|
|
{
|
|
StringBuilder_t* L_189 = ___4_result;
|
|
int32_t L_190 = V_10;
|
|
int32_t L_191 = V_6;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
DateTimeFormat_FormatDigits_m8271E32BC853A6B3A164561CFAACC17018F78949(L_189, L_190, L_191, NULL);
|
|
goto IL_04a8;
|
|
}
|
|
|
|
IL_0443:
|
|
{
|
|
bool L_192 = V_2;
|
|
if (!L_192)
|
|
{
|
|
goto IL_0462;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
bool L_193;
|
|
L_193 = GlobalizationMode_get_Invariant_m07C027203B17E9B629D292376366608B7DDB2903_inline(NULL);
|
|
if (L_193)
|
|
{
|
|
goto IL_0462;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_194 = ___4_result;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_195 = ___0_dateTime;
|
|
int32_t L_196 = V_10;
|
|
int32_t L_197 = V_6;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_198 = ___2_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
String_t* L_199;
|
|
L_199 = DateTimeFormat_FormatHebrewMonthName_m95B9D906B91C4337A023D4EA4910F8C97BAB13B8(L_195, L_196, L_197, L_198, NULL);
|
|
NullCheck(L_194);
|
|
StringBuilder_t* L_200;
|
|
L_200 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_194, L_199, NULL);
|
|
goto IL_04a8;
|
|
}
|
|
|
|
IL_0462:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_201 = ___2_dtfi;
|
|
NullCheck(L_201);
|
|
int32_t L_202;
|
|
L_202 = DateTimeFormatInfo_get_FormatFlags_m02C18CB504B5F1547635C20439FF6E468D08A669(L_201, NULL);
|
|
if (!((int32_t)((int32_t)L_202&1)))
|
|
{
|
|
goto IL_0496;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_203 = V_6;
|
|
if ((((int32_t)L_203) < ((int32_t)4)))
|
|
{
|
|
goto IL_0496;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_204 = ___4_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_205 = ___2_dtfi;
|
|
int32_t L_206 = V_10;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_207 = ___1_format;
|
|
int32_t L_208 = V_5;
|
|
int32_t L_209 = V_6;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
bool L_210;
|
|
L_210 = DateTimeFormat_IsUseGenitiveForm_mCB8EA1952903F82277215B9005D414CDAB6E46CB(L_207, L_208, L_209, ((int32_t)100), NULL);
|
|
G_B90_0 = L_206;
|
|
G_B90_1 = L_205;
|
|
G_B90_2 = L_204;
|
|
if (L_210)
|
|
{
|
|
G_B91_0 = L_206;
|
|
G_B91_1 = L_205;
|
|
G_B91_2 = L_204;
|
|
goto IL_0487;
|
|
}
|
|
}
|
|
{
|
|
G_B92_0 = 0;
|
|
G_B92_1 = G_B90_0;
|
|
G_B92_2 = G_B90_1;
|
|
G_B92_3 = G_B90_2;
|
|
goto IL_0488;
|
|
}
|
|
|
|
IL_0487:
|
|
{
|
|
G_B92_0 = 1;
|
|
G_B92_1 = G_B91_0;
|
|
G_B92_2 = G_B91_1;
|
|
G_B92_3 = G_B91_2;
|
|
}
|
|
|
|
IL_0488:
|
|
{
|
|
NullCheck(G_B92_2);
|
|
String_t* L_211;
|
|
L_211 = DateTimeFormatInfo_internalGetMonthName_m670C3977E0F91474E492C2F9E1AAB435D846CB14(G_B92_2, G_B92_1, G_B92_0, (bool)0, NULL);
|
|
NullCheck(G_B92_3);
|
|
StringBuilder_t* L_212;
|
|
L_212 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B92_3, L_211, NULL);
|
|
goto IL_04a8;
|
|
}
|
|
|
|
IL_0496:
|
|
{
|
|
StringBuilder_t* L_213 = ___4_result;
|
|
int32_t L_214 = V_10;
|
|
int32_t L_215 = V_6;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_216 = ___2_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
String_t* L_217;
|
|
L_217 = DateTimeFormat_FormatMonth_m676D06657AC9D857C2CF727905F362BFCA73DDD2(L_214, L_215, L_216, NULL);
|
|
NullCheck(L_213);
|
|
StringBuilder_t* L_218;
|
|
L_218 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_213, L_217, NULL);
|
|
}
|
|
|
|
IL_04a8:
|
|
{
|
|
V_4 = (bool)0;
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_04b0:
|
|
{
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_219 = V_0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_220 = ___0_dateTime;
|
|
NullCheck(L_219);
|
|
int32_t L_221;
|
|
L_221 = VirtualFuncInvoker1< int32_t, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D >::Invoke(19 /* System.Int32 System.Globalization.Calendar::GetYear(System.DateTime) */, L_219, L_220);
|
|
V_11 = L_221;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_222 = ___1_format;
|
|
int32_t L_223 = V_5;
|
|
Il2CppChar L_224 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
int32_t L_225;
|
|
L_225 = DateTimeFormat_ParseRepeatPattern_mE2BAC459E579F2A45A2DEA762F22C89BA89FFB55(L_222, L_223, L_224, NULL);
|
|
V_6 = L_225;
|
|
bool L_226 = V_3;
|
|
if (!L_226)
|
|
{
|
|
goto IL_0526;
|
|
}
|
|
}
|
|
{
|
|
bool L_227 = ((AppContextSwitches_t542F10E9BE2333B7BE24C8858C8A24EFA6C06D38_StaticFields*)il2cpp_codegen_static_fields_for(AppContextSwitches_t542F10E9BE2333B7BE24C8858C8A24EFA6C06D38_il2cpp_TypeInfo_var))->___FormatJapaneseFirstYearAsANumber_1;
|
|
if (L_227)
|
|
{
|
|
goto IL_0526;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_228 = V_11;
|
|
if ((!(((uint32_t)L_228) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0526;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_229 = V_5;
|
|
int32_t L_230 = V_6;
|
|
int32_t L_231;
|
|
L_231 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___1_format), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_229, L_230))) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_231, 1)))))
|
|
{
|
|
goto IL_0526;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_232 = V_5;
|
|
int32_t L_233 = V_6;
|
|
Il2CppChar* L_234;
|
|
L_234 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_format))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(L_232, L_233))), ((&___1_format))->____length_1);
|
|
int32_t L_235 = *((uint16_t*)L_234);
|
|
if ((!(((uint32_t)L_235) == ((uint32_t)((int32_t)39)))))
|
|
{
|
|
goto IL_0526;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_236 = V_5;
|
|
int32_t L_237 = V_6;
|
|
Il2CppChar* L_238;
|
|
L_238 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_format))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_236, L_237)), 1))), ((&___1_format))->____length_1);
|
|
int32_t L_239 = *((uint16_t*)L_238);
|
|
NullCheck(_stringLiteralCB8E6E9388768EBCE39ACC521B5A3A8DA3AC5D86);
|
|
Il2CppChar L_240;
|
|
L_240 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(_stringLiteralCB8E6E9388768EBCE39ACC521B5A3A8DA3AC5D86, 0, NULL);
|
|
if ((!(((uint32_t)L_239) == ((uint32_t)L_240))))
|
|
{
|
|
goto IL_0526;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_241 = ___4_result;
|
|
NullCheck(_stringLiteralC2F9A94ED8684F4AE51F264CC8E83B9731EAE480);
|
|
Il2CppChar L_242;
|
|
L_242 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(_stringLiteralC2F9A94ED8684F4AE51F264CC8E83B9731EAE480, 0, NULL);
|
|
NullCheck(L_241);
|
|
StringBuilder_t* L_243;
|
|
L_243 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_241, L_242, NULL);
|
|
goto IL_0596;
|
|
}
|
|
|
|
IL_0526:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_244 = ___2_dtfi;
|
|
NullCheck(L_244);
|
|
bool L_245;
|
|
L_245 = DateTimeFormatInfo_get_HasForceTwoDigitYears_m25CFF727E1A830DF26A757917BAD564C99DE3899(L_244, NULL);
|
|
if (!L_245)
|
|
{
|
|
goto IL_0543;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_246 = ___4_result;
|
|
int32_t L_247 = V_11;
|
|
int32_t L_248 = V_6;
|
|
G_B104_0 = L_247;
|
|
G_B104_1 = L_246;
|
|
if ((((int32_t)L_248) <= ((int32_t)2)))
|
|
{
|
|
G_B105_0 = L_247;
|
|
G_B105_1 = L_246;
|
|
goto IL_053a;
|
|
}
|
|
}
|
|
{
|
|
G_B106_0 = 2;
|
|
G_B106_1 = G_B104_0;
|
|
G_B106_2 = G_B104_1;
|
|
goto IL_053c;
|
|
}
|
|
|
|
IL_053a:
|
|
{
|
|
int32_t L_249 = V_6;
|
|
G_B106_0 = L_249;
|
|
G_B106_1 = G_B105_0;
|
|
G_B106_2 = G_B105_1;
|
|
}
|
|
|
|
IL_053c:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
DateTimeFormat_FormatDigits_m8271E32BC853A6B3A164561CFAACC17018F78949(G_B106_2, G_B106_1, G_B106_0, NULL);
|
|
goto IL_0596;
|
|
}
|
|
|
|
IL_0543:
|
|
{
|
|
bool L_250 = V_2;
|
|
if (!L_250)
|
|
{
|
|
goto IL_0558;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
bool L_251;
|
|
L_251 = GlobalizationMode_get_Invariant_m07C027203B17E9B629D292376366608B7DDB2903_inline(NULL);
|
|
if (L_251)
|
|
{
|
|
goto IL_0558;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_252 = ___4_result;
|
|
int32_t L_253 = V_11;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
DateTimeFormat_HebrewFormatDigits_m178C122EED75AE85562AB67B62F871377CF9A5AD(L_252, L_253, NULL);
|
|
goto IL_0596;
|
|
}
|
|
|
|
IL_0558:
|
|
{
|
|
int32_t L_254 = V_6;
|
|
if ((((int32_t)L_254) > ((int32_t)2)))
|
|
{
|
|
goto IL_056d;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_255 = ___4_result;
|
|
int32_t L_256 = V_11;
|
|
int32_t L_257 = V_6;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
DateTimeFormat_FormatDigits_m8271E32BC853A6B3A164561CFAACC17018F78949(L_255, ((int32_t)(L_256%((int32_t)100))), L_257, NULL);
|
|
goto IL_0596;
|
|
}
|
|
|
|
IL_056d:
|
|
{
|
|
String_t* L_258;
|
|
L_258 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_6), NULL);
|
|
String_t* L_259;
|
|
L_259 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteralA019FB7F17AA36A9743C530E1F11D5613B8B1158, L_258, NULL);
|
|
V_17 = L_259;
|
|
StringBuilder_t* L_260 = ___4_result;
|
|
String_t* L_261 = V_17;
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_262;
|
|
L_262 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
String_t* L_263;
|
|
L_263 = Int32_ToString_mE871810BC163EE4EF88E7C7682A6AD39911173B8((&V_11), L_261, L_262, NULL);
|
|
NullCheck(L_260);
|
|
StringBuilder_t* L_264;
|
|
L_264 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_260, L_263, NULL);
|
|
}
|
|
|
|
IL_0596:
|
|
{
|
|
V_4 = (bool)0;
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_059e:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_265 = ___1_format;
|
|
int32_t L_266 = V_5;
|
|
Il2CppChar L_267 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
int32_t L_268;
|
|
L_268 = DateTimeFormat_ParseRepeatPattern_mE2BAC459E579F2A45A2DEA762F22C89BA89FFB55(L_265, L_266, L_267, NULL);
|
|
V_6 = L_268;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_269 = ___0_dateTime;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_270 = ___3_offset;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_271 = ___1_format;
|
|
int32_t L_272 = V_6;
|
|
bool L_273 = V_4;
|
|
StringBuilder_t* L_274 = ___4_result;
|
|
DateTimeFormat_FormatCustomizedTimeZone_mBC1915E9AE8B09D78CEDF603906F95195BE8C5E4(L_269, L_270, L_271, L_272, L_273, L_274, NULL);
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_05bd:
|
|
{
|
|
V_6 = 1;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_275 = ___0_dateTime;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_276 = ___3_offset;
|
|
StringBuilder_t* L_277 = ___4_result;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
DateTimeFormat_FormatCustomizedRoundripTimeZone_mF92EE63C8F199D445F23094DC24E5F5D1D0971BB(L_275, L_276, L_277, NULL);
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_05ce:
|
|
{
|
|
StringBuilder_t* L_278 = ___4_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_279 = ___2_dtfi;
|
|
NullCheck(L_279);
|
|
String_t* L_280;
|
|
L_280 = DateTimeFormatInfo_get_TimeSeparator_m708070A0307E7FB6D0FB9C5FF3E371EBF8800791(L_279, NULL);
|
|
NullCheck(L_278);
|
|
StringBuilder_t* L_281;
|
|
L_281 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_278, L_280, NULL);
|
|
V_6 = 1;
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_05e4:
|
|
{
|
|
StringBuilder_t* L_282 = ___4_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_283 = ___2_dtfi;
|
|
NullCheck(L_283);
|
|
String_t* L_284;
|
|
L_284 = DateTimeFormatInfo_get_DateSeparator_mBD2B8F51FE1491BC6695B10CB1973754BBF54CDD(L_283, NULL);
|
|
NullCheck(L_282);
|
|
StringBuilder_t* L_285;
|
|
L_285 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_282, L_284, NULL);
|
|
V_6 = 1;
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_05fa:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_286 = ___1_format;
|
|
int32_t L_287 = V_5;
|
|
StringBuilder_t* L_288 = ___4_result;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
int32_t L_289;
|
|
L_289 = DateTimeFormat_ParseQuoteString_m9D76FA19D6C16F79B944F25899AA6ABBF1D6FD59(L_286, L_287, L_288, NULL);
|
|
V_6 = L_289;
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_060b:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_290 = ___1_format;
|
|
int32_t L_291 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
int32_t L_292;
|
|
L_292 = DateTimeFormat_ParseNextChar_mC5A3CB9DAE112DA97E1B081354496AA56FB3BF17(L_290, L_291, NULL);
|
|
V_9 = L_292;
|
|
int32_t L_293 = V_9;
|
|
if ((((int32_t)L_293) < ((int32_t)0)))
|
|
{
|
|
goto IL_063d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_294 = V_9;
|
|
if ((((int32_t)L_294) == ((int32_t)((int32_t)37))))
|
|
{
|
|
goto IL_063d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_295 = V_9;
|
|
V_18 = ((int32_t)(uint16_t)L_295);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_296 = ___0_dateTime;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_297;
|
|
L_297 = MemoryMarshal_CreateReadOnlySpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m6AC28EB03E267661349B40C5A925602DAC3F1C11_inline((&V_18), 1, MemoryMarshal_CreateReadOnlySpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m6AC28EB03E267661349B40C5A925602DAC3F1C11_RuntimeMethod_var);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_298 = ___2_dtfi;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_299 = ___3_offset;
|
|
StringBuilder_t* L_300 = ___4_result;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
StringBuilder_t* L_301;
|
|
L_301 = DateTimeFormat_FormatCustomized_m59304DCEF2BAAF79BE928EEA00D9449327489999(L_296, L_297, L_298, L_299, L_300, NULL);
|
|
V_6 = 2;
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_063d:
|
|
{
|
|
bool L_302 = V_1;
|
|
if (!L_302)
|
|
{
|
|
goto IL_0647;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_303 = ___4_result;
|
|
StringBuilderCache_Release_m65C472D3E200ECA86BF7EFDAAF55CA6109678EB5(L_303, NULL);
|
|
}
|
|
|
|
IL_0647:
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_304 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_304);
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_304, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7ED71F768C05670E3698EF09100E41C9E3AC8113)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_304, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeFormat_FormatCustomized_m59304DCEF2BAAF79BE928EEA00D9449327489999_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0652:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_305 = ___1_format;
|
|
int32_t L_306 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
int32_t L_307;
|
|
L_307 = DateTimeFormat_ParseNextChar_mC5A3CB9DAE112DA97E1B081354496AA56FB3BF17(L_305, L_306, NULL);
|
|
V_9 = L_307;
|
|
int32_t L_308 = V_9;
|
|
if ((((int32_t)L_308) < ((int32_t)0)))
|
|
{
|
|
goto IL_0671;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_309 = ___4_result;
|
|
int32_t L_310 = V_9;
|
|
NullCheck(L_309);
|
|
StringBuilder_t* L_311;
|
|
L_311 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_309, ((int32_t)(uint16_t)L_310), NULL);
|
|
V_6 = 2;
|
|
goto IL_0693;
|
|
}
|
|
|
|
IL_0671:
|
|
{
|
|
bool L_312 = V_1;
|
|
if (!L_312)
|
|
{
|
|
goto IL_067b;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_313 = ___4_result;
|
|
StringBuilderCache_Release_m65C472D3E200ECA86BF7EFDAAF55CA6109678EB5(L_313, NULL);
|
|
}
|
|
|
|
IL_067b:
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_314 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_314);
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_314, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7ED71F768C05670E3698EF09100E41C9E3AC8113)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_314, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeFormat_FormatCustomized_m59304DCEF2BAAF79BE928EEA00D9449327489999_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0686:
|
|
{
|
|
StringBuilder_t* L_315 = ___4_result;
|
|
Il2CppChar L_316 = V_8;
|
|
NullCheck(L_315);
|
|
StringBuilder_t* L_317;
|
|
L_317 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_315, L_316, NULL);
|
|
V_6 = 1;
|
|
}
|
|
|
|
IL_0693:
|
|
{
|
|
int32_t L_318 = V_5;
|
|
int32_t L_319 = V_6;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_318, L_319));
|
|
}
|
|
|
|
IL_069a:
|
|
{
|
|
int32_t L_320 = V_5;
|
|
int32_t L_321;
|
|
L_321 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___1_format), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)L_320) < ((int32_t)L_321)))
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_322 = ___4_result;
|
|
return L_322;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeFormat::FormatCustomizedTimeZone(System.DateTime,System.TimeSpan,System.ReadOnlySpan`1<System.Char>,System.Int32,System.Boolean,System.Text.StringBuilder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormat_FormatCustomizedTimeZone_mBC1915E9AE8B09D78CEDF603906F95195BE8C5E4 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_offset, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, int32_t ___3_tokenLen, bool ___4_timeOnly, StringBuilder_t* ___5_result, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2E071382DB44956A884FF6F8B929901347ACE681);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral77387B78748B05E25D49DF7E83E0FC37687A3FF3);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCB0A78B035105B2CCEB9174377B59BDBD1095C96);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ___1_offset;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___NullOffset_0;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = TimeSpan_op_Equality_m951689F806957B14F237DAFCEE4CB322799A723E(L_0, L_1, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
bool L_3 = ___4_timeOnly;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_4;
|
|
L_4 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___0_dateTime), NULL);
|
|
if ((((int64_t)L_4) >= ((int64_t)((int64_t)864000000000LL))))
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5;
|
|
L_5 = DateTime_get_Now_m636CB9651A9099D20BA1CF813A0C69637317325C(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6;
|
|
L_6 = TimeZoneInfo_GetLocalUtcOffset_m3D55DA415FB33A0721CF19FBCAB899EB8EAC4433(L_5, 2, NULL);
|
|
___1_offset = L_6;
|
|
goto IL_004e;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
int32_t L_7;
|
|
L_7 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___0_dateTime), NULL);
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19;
|
|
___1_offset = L_8;
|
|
goto IL_004e;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9 = ___0_dateTime;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_10;
|
|
L_10 = TimeZoneInfo_GetLocalUtcOffset_m3D55DA415FB33A0721CF19FBCAB899EB8EAC4433(L_9, 2, NULL);
|
|
___1_offset = L_10;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11 = ___1_offset;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_12 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19;
|
|
bool L_13;
|
|
L_13 = TimeSpan_op_GreaterThanOrEqual_m75F60A7DA7C0BB62E4A21E7784E6FFE6D2D73CFE(L_11, L_12, NULL);
|
|
if (!L_13)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_14 = ___5_result;
|
|
NullCheck(L_14);
|
|
StringBuilder_t* L_15;
|
|
L_15 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_14, ((int32_t)43), NULL);
|
|
goto IL_007a;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
StringBuilder_t* L_16 = ___5_result;
|
|
NullCheck(L_16);
|
|
StringBuilder_t* L_17;
|
|
L_17 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_16, ((int32_t)45), NULL);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_18;
|
|
L_18 = TimeSpan_Negate_m3BF3036191A2FDC35250891CD82AD3283A13ABB4((&___1_offset), NULL);
|
|
___1_offset = L_18;
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
int32_t L_19 = ___3_tokenLen;
|
|
if ((((int32_t)L_19) > ((int32_t)1)))
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_20 = ___5_result;
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_21;
|
|
L_21 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
int32_t L_22;
|
|
L_22 = TimeSpan_get_Hours_m770B4B777A816E051EFDA317C28DA9A4F39D6CFB((&___1_offset), NULL);
|
|
int32_t L_23 = L_22;
|
|
RuntimeObject* L_24 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_23);
|
|
NullCheck(L_20);
|
|
StringBuilder_t* L_25;
|
|
L_25 = StringBuilder_AppendFormat_m91278D58CD695B07613B9A3941B745B815542E1E(L_20, L_21, _stringLiteralCB0A78B035105B2CCEB9174377B59BDBD1095C96, L_24, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
StringBuilder_t* L_26 = ___5_result;
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_27;
|
|
L_27 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
int32_t L_28;
|
|
L_28 = TimeSpan_get_Hours_m770B4B777A816E051EFDA317C28DA9A4F39D6CFB((&___1_offset), NULL);
|
|
int32_t L_29 = L_28;
|
|
RuntimeObject* L_30 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_29);
|
|
NullCheck(L_26);
|
|
StringBuilder_t* L_31;
|
|
L_31 = StringBuilder_AppendFormat_m91278D58CD695B07613B9A3941B745B815542E1E(L_26, L_27, _stringLiteral77387B78748B05E25D49DF7E83E0FC37687A3FF3, L_30, NULL);
|
|
int32_t L_32 = ___3_tokenLen;
|
|
if ((((int32_t)L_32) < ((int32_t)3)))
|
|
{
|
|
goto IL_00dd;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_33 = ___5_result;
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_34;
|
|
L_34 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
int32_t L_35;
|
|
L_35 = TimeSpan_get_Minutes_m93E37D01CD6DA2DE5B35609D740D322E270B678F((&___1_offset), NULL);
|
|
int32_t L_36 = L_35;
|
|
RuntimeObject* L_37 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_36);
|
|
NullCheck(L_33);
|
|
StringBuilder_t* L_38;
|
|
L_38 = StringBuilder_AppendFormat_m91278D58CD695B07613B9A3941B745B815542E1E(L_33, L_34, _stringLiteral2E071382DB44956A884FF6F8B929901347ACE681, L_37, NULL);
|
|
}
|
|
|
|
IL_00dd:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeFormat::FormatCustomizedRoundripTimeZone(System.DateTime,System.TimeSpan,System.Text.StringBuilder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormat_FormatCustomizedRoundripTimeZone_mF92EE63C8F199D445F23094DC24E5F5D1D0971BB (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_offset, StringBuilder_t* ___2_result, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral234D19ACC97DBDDB4C2351D9B583DDC8AD958380);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ___1_offset;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___NullOffset_0;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = TimeSpan_op_Equality_m951689F806957B14F237DAFCEE4CB322799A723E(L_0, L_1, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3;
|
|
L_3 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___0_dateTime), NULL);
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_4) == ((int32_t)1)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_0;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6 = ___0_dateTime;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7;
|
|
L_7 = TimeZoneInfo_GetLocalUtcOffset_m3D55DA415FB33A0721CF19FBCAB899EB8EAC4433(L_6, 2, NULL);
|
|
___1_offset = L_7;
|
|
goto IL_0036;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
StringBuilder_t* L_8 = ___2_result;
|
|
NullCheck(L_8);
|
|
StringBuilder_t* L_9;
|
|
L_9 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_8, _stringLiteral234D19ACC97DBDDB4C2351D9B583DDC8AD958380, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_10 = ___1_offset;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19;
|
|
bool L_12;
|
|
L_12 = TimeSpan_op_GreaterThanOrEqual_m75F60A7DA7C0BB62E4A21E7784E6FFE6D2D73CFE(L_10, L_11, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_13 = ___2_result;
|
|
NullCheck(L_13);
|
|
StringBuilder_t* L_14;
|
|
L_14 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_13, ((int32_t)43), NULL);
|
|
goto IL_0060;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
StringBuilder_t* L_15 = ___2_result;
|
|
NullCheck(L_15);
|
|
StringBuilder_t* L_16;
|
|
L_16 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_15, ((int32_t)45), NULL);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_17;
|
|
L_17 = TimeSpan_Negate_m3BF3036191A2FDC35250891CD82AD3283A13ABB4((&___1_offset), NULL);
|
|
___1_offset = L_17;
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
StringBuilder_t* L_18 = ___2_result;
|
|
int32_t L_19;
|
|
L_19 = TimeSpan_get_Hours_m770B4B777A816E051EFDA317C28DA9A4F39D6CFB((&___1_offset), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
DateTimeFormat_Append2DigitNumber_m77D515E4A4D5204955DAA12F4F1EC018FE86122F(L_18, L_19, NULL);
|
|
StringBuilder_t* L_20 = ___2_result;
|
|
NullCheck(L_20);
|
|
StringBuilder_t* L_21;
|
|
L_21 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_20, ((int32_t)58), NULL);
|
|
StringBuilder_t* L_22 = ___2_result;
|
|
int32_t L_23;
|
|
L_23 = TimeSpan_get_Minutes_m93E37D01CD6DA2DE5B35609D740D322E270B678F((&___1_offset), NULL);
|
|
DateTimeFormat_Append2DigitNumber_m77D515E4A4D5204955DAA12F4F1EC018FE86122F(L_22, L_23, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeFormat::Append2DigitNumber(System.Text.StringBuilder,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormat_Append2DigitNumber_m77D515E4A4D5204955DAA12F4F1EC018FE86122F (StringBuilder_t* ___0_result, int32_t ___1_val, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
StringBuilder_t* L_0 = ___0_result;
|
|
int32_t L_1 = ___1_val;
|
|
NullCheck(L_0);
|
|
StringBuilder_t* L_2;
|
|
L_2 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_0, ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add(((int32_t)48), ((int32_t)(L_1/((int32_t)10)))))), NULL);
|
|
StringBuilder_t* L_3 = ___0_result;
|
|
int32_t L_4 = ___1_val;
|
|
NullCheck(L_3);
|
|
StringBuilder_t* L_5;
|
|
L_5 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_3, ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add(((int32_t)48), ((int32_t)(L_4%((int32_t)10)))))), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.DateTimeFormat::GetRealFormat(System.ReadOnlySpan`1<System.Char>,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormat_GetRealFormat_m675B6AD6247C73C5048A6F09EF0149A2EF20E5DB (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___1_dtfi, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4A8066343C199F418E9759AE5233B4A83D29CE04);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
Il2CppChar V_1 = 0x0;
|
|
{
|
|
V_0 = (String_t*)NULL;
|
|
Il2CppChar* L_0;
|
|
L_0 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_format))->____pointer_0))->value, (0), ((&___0_format))->____length_1);
|
|
int32_t L_1 = *((uint16_t*)L_0);
|
|
V_1 = L_1;
|
|
Il2CppChar L_2 = V_1;
|
|
if ((!(((uint32_t)L_2) <= ((uint32_t)((int32_t)85)))))
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_3 = V_1;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, ((int32_t)68))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_00cb;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_015b;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_00f0;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0102;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_4 = V_1;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_4, ((int32_t)77))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_010b;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_015b;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0114;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_015b;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_015b;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_011c;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_015b;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_0137;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_0149;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_015b;
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
Il2CppChar L_5 = V_1;
|
|
if ((((int32_t)L_5) == ((int32_t)((int32_t)89))))
|
|
{
|
|
goto IL_0152;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_6 = V_1;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, ((int32_t)100))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_00bf;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_015b;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_00d7;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_00f9;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_7 = V_1;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_7, ((int32_t)109))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_010b;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_015b;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0114;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_015b;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_015b;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_011c;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0125;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_012e;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_0140;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_015b;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_015b;
|
|
}
|
|
case 11:
|
|
{
|
|
goto IL_015b;
|
|
}
|
|
case 12:
|
|
{
|
|
goto IL_0152;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_015b;
|
|
}
|
|
|
|
IL_00bf:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_8 = ___1_dtfi;
|
|
NullCheck(L_8);
|
|
String_t* L_9;
|
|
L_9 = DateTimeFormatInfo_get_ShortDatePattern_m8B5B3BC573F1836C9257B9CCB9C3C4B890E66A0D(L_8, NULL);
|
|
V_0 = L_9;
|
|
goto IL_0166;
|
|
}
|
|
|
|
IL_00cb:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_10 = ___1_dtfi;
|
|
NullCheck(L_10);
|
|
String_t* L_11;
|
|
L_11 = DateTimeFormatInfo_get_LongDatePattern_m5745B956A1340A9F6304C86F0C574B5338BF56B1(L_10, NULL);
|
|
V_0 = L_11;
|
|
goto IL_0166;
|
|
}
|
|
|
|
IL_00d7:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_12 = ___1_dtfi;
|
|
NullCheck(L_12);
|
|
String_t* L_13;
|
|
L_13 = DateTimeFormatInfo_get_LongDatePattern_m5745B956A1340A9F6304C86F0C574B5338BF56B1(L_12, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_14 = ___1_dtfi;
|
|
NullCheck(L_14);
|
|
String_t* L_15;
|
|
L_15 = DateTimeFormatInfo_get_ShortTimePattern_m1ECB24D998656104918CCFD092207FA9FA4300A6(L_14, NULL);
|
|
String_t* L_16;
|
|
L_16 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_13, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, L_15, NULL);
|
|
V_0 = L_16;
|
|
goto IL_0166;
|
|
}
|
|
|
|
IL_00f0:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_17 = ___1_dtfi;
|
|
NullCheck(L_17);
|
|
String_t* L_18;
|
|
L_18 = DateTimeFormatInfo_get_FullDateTimePattern_mD9F9E7F88253C37BAB91B7A6EFD4D750CBA10170(L_17, NULL);
|
|
V_0 = L_18;
|
|
goto IL_0166;
|
|
}
|
|
|
|
IL_00f9:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_19 = ___1_dtfi;
|
|
NullCheck(L_19);
|
|
String_t* L_20;
|
|
L_20 = DateTimeFormatInfo_get_GeneralShortTimePattern_mAC0D32A71DD6FCDDC1EB0D08D4D89E73603B9957(L_19, NULL);
|
|
V_0 = L_20;
|
|
goto IL_0166;
|
|
}
|
|
|
|
IL_0102:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_21 = ___1_dtfi;
|
|
NullCheck(L_21);
|
|
String_t* L_22;
|
|
L_22 = DateTimeFormatInfo_get_GeneralLongTimePattern_m492FC4744C69B014F6A443F152BDEB0F2D0B912A(L_21, NULL);
|
|
V_0 = L_22;
|
|
goto IL_0166;
|
|
}
|
|
|
|
IL_010b:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_23 = ___1_dtfi;
|
|
NullCheck(L_23);
|
|
String_t* L_24;
|
|
L_24 = DateTimeFormatInfo_get_MonthDayPattern_m868752F743E864688FC5D251412A5657747EEEFD(L_23, NULL);
|
|
V_0 = L_24;
|
|
goto IL_0166;
|
|
}
|
|
|
|
IL_0114:
|
|
{
|
|
V_0 = _stringLiteral4A8066343C199F418E9759AE5233B4A83D29CE04;
|
|
goto IL_0166;
|
|
}
|
|
|
|
IL_011c:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_25 = ___1_dtfi;
|
|
NullCheck(L_25);
|
|
String_t* L_26;
|
|
L_26 = DateTimeFormatInfo_get_RFC1123Pattern_mCE40B43C4A95F9F745A271CA52E93510CA338A66(L_25, NULL);
|
|
V_0 = L_26;
|
|
goto IL_0166;
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_27 = ___1_dtfi;
|
|
NullCheck(L_27);
|
|
String_t* L_28;
|
|
L_28 = DateTimeFormatInfo_get_SortableDateTimePattern_mABB0FA1D64D9A0528F77F8AB3395969A5C16E9B2(L_27, NULL);
|
|
V_0 = L_28;
|
|
goto IL_0166;
|
|
}
|
|
|
|
IL_012e:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_29 = ___1_dtfi;
|
|
NullCheck(L_29);
|
|
String_t* L_30;
|
|
L_30 = DateTimeFormatInfo_get_ShortTimePattern_m1ECB24D998656104918CCFD092207FA9FA4300A6(L_29, NULL);
|
|
V_0 = L_30;
|
|
goto IL_0166;
|
|
}
|
|
|
|
IL_0137:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_31 = ___1_dtfi;
|
|
NullCheck(L_31);
|
|
String_t* L_32;
|
|
L_32 = DateTimeFormatInfo_get_LongTimePattern_m8ECFC475A70921D789E02878FA99C407B2C01BC7(L_31, NULL);
|
|
V_0 = L_32;
|
|
goto IL_0166;
|
|
}
|
|
|
|
IL_0140:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_33 = ___1_dtfi;
|
|
NullCheck(L_33);
|
|
String_t* L_34;
|
|
L_34 = DateTimeFormatInfo_get_UniversalSortableDateTimePattern_mBF940398A8E235EF9D29B889E984FC73ECDB7F7E(L_33, NULL);
|
|
V_0 = L_34;
|
|
goto IL_0166;
|
|
}
|
|
|
|
IL_0149:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_35 = ___1_dtfi;
|
|
NullCheck(L_35);
|
|
String_t* L_36;
|
|
L_36 = DateTimeFormatInfo_get_FullDateTimePattern_mD9F9E7F88253C37BAB91B7A6EFD4D750CBA10170(L_35, NULL);
|
|
V_0 = L_36;
|
|
goto IL_0166;
|
|
}
|
|
|
|
IL_0152:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_37 = ___1_dtfi;
|
|
NullCheck(L_37);
|
|
String_t* L_38;
|
|
L_38 = DateTimeFormatInfo_get_YearMonthPattern_m98C6AAE1CA577D103C522991D843FCD5817EDF04(L_37, NULL);
|
|
V_0 = L_38;
|
|
goto IL_0166;
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_39 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_39);
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_39, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7ED71F768C05670E3698EF09100E41C9E3AC8113)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_39, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeFormat_GetRealFormat_m675B6AD6247C73C5048A6F09EF0149A2EF20E5DB_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0166:
|
|
{
|
|
String_t* L_40 = V_0;
|
|
return L_40;
|
|
}
|
|
}
|
|
// System.String System.DateTimeFormat::ExpandPredefinedFormat(System.ReadOnlySpan`1<System.Char>,System.DateTime&,System.Globalization.DateTimeFormatInfo&,System.TimeSpan&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormat_ExpandPredefinedFormat_mE9FCB4489ABD24F6EBB76F7EE8C5FB331713EF50 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* ___1_dateTime, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** ___2_dtfi, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* ___3_offset, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GregorianCalendar_t6CC2956C5298E69CE93FE53A9DF5AE4F33621815_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GregorianCalendar_t6CC2956C5298E69CE93FE53A9DF5AE4F33621815_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Il2CppChar V_0 = 0x0;
|
|
{
|
|
Il2CppChar* L_0;
|
|
L_0 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_format))->____pointer_0))->value, (0), ((&___0_format))->____length_1);
|
|
int32_t L_1 = *((uint16_t*)L_0);
|
|
V_0 = L_1;
|
|
Il2CppChar L_2 = V_0;
|
|
if ((!(((uint32_t)L_2) <= ((uint32_t)((int32_t)82)))))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_3 = V_0;
|
|
if ((((int32_t)L_3) == ((int32_t)((int32_t)79))))
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_4 = V_0;
|
|
if ((((int32_t)L_4) == ((int32_t)((int32_t)82))))
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_015d;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
Il2CppChar L_5 = V_0;
|
|
if ((((int32_t)L_5) == ((int32_t)((int32_t)85))))
|
|
{
|
|
goto IL_00fd;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_6 = V_0;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, ((int32_t)111))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_015d;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_015d;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_00a8;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_015d;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_00b4;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_015d;
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_7 = ___2_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_8;
|
|
L_8 = DateTimeFormatInfo_get_InvariantInfo_m24804C20A94D2952323C82193D4A59ADF171C8AA(NULL);
|
|
*((RuntimeObject**)L_7) = (RuntimeObject*)L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_7, (void*)(RuntimeObject*)L_8);
|
|
goto IL_015d;
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_9 = ___3_offset;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_10 = (*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)L_9);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11 = ((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___NullOffset_0;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
bool L_12;
|
|
L_12 = TimeSpan_op_Inequality_m2248419A8BCC8744CADE25174238B24AE34F17DB(L_10, L_11, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_13 = ___1_dateTime;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_14 = ___1_dateTime;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15 = (*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_14);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_16 = ___3_offset;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_17 = (*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)L_16);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_18;
|
|
L_18 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_15, L_17, NULL);
|
|
*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_13 = L_18;
|
|
goto IL_009c;
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_19 = ___1_dateTime;
|
|
int32_t L_20;
|
|
L_20 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993(L_19, NULL);
|
|
if ((!(((uint32_t)L_20) == ((uint32_t)2))))
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_21 = ___0_format;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_22 = ___1_dateTime;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_23 = (*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_22);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
DateTimeFormat_InvalidFormatForLocal_m1D87DD7363D0483D04165AA1DCB83A31A6C046BA(L_21, L_23, NULL);
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_24 = ___2_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_25;
|
|
L_25 = DateTimeFormatInfo_get_InvariantInfo_m24804C20A94D2952323C82193D4A59ADF171C8AA(NULL);
|
|
*((RuntimeObject**)L_24) = (RuntimeObject*)L_25;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_24, (void*)(RuntimeObject*)L_25);
|
|
goto IL_015d;
|
|
}
|
|
|
|
IL_00a8:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_26 = ___2_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_27;
|
|
L_27 = DateTimeFormatInfo_get_InvariantInfo_m24804C20A94D2952323C82193D4A59ADF171C8AA(NULL);
|
|
*((RuntimeObject**)L_26) = (RuntimeObject*)L_27;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_26, (void*)(RuntimeObject*)L_27);
|
|
goto IL_015d;
|
|
}
|
|
|
|
IL_00b4:
|
|
{
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_28 = ___3_offset;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_29 = (*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)L_28);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_30 = ((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___NullOffset_0;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
bool L_31;
|
|
L_31 = TimeSpan_op_Inequality_m2248419A8BCC8744CADE25174238B24AE34F17DB(L_29, L_30, NULL);
|
|
if (!L_31)
|
|
{
|
|
goto IL_00df;
|
|
}
|
|
}
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_32 = ___1_dateTime;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_33 = ___1_dateTime;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_34 = (*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_33);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_35 = ___3_offset;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_36 = (*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)L_35);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_37;
|
|
L_37 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_34, L_36, NULL);
|
|
*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_32 = L_37;
|
|
goto IL_00f4;
|
|
}
|
|
|
|
IL_00df:
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_38 = ___1_dateTime;
|
|
int32_t L_39;
|
|
L_39 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993(L_38, NULL);
|
|
if ((!(((uint32_t)L_39) == ((uint32_t)2))))
|
|
{
|
|
goto IL_00f4;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_40 = ___0_format;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_41 = ___1_dateTime;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_42 = (*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_41);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
DateTimeFormat_InvalidFormatForLocal_m1D87DD7363D0483D04165AA1DCB83A31A6C046BA(L_40, L_42, NULL);
|
|
}
|
|
|
|
IL_00f4:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_43 = ___2_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_44;
|
|
L_44 = DateTimeFormatInfo_get_InvariantInfo_m24804C20A94D2952323C82193D4A59ADF171C8AA(NULL);
|
|
*((RuntimeObject**)L_43) = (RuntimeObject*)L_44;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_43, (void*)(RuntimeObject*)L_44);
|
|
goto IL_015d;
|
|
}
|
|
|
|
IL_00fd:
|
|
{
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_45 = ___3_offset;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_46 = (*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)L_45);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_47 = ((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___NullOffset_0;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
bool L_48;
|
|
L_48 = TimeSpan_op_Inequality_m2248419A8BCC8744CADE25174238B24AE34F17DB(L_46, L_47, NULL);
|
|
if (!L_48)
|
|
{
|
|
goto IL_011a;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_49 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_49);
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_49, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7ED71F768C05670E3698EF09100E41C9E3AC8113)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_49, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeFormat_ExpandPredefinedFormat_mE9FCB4489ABD24F6EBB76F7EE8C5FB331713EF50_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_011a:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_50 = ___2_dtfi;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_51 = ___2_dtfi;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_52 = *((DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A**)L_51);
|
|
NullCheck(L_52);
|
|
RuntimeObject* L_53;
|
|
L_53 = DateTimeFormatInfo_Clone_mCBA61859E15A29FC79AC3CDAA616D063901540E8(L_52, NULL);
|
|
*((RuntimeObject**)L_50) = (RuntimeObject*)((DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A*)CastclassSealed((RuntimeObject*)L_53, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var));
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_50, (void*)(RuntimeObject*)((DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A*)CastclassSealed((RuntimeObject*)L_53, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var)));
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_54 = ___2_dtfi;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_55 = *((DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A**)L_54);
|
|
NullCheck(L_55);
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_56;
|
|
L_56 = DateTimeFormatInfo_get_Calendar_m1280AC2F196ECBE7B664394CC3821062015DEF99_inline(L_55, NULL);
|
|
NullCheck(L_56);
|
|
Type_t* L_57;
|
|
L_57 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_56, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_58 = { reinterpret_cast<intptr_t> (GregorianCalendar_t6CC2956C5298E69CE93FE53A9DF5AE4F33621815_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_59;
|
|
L_59 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_58, NULL);
|
|
bool L_60;
|
|
L_60 = Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172(L_57, L_59, NULL);
|
|
if (!L_60)
|
|
{
|
|
goto IL_0151;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_61 = ___2_dtfi;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_62 = *((DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A**)L_61);
|
|
il2cpp_codegen_runtime_class_init_inline(GregorianCalendar_t6CC2956C5298E69CE93FE53A9DF5AE4F33621815_il2cpp_TypeInfo_var);
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_63;
|
|
L_63 = GregorianCalendar_GetDefaultInstance_mD47205AFE3A1E57FAE3857D4B82041A08FDB346A(NULL);
|
|
NullCheck(L_62);
|
|
DateTimeFormatInfo_set_Calendar_m46840C102CBE9D5BF30C44F0910426969A543564(L_62, L_63, NULL);
|
|
}
|
|
|
|
IL_0151:
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_64 = ___1_dateTime;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_65 = ___1_dateTime;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_66;
|
|
L_66 = DateTime_ToUniversalTime_m52CA1EAD0BE0A357BCACC38747ECA4A8810155A9(L_65, NULL);
|
|
*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_64 = L_66;
|
|
}
|
|
|
|
IL_015d:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_67 = ___0_format;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_68 = ___2_dtfi;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_69 = *((DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A**)L_68);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
String_t* L_70;
|
|
L_70 = DateTimeFormat_GetRealFormat_m675B6AD6247C73C5048A6F09EF0149A2EF20E5DB(L_67, L_69, NULL);
|
|
return L_70;
|
|
}
|
|
}
|
|
// System.String System.DateTimeFormat::Format(System.DateTime,System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormat_Format_m8F8FA6A9F8BD8EDCC502540B4CF79EF7A43FF7F4 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, String_t* ___1_format, RuntimeObject* ___2_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___0_dateTime;
|
|
String_t* L_1 = ___1_format;
|
|
RuntimeObject* L_2 = ___2_provider;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3 = ((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___NullOffset_0;
|
|
String_t* L_4;
|
|
L_4 = DateTimeFormat_Format_mE29072D46A40E3F42E100A7F85452B42B8DC692B(L_0, L_1, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.String System.DateTimeFormat::Format(System.DateTime,System.String,System.IFormatProvider,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeFormat_Format_mE29072D46A40E3F42E100A7F85452B42B8DC692B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, String_t* ___1_format, RuntimeObject* ___2_provider, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___3_offset, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_ToString_m12316C6CDC05E2F49EA4BDAD78FD7F1718E6E980_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* V_0 = NULL;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
int32_t V_2 = 0;
|
|
String_t* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
Il2CppChar V_5 = 0x0;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
{
|
|
String_t* L_0 = ___1_format;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = ___1_format;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
|
|
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_3 = ___1_format;
|
|
NullCheck(L_3);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_3, 0, NULL);
|
|
V_5 = L_4;
|
|
Il2CppChar L_5 = V_5;
|
|
if ((!(((uint32_t)L_5) <= ((uint32_t)((int32_t)82)))))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_6 = V_5;
|
|
if ((((int32_t)L_6) == ((int32_t)((int32_t)79))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_7 = V_5;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)82))))
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
Il2CppChar L_8 = V_5;
|
|
if ((((int32_t)L_8) == ((int32_t)((int32_t)111))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_9 = V_5;
|
|
if ((((int32_t)L_9) == ((int32_t)((int32_t)114))))
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
uintptr_t L_10 = ((uintptr_t)((int32_t)66));
|
|
int8_t* L_11 = (int8_t*) (L_10 ? alloca(L_10) : NULL);
|
|
memset(L_11, 0, L_10);
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline((&L_12), (void*)(L_11), ((int32_t)33), /*hidden argument*/Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
V_1 = L_12;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13 = ___0_dateTime;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_14 = ___3_offset;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_15 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
bool L_16;
|
|
L_16 = DateTimeFormat_TryFormatO_mC912440E1FEC92BCAC15952B877E2040FDD72222(L_13, L_14, L_15, (&V_2), NULL);
|
|
int32_t L_17 = V_2;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_18;
|
|
L_18 = Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_inline((&V_1), 0, L_17, Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_RuntimeMethod_var);
|
|
V_6 = L_18;
|
|
String_t* L_19;
|
|
L_19 = Span_1_ToString_m12316C6CDC05E2F49EA4BDAD78FD7F1718E6E980((&V_6), Span_1_ToString_m12316C6CDC05E2F49EA4BDAD78FD7F1718E6E980_RuntimeMethod_var);
|
|
return L_19;
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
String_t* L_20;
|
|
L_20 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(((int32_t)29), NULL);
|
|
V_3 = L_20;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_21 = ___0_dateTime;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_22 = ___3_offset;
|
|
String_t* L_23 = V_3;
|
|
NullCheck(L_23);
|
|
Il2CppChar* L_24;
|
|
L_24 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_23, NULL);
|
|
String_t* L_25 = V_3;
|
|
NullCheck(L_25);
|
|
int32_t L_26;
|
|
L_26 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_25, NULL);
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_27;
|
|
memset((&L_27), 0, sizeof(L_27));
|
|
Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_inline((&L_27), L_24, L_26, /*hidden argument*/Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
bool L_28;
|
|
L_28 = DateTimeFormat_TryFormatR_mDC3E241C6B05B68584FCB7305296955D9DCE2142(L_21, L_22, L_27, (&V_4), NULL);
|
|
String_t* L_29 = V_3;
|
|
return L_29;
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
RuntimeObject* L_30 = ___2_provider;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_31;
|
|
L_31 = DateTimeFormatInfo_GetInstance_m610566C9C55DA97F13DA7436BCC18E796AAB1CBD(L_30, NULL);
|
|
V_0 = L_31;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_32 = ___0_dateTime;
|
|
String_t* L_33 = ___1_format;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_34;
|
|
L_34 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(L_33, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_35 = V_0;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_36 = ___3_offset;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
StringBuilder_t* L_37;
|
|
L_37 = DateTimeFormat_FormatStringBuilder_m071EEEF2B4B029A44BEAF4C4504D5F41053C7E28(L_32, L_34, L_35, L_36, NULL);
|
|
String_t* L_38;
|
|
L_38 = StringBuilderCache_GetStringAndRelease_m4A7AB11554F7E80352AB8C3AC72D7AD4C7108FB0(L_37, NULL);
|
|
return L_38;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeFormat::TryFormat(System.DateTime,System.Span`1<System.Char>,System.Int32&,System.ReadOnlySpan`1<System.Char>,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeFormat_TryFormat_m0CEC09DC521B9D2CE450DB7124389D52BDC62857 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___1_destination, int32_t* ___2_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___3_format, RuntimeObject* ___4_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___0_dateTime;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_1 = ___1_destination;
|
|
int32_t* L_2 = ___2_charsWritten;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3 = ___3_format;
|
|
RuntimeObject* L_4 = ___4_provider;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5 = ((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___NullOffset_0;
|
|
bool L_6;
|
|
L_6 = DateTimeFormat_TryFormat_mFBA0ED63E8D61B02348D9278A7132CEAE2258837(L_0, L_1, L_2, L_3, L_4, L_5, NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeFormat::TryFormat(System.DateTime,System.Span`1<System.Char>,System.Int32&,System.ReadOnlySpan`1<System.Char>,System.IFormatProvider,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeFormat_TryFormat_mFBA0ED63E8D61B02348D9278A7132CEAE2258837 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___1_destination, int32_t* ___2_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___3_format, RuntimeObject* ___4_provider, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___5_offset, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* V_0 = NULL;
|
|
StringBuilder_t* V_1 = NULL;
|
|
Il2CppChar V_2 = 0x0;
|
|
int32_t G_B12_0 = 0;
|
|
int32_t G_B11_0 = 0;
|
|
int32_t G_B13_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___3_format), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar* L_1;
|
|
L_1 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___3_format))->____pointer_0))->value, (0), ((&___3_format))->____length_1);
|
|
int32_t L_2 = *((uint16_t*)L_1);
|
|
V_2 = L_2;
|
|
Il2CppChar L_3 = V_2;
|
|
if ((!(((uint32_t)L_3) <= ((uint32_t)((int32_t)82)))))
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_4 = V_2;
|
|
if ((((int32_t)L_4) == ((int32_t)((int32_t)79))))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_5 = V_2;
|
|
if ((((int32_t)L_5) == ((int32_t)((int32_t)82))))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
Il2CppChar L_6 = V_2;
|
|
if ((((int32_t)L_6) == ((int32_t)((int32_t)111))))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_7 = V_2;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)114))))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_8 = ___0_dateTime;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9 = ___5_offset;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_10 = ___1_destination;
|
|
int32_t* L_11 = ___2_charsWritten;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
bool L_12;
|
|
L_12 = DateTimeFormat_TryFormatO_mC912440E1FEC92BCAC15952B877E2040FDD72222(L_8, L_9, L_10, L_11, NULL);
|
|
return L_12;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13 = ___0_dateTime;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_14 = ___5_offset;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_15 = ___1_destination;
|
|
int32_t* L_16 = ___2_charsWritten;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
bool L_17;
|
|
L_17 = DateTimeFormat_TryFormatR_mDC3E241C6B05B68584FCB7305296955D9DCE2142(L_13, L_14, L_15, L_16, NULL);
|
|
return L_17;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
RuntimeObject* L_18 = ___4_provider;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_19;
|
|
L_19 = DateTimeFormatInfo_GetInstance_m610566C9C55DA97F13DA7436BCC18E796AAB1CBD(L_18, NULL);
|
|
V_0 = L_19;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_20 = ___0_dateTime;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_21 = ___3_format;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_22 = V_0;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_23 = ___5_offset;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
StringBuilder_t* L_24;
|
|
L_24 = DateTimeFormat_FormatStringBuilder_m071EEEF2B4B029A44BEAF4C4504D5F41053C7E28(L_20, L_21, L_22, L_23, NULL);
|
|
V_1 = L_24;
|
|
StringBuilder_t* L_25 = V_1;
|
|
NullCheck(L_25);
|
|
int32_t L_26;
|
|
L_26 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_25, NULL);
|
|
int32_t L_27;
|
|
L_27 = Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_inline((&___1_destination), Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var);
|
|
int32_t L_28 = ((((int32_t)((((int32_t)L_26) > ((int32_t)L_27))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
G_B11_0 = L_28;
|
|
if (!L_28)
|
|
{
|
|
G_B12_0 = L_28;
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_29 = V_1;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_30 = ___1_destination;
|
|
StringBuilder_t* L_31 = V_1;
|
|
NullCheck(L_31);
|
|
int32_t L_32;
|
|
L_32 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_31, NULL);
|
|
NullCheck(L_29);
|
|
StringBuilder_CopyTo_m1AB15F7BF71359119085BA7D3420AF75A524F746(L_29, 0, L_30, L_32, NULL);
|
|
int32_t* L_33 = ___2_charsWritten;
|
|
StringBuilder_t* L_34 = V_1;
|
|
NullCheck(L_34);
|
|
int32_t L_35;
|
|
L_35 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_34, NULL);
|
|
*((int32_t*)L_33) = (int32_t)L_35;
|
|
G_B13_0 = G_B11_0;
|
|
goto IL_008a;
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
int32_t* L_36 = ___2_charsWritten;
|
|
*((int32_t*)L_36) = (int32_t)0;
|
|
G_B13_0 = G_B12_0;
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
StringBuilder_t* L_37 = V_1;
|
|
StringBuilderCache_Release_m65C472D3E200ECA86BF7EFDAAF55CA6109678EB5(L_37, NULL);
|
|
return (bool)G_B13_0;
|
|
}
|
|
}
|
|
// System.Text.StringBuilder System.DateTimeFormat::FormatStringBuilder(System.DateTime,System.ReadOnlySpan`1<System.Char>,System.Globalization.DateTimeFormatInfo,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* DateTimeFormat_FormatStringBuilder_m071EEEF2B4B029A44BEAF4C4504D5F41053C7E28 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_format, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___3_offset, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2492BD771F4E0F6822AA68B6D82B11F261E757BB);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3DCC6243286938BE75C3FA773B9BA71160A2E869);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
uint16_t V_1 = 0;
|
|
String_t* G_B10_0 = NULL;
|
|
String_t* G_B14_0 = NULL;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___1_format), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if (L_0)
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
V_0 = (bool)0;
|
|
int64_t L_1;
|
|
L_1 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___0_dateTime), NULL);
|
|
if ((((int64_t)L_1) >= ((int64_t)((int64_t)864000000000LL))))
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_2 = ___2_dtfi;
|
|
NullCheck(L_2);
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_3;
|
|
L_3 = DateTimeFormatInfo_get_Calendar_m1280AC2F196ECBE7B664394CC3821062015DEF99_inline(L_2, NULL);
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Globalization.Calendar::get_ID() */, L_3);
|
|
V_1 = ((int32_t)(uint16_t)L_4);
|
|
uint16_t L_5 = V_1;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_5, 3)))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_6 = V_1;
|
|
if ((((int32_t)L_6) == ((int32_t)((int32_t)13))))
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
uint16_t L_7 = V_1;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, ((int32_t)22)))) <= ((uint32_t)1))))
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
V_0 = (bool)1;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_8;
|
|
L_8 = DateTimeFormatInfo_get_InvariantInfo_m24804C20A94D2952323C82193D4A59ADF171C8AA(NULL);
|
|
___2_dtfi = L_8;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9 = ___3_offset;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_10 = ((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___NullOffset_0;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
bool L_11;
|
|
L_11 = TimeSpan_op_Equality_m951689F806957B14F237DAFCEE4CB322799A723E(L_9, L_10, NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
bool L_12 = V_0;
|
|
if (L_12)
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
}
|
|
{
|
|
G_B10_0 = _stringLiteral3DCC6243286938BE75C3FA773B9BA71160A2E869;
|
|
goto IL_007e;
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
G_B10_0 = _stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465;
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_13;
|
|
L_13 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(G_B10_0, NULL);
|
|
___1_format = L_13;
|
|
goto IL_009e;
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
bool L_14 = V_0;
|
|
if (L_14)
|
|
{
|
|
goto IL_0092;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_15 = ___2_dtfi;
|
|
NullCheck(L_15);
|
|
String_t* L_16;
|
|
L_16 = DateTimeFormatInfo_get_DateTimeOffsetPattern_m100011083D539153415ECC8E86725B35FB12EA57(L_15, NULL);
|
|
G_B14_0 = L_16;
|
|
goto IL_0097;
|
|
}
|
|
|
|
IL_0092:
|
|
{
|
|
G_B14_0 = _stringLiteral2492BD771F4E0F6822AA68B6D82B11F261E757BB;
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_17;
|
|
L_17 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(G_B14_0, NULL);
|
|
___1_format = L_17;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
int32_t L_18;
|
|
L_18 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___1_format), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((!(((uint32_t)L_18) == ((uint32_t)1))))
|
|
{
|
|
goto IL_00bb;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_19 = ___1_format;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
String_t* L_20;
|
|
L_20 = DateTimeFormat_ExpandPredefinedFormat_mE9FCB4489ABD24F6EBB76F7EE8C5FB331713EF50(L_19, (&___0_dateTime), (&___2_dtfi), (&___3_offset), NULL);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_21;
|
|
L_21 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(L_20, NULL);
|
|
___1_format = L_21;
|
|
}
|
|
|
|
IL_00bb:
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_22 = ___0_dateTime;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_23 = ___1_format;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_24 = ___2_dtfi;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_25 = ___3_offset;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
StringBuilder_t* L_26;
|
|
L_26 = DateTimeFormat_FormatCustomized_m59304DCEF2BAAF79BE928EEA00D9449327489999(L_22, L_23, L_24, L_25, (StringBuilder_t*)NULL, NULL);
|
|
return L_26;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeFormat::TryFormatO(System.DateTime,System.TimeSpan,System.Span`1<System.Char>,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeFormat_TryFormatO_mC912440E1FEC92BCAC15952B877E2040FDD72222 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_offset, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___2_destination, int32_t* ___3_charsWritten, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
{
|
|
V_0 = ((int32_t)27);
|
|
V_1 = 2;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ___1_offset;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___NullOffset_0;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = TimeSpan_op_Equality_m951689F806957B14F237DAFCEE4CB322799A723E(L_0, L_1, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3;
|
|
L_3 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___0_dateTime), NULL);
|
|
V_1 = L_3;
|
|
int32_t L_4 = V_1;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
|
|
TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_5;
|
|
L_5 = TimeZoneInfo_get_Local_mC43C34632FAEEF6BD0E3B5C04417E9C90277445F(NULL);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6 = ___0_dateTime;
|
|
NullCheck(L_5);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7;
|
|
L_7 = TimeZoneInfo_GetUtcOffset_mFAA1957ED9222C7526A197E6FF1AE0D05B46EDB0(L_5, L_6, NULL);
|
|
___1_offset = L_7;
|
|
int32_t L_8 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_8, 6));
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
int32_t L_9 = V_1;
|
|
if ((!(((uint32_t)L_9) == ((uint32_t)1))))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_10 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
int32_t L_11 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_11, 6));
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
int32_t L_12;
|
|
L_12 = Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_inline((&___2_destination), Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var);
|
|
int32_t L_13 = V_0;
|
|
if ((((int32_t)L_12) >= ((int32_t)L_13)))
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_14 = ___3_charsWritten;
|
|
*((int32_t*)L_14) = (int32_t)0;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
int32_t* L_15 = ___3_charsWritten;
|
|
int32_t L_16 = V_0;
|
|
*((int32_t*)L_15) = (int32_t)L_16;
|
|
Il2CppChar* L_17;
|
|
L_17 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (((int32_t)26)), ((&___2_destination))->____length_1);
|
|
int32_t L_18;
|
|
L_18 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&___0_dateTime), NULL);
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_19 = ___2_destination;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
DateTimeFormat_WriteFourDecimalDigits_m029CF7826B6763DFB20656E4713B5180FDED19CD_inline(L_18, L_19, 0, NULL);
|
|
Il2CppChar* L_20;
|
|
L_20 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (4), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_20) = (int16_t)((int32_t)45);
|
|
int32_t L_21;
|
|
L_21 = DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2((&___0_dateTime), NULL);
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_22 = ___2_destination;
|
|
DateTimeFormat_WriteTwoDecimalDigits_mFF3D64FC4AE7785ABE28875436942F3C25C89AF9_inline(L_21, L_22, 5, NULL);
|
|
Il2CppChar* L_23;
|
|
L_23 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (7), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_23) = (int16_t)((int32_t)45);
|
|
int32_t L_24;
|
|
L_24 = DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28((&___0_dateTime), NULL);
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_25 = ___2_destination;
|
|
DateTimeFormat_WriteTwoDecimalDigits_mFF3D64FC4AE7785ABE28875436942F3C25C89AF9_inline(L_24, L_25, 8, NULL);
|
|
Il2CppChar* L_26;
|
|
L_26 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (((int32_t)10)), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_26) = (int16_t)((int32_t)84);
|
|
int32_t L_27;
|
|
L_27 = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3((&___0_dateTime), NULL);
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_28 = ___2_destination;
|
|
DateTimeFormat_WriteTwoDecimalDigits_mFF3D64FC4AE7785ABE28875436942F3C25C89AF9_inline(L_27, L_28, ((int32_t)11), NULL);
|
|
Il2CppChar* L_29;
|
|
L_29 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (((int32_t)13)), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_29) = (int16_t)((int32_t)58);
|
|
int32_t L_30;
|
|
L_30 = DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973((&___0_dateTime), NULL);
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_31 = ___2_destination;
|
|
DateTimeFormat_WriteTwoDecimalDigits_mFF3D64FC4AE7785ABE28875436942F3C25C89AF9_inline(L_30, L_31, ((int32_t)14), NULL);
|
|
Il2CppChar* L_32;
|
|
L_32 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (((int32_t)16)), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_32) = (int16_t)((int32_t)58);
|
|
int32_t L_33;
|
|
L_33 = DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA((&___0_dateTime), NULL);
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_34 = ___2_destination;
|
|
DateTimeFormat_WriteTwoDecimalDigits_mFF3D64FC4AE7785ABE28875436942F3C25C89AF9_inline(L_33, L_34, ((int32_t)17), NULL);
|
|
Il2CppChar* L_35;
|
|
L_35 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (((int32_t)19)), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_35) = (int16_t)((int32_t)46);
|
|
int64_t L_36;
|
|
L_36 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___0_dateTime), NULL);
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_37;
|
|
L_37 = Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_inline((&___2_destination), ((int32_t)20), 7, Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_RuntimeMethod_var);
|
|
DateTimeFormat_WriteDigits_mE655D6367964D63DC44E158B2C3EA6F7C6030137_inline(((int64_t)(uint64_t)((uint32_t)((int32_t)(uint32_t)((int64_t)((uint64_t)(int64_t)L_36%(uint64_t)(int64_t)((int64_t)((int32_t)10000000))))))), L_37, NULL);
|
|
int32_t L_38 = V_1;
|
|
if ((!(((uint32_t)L_38) == ((uint32_t)2))))
|
|
{
|
|
goto IL_017a;
|
|
}
|
|
}
|
|
{
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_39 = ___1_offset;
|
|
il2cpp_codegen_initobj((&V_3), sizeof(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A));
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_40 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
bool L_41;
|
|
L_41 = TimeSpan_op_LessThan_m91C76FBEB38D80680A92A5FACA3A93810349B0FF(L_39, L_40, NULL);
|
|
if (!L_41)
|
|
{
|
|
goto IL_0140;
|
|
}
|
|
}
|
|
{
|
|
V_2 = ((int32_t)45);
|
|
int64_t L_42;
|
|
L_42 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&___1_offset), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_43;
|
|
L_43 = TimeSpan_FromTicks_m9C683B1D142312F22E8CC6C803E32EF6D42F9003(((-L_42)), NULL);
|
|
___1_offset = L_43;
|
|
goto IL_0143;
|
|
}
|
|
|
|
IL_0140:
|
|
{
|
|
V_2 = ((int32_t)43);
|
|
}
|
|
|
|
IL_0143:
|
|
{
|
|
int32_t L_44;
|
|
L_44 = TimeSpan_get_Minutes_m93E37D01CD6DA2DE5B35609D740D322E270B678F((&___1_offset), NULL);
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_45 = ___2_destination;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
DateTimeFormat_WriteTwoDecimalDigits_mFF3D64FC4AE7785ABE28875436942F3C25C89AF9_inline(L_44, L_45, ((int32_t)31), NULL);
|
|
Il2CppChar* L_46;
|
|
L_46 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (((int32_t)30)), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_46) = (int16_t)((int32_t)58);
|
|
int32_t L_47;
|
|
L_47 = TimeSpan_get_Hours_m770B4B777A816E051EFDA317C28DA9A4F39D6CFB((&___1_offset), NULL);
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_48 = ___2_destination;
|
|
DateTimeFormat_WriteTwoDecimalDigits_mFF3D64FC4AE7785ABE28875436942F3C25C89AF9_inline(L_47, L_48, ((int32_t)28), NULL);
|
|
Il2CppChar* L_49;
|
|
L_49 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (((int32_t)27)), ((&___2_destination))->____length_1);
|
|
Il2CppChar L_50 = V_2;
|
|
*((int16_t*)L_49) = (int16_t)L_50;
|
|
goto IL_018a;
|
|
}
|
|
|
|
IL_017a:
|
|
{
|
|
int32_t L_51 = V_1;
|
|
if ((!(((uint32_t)L_51) == ((uint32_t)1))))
|
|
{
|
|
goto IL_018a;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar* L_52;
|
|
L_52 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (((int32_t)27)), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_52) = (int16_t)((int32_t)90);
|
|
}
|
|
|
|
IL_018a:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeFormat::TryFormatR(System.DateTime,System.TimeSpan,System.Span`1<System.Char>,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeFormat_TryFormatR_mDC3E241C6B05B68584FCB7305296955D9DCE2142 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___0_dateTime, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_offset, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___2_destination, int32_t* ___3_charsWritten, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
String_t* V_3 = NULL;
|
|
String_t* V_4 = NULL;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_inline((&___2_destination), Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var);
|
|
if ((!(((uint32_t)((int32_t)28)) >= ((uint32_t)L_0))))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_1 = ___3_charsWritten;
|
|
*((int32_t*)L_1) = (int32_t)0;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ___1_offset;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3 = ((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___NullOffset_0;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = TimeSpan_op_Inequality_m2248419A8BCC8744CADE25174238B24AE34F17DB(L_2, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = ___0_dateTime;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6 = ___1_offset;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7;
|
|
L_7 = DateTime_op_Subtraction_m1005BD26EB55337BA2B1F230075D714791074C31(L_5, L_6, NULL);
|
|
___0_dateTime = L_7;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
DateTime_GetDatePart_m85E7446E253F012D1662467EAEFB4CD9C50AE86D((&___0_dateTime), (&V_0), (&V_1), (&V_2), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_8 = ((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___InvariantAbbreviatedDayNames_4;
|
|
int32_t L_9;
|
|
L_9 = DateTime_get_DayOfWeek_mAC680139BCAA1613FC134454D1AD1B502CB1BB68((&___0_dateTime), NULL);
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
String_t* L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
V_3 = L_11;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = ((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___InvariantAbbreviatedMonthNames_3;
|
|
int32_t L_13 = V_1;
|
|
NullCheck(L_12);
|
|
int32_t L_14 = ((int32_t)il2cpp_codegen_subtract(L_13, 1));
|
|
String_t* L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
|
|
V_4 = L_15;
|
|
Il2CppChar* L_16;
|
|
L_16 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (0), ((&___2_destination))->____length_1);
|
|
String_t* L_17 = V_3;
|
|
NullCheck(L_17);
|
|
Il2CppChar L_18;
|
|
L_18 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_17, 0, NULL);
|
|
*((int16_t*)L_16) = (int16_t)L_18;
|
|
Il2CppChar* L_19;
|
|
L_19 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (1), ((&___2_destination))->____length_1);
|
|
String_t* L_20 = V_3;
|
|
NullCheck(L_20);
|
|
Il2CppChar L_21;
|
|
L_21 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_20, 1, NULL);
|
|
*((int16_t*)L_19) = (int16_t)L_21;
|
|
Il2CppChar* L_22;
|
|
L_22 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (2), ((&___2_destination))->____length_1);
|
|
String_t* L_23 = V_3;
|
|
NullCheck(L_23);
|
|
Il2CppChar L_24;
|
|
L_24 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_23, 2, NULL);
|
|
*((int16_t*)L_22) = (int16_t)L_24;
|
|
Il2CppChar* L_25;
|
|
L_25 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (3), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_25) = (int16_t)((int32_t)44);
|
|
Il2CppChar* L_26;
|
|
L_26 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (4), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_26) = (int16_t)((int32_t)32);
|
|
int32_t L_27 = V_2;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_28 = ___2_destination;
|
|
DateTimeFormat_WriteTwoDecimalDigits_mFF3D64FC4AE7785ABE28875436942F3C25C89AF9_inline(L_27, L_28, 5, NULL);
|
|
Il2CppChar* L_29;
|
|
L_29 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (7), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_29) = (int16_t)((int32_t)32);
|
|
Il2CppChar* L_30;
|
|
L_30 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (8), ((&___2_destination))->____length_1);
|
|
String_t* L_31 = V_4;
|
|
NullCheck(L_31);
|
|
Il2CppChar L_32;
|
|
L_32 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_31, 0, NULL);
|
|
*((int16_t*)L_30) = (int16_t)L_32;
|
|
Il2CppChar* L_33;
|
|
L_33 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (((int32_t)9)), ((&___2_destination))->____length_1);
|
|
String_t* L_34 = V_4;
|
|
NullCheck(L_34);
|
|
Il2CppChar L_35;
|
|
L_35 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_34, 1, NULL);
|
|
*((int16_t*)L_33) = (int16_t)L_35;
|
|
Il2CppChar* L_36;
|
|
L_36 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (((int32_t)10)), ((&___2_destination))->____length_1);
|
|
String_t* L_37 = V_4;
|
|
NullCheck(L_37);
|
|
Il2CppChar L_38;
|
|
L_38 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_37, 2, NULL);
|
|
*((int16_t*)L_36) = (int16_t)L_38;
|
|
Il2CppChar* L_39;
|
|
L_39 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (((int32_t)11)), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_39) = (int16_t)((int32_t)32);
|
|
int32_t L_40 = V_0;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_41 = ___2_destination;
|
|
DateTimeFormat_WriteFourDecimalDigits_m029CF7826B6763DFB20656E4713B5180FDED19CD_inline(L_40, L_41, ((int32_t)12), NULL);
|
|
Il2CppChar* L_42;
|
|
L_42 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (((int32_t)16)), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_42) = (int16_t)((int32_t)32);
|
|
int32_t L_43;
|
|
L_43 = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3((&___0_dateTime), NULL);
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_44 = ___2_destination;
|
|
DateTimeFormat_WriteTwoDecimalDigits_mFF3D64FC4AE7785ABE28875436942F3C25C89AF9_inline(L_43, L_44, ((int32_t)17), NULL);
|
|
Il2CppChar* L_45;
|
|
L_45 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (((int32_t)19)), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_45) = (int16_t)((int32_t)58);
|
|
int32_t L_46;
|
|
L_46 = DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973((&___0_dateTime), NULL);
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_47 = ___2_destination;
|
|
DateTimeFormat_WriteTwoDecimalDigits_mFF3D64FC4AE7785ABE28875436942F3C25C89AF9_inline(L_46, L_47, ((int32_t)20), NULL);
|
|
Il2CppChar* L_48;
|
|
L_48 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (((int32_t)22)), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_48) = (int16_t)((int32_t)58);
|
|
int32_t L_49;
|
|
L_49 = DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA((&___0_dateTime), NULL);
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_50 = ___2_destination;
|
|
DateTimeFormat_WriteTwoDecimalDigits_mFF3D64FC4AE7785ABE28875436942F3C25C89AF9_inline(L_49, L_50, ((int32_t)23), NULL);
|
|
Il2CppChar* L_51;
|
|
L_51 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (((int32_t)25)), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_51) = (int16_t)((int32_t)32);
|
|
Il2CppChar* L_52;
|
|
L_52 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (((int32_t)26)), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_52) = (int16_t)((int32_t)71);
|
|
Il2CppChar* L_53;
|
|
L_53 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (((int32_t)27)), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_53) = (int16_t)((int32_t)77);
|
|
Il2CppChar* L_54;
|
|
L_54 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_destination))->____pointer_0))->value, (((int32_t)28)), ((&___2_destination))->____length_1);
|
|
*((int16_t*)L_54) = (int16_t)((int32_t)84);
|
|
int32_t* L_55 = ___3_charsWritten;
|
|
*((int32_t*)L_55) = (int32_t)((int32_t)29);
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeFormat::WriteTwoDecimalDigits(System.UInt32,System.Span`1<System.Char>,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormat_WriteTwoDecimalDigits_mFF3D64FC4AE7785ABE28875436942F3C25C89AF9 (uint32_t ___0_value, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___1_destination, int32_t ___2_offset, const RuntimeMethod* method)
|
|
{
|
|
uint32_t V_0 = 0;
|
|
{
|
|
uint32_t L_0 = ___0_value;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)48), (int32_t)L_0));
|
|
uint32_t L_1 = ___0_value;
|
|
___0_value = ((int32_t)((uint32_t)(int32_t)L_1/(uint32_t)(int32_t)((int32_t)10)));
|
|
int32_t L_2 = ___2_offset;
|
|
Il2CppChar* L_3;
|
|
L_3 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_destination))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(L_2, 1))), ((&___1_destination))->____length_1);
|
|
uint32_t L_4 = V_0;
|
|
uint32_t L_5 = ___0_value;
|
|
*((int16_t*)L_3) = (int16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, ((int32_t)il2cpp_codegen_multiply((int32_t)L_5, ((int32_t)10))))));
|
|
int32_t L_6 = ___2_offset;
|
|
Il2CppChar* L_7;
|
|
L_7 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_destination))->____pointer_0))->value, (L_6), ((&___1_destination))->____length_1);
|
|
uint32_t L_8 = ___0_value;
|
|
*((int16_t*)L_7) = (int16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add(((int32_t)48), (int32_t)L_8)));
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeFormat::WriteFourDecimalDigits(System.UInt32,System.Span`1<System.Char>,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormat_WriteFourDecimalDigits_m029CF7826B6763DFB20656E4713B5180FDED19CD (uint32_t ___0_value, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___1_buffer, int32_t ___2_startingIndex, const RuntimeMethod* method)
|
|
{
|
|
uint32_t V_0 = 0;
|
|
{
|
|
uint32_t L_0 = ___0_value;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)48), (int32_t)L_0));
|
|
uint32_t L_1 = ___0_value;
|
|
___0_value = ((int32_t)((uint32_t)(int32_t)L_1/(uint32_t)(int32_t)((int32_t)10)));
|
|
int32_t L_2 = ___2_startingIndex;
|
|
Il2CppChar* L_3;
|
|
L_3 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_buffer))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(L_2, 3))), ((&___1_buffer))->____length_1);
|
|
uint32_t L_4 = V_0;
|
|
uint32_t L_5 = ___0_value;
|
|
*((int16_t*)L_3) = (int16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, ((int32_t)il2cpp_codegen_multiply((int32_t)L_5, ((int32_t)10))))));
|
|
uint32_t L_6 = ___0_value;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)48), (int32_t)L_6));
|
|
uint32_t L_7 = ___0_value;
|
|
___0_value = ((int32_t)((uint32_t)(int32_t)L_7/(uint32_t)(int32_t)((int32_t)10)));
|
|
int32_t L_8 = ___2_startingIndex;
|
|
Il2CppChar* L_9;
|
|
L_9 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_buffer))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(L_8, 2))), ((&___1_buffer))->____length_1);
|
|
uint32_t L_10 = V_0;
|
|
uint32_t L_11 = ___0_value;
|
|
*((int16_t*)L_9) = (int16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, ((int32_t)il2cpp_codegen_multiply((int32_t)L_11, ((int32_t)10))))));
|
|
uint32_t L_12 = ___0_value;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)48), (int32_t)L_12));
|
|
uint32_t L_13 = ___0_value;
|
|
___0_value = ((int32_t)((uint32_t)(int32_t)L_13/(uint32_t)(int32_t)((int32_t)10)));
|
|
int32_t L_14 = ___2_startingIndex;
|
|
Il2CppChar* L_15;
|
|
L_15 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_buffer))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(L_14, 1))), ((&___1_buffer))->____length_1);
|
|
uint32_t L_16 = V_0;
|
|
uint32_t L_17 = ___0_value;
|
|
*((int16_t*)L_15) = (int16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_16, ((int32_t)il2cpp_codegen_multiply((int32_t)L_17, ((int32_t)10))))));
|
|
int32_t L_18 = ___2_startingIndex;
|
|
Il2CppChar* L_19;
|
|
L_19 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_buffer))->____pointer_0))->value, (L_18), ((&___1_buffer))->____length_1);
|
|
uint32_t L_20 = ___0_value;
|
|
*((int16_t*)L_19) = (int16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add(((int32_t)48), (int32_t)L_20)));
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeFormat::WriteDigits(System.UInt64,System.Span`1<System.Char>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormat_WriteDigits_mE655D6367964D63DC44E158B2C3EA6F7C6030137 (uint64_t ___0_value, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___1_buffer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
uint64_t V_1 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_inline((&___1_buffer), Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var);
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_0, 1));
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
uint64_t L_1 = ___0_value;
|
|
V_1 = ((int64_t)il2cpp_codegen_add(((int64_t)((int32_t)48)), (int64_t)L_1));
|
|
uint64_t L_2 = ___0_value;
|
|
___0_value = ((int64_t)((uint64_t)(int64_t)L_2/(uint64_t)(int64_t)((int64_t)((int32_t)10))));
|
|
int32_t L_3 = V_0;
|
|
Il2CppChar* L_4;
|
|
L_4 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_buffer))->____pointer_0))->value, (L_3), ((&___1_buffer))->____length_1);
|
|
uint64_t L_5 = V_1;
|
|
uint64_t L_6 = ___0_value;
|
|
*((int16_t*)L_4) = (int16_t)((int32_t)(uint16_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_5, ((int64_t)il2cpp_codegen_multiply((int64_t)L_6, ((int64_t)((int32_t)10)))))));
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_7, 1));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
if ((((int32_t)L_8) >= ((int32_t)1)))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar* L_9;
|
|
L_9 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_buffer))->____pointer_0))->value, (0), ((&___1_buffer))->____length_1);
|
|
uint64_t L_10 = ___0_value;
|
|
*((int16_t*)L_9) = (int16_t)((int32_t)(uint16_t)((int64_t)il2cpp_codegen_add(((int64_t)((int32_t)48)), (int64_t)L_10)));
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeFormat::InvalidFormatForLocal(System.ReadOnlySpan`1<System.Char>,System.DateTime)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormat_InvalidFormatForLocal_m1D87DD7363D0483D04165AA1DCB83A31A6C046BA (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___1_dateTime, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeFormat::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeFormat__cctor_m81CC31DCCE9FA0D31A0D6E91E4A270B59E99C7CE (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____E2C673A3A737B04369A63F1FB1A30F6E742B066E2CCCD9B1838793CBB5590598_79_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral00B50C96368196723209385AC035A494CC7D0E52);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7FE78C3B1F25A676AC22D36E01B5CF5CC7DC8ED1);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8BF951CF903ECC622812D47B1157D1A3AFA9FBDC);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5C37D372367C69DCD30FE688631A1B0CE49EA73);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF6A577D434AC942DDB38F171010FC5CEBF94E542);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFA6AD0FB1130BFA5AD9F54E775FBEB781B424CF5);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___MinValue_21;
|
|
((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___NullOffset_0 = L_0;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)19));
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = L_1;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_3 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____E2C673A3A737B04369A63F1FB1A30F6E742B066E2CCCD9B1838793CBB5590598_79_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_2, L_3, NULL);
|
|
((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___allStandardFormats_1 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___allStandardFormats_1), (void*)L_2);
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_4;
|
|
L_4 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
NullCheck(L_4);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_5;
|
|
L_5 = VirtualFuncInvoker0< DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* >::Invoke(16 /* System.Globalization.DateTimeFormatInfo System.Globalization.CultureInfo::get_DateTimeFormat() */, L_4);
|
|
((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___InvariantFormatInfo_2 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___InvariantFormatInfo_2), (void*)L_5);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_6 = ((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___InvariantFormatInfo_2;
|
|
NullCheck(L_6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7;
|
|
L_7 = DateTimeFormatInfo_get_AbbreviatedMonthNames_m8C049BD0316BBE69A99AC1A71A3EF5C6FF792007(L_6, NULL);
|
|
((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___InvariantAbbreviatedMonthNames_3 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___InvariantAbbreviatedMonthNames_3), (void*)L_7);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_8 = ((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___InvariantFormatInfo_2;
|
|
NullCheck(L_8);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_9;
|
|
L_9 = DateTimeFormatInfo_get_AbbreviatedDayNames_m5FF3B8C196AFAF3053AF1D23B23142BF8C59447D(L_8, NULL);
|
|
((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___InvariantAbbreviatedDayNames_4 = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___InvariantAbbreviatedDayNames_4), (void*)L_9);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)7);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_11 = L_10;
|
|
NullCheck(L_11);
|
|
ArrayElementTypeCheck (L_11, _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024);
|
|
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = L_11;
|
|
NullCheck(L_12);
|
|
ArrayElementTypeCheck (L_12, _stringLiteralE5C37D372367C69DCD30FE688631A1B0CE49EA73);
|
|
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralE5C37D372367C69DCD30FE688631A1B0CE49EA73);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13 = L_12;
|
|
NullCheck(L_13);
|
|
ArrayElementTypeCheck (L_13, _stringLiteralFA6AD0FB1130BFA5AD9F54E775FBEB781B424CF5);
|
|
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteralFA6AD0FB1130BFA5AD9F54E775FBEB781B424CF5);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_14 = L_13;
|
|
NullCheck(L_14);
|
|
ArrayElementTypeCheck (L_14, _stringLiteral8BF951CF903ECC622812D47B1157D1A3AFA9FBDC);
|
|
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral8BF951CF903ECC622812D47B1157D1A3AFA9FBDC);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_15 = L_14;
|
|
NullCheck(L_15);
|
|
ArrayElementTypeCheck (L_15, _stringLiteral00B50C96368196723209385AC035A494CC7D0E52);
|
|
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral00B50C96368196723209385AC035A494CC7D0E52);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = L_15;
|
|
NullCheck(L_16);
|
|
ArrayElementTypeCheck (L_16, _stringLiteral7FE78C3B1F25A676AC22D36E01B5CF5CC7DC8ED1);
|
|
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral7FE78C3B1F25A676AC22D36E01B5CF5CC7DC8ED1);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_17 = L_16;
|
|
NullCheck(L_17);
|
|
ArrayElementTypeCheck (L_17, _stringLiteralF6A577D434AC942DDB38F171010FC5CEBF94E542);
|
|
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteralF6A577D434AC942DDB38F171010FC5CEBF94E542);
|
|
((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___fixedNumberFormats_5 = L_17;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeFormat_tE5F9F8059A3910CA0E37935312AAEDC297D907A2_il2cpp_TypeInfo_var))->___fixedNumberFormats_5), (void*)L_17);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Boolean System.DateTimeParse::IsDigit(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_IsDigit_m6B5476FF200B01E7DFE11AEB34706EE1CC796AF1 (Il2CppChar ___0_ch, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = ___0_ch;
|
|
return (bool)((((int32_t)((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, ((int32_t)48)))) <= ((uint32_t)((int32_t)9))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::ParseFraction(System.__DTString&,System.Double&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_ParseFraction_mC56E08E358B2C3452E536E6F3D62ACA05EAC1C31 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___0_str, double* ___1_result, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
double V_0 = 0.0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
{
|
|
double* L_0 = ___1_result;
|
|
*((double*)L_0) = (double)(0.0);
|
|
V_0 = (0.10000000000000001);
|
|
V_1 = 0;
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
double* L_1 = ___1_result;
|
|
double* L_2 = ___1_result;
|
|
double L_3 = *((double*)L_2);
|
|
Il2CppChar L_4 = V_2;
|
|
double L_5 = V_0;
|
|
*((double*)L_1) = (double)((double)il2cpp_codegen_add(L_3, ((double)il2cpp_codegen_multiply(((double)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, ((int32_t)48)))), L_5))));
|
|
double L_6 = V_0;
|
|
V_0 = ((double)il2cpp_codegen_multiply(L_6, (0.10000000000000001)));
|
|
int32_t L_7 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_8 = ___0_str;
|
|
bool L_9;
|
|
L_9 = __DTString_GetNext_m2DAFC0E1EB763649B66110695BDB206B71B1407F(L_8, NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_10 = ___0_str;
|
|
Il2CppChar L_11 = L_10->___m_current_2;
|
|
Il2CppChar L_12 = L_11;
|
|
V_2 = L_12;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_13;
|
|
L_13 = DateTimeParse_IsDigit_m6B5476FF200B01E7DFE11AEB34706EE1CC796AF1(L_12, NULL);
|
|
if (L_13)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
int32_t L_14 = V_1;
|
|
return (bool)((((int32_t)L_14) > ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::ParseTimeZone(System.__DTString&,System.TimeSpan&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_ParseTimeZone_mC6D964CA55CC3922B0912AA1BEB5ECD5EF5E18CF (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___0_str, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* ___1_result, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
Il2CppChar V_3 = 0x0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_0 = ___0_str;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_1;
|
|
L_1 = __DTString_GetSubString_mCAA1E40658D9C121F7F93E9FD9471BA32ADE5E27(L_0, NULL);
|
|
V_2 = L_1;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_2 = V_2;
|
|
int32_t L_3 = L_2.___length_2;
|
|
if ((((int32_t)L_3) == ((int32_t)1)))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
Il2CppChar L_4;
|
|
L_4 = DTSubString_get_Item_m1F52F78057FA33F0CB350659CF94DC678C4725B6((&V_2), 0, NULL);
|
|
V_3 = L_4;
|
|
Il2CppChar L_5 = V_3;
|
|
if ((((int32_t)L_5) == ((int32_t)((int32_t)43))))
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_6 = V_3;
|
|
if ((((int32_t)L_6) == ((int32_t)((int32_t)45))))
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_7 = ___0_str;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_8 = V_2;
|
|
__DTString_ConsumeSubString_m5EA5ACB00CE8435A7710E7A41EB2378293F4177F(L_7, L_8, NULL);
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_9 = ___0_str;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_10;
|
|
L_10 = __DTString_GetSubString_mCAA1E40658D9C121F7F93E9FD9471BA32ADE5E27(L_9, NULL);
|
|
V_2 = L_10;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_11 = V_2;
|
|
int32_t L_12 = L_11.___type_3;
|
|
if ((((int32_t)L_12) == ((int32_t)2)))
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_13 = V_2;
|
|
int32_t L_14 = L_13.___value_4;
|
|
V_4 = L_14;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_15 = V_2;
|
|
int32_t L_16 = L_15.___length_2;
|
|
V_5 = L_16;
|
|
int32_t L_17 = V_5;
|
|
if ((((int32_t)L_17) == ((int32_t)1)))
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_18 = V_5;
|
|
if ((!(((uint32_t)L_18) == ((uint32_t)2))))
|
|
{
|
|
goto IL_00bf;
|
|
}
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
int32_t L_19 = V_4;
|
|
V_0 = L_19;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_20 = ___0_str;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_21 = V_2;
|
|
__DTString_ConsumeSubString_m5EA5ACB00CE8435A7710E7A41EB2378293F4177F(L_20, L_21, NULL);
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_22 = ___0_str;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_23;
|
|
L_23 = __DTString_GetSubString_mCAA1E40658D9C121F7F93E9FD9471BA32ADE5E27(L_22, NULL);
|
|
V_2 = L_23;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_24 = V_2;
|
|
int32_t L_25 = L_24.___length_2;
|
|
if ((!(((uint32_t)L_25) == ((uint32_t)1))))
|
|
{
|
|
goto IL_00e0;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_26;
|
|
L_26 = DTSubString_get_Item_m1F52F78057FA33F0CB350659CF94DC678C4725B6((&V_2), 0, NULL);
|
|
if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)58)))))
|
|
{
|
|
goto IL_00e0;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_27 = ___0_str;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_28 = V_2;
|
|
__DTString_ConsumeSubString_m5EA5ACB00CE8435A7710E7A41EB2378293F4177F(L_27, L_28, NULL);
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_29 = ___0_str;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_30;
|
|
L_30 = __DTString_GetSubString_mCAA1E40658D9C121F7F93E9FD9471BA32ADE5E27(L_29, NULL);
|
|
V_2 = L_30;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_31 = V_2;
|
|
int32_t L_32 = L_31.___type_3;
|
|
if ((!(((uint32_t)L_32) == ((uint32_t)2))))
|
|
{
|
|
goto IL_00ad;
|
|
}
|
|
}
|
|
{
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_33 = V_2;
|
|
int32_t L_34 = L_33.___length_2;
|
|
if ((((int32_t)L_34) < ((int32_t)1)))
|
|
{
|
|
goto IL_00ad;
|
|
}
|
|
}
|
|
{
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_35 = V_2;
|
|
int32_t L_36 = L_35.___length_2;
|
|
if ((((int32_t)L_36) <= ((int32_t)2)))
|
|
{
|
|
goto IL_00af;
|
|
}
|
|
}
|
|
|
|
IL_00ad:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00af:
|
|
{
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_37 = V_2;
|
|
int32_t L_38 = L_37.___value_4;
|
|
V_1 = L_38;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_39 = ___0_str;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_40 = V_2;
|
|
__DTString_ConsumeSubString_m5EA5ACB00CE8435A7710E7A41EB2378293F4177F(L_39, L_40, NULL);
|
|
goto IL_00e0;
|
|
}
|
|
|
|
IL_00bf:
|
|
{
|
|
int32_t L_41 = V_5;
|
|
if ((((int32_t)L_41) == ((int32_t)3)))
|
|
{
|
|
goto IL_00c9;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_42 = V_5;
|
|
if ((!(((uint32_t)L_42) == ((uint32_t)4))))
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
|
|
IL_00c9:
|
|
{
|
|
int32_t L_43 = V_4;
|
|
V_0 = ((int32_t)(L_43/((int32_t)100)));
|
|
int32_t L_44 = V_4;
|
|
V_1 = ((int32_t)(L_44%((int32_t)100)));
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_45 = ___0_str;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_46 = V_2;
|
|
__DTString_ConsumeSubString_m5EA5ACB00CE8435A7710E7A41EB2378293F4177F(L_45, L_46, NULL);
|
|
goto IL_00e0;
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00e0:
|
|
{
|
|
int32_t L_47 = V_1;
|
|
if ((((int32_t)L_47) < ((int32_t)0)))
|
|
{
|
|
goto IL_00e9;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_48 = V_1;
|
|
if ((((int32_t)L_48) < ((int32_t)((int32_t)60))))
|
|
{
|
|
goto IL_00eb;
|
|
}
|
|
}
|
|
|
|
IL_00e9:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00eb:
|
|
{
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_49 = ___1_result;
|
|
int32_t L_50 = V_0;
|
|
int32_t L_51 = V_1;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_52;
|
|
memset((&L_52), 0, sizeof(L_52));
|
|
TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&L_52), L_50, L_51, 0, /*hidden argument*/NULL);
|
|
*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)L_49 = L_52;
|
|
Il2CppChar L_53 = V_3;
|
|
if ((!(((uint32_t)L_53) == ((uint32_t)((int32_t)45)))))
|
|
{
|
|
goto IL_010a;
|
|
}
|
|
}
|
|
{
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_54 = ___1_result;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_55 = ___1_result;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_56;
|
|
L_56 = TimeSpan_Negate_m3BF3036191A2FDC35250891CD82AD3283A13ABB4(L_55, NULL);
|
|
*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)L_54 = L_56;
|
|
}
|
|
|
|
IL_010a:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::HandleTimeZone(System.__DTString&,System.DateTimeResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_HandleTimeZone_mAE754D4103830063693D7E20D8F802FF1E36E01F (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___0_str, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___1_result, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Il2CppChar V_0 = 0x0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_0 = ___0_str;
|
|
int32_t L_1 = L_0->___Index_1;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_2 = ___0_str;
|
|
int32_t L_3;
|
|
L_3 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(L_2, NULL);
|
|
if ((((int32_t)L_1) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_3, 1)))))
|
|
{
|
|
goto IL_00ad;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_4 = ___0_str;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_5 = (&L_4->___Value_0);
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_6 = ___0_str;
|
|
int32_t L_7 = L_6->___Index_1;
|
|
Il2CppChar* L_8;
|
|
L_8 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_5)->____pointer_0))->value, (L_7), (L_5)->____length_1);
|
|
int32_t L_9 = *((uint16_t*)L_8);
|
|
V_0 = L_9;
|
|
V_1 = 0;
|
|
goto IL_0043;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_11 = ___0_str;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_12 = (&L_11->___Value_0);
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_13 = ___0_str;
|
|
int32_t L_14 = L_13->___Index_1;
|
|
int32_t L_15 = V_1;
|
|
Il2CppChar* L_16;
|
|
L_16 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_12)->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(L_14, L_15))), (L_12)->____length_1);
|
|
int32_t L_17 = *((uint16_t*)L_16);
|
|
V_0 = L_17;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
Il2CppChar L_18 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_19;
|
|
L_19 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_18, NULL);
|
|
if (!L_19)
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_20 = ___0_str;
|
|
int32_t L_21 = L_20->___Index_1;
|
|
int32_t L_22 = V_1;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_23 = ___0_str;
|
|
int32_t L_24;
|
|
L_24 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(L_23, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_21, L_22))) < ((int32_t)((int32_t)il2cpp_codegen_subtract(L_24, 1)))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
Il2CppChar L_25 = V_0;
|
|
if ((((int32_t)L_25) == ((int32_t)((int32_t)43))))
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_26 = V_0;
|
|
if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)45)))))
|
|
{
|
|
goto IL_00ad;
|
|
}
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_27 = ___0_str;
|
|
int32_t* L_28 = (&L_27->___Index_1);
|
|
int32_t* L_29 = L_28;
|
|
int32_t L_30 = *((int32_t*)L_29);
|
|
int32_t L_31 = V_1;
|
|
*((int32_t*)L_29) = (int32_t)((int32_t)il2cpp_codegen_add(L_30, L_31));
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_32 = ___1_result;
|
|
int32_t L_33 = L_32->___flags_8;
|
|
if (!((int32_t)((int32_t)L_33&((int32_t)256))))
|
|
{
|
|
goto IL_0088;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_34 = ___1_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_34, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_35 = ___1_result;
|
|
int32_t* L_36 = (&L_35->___flags_8);
|
|
int32_t* L_37 = L_36;
|
|
int32_t L_38 = *((int32_t*)L_37);
|
|
*((int32_t*)L_37) = (int32_t)((int32_t)(L_38|((int32_t)256)));
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_39 = ___0_str;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_40 = ___1_result;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_41 = (&L_40->___timeZoneOffset_9);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_42;
|
|
L_42 = DateTimeParse_ParseTimeZone_mC6D964CA55CC3922B0912AA1BEB5ECD5EF5E18CF(L_39, L_41, NULL);
|
|
if (L_42)
|
|
{
|
|
goto IL_00ad;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_43 = ___1_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_43, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00ad:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::Lex(System.DateTimeParse/DS,System.__DTString&,System.DateTimeToken&,System.DateTimeRawInfo&,System.DateTimeResult&,System.Globalization.DateTimeFormatInfo&,System.Globalization.DateTimeStyles)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_Lex_mCFD30C9C1058FD72DFB2E3BEDE5289C5EF1E087B (int32_t ___0_dps, __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___1_str, DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* ___2_dtok, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___3_raw, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___4_result, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** ___5_dtfi, int32_t ___6_styles, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B4E26F21A69E717A950F1684EADFD0443AD7B19);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
Il2CppChar V_3 = 0x0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
bool V_6 = false;
|
|
int32_t V_7 = 0;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* G_B42_0 = NULL;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* G_B41_0 = NULL;
|
|
int32_t G_B43_0 = 0;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* G_B43_1 = NULL;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* G_B88_0 = NULL;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* G_B87_0 = NULL;
|
|
int32_t G_B89_0 = 0;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* G_B89_1 = NULL;
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_0 = ___2_dtok;
|
|
L_0->___dtt_0 = ((int32_t)18);
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_1 = ___1_str;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_2 = ___5_dtfi;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_3 = *((DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A**)L_2);
|
|
__DTString_GetRegularToken_mF7E4F8A3FDA483D70D31E919BD247BE18834842A(L_1, (&V_0), (&V_1), L_3, NULL);
|
|
int32_t L_4 = V_0;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_4, 1)))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0925;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0925;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0724;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0919;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_06fe;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_08c6;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_080c;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_09d1;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_0943;
|
|
}
|
|
case 11:
|
|
{
|
|
goto IL_05a8;
|
|
}
|
|
case 12:
|
|
{
|
|
goto IL_0834;
|
|
}
|
|
case 13:
|
|
{
|
|
goto IL_087d;
|
|
}
|
|
case 14:
|
|
{
|
|
goto IL_09d1;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_5 = ___3_raw;
|
|
int32_t L_6 = L_5->___numCount_1;
|
|
if ((((int32_t)L_6) == ((int32_t)3)))
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_1;
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_8 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_8, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
int32_t L_9 = ___0_dps;
|
|
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)19)))))
|
|
{
|
|
goto IL_00ac;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_10 = ___1_str;
|
|
int32_t L_11 = L_10->___Index_1;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_12 = ___1_str;
|
|
int32_t L_13;
|
|
L_13 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(L_12, NULL);
|
|
if ((((int32_t)L_11) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_13, 1)))))
|
|
{
|
|
goto IL_00ac;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_14 = ___1_str;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_15 = (&L_14->___Value_0);
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_16 = ___1_str;
|
|
int32_t L_17 = L_16->___Index_1;
|
|
Il2CppChar* L_18;
|
|
L_18 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_15)->____pointer_0))->value, (L_17), (L_15)->____length_1);
|
|
int32_t L_19 = *((uint16_t*)L_18);
|
|
if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)46)))))
|
|
{
|
|
goto IL_00ac;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_20 = ___1_str;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_21 = ___3_raw;
|
|
double* L_22 = (&L_21->___fraction_7);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_23;
|
|
L_23 = DateTimeParse_ParseFraction_mC56E08E358B2C3452E536E6F3D62ACA05EAC1C31(L_20, L_22, NULL);
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
int32_t L_24 = ___0_dps;
|
|
if ((((int32_t)L_24) == ((int32_t)((int32_t)19))))
|
|
{
|
|
goto IL_00b6;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_25 = ___0_dps;
|
|
if ((!(((uint32_t)L_25) == ((uint32_t)((int32_t)18)))))
|
|
{
|
|
goto IL_00d2;
|
|
}
|
|
}
|
|
|
|
IL_00b6:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_26 = ___1_str;
|
|
int32_t L_27 = L_26->___Index_1;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_28 = ___1_str;
|
|
int32_t L_29;
|
|
L_29 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(L_28, NULL);
|
|
if ((((int32_t)L_27) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_29, 1)))))
|
|
{
|
|
goto IL_00d2;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_30 = ___1_str;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_31 = ___4_result;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_32;
|
|
L_32 = DateTimeParse_HandleTimeZone_mAE754D4103830063693D7E20D8F802FF1E36E01F(L_30, L_31, NULL);
|
|
if (L_32)
|
|
{
|
|
goto IL_00d2;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00d2:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_33 = ___2_dtok;
|
|
int32_t L_34 = V_1;
|
|
L_33->___num_2 = L_34;
|
|
int32_t L_35 = V_0;
|
|
if ((!(((uint32_t)L_35) == ((uint32_t)2))))
|
|
{
|
|
goto IL_02c8;
|
|
}
|
|
}
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_36 = ___3_raw;
|
|
int32_t L_37 = L_36->___year_3;
|
|
if ((!(((uint32_t)L_37) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_02bf;
|
|
}
|
|
}
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_38 = ___3_raw;
|
|
int32_t L_39 = V_1;
|
|
L_38->___year_3 = L_39;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_40 = ___1_str;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_41 = ___5_dtfi;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_42 = *((DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A**)L_41);
|
|
int32_t L_43;
|
|
L_43 = __DTString_GetSeparatorToken_m9ADF41C54B30D0AE706F3CB6E1433B1E51B6CA84(L_40, L_42, (&V_2), (&V_3), NULL);
|
|
int32_t L_44 = L_43;
|
|
V_4 = L_44;
|
|
V_5 = L_44;
|
|
int32_t L_45 = V_5;
|
|
if ((((int32_t)L_45) > ((int32_t)((int32_t)1792))))
|
|
{
|
|
goto IL_0169;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_46 = V_5;
|
|
if ((((int32_t)L_46) > ((int32_t)((int32_t)1024))))
|
|
{
|
|
goto IL_0140;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_47 = V_5;
|
|
if ((((int32_t)L_47) == ((int32_t)((int32_t)512))))
|
|
{
|
|
goto IL_01db;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_48 = V_5;
|
|
if ((((int32_t)L_48) == ((int32_t)((int32_t)768))))
|
|
{
|
|
goto IL_021d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_49 = V_5;
|
|
if ((((int32_t)L_49) == ((int32_t)((int32_t)1024))))
|
|
{
|
|
goto IL_01e8;
|
|
}
|
|
}
|
|
{
|
|
goto IL_02b4;
|
|
}
|
|
|
|
IL_0140:
|
|
{
|
|
int32_t L_50 = V_5;
|
|
if ((((int32_t)L_50) == ((int32_t)((int32_t)1280))))
|
|
{
|
|
goto IL_01e8;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_51 = V_5;
|
|
if ((((int32_t)L_51) == ((int32_t)((int32_t)1536))))
|
|
{
|
|
goto IL_022a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_52 = V_5;
|
|
if ((((int32_t)L_52) == ((int32_t)((int32_t)1792))))
|
|
{
|
|
goto IL_0237;
|
|
}
|
|
}
|
|
{
|
|
goto IL_02b4;
|
|
}
|
|
|
|
IL_0169:
|
|
{
|
|
int32_t L_53 = V_5;
|
|
if ((((int32_t)L_53) > ((int32_t)((int32_t)2560))))
|
|
{
|
|
goto IL_019b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_54 = V_5;
|
|
if ((((int32_t)L_54) == ((int32_t)((int32_t)2048))))
|
|
{
|
|
goto IL_0290;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_55 = V_5;
|
|
if ((((int32_t)L_55) == ((int32_t)((int32_t)2304))))
|
|
{
|
|
goto IL_0290;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_56 = V_5;
|
|
if ((((int32_t)L_56) == ((int32_t)((int32_t)2560))))
|
|
{
|
|
goto IL_0290;
|
|
}
|
|
}
|
|
{
|
|
goto IL_02b4;
|
|
}
|
|
|
|
IL_019b:
|
|
{
|
|
int32_t L_57 = V_5;
|
|
if ((((int32_t)L_57) > ((int32_t)((int32_t)3072))))
|
|
{
|
|
goto IL_01c1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_58 = V_5;
|
|
if ((((int32_t)L_58) == ((int32_t)((int32_t)2816))))
|
|
{
|
|
goto IL_02a2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_59 = V_5;
|
|
if ((((int32_t)L_59) == ((int32_t)((int32_t)3072))))
|
|
{
|
|
goto IL_02a2;
|
|
}
|
|
}
|
|
{
|
|
goto IL_02b4;
|
|
}
|
|
|
|
IL_01c1:
|
|
{
|
|
int32_t L_60 = V_5;
|
|
if ((((int32_t)L_60) == ((int32_t)((int32_t)3328))))
|
|
{
|
|
goto IL_02a2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_61 = V_5;
|
|
if ((((int32_t)L_61) == ((int32_t)((int32_t)3840))))
|
|
{
|
|
goto IL_0252;
|
|
}
|
|
}
|
|
{
|
|
goto IL_02b4;
|
|
}
|
|
|
|
IL_01db:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_62 = ___2_dtok;
|
|
L_62->___dtt_0 = ((int32_t)14);
|
|
goto IL_02bd;
|
|
}
|
|
|
|
IL_01e8:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_63 = ___3_raw;
|
|
int32_t L_64 = L_63->___timeMark_6;
|
|
if ((!(((uint32_t)L_64) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0211;
|
|
}
|
|
}
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_65 = ___3_raw;
|
|
int32_t L_66 = V_4;
|
|
G_B41_0 = L_65;
|
|
if ((((int32_t)L_66) == ((int32_t)((int32_t)1024))))
|
|
{
|
|
G_B42_0 = L_65;
|
|
goto IL_01fe;
|
|
}
|
|
}
|
|
{
|
|
G_B43_0 = 1;
|
|
G_B43_1 = G_B41_0;
|
|
goto IL_01ff;
|
|
}
|
|
|
|
IL_01fe:
|
|
{
|
|
G_B43_0 = 0;
|
|
G_B43_1 = G_B42_0;
|
|
}
|
|
|
|
IL_01ff:
|
|
{
|
|
G_B43_1->___timeMark_6 = G_B43_0;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_67 = ___2_dtok;
|
|
L_67->___dtt_0 = ((int32_t)12);
|
|
goto IL_02bd;
|
|
}
|
|
|
|
IL_0211:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_68 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_68, NULL);
|
|
goto IL_02bd;
|
|
}
|
|
|
|
IL_021d:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_69 = ___2_dtok;
|
|
L_69->___dtt_0 = ((int32_t)12);
|
|
goto IL_02bd;
|
|
}
|
|
|
|
IL_022a:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_70 = ___2_dtok;
|
|
L_70->___dtt_0 = ((int32_t)13);
|
|
goto IL_02bd;
|
|
}
|
|
|
|
IL_0237:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_71 = ___3_raw;
|
|
bool L_72 = L_71->___hasSameDateAndTimeSeparators_8;
|
|
if (L_72)
|
|
{
|
|
goto IL_0248;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_73 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_73, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0248:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_74 = ___2_dtok;
|
|
L_74->___dtt_0 = ((int32_t)13);
|
|
goto IL_02bd;
|
|
}
|
|
|
|
IL_0252:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_75 = ((DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var))->___dateParsingStates_0;
|
|
int32_t L_76 = ___0_dps;
|
|
NullCheck(L_75);
|
|
int32_t L_77 = L_76;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_78 = (L_75)->GetAt(static_cast<il2cpp_array_size_t>(L_77));
|
|
NullCheck(L_78);
|
|
int32_t L_79 = ((int32_t)13);
|
|
int32_t L_80 = (int32_t)(L_78)->GetAt(static_cast<il2cpp_array_size_t>(L_79));
|
|
if ((!(((uint32_t)L_80) == ((uint32_t)((int32_t)20)))))
|
|
{
|
|
goto IL_0286;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_81 = ((DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var))->___dateParsingStates_0;
|
|
int32_t L_82 = ___0_dps;
|
|
NullCheck(L_81);
|
|
int32_t L_83 = L_82;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_84 = (L_81)->GetAt(static_cast<il2cpp_array_size_t>(L_83));
|
|
NullCheck(L_84);
|
|
int32_t L_85 = ((int32_t)12);
|
|
int32_t L_86 = (int32_t)(L_84)->GetAt(static_cast<il2cpp_array_size_t>(L_85));
|
|
if ((((int32_t)L_86) <= ((int32_t)((int32_t)20))))
|
|
{
|
|
goto IL_0286;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_87 = ___1_str;
|
|
int32_t L_88 = V_2;
|
|
L_87->___Index_1 = L_88;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_89 = ___1_str;
|
|
Il2CppChar L_90 = V_3;
|
|
L_89->___m_current_2 = L_90;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_91 = ___2_dtok;
|
|
L_91->___dtt_0 = ((int32_t)12);
|
|
goto IL_02bd;
|
|
}
|
|
|
|
IL_0286:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_92 = ___2_dtok;
|
|
L_92->___dtt_0 = ((int32_t)13);
|
|
goto IL_02bd;
|
|
}
|
|
|
|
IL_0290:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_93 = ___2_dtok;
|
|
L_93->___dtt_0 = ((int32_t)9);
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_94 = ___2_dtok;
|
|
int32_t L_95 = V_4;
|
|
L_94->___suffix_1 = L_95;
|
|
goto IL_02bd;
|
|
}
|
|
|
|
IL_02a2:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_96 = ___2_dtok;
|
|
L_96->___dtt_0 = ((int32_t)10);
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_97 = ___2_dtok;
|
|
int32_t L_98 = V_4;
|
|
L_97->___suffix_1 = L_98;
|
|
goto IL_02bd;
|
|
}
|
|
|
|
IL_02b4:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_99 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_99, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_02bd:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_02bf:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_100 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_100, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_02c8:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_101 = ___1_str;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_102 = ___5_dtfi;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_103 = *((DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A**)L_102);
|
|
int32_t L_104;
|
|
L_104 = __DTString_GetSeparatorToken_m9ADF41C54B30D0AE706F3CB6E1433B1E51B6CA84(L_101, L_103, (&V_2), (&V_3), NULL);
|
|
int32_t L_105 = L_104;
|
|
V_4 = L_105;
|
|
V_5 = L_105;
|
|
int32_t L_106 = V_5;
|
|
if ((((int32_t)L_106) > ((int32_t)((int32_t)2048))))
|
|
{
|
|
goto IL_0358;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_107 = V_5;
|
|
if ((((int32_t)L_107) > ((int32_t)((int32_t)1024))))
|
|
{
|
|
goto IL_0315;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_108 = V_5;
|
|
if ((((int32_t)L_108) == ((int32_t)((int32_t)512))))
|
|
{
|
|
goto IL_03cd;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_109 = V_5;
|
|
if ((((int32_t)L_109) == ((int32_t)((int32_t)768))))
|
|
{
|
|
goto IL_0456;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_110 = V_5;
|
|
if ((((int32_t)L_110) == ((int32_t)((int32_t)1024))))
|
|
{
|
|
goto IL_03e5;
|
|
}
|
|
}
|
|
{
|
|
goto IL_059f;
|
|
}
|
|
|
|
IL_0315:
|
|
{
|
|
int32_t L_111 = V_5;
|
|
if ((((int32_t)L_111) > ((int32_t)((int32_t)1536))))
|
|
{
|
|
goto IL_033b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_112 = V_5;
|
|
if ((((int32_t)L_112) == ((int32_t)((int32_t)1280))))
|
|
{
|
|
goto IL_03e5;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_113 = V_5;
|
|
if ((((int32_t)L_113) == ((int32_t)((int32_t)1536))))
|
|
{
|
|
goto IL_046e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_059f;
|
|
}
|
|
|
|
IL_033b:
|
|
{
|
|
int32_t L_114 = V_5;
|
|
if ((((int32_t)L_114) == ((int32_t)((int32_t)1792))))
|
|
{
|
|
goto IL_04cf;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_115 = V_5;
|
|
if ((((int32_t)L_115) == ((int32_t)((int32_t)2048))))
|
|
{
|
|
goto IL_0520;
|
|
}
|
|
}
|
|
{
|
|
goto IL_059f;
|
|
}
|
|
|
|
IL_0358:
|
|
{
|
|
int32_t L_116 = V_5;
|
|
if ((((int32_t)L_116) > ((int32_t)((int32_t)2816))))
|
|
{
|
|
goto IL_038a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_117 = V_5;
|
|
if ((((int32_t)L_117) == ((int32_t)((int32_t)2304))))
|
|
{
|
|
goto IL_055c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_118 = V_5;
|
|
if ((((int32_t)L_118) == ((int32_t)((int32_t)2560))))
|
|
{
|
|
goto IL_055c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_119 = V_5;
|
|
if ((((int32_t)L_119) == ((int32_t)((int32_t)2816))))
|
|
{
|
|
goto IL_0571;
|
|
}
|
|
}
|
|
{
|
|
goto IL_059f;
|
|
}
|
|
|
|
IL_038a:
|
|
{
|
|
int32_t L_120 = V_5;
|
|
if ((((int32_t)L_120) > ((int32_t)((int32_t)3328))))
|
|
{
|
|
goto IL_03b0;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_121 = V_5;
|
|
if ((((int32_t)L_121) == ((int32_t)((int32_t)3072))))
|
|
{
|
|
goto IL_0571;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_122 = V_5;
|
|
if ((((int32_t)L_122) == ((int32_t)((int32_t)3328))))
|
|
{
|
|
goto IL_0571;
|
|
}
|
|
}
|
|
{
|
|
goto IL_059f;
|
|
}
|
|
|
|
IL_03b0:
|
|
{
|
|
int32_t L_123 = V_5;
|
|
if ((((int32_t)L_123) == ((int32_t)((int32_t)3584))))
|
|
{
|
|
goto IL_0586;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_124 = V_5;
|
|
if ((((int32_t)L_124) == ((int32_t)((int32_t)3840))))
|
|
{
|
|
goto IL_0486;
|
|
}
|
|
}
|
|
{
|
|
goto IL_059f;
|
|
}
|
|
|
|
IL_03cd:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_125 = ___2_dtok;
|
|
L_125->___dtt_0 = 1;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_126 = ___3_raw;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_127 = ___2_dtok;
|
|
int32_t L_128 = L_127->___num_2;
|
|
DateTimeRawInfo_AddNumber_m2DA05B04979A1CE5D6022B4926B4837CDD9AC9BA(L_126, L_128, NULL);
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_03e5:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_129 = ___3_raw;
|
|
int32_t L_130 = L_129->___timeMark_6;
|
|
if ((!(((uint32_t)L_130) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_042e;
|
|
}
|
|
}
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_131 = ___3_raw;
|
|
int32_t L_132 = V_4;
|
|
G_B87_0 = L_131;
|
|
if ((((int32_t)L_132) == ((int32_t)((int32_t)1024))))
|
|
{
|
|
G_B88_0 = L_131;
|
|
goto IL_03fb;
|
|
}
|
|
}
|
|
{
|
|
G_B89_0 = 1;
|
|
G_B89_1 = G_B87_0;
|
|
goto IL_03fc;
|
|
}
|
|
|
|
IL_03fb:
|
|
{
|
|
G_B89_0 = 0;
|
|
G_B89_1 = G_B88_0;
|
|
}
|
|
|
|
IL_03fc:
|
|
{
|
|
G_B89_1->___timeMark_6 = G_B89_0;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_133 = ___2_dtok;
|
|
L_133->___dtt_0 = 2;
|
|
int32_t L_134 = ___0_dps;
|
|
if ((!(((uint32_t)L_134) == ((uint32_t)4))))
|
|
{
|
|
goto IL_0420;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_135 = ___1_str;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_136 = ___4_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_137 = ___3_raw;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_138 = ___5_dtfi;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_139 = *((DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A**)L_138);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_140;
|
|
L_140 = DateTimeParse_ProcessTerminalState_m1635E1524D64F67289FC2CBAD1FCDBC948EC1474(((int32_t)21), L_135, L_136, (&___6_styles), L_137, L_139, NULL);
|
|
if (L_140)
|
|
{
|
|
goto IL_0420;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0420:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_141 = ___3_raw;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_142 = ___2_dtok;
|
|
int32_t L_143 = L_142->___num_2;
|
|
DateTimeRawInfo_AddNumber_m2DA05B04979A1CE5D6022B4926B4837CDD9AC9BA(L_141, L_143, NULL);
|
|
goto IL_043a;
|
|
}
|
|
|
|
IL_042e:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_144 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_144, NULL);
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_043a:
|
|
{
|
|
int32_t L_145 = ___0_dps;
|
|
if ((((int32_t)L_145) == ((int32_t)((int32_t)19))))
|
|
{
|
|
goto IL_0447;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_146 = ___0_dps;
|
|
if ((!(((uint32_t)L_146) == ((uint32_t)((int32_t)18)))))
|
|
{
|
|
goto IL_09d1;
|
|
}
|
|
}
|
|
|
|
IL_0447:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_147 = ___1_str;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_148 = ___4_result;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_149;
|
|
L_149 = DateTimeParse_HandleTimeZone_mAE754D4103830063693D7E20D8F802FF1E36E01F(L_147, L_148, NULL);
|
|
if (L_149)
|
|
{
|
|
goto IL_09d1;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0456:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_150 = ___2_dtok;
|
|
L_150->___dtt_0 = 3;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_151 = ___3_raw;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_152 = ___2_dtok;
|
|
int32_t L_153 = L_152->___num_2;
|
|
DateTimeRawInfo_AddNumber_m2DA05B04979A1CE5D6022B4926B4837CDD9AC9BA(L_151, L_153, NULL);
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_046e:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_154 = ___2_dtok;
|
|
L_154->___dtt_0 = 4;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_155 = ___3_raw;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_156 = ___2_dtok;
|
|
int32_t L_157 = L_156->___num_2;
|
|
DateTimeRawInfo_AddNumber_m2DA05B04979A1CE5D6022B4926B4837CDD9AC9BA(L_155, L_157, NULL);
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_0486:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_158 = ((DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var))->___dateParsingStates_0;
|
|
int32_t L_159 = ___0_dps;
|
|
NullCheck(L_158);
|
|
int32_t L_160 = L_159;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_161 = (L_158)->GetAt(static_cast<il2cpp_array_size_t>(L_160));
|
|
NullCheck(L_161);
|
|
int32_t L_162 = 4;
|
|
int32_t L_163 = (int32_t)(L_161)->GetAt(static_cast<il2cpp_array_size_t>(L_162));
|
|
if ((!(((uint32_t)L_163) == ((uint32_t)((int32_t)20)))))
|
|
{
|
|
goto IL_04b7;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_164 = ((DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var))->___dateParsingStates_0;
|
|
int32_t L_165 = ___0_dps;
|
|
NullCheck(L_164);
|
|
int32_t L_166 = L_165;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_167 = (L_164)->GetAt(static_cast<il2cpp_array_size_t>(L_166));
|
|
NullCheck(L_167);
|
|
int32_t L_168 = 3;
|
|
int32_t L_169 = (int32_t)(L_167)->GetAt(static_cast<il2cpp_array_size_t>(L_168));
|
|
if ((((int32_t)L_169) <= ((int32_t)((int32_t)20))))
|
|
{
|
|
goto IL_04b7;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_170 = ___1_str;
|
|
int32_t L_171 = V_2;
|
|
L_170->___Index_1 = L_171;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_172 = ___1_str;
|
|
Il2CppChar L_173 = V_3;
|
|
L_172->___m_current_2 = L_173;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_174 = ___2_dtok;
|
|
L_174->___dtt_0 = 3;
|
|
goto IL_04be;
|
|
}
|
|
|
|
IL_04b7:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_175 = ___2_dtok;
|
|
L_175->___dtt_0 = 4;
|
|
}
|
|
|
|
IL_04be:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_176 = ___3_raw;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_177 = ___2_dtok;
|
|
int32_t L_178 = L_177->___num_2;
|
|
DateTimeRawInfo_AddNumber_m2DA05B04979A1CE5D6022B4926B4837CDD9AC9BA(L_176, L_178, NULL);
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_04cf:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_179 = ___3_raw;
|
|
bool L_180 = L_179->___hasSameDateAndTimeSeparators_8;
|
|
if (!L_180)
|
|
{
|
|
goto IL_0508;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_181 = ___0_dps;
|
|
if ((((int32_t)L_181) == ((int32_t)((int32_t)11))))
|
|
{
|
|
goto IL_04f0;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_182 = ___0_dps;
|
|
if ((((int32_t)L_182) == ((int32_t)((int32_t)12))))
|
|
{
|
|
goto IL_04f0;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_183 = ___0_dps;
|
|
if ((((int32_t)L_183) == ((int32_t)((int32_t)13))))
|
|
{
|
|
goto IL_04f0;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_184 = ___0_dps;
|
|
if ((((int32_t)L_184) == ((int32_t)((int32_t)14))))
|
|
{
|
|
goto IL_04f0;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_185 = ___0_dps;
|
|
if ((!(((uint32_t)L_185) == ((uint32_t)((int32_t)15)))))
|
|
{
|
|
goto IL_0508;
|
|
}
|
|
}
|
|
|
|
IL_04f0:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_186 = ___2_dtok;
|
|
L_186->___dtt_0 = 4;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_187 = ___3_raw;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_188 = ___2_dtok;
|
|
int32_t L_189 = L_188->___num_2;
|
|
DateTimeRawInfo_AddNumber_m2DA05B04979A1CE5D6022B4926B4837CDD9AC9BA(L_187, L_189, NULL);
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_0508:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_190 = ___2_dtok;
|
|
L_190->___dtt_0 = 5;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_191 = ___3_raw;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_192 = ___2_dtok;
|
|
int32_t L_193 = L_192->___num_2;
|
|
DateTimeRawInfo_AddNumber_m2DA05B04979A1CE5D6022B4926B4837CDD9AC9BA(L_191, L_193, NULL);
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_0520:
|
|
{
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_194 = ___2_dtok;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_195 = ___5_dtfi;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_196 = *((DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A**)L_195);
|
|
NullCheck(L_196);
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_197;
|
|
L_197 = DateTimeFormatInfo_get_Calendar_m1280AC2F196ECBE7B664394CC3821062015DEF99_inline(L_196, NULL);
|
|
int32_t L_198 = V_1;
|
|
NullCheck(L_197);
|
|
int32_t L_199;
|
|
L_199 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(28 /* System.Int32 System.Globalization.Calendar::ToFourDigitYear(System.Int32) */, L_197, L_198);
|
|
L_194->___num_2 = L_199;
|
|
goto IL_0547;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0537;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0537:
|
|
{// begin catch(System.ArgumentOutOfRangeException)
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_200 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_200, NULL);
|
|
V_6 = (bool)0;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION();
|
|
goto IL_09d3;
|
|
}// end catch (depth: 1)
|
|
|
|
IL_0547:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_201 = ___2_dtok;
|
|
L_201->___dtt_0 = ((int32_t)9);
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_202 = ___2_dtok;
|
|
int32_t L_203 = V_4;
|
|
L_202->___suffix_1 = L_203;
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_055c:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_204 = ___2_dtok;
|
|
L_204->___dtt_0 = ((int32_t)9);
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_205 = ___2_dtok;
|
|
int32_t L_206 = V_4;
|
|
L_205->___suffix_1 = L_206;
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_0571:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_207 = ___2_dtok;
|
|
L_207->___dtt_0 = ((int32_t)10);
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_208 = ___2_dtok;
|
|
int32_t L_209 = V_4;
|
|
L_208->___suffix_1 = L_209;
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_0586:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_210 = ___2_dtok;
|
|
L_210->___dtt_0 = ((int32_t)19);
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_211 = ___3_raw;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_212 = ___2_dtok;
|
|
int32_t L_213 = L_212->___num_2;
|
|
DateTimeRawInfo_AddNumber_m2DA05B04979A1CE5D6022B4926B4837CDD9AC9BA(L_211, L_213, NULL);
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_059f:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_214 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_214, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_05a8:
|
|
{
|
|
int32_t L_215 = V_1;
|
|
if ((((int32_t)L_215) < ((int32_t)((int32_t)100))))
|
|
{
|
|
goto IL_0647;
|
|
}
|
|
}
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_216 = ___3_raw;
|
|
int32_t L_217 = L_216->___year_3;
|
|
if ((!(((uint32_t)L_217) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_063e;
|
|
}
|
|
}
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_218 = ___3_raw;
|
|
int32_t L_219 = V_1;
|
|
L_218->___year_3 = L_219;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_220 = ___1_str;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_221 = ___5_dtfi;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_222 = *((DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A**)L_221);
|
|
int32_t L_223;
|
|
L_223 = __DTString_GetSeparatorToken_m9ADF41C54B30D0AE706F3CB6E1433B1E51B6CA84(L_220, L_222, (&V_2), (&V_3), NULL);
|
|
int32_t L_224 = L_223;
|
|
V_4 = L_224;
|
|
V_5 = L_224;
|
|
int32_t L_225 = V_5;
|
|
if ((((int32_t)L_225) == ((int32_t)((int32_t)512))))
|
|
{
|
|
goto IL_05f2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_226 = V_5;
|
|
if ((((int32_t)L_226) == ((int32_t)((int32_t)768))))
|
|
{
|
|
goto IL_05ff;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_227 = V_5;
|
|
if ((((int32_t)L_227) == ((int32_t)((int32_t)3840))))
|
|
{
|
|
goto IL_060c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0635;
|
|
}
|
|
|
|
IL_05f2:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_228 = ___2_dtok;
|
|
L_228->___dtt_0 = ((int32_t)14);
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_05ff:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_229 = ___2_dtok;
|
|
L_229->___dtt_0 = ((int32_t)12);
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_060c:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_230 = ((DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var))->___dateParsingStates_0;
|
|
int32_t L_231 = ___0_dps;
|
|
NullCheck(L_230);
|
|
int32_t L_232 = L_231;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_233 = (L_230)->GetAt(static_cast<il2cpp_array_size_t>(L_232));
|
|
NullCheck(L_233);
|
|
int32_t L_234 = ((int32_t)12);
|
|
int32_t L_235 = (int32_t)(L_233)->GetAt(static_cast<il2cpp_array_size_t>(L_234));
|
|
if ((((int32_t)L_235) <= ((int32_t)((int32_t)20))))
|
|
{
|
|
goto IL_0635;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_236 = ___1_str;
|
|
int32_t L_237 = V_2;
|
|
L_236->___Index_1 = L_237;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_238 = ___1_str;
|
|
Il2CppChar L_239 = V_3;
|
|
L_238->___m_current_2 = L_239;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_240 = ___2_dtok;
|
|
L_240->___dtt_0 = ((int32_t)12);
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_0635:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_241 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_241, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_063e:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_242 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_242, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0647:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_243 = ___2_dtok;
|
|
int32_t L_244 = V_1;
|
|
L_243->___num_2 = L_244;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_245 = ___3_raw;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_246 = ___2_dtok;
|
|
int32_t L_247 = L_246->___num_2;
|
|
DateTimeRawInfo_AddNumber_m2DA05B04979A1CE5D6022B4926B4837CDD9AC9BA(L_245, L_247, NULL);
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_248 = ___1_str;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_249 = ___5_dtfi;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_250 = *((DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A**)L_249);
|
|
int32_t L_251;
|
|
L_251 = __DTString_GetSeparatorToken_m9ADF41C54B30D0AE706F3CB6E1433B1E51B6CA84(L_248, L_250, (&V_2), (&V_3), NULL);
|
|
int32_t L_252 = L_251;
|
|
V_4 = L_252;
|
|
V_5 = L_252;
|
|
int32_t L_253 = V_5;
|
|
if ((((int32_t)L_253) > ((int32_t)((int32_t)768))))
|
|
{
|
|
goto IL_0689;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_254 = V_5;
|
|
if ((((int32_t)L_254) == ((int32_t)((int32_t)512))))
|
|
{
|
|
goto IL_069d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_255 = V_5;
|
|
if ((((int32_t)L_255) == ((int32_t)((int32_t)768))))
|
|
{
|
|
goto IL_06a9;
|
|
}
|
|
}
|
|
{
|
|
goto IL_06f5;
|
|
}
|
|
|
|
IL_0689:
|
|
{
|
|
int32_t L_256 = V_5;
|
|
if ((((int32_t)L_256) == ((int32_t)((int32_t)1536))))
|
|
{
|
|
goto IL_06a9;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_257 = V_5;
|
|
if ((((int32_t)L_257) == ((int32_t)((int32_t)3840))))
|
|
{
|
|
goto IL_06b5;
|
|
}
|
|
}
|
|
{
|
|
goto IL_06f5;
|
|
}
|
|
|
|
IL_069d:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_258 = ___2_dtok;
|
|
L_258->___dtt_0 = 1;
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_06a9:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_259 = ___2_dtok;
|
|
L_259->___dtt_0 = 4;
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_06b5:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_260 = ((DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var))->___dateParsingStates_0;
|
|
int32_t L_261 = ___0_dps;
|
|
NullCheck(L_260);
|
|
int32_t L_262 = L_261;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_263 = (L_260)->GetAt(static_cast<il2cpp_array_size_t>(L_262));
|
|
NullCheck(L_263);
|
|
int32_t L_264 = 4;
|
|
int32_t L_265 = (int32_t)(L_263)->GetAt(static_cast<il2cpp_array_size_t>(L_264));
|
|
if ((!(((uint32_t)L_265) == ((uint32_t)((int32_t)20)))))
|
|
{
|
|
goto IL_06e9;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_266 = ((DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var))->___dateParsingStates_0;
|
|
int32_t L_267 = ___0_dps;
|
|
NullCheck(L_266);
|
|
int32_t L_268 = L_267;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_269 = (L_266)->GetAt(static_cast<il2cpp_array_size_t>(L_268));
|
|
NullCheck(L_269);
|
|
int32_t L_270 = 3;
|
|
int32_t L_271 = (int32_t)(L_269)->GetAt(static_cast<il2cpp_array_size_t>(L_270));
|
|
if ((((int32_t)L_271) <= ((int32_t)((int32_t)20))))
|
|
{
|
|
goto IL_06e9;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_272 = ___1_str;
|
|
int32_t L_273 = V_2;
|
|
L_272->___Index_1 = L_273;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_274 = ___1_str;
|
|
Il2CppChar L_275 = V_3;
|
|
L_274->___m_current_2 = L_275;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_276 = ___2_dtok;
|
|
L_276->___dtt_0 = 3;
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_06e9:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_277 = ___2_dtok;
|
|
L_277->___dtt_0 = 4;
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_06f5:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_278 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_278, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_06fe:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_279 = ___3_raw;
|
|
int32_t L_280 = L_279->___dayOfWeek_4;
|
|
if ((!(((uint32_t)L_280) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_071b;
|
|
}
|
|
}
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_281 = ___3_raw;
|
|
int32_t L_282 = V_1;
|
|
L_281->___dayOfWeek_4 = L_282;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_283 = ___2_dtok;
|
|
L_283->___dtt_0 = ((int32_t)11);
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_071b:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_284 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_284, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0724:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_285 = ___3_raw;
|
|
int32_t L_286 = L_285->___month_2;
|
|
if ((!(((uint32_t)L_286) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0803;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_287 = ___1_str;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_288 = ___5_dtfi;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_289 = *((DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A**)L_288);
|
|
int32_t L_290;
|
|
L_290 = __DTString_GetSeparatorToken_m9ADF41C54B30D0AE706F3CB6E1433B1E51B6CA84(L_287, L_289, (&V_2), (&V_3), NULL);
|
|
int32_t L_291 = L_290;
|
|
V_4 = L_291;
|
|
V_5 = L_291;
|
|
int32_t L_292 = V_5;
|
|
if ((((int32_t)L_292) > ((int32_t)((int32_t)768))))
|
|
{
|
|
goto IL_0762;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_293 = V_5;
|
|
if ((((int32_t)L_293) == ((int32_t)((int32_t)512))))
|
|
{
|
|
goto IL_077f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_294 = V_5;
|
|
if ((((int32_t)L_294) == ((int32_t)((int32_t)768))))
|
|
{
|
|
goto IL_0788;
|
|
}
|
|
}
|
|
{
|
|
goto IL_07ee;
|
|
}
|
|
|
|
IL_0762:
|
|
{
|
|
int32_t L_295 = V_5;
|
|
if ((((int32_t)L_295) == ((int32_t)((int32_t)1536))))
|
|
{
|
|
goto IL_0791;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_296 = V_5;
|
|
if ((((int32_t)L_296) == ((int32_t)((int32_t)1792))))
|
|
{
|
|
goto IL_079a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_297 = V_5;
|
|
if ((((int32_t)L_297) == ((int32_t)((int32_t)3840))))
|
|
{
|
|
goto IL_07b4;
|
|
}
|
|
}
|
|
{
|
|
goto IL_07ee;
|
|
}
|
|
|
|
IL_077f:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_298 = ___2_dtok;
|
|
L_298->___dtt_0 = 6;
|
|
goto IL_07f7;
|
|
}
|
|
|
|
IL_0788:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_299 = ___2_dtok;
|
|
L_299->___dtt_0 = 7;
|
|
goto IL_07f7;
|
|
}
|
|
|
|
IL_0791:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_300 = ___2_dtok;
|
|
L_300->___dtt_0 = 8;
|
|
goto IL_07f7;
|
|
}
|
|
|
|
IL_079a:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_301 = ___3_raw;
|
|
bool L_302 = L_301->___hasSameDateAndTimeSeparators_8;
|
|
if (L_302)
|
|
{
|
|
goto IL_07ab;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_303 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_303, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_07ab:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_304 = ___2_dtok;
|
|
L_304->___dtt_0 = 8;
|
|
goto IL_07f7;
|
|
}
|
|
|
|
IL_07b4:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_305 = ((DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var))->___dateParsingStates_0;
|
|
int32_t L_306 = ___0_dps;
|
|
NullCheck(L_305);
|
|
int32_t L_307 = L_306;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_308 = (L_305)->GetAt(static_cast<il2cpp_array_size_t>(L_307));
|
|
NullCheck(L_308);
|
|
int32_t L_309 = 8;
|
|
int32_t L_310 = (int32_t)(L_308)->GetAt(static_cast<il2cpp_array_size_t>(L_309));
|
|
if ((!(((uint32_t)L_310) == ((uint32_t)((int32_t)20)))))
|
|
{
|
|
goto IL_07e5;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_311 = ((DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var))->___dateParsingStates_0;
|
|
int32_t L_312 = ___0_dps;
|
|
NullCheck(L_311);
|
|
int32_t L_313 = L_312;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_314 = (L_311)->GetAt(static_cast<il2cpp_array_size_t>(L_313));
|
|
NullCheck(L_314);
|
|
int32_t L_315 = 7;
|
|
int32_t L_316 = (int32_t)(L_314)->GetAt(static_cast<il2cpp_array_size_t>(L_315));
|
|
if ((((int32_t)L_316) <= ((int32_t)((int32_t)20))))
|
|
{
|
|
goto IL_07e5;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_317 = ___1_str;
|
|
int32_t L_318 = V_2;
|
|
L_317->___Index_1 = L_318;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_319 = ___1_str;
|
|
Il2CppChar L_320 = V_3;
|
|
L_319->___m_current_2 = L_320;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_321 = ___2_dtok;
|
|
L_321->___dtt_0 = 7;
|
|
goto IL_07f7;
|
|
}
|
|
|
|
IL_07e5:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_322 = ___2_dtok;
|
|
L_322->___dtt_0 = 8;
|
|
goto IL_07f7;
|
|
}
|
|
|
|
IL_07ee:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_323 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_323, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_07f7:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_324 = ___3_raw;
|
|
int32_t L_325 = V_1;
|
|
L_324->___month_2 = L_325;
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_0803:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_326 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_326, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_080c:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_327 = ___4_result;
|
|
int32_t L_328 = L_327->___era_7;
|
|
if ((((int32_t)L_328) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_082b;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_329 = ___4_result;
|
|
int32_t L_330 = V_1;
|
|
L_329->___era_7 = L_330;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_331 = ___2_dtok;
|
|
L_331->___dtt_0 = ((int32_t)16);
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_082b:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_332 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_332, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0834:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
bool L_333;
|
|
L_333 = GlobalizationMode_get_Invariant_m07C027203B17E9B629D292376366608B7DDB2903_inline(NULL);
|
|
if (!L_333)
|
|
{
|
|
goto IL_0841;
|
|
}
|
|
}
|
|
{
|
|
PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A* L_334 = (PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_334);
|
|
PlatformNotSupportedException__ctor_mD5DBE8E9A6FF4B75EF02671029C6D67A51EAFBD1(L_334, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_334, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeParse_Lex_mCFD30C9C1058FD72DFB2E3BEDE5289C5EF1E087B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0841:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_335 = ___4_result;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_336;
|
|
L_336 = DateTimeParse_GetJapaneseCalendarDefaultInstance_mB59CA5FACA588F45C5F7129B662935855F6D73B2(NULL);
|
|
L_335->___calendar_10 = L_336;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_337 = ___5_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_338;
|
|
L_338 = DateTimeFormatInfo_GetJapaneseCalendarDTFI_m7EFE92E42018E6706062C56BAB24AFFE75B4F69D(NULL);
|
|
*((RuntimeObject**)L_337) = (RuntimeObject*)L_338;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_337, (void*)(RuntimeObject*)L_338);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_339 = ___4_result;
|
|
int32_t L_340 = L_339->___era_7;
|
|
if ((((int32_t)L_340) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0874;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_341 = ___4_result;
|
|
int32_t L_342 = V_1;
|
|
L_341->___era_7 = L_342;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_343 = ___2_dtok;
|
|
L_343->___dtt_0 = ((int32_t)16);
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_0874:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_344 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_344, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_087d:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
bool L_345;
|
|
L_345 = GlobalizationMode_get_Invariant_m07C027203B17E9B629D292376366608B7DDB2903_inline(NULL);
|
|
if (!L_345)
|
|
{
|
|
goto IL_088a;
|
|
}
|
|
}
|
|
{
|
|
PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A* L_346 = (PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_346);
|
|
PlatformNotSupportedException__ctor_mD5DBE8E9A6FF4B75EF02671029C6D67A51EAFBD1(L_346, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_346, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeParse_Lex_mCFD30C9C1058FD72DFB2E3BEDE5289C5EF1E087B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_088a:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_347 = ___4_result;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_348;
|
|
L_348 = DateTimeParse_GetTaiwanCalendarDefaultInstance_m69005FEA5C5D3A0E3551E136D644CB9D266BECB0(NULL);
|
|
L_347->___calendar_10 = L_348;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A** L_349 = ___5_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A_il2cpp_TypeInfo_var);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_350;
|
|
L_350 = DateTimeFormatInfo_GetTaiwanCalendarDTFI_m0C8EC567ABDEEAD46157F36D438A93BC9A87291C(NULL);
|
|
*((RuntimeObject**)L_349) = (RuntimeObject*)L_350;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_349, (void*)(RuntimeObject*)L_350);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_351 = ___4_result;
|
|
int32_t L_352 = L_351->___era_7;
|
|
if ((((int32_t)L_352) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_08bd;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_353 = ___4_result;
|
|
int32_t L_354 = V_1;
|
|
L_353->___era_7 = L_354;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_355 = ___2_dtok;
|
|
L_355->___dtt_0 = ((int32_t)16);
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_08bd:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_356 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_356, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_08c6:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_357 = ___4_result;
|
|
int32_t L_358 = L_357->___flags_8;
|
|
if (!((int32_t)((int32_t)L_358&((int32_t)256))))
|
|
{
|
|
goto IL_08de;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_359 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_359, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_08de:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_360 = ___2_dtok;
|
|
L_360->___dtt_0 = ((int32_t)15);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_361 = ___4_result;
|
|
int32_t* L_362 = (&L_361->___flags_8);
|
|
int32_t* L_363 = L_362;
|
|
int32_t L_364 = *((int32_t*)L_363);
|
|
*((int32_t*)L_363) = (int32_t)((int32_t)(L_364|((int32_t)256)));
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_365 = ___4_result;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_366;
|
|
memset((&L_366), 0, sizeof(L_366));
|
|
TimeSpan__ctor_m061B122FA11D2063FE751C1F1D019DF1C8B10B1F_inline((&L_366), ((int64_t)0), /*hidden argument*/NULL);
|
|
L_365->___timeZoneOffset_9 = L_366;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_367 = ___4_result;
|
|
int32_t* L_368 = (&L_367->___flags_8);
|
|
int32_t* L_369 = L_368;
|
|
int32_t L_370 = *((int32_t*)L_369);
|
|
*((int32_t*)L_369) = (int32_t)((int32_t)(L_370|((int32_t)512)));
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_0919:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_371 = ___2_dtok;
|
|
L_371->___dtt_0 = 0;
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_0925:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_372 = ___3_raw;
|
|
int32_t L_373 = L_372->___timeMark_6;
|
|
if ((!(((uint32_t)L_373) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_093a;
|
|
}
|
|
}
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_374 = ___3_raw;
|
|
int32_t L_375 = V_1;
|
|
L_374->___timeMark_6 = L_375;
|
|
goto IL_09d1;
|
|
}
|
|
|
|
IL_093a:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_376 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_376, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0943:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_377 = ___1_str;
|
|
Il2CppChar L_378 = L_377->___m_current_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_379;
|
|
L_379 = Char_IsLetter_m4363120285B51739DEE559E5C81E89580DDC78C0(L_378, NULL);
|
|
if (!L_379)
|
|
{
|
|
goto IL_096a;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_380 = ___4_result;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_381 = ___1_str;
|
|
int32_t L_382 = L_381->___Index_1;
|
|
int32_t L_383 = L_382;
|
|
RuntimeObject* L_384 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_383);
|
|
DateTimeResult_SetFailure_m24BEDE43DC1A95BE46B6A6F9F37F74383FF01953(L_380, 6, _stringLiteral4B4E26F21A69E717A950F1684EADFD0443AD7B19, L_384, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_096a:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_385 = ___1_str;
|
|
Il2CppChar L_386 = L_385->___m_current_2;
|
|
if ((((int32_t)L_386) == ((int32_t)((int32_t)45))))
|
|
{
|
|
goto IL_097e;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_387 = ___1_str;
|
|
Il2CppChar L_388 = L_387->___m_current_2;
|
|
if ((!(((uint32_t)L_388) == ((uint32_t)((int32_t)43)))))
|
|
{
|
|
goto IL_09be;
|
|
}
|
|
}
|
|
|
|
IL_097e:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_389 = ___4_result;
|
|
int32_t L_390 = L_389->___flags_8;
|
|
if (((int32_t)((int32_t)L_390&((int32_t)256))))
|
|
{
|
|
goto IL_09be;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_391 = ___1_str;
|
|
int32_t L_392 = L_391->___Index_1;
|
|
V_7 = L_392;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_393 = ___1_str;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_394 = ___4_result;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_395 = (&L_394->___timeZoneOffset_9);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_396;
|
|
L_396 = DateTimeParse_ParseTimeZone_mC6D964CA55CC3922B0912AA1BEB5ECD5EF5E18CF(L_393, L_395, NULL);
|
|
if (!L_396)
|
|
{
|
|
goto IL_09b6;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_397 = ___4_result;
|
|
int32_t* L_398 = (&L_397->___flags_8);
|
|
int32_t* L_399 = L_398;
|
|
int32_t L_400 = *((int32_t*)L_399);
|
|
*((int32_t*)L_399) = (int32_t)((int32_t)(L_400|((int32_t)256)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_09b6:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_401 = ___1_str;
|
|
int32_t L_402 = V_7;
|
|
L_401->___Index_1 = L_402;
|
|
}
|
|
|
|
IL_09be:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_403 = ___1_str;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_404;
|
|
L_404 = DateTimeParse_VerifyValidPunctuation_mC1B41036A753D97D308AB0E940DD204A23B5C128(L_403, NULL);
|
|
if (!L_404)
|
|
{
|
|
goto IL_09c8;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_09c8:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_405 = ___4_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_405, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_09d1:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_09d3:
|
|
{
|
|
bool L_406 = V_6;
|
|
return L_406;
|
|
}
|
|
}
|
|
// System.Globalization.Calendar System.DateTimeParse::GetJapaneseCalendarDefaultInstance()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* DateTimeParse_GetJapaneseCalendarDefaultInstance_mB59CA5FACA588F45C5F7129B662935855F6D73B2 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JapaneseCalendar_t639E4548E016255B55B31A644186A40A5D055E0E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
bool L_0;
|
|
L_0 = GlobalizationMode_get_Invariant_m07C027203B17E9B629D292376366608B7DDB2903_inline(NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A* L_1 = (PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
PlatformNotSupportedException__ctor_mD5DBE8E9A6FF4B75EF02671029C6D67A51EAFBD1(L_1, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeParse_GetJapaneseCalendarDefaultInstance_mB59CA5FACA588F45C5F7129B662935855F6D73B2_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(JapaneseCalendar_t639E4548E016255B55B31A644186A40A5D055E0E_il2cpp_TypeInfo_var);
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_2;
|
|
L_2 = JapaneseCalendar_GetDefaultInstance_m5589EE694818CED9EEB6ED73C683971A7B6D53D1(NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Globalization.Calendar System.DateTimeParse::GetTaiwanCalendarDefaultInstance()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* DateTimeParse_GetTaiwanCalendarDefaultInstance_m69005FEA5C5D3A0E3551E136D644CB9D266BECB0 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TaiwanCalendar_tFC159D82844A64A93FE1EB3363CC64DE933EE64B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
bool L_0;
|
|
L_0 = GlobalizationMode_get_Invariant_m07C027203B17E9B629D292376366608B7DDB2903_inline(NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A* L_1 = (PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
PlatformNotSupportedException__ctor_mD5DBE8E9A6FF4B75EF02671029C6D67A51EAFBD1(L_1, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeParse_GetTaiwanCalendarDefaultInstance_m69005FEA5C5D3A0E3551E136D644CB9D266BECB0_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(TaiwanCalendar_tFC159D82844A64A93FE1EB3363CC64DE933EE64B_il2cpp_TypeInfo_var);
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_2;
|
|
L_2 = TaiwanCalendar_GetDefaultInstance_m66CEDD8A02B6AB4786E93CD2D5FA125FE54F9B84(NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::VerifyValidPunctuation(System.__DTString&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_VerifyValidPunctuation_mC1B41036A753D97D308AB0E940DD204A23B5C128 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___0_str, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Il2CppChar V_0 = 0x0;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_0 = ___0_str;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_1 = (&L_0->___Value_0);
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_2 = ___0_str;
|
|
int32_t L_3 = L_2->___Index_1;
|
|
Il2CppChar* L_4;
|
|
L_4 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_1)->____pointer_0))->value, (L_3), (L_1)->____length_1);
|
|
int32_t L_5 = *((uint16_t*)L_4);
|
|
V_0 = L_5;
|
|
Il2CppChar L_6 = V_0;
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)35)))))
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
V_2 = (bool)0;
|
|
V_3 = 0;
|
|
goto IL_0061;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_7 = ___0_str;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_8 = (&L_7->___Value_0);
|
|
int32_t L_9 = V_3;
|
|
Il2CppChar* L_10;
|
|
L_10 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_8)->____pointer_0))->value, (L_9), (L_8)->____length_1);
|
|
int32_t L_11 = *((uint16_t*)L_10);
|
|
V_0 = L_11;
|
|
Il2CppChar L_12 = V_0;
|
|
if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)35)))))
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
bool L_13 = V_1;
|
|
if (!L_13)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
bool L_14 = V_2;
|
|
if (!L_14)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
V_2 = (bool)1;
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
V_1 = (bool)1;
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
Il2CppChar L_15 = V_0;
|
|
if (L_15)
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
bool L_16 = V_2;
|
|
if (L_16)
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
Il2CppChar L_17 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_18;
|
|
L_18 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_17, NULL);
|
|
if (L_18)
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
bool L_19 = V_1;
|
|
bool L_20 = V_2;
|
|
if (!((int32_t)(((((int32_t)L_19) == ((int32_t)0))? 1 : 0)|(int32_t)L_20)))
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
int32_t L_21 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_21, 1));
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
int32_t L_22 = V_3;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_23 = ___0_str;
|
|
int32_t L_24;
|
|
L_24 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(L_23, NULL);
|
|
if ((((int32_t)L_22) < ((int32_t)L_24)))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
bool L_25 = V_2;
|
|
if (L_25)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_26 = ___0_str;
|
|
bool L_27;
|
|
L_27 = __DTString_GetNext_m2DAFC0E1EB763649B66110695BDB206B71B1407F(L_26, NULL);
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
Il2CppChar L_28 = V_0;
|
|
if (L_28)
|
|
{
|
|
goto IL_00b5;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_29 = ___0_str;
|
|
int32_t L_30 = L_29->___Index_1;
|
|
V_4 = L_30;
|
|
goto IL_009d;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_31 = ___0_str;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_32 = (&L_31->___Value_0);
|
|
int32_t L_33 = V_4;
|
|
Il2CppChar* L_34;
|
|
L_34 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_32)->____pointer_0))->value, (L_33), (L_32)->____length_1);
|
|
int32_t L_35 = *((uint16_t*)L_34);
|
|
if (!L_35)
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
int32_t L_36 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_36, 1));
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
int32_t L_37 = V_4;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_38 = ___0_str;
|
|
int32_t L_39;
|
|
L_39 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(L_38, NULL);
|
|
if ((((int32_t)L_37) < ((int32_t)L_39)))
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_40 = ___0_str;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_41 = ___0_str;
|
|
int32_t L_42;
|
|
L_42 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(L_41, NULL);
|
|
L_40->___Index_1 = L_42;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_00b5:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetYearMonthDayOrder(System.String,System.Globalization.DateTimeFormatInfo,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetYearMonthDayOrder_m55496E783E5A65A2FA6DA3095C15D14A52339C80 (String_t* ___0_datePattern, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___1_dtfi, int32_t* ___2_order, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
bool V_4 = false;
|
|
int32_t V_5 = 0;
|
|
Il2CppChar V_6 = 0x0;
|
|
int32_t V_7 = 0;
|
|
{
|
|
V_0 = (-1);
|
|
V_1 = (-1);
|
|
V_2 = (-1);
|
|
V_3 = 0;
|
|
V_4 = (bool)0;
|
|
V_5 = 0;
|
|
goto IL_00f0;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
String_t* L_0 = ___0_datePattern;
|
|
int32_t L_1 = V_5;
|
|
NullCheck(L_0);
|
|
Il2CppChar L_2;
|
|
L_2 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, L_1, NULL);
|
|
V_6 = L_2;
|
|
Il2CppChar L_3 = V_6;
|
|
if ((((int32_t)L_3) == ((int32_t)((int32_t)92))))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_4 = V_6;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)37)))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
int32_t L_5 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
goto IL_00ea;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
Il2CppChar L_6 = V_6;
|
|
if ((((int32_t)L_6) == ((int32_t)((int32_t)39))))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_7 = V_6;
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)34)))))
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
bool L_8 = V_4;
|
|
V_4 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
bool L_9 = V_4;
|
|
if (L_9)
|
|
{
|
|
goto IL_00ea;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_10 = V_6;
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)121)))))
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = V_3;
|
|
int32_t L_12 = L_11;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
V_0 = L_12;
|
|
goto IL_0062;
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
int32_t L_13 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
int32_t L_14 = V_5;
|
|
String_t* L_15 = ___0_datePattern;
|
|
NullCheck(L_15);
|
|
int32_t L_16;
|
|
L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_14, 1))) >= ((int32_t)L_16)))
|
|
{
|
|
goto IL_00ea;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_17 = ___0_datePattern;
|
|
int32_t L_18 = V_5;
|
|
NullCheck(L_17);
|
|
Il2CppChar L_19;
|
|
L_19 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_17, ((int32_t)il2cpp_codegen_add(L_18, 1)), NULL);
|
|
if ((((int32_t)L_19) == ((int32_t)((int32_t)121))))
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00ea;
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
Il2CppChar L_20 = V_6;
|
|
if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)77)))))
|
|
{
|
|
goto IL_00ae;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_21 = V_3;
|
|
int32_t L_22 = L_21;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
V_1 = L_22;
|
|
goto IL_0092;
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
int32_t L_23 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_23, 1));
|
|
}
|
|
|
|
IL_0092:
|
|
{
|
|
int32_t L_24 = V_5;
|
|
String_t* L_25 = ___0_datePattern;
|
|
NullCheck(L_25);
|
|
int32_t L_26;
|
|
L_26 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_25, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_24, 1))) >= ((int32_t)L_26)))
|
|
{
|
|
goto IL_00ea;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_27 = ___0_datePattern;
|
|
int32_t L_28 = V_5;
|
|
NullCheck(L_27);
|
|
Il2CppChar L_29;
|
|
L_29 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_27, ((int32_t)il2cpp_codegen_add(L_28, 1)), NULL);
|
|
if ((((int32_t)L_29) == ((int32_t)((int32_t)77))))
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00ea;
|
|
}
|
|
|
|
IL_00ae:
|
|
{
|
|
Il2CppChar L_30 = V_6;
|
|
if ((!(((uint32_t)L_30) == ((uint32_t)((int32_t)100)))))
|
|
{
|
|
goto IL_00ea;
|
|
}
|
|
}
|
|
{
|
|
V_7 = 1;
|
|
goto IL_00c5;
|
|
}
|
|
|
|
IL_00b9:
|
|
{
|
|
int32_t L_31 = V_7;
|
|
V_7 = ((int32_t)il2cpp_codegen_add(L_31, 1));
|
|
int32_t L_32 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
int32_t L_33 = V_5;
|
|
String_t* L_34 = ___0_datePattern;
|
|
NullCheck(L_34);
|
|
int32_t L_35;
|
|
L_35 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_34, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_33, 1))) >= ((int32_t)L_35)))
|
|
{
|
|
goto IL_00df;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_36 = ___0_datePattern;
|
|
int32_t L_37 = V_5;
|
|
NullCheck(L_36);
|
|
Il2CppChar L_38;
|
|
L_38 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_36, ((int32_t)il2cpp_codegen_add(L_37, 1)), NULL);
|
|
if ((((int32_t)L_38) == ((int32_t)((int32_t)100))))
|
|
{
|
|
goto IL_00b9;
|
|
}
|
|
}
|
|
|
|
IL_00df:
|
|
{
|
|
int32_t L_39 = V_7;
|
|
if ((((int32_t)L_39) > ((int32_t)2)))
|
|
{
|
|
goto IL_00ea;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_40 = V_3;
|
|
int32_t L_41 = L_40;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_41, 1));
|
|
V_2 = L_41;
|
|
}
|
|
|
|
IL_00ea:
|
|
{
|
|
int32_t L_42 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_42, 1));
|
|
}
|
|
|
|
IL_00f0:
|
|
{
|
|
int32_t L_43 = V_5;
|
|
String_t* L_44 = ___0_datePattern;
|
|
NullCheck(L_44);
|
|
int32_t L_45;
|
|
L_45 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_44, NULL);
|
|
if ((((int32_t)L_43) >= ((int32_t)L_45)))
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_46 = V_3;
|
|
if ((((int32_t)L_46) < ((int32_t)3)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
|
|
IL_0101:
|
|
{
|
|
int32_t L_47 = V_0;
|
|
if (L_47)
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_48 = V_1;
|
|
if ((!(((uint32_t)L_48) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_49 = V_2;
|
|
if ((!(((uint32_t)L_49) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_50 = ___2_order;
|
|
*((int32_t*)L_50) = (int32_t)0;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0111:
|
|
{
|
|
int32_t L_51 = V_1;
|
|
if (L_51)
|
|
{
|
|
goto IL_0121;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_52 = V_2;
|
|
if ((!(((uint32_t)L_52) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0121;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_53 = V_0;
|
|
if ((!(((uint32_t)L_53) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0121;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_54 = ___2_order;
|
|
*((int32_t*)L_54) = (int32_t)1;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0121:
|
|
{
|
|
int32_t L_55 = V_2;
|
|
if (L_55)
|
|
{
|
|
goto IL_0131;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_56 = V_1;
|
|
if ((!(((uint32_t)L_56) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0131;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_57 = V_0;
|
|
if ((!(((uint32_t)L_57) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0131;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_58 = ___2_order;
|
|
*((int32_t*)L_58) = (int32_t)2;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0131:
|
|
{
|
|
int32_t L_59 = V_0;
|
|
if (L_59)
|
|
{
|
|
goto IL_0141;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_60 = V_2;
|
|
if ((!(((uint32_t)L_60) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0141;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_61 = V_1;
|
|
if ((!(((uint32_t)L_61) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0141;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_62 = ___2_order;
|
|
*((int32_t*)L_62) = (int32_t)3;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0141:
|
|
{
|
|
int32_t* L_63 = ___2_order;
|
|
*((int32_t*)L_63) = (int32_t)(-1);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetYearMonthOrder(System.String,System.Globalization.DateTimeFormatInfo,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetYearMonthOrder_mFAB37BA13AEB39810B6344DBD80E744E260317B7 (String_t* ___0_pattern, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___1_dtfi, int32_t* ___2_order, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
bool V_3 = false;
|
|
int32_t V_4 = 0;
|
|
Il2CppChar V_5 = 0x0;
|
|
{
|
|
V_0 = (-1);
|
|
V_1 = (-1);
|
|
V_2 = 0;
|
|
V_3 = (bool)0;
|
|
V_4 = 0;
|
|
goto IL_00a6;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
String_t* L_0 = ___0_pattern;
|
|
int32_t L_1 = V_4;
|
|
NullCheck(L_0);
|
|
Il2CppChar L_2;
|
|
L_2 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, L_1, NULL);
|
|
V_5 = L_2;
|
|
Il2CppChar L_3 = V_5;
|
|
if ((((int32_t)L_3) == ((int32_t)((int32_t)92))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_4 = V_5;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)37)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
int32_t L_5 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
goto IL_00a0;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
Il2CppChar L_6 = V_5;
|
|
if ((((int32_t)L_6) == ((int32_t)((int32_t)39))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_7 = V_5;
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)34)))))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
bool L_8 = V_3;
|
|
V_3 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
bool L_9 = V_3;
|
|
if (L_9)
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_10 = V_5;
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)121)))))
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = V_2;
|
|
int32_t L_12 = L_11;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
V_0 = L_12;
|
|
goto IL_0056;
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
int32_t L_13 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
int32_t L_14 = V_4;
|
|
String_t* L_15 = ___0_pattern;
|
|
NullCheck(L_15);
|
|
int32_t L_16;
|
|
L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_14, 1))) >= ((int32_t)L_16)))
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_17 = ___0_pattern;
|
|
int32_t L_18 = V_4;
|
|
NullCheck(L_17);
|
|
Il2CppChar L_19;
|
|
L_19 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_17, ((int32_t)il2cpp_codegen_add(L_18, 1)), NULL);
|
|
if ((((int32_t)L_19) == ((int32_t)((int32_t)121))))
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
Il2CppChar L_20 = V_5;
|
|
if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)77)))))
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_21 = V_2;
|
|
int32_t L_22 = L_21;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
V_1 = L_22;
|
|
goto IL_0086;
|
|
}
|
|
|
|
IL_0080:
|
|
{
|
|
int32_t L_23 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_23, 1));
|
|
}
|
|
|
|
IL_0086:
|
|
{
|
|
int32_t L_24 = V_4;
|
|
String_t* L_25 = ___0_pattern;
|
|
NullCheck(L_25);
|
|
int32_t L_26;
|
|
L_26 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_25, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_24, 1))) >= ((int32_t)L_26)))
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_27 = ___0_pattern;
|
|
int32_t L_28 = V_4;
|
|
NullCheck(L_27);
|
|
Il2CppChar L_29;
|
|
L_29 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_27, ((int32_t)il2cpp_codegen_add(L_28, 1)), NULL);
|
|
if ((((int32_t)L_29) == ((int32_t)((int32_t)77))))
|
|
{
|
|
goto IL_0080;
|
|
}
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
int32_t L_30 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_30, 1));
|
|
}
|
|
|
|
IL_00a6:
|
|
{
|
|
int32_t L_31 = V_4;
|
|
String_t* L_32 = ___0_pattern;
|
|
NullCheck(L_32);
|
|
int32_t L_33;
|
|
L_33 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_32, NULL);
|
|
if ((((int32_t)L_31) >= ((int32_t)L_33)))
|
|
{
|
|
goto IL_00b7;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_34 = V_2;
|
|
if ((((int32_t)L_34) < ((int32_t)2)))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
|
|
IL_00b7:
|
|
{
|
|
int32_t L_35 = V_0;
|
|
if (L_35)
|
|
{
|
|
goto IL_00c3;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_36 = V_1;
|
|
if ((!(((uint32_t)L_36) == ((uint32_t)1))))
|
|
{
|
|
goto IL_00c3;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_37 = ___2_order;
|
|
*((int32_t*)L_37) = (int32_t)4;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_00c3:
|
|
{
|
|
int32_t L_38 = V_1;
|
|
if (L_38)
|
|
{
|
|
goto IL_00cf;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_39 = V_0;
|
|
if ((!(((uint32_t)L_39) == ((uint32_t)1))))
|
|
{
|
|
goto IL_00cf;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_40 = ___2_order;
|
|
*((int32_t*)L_40) = (int32_t)5;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_00cf:
|
|
{
|
|
int32_t* L_41 = ___2_order;
|
|
*((int32_t*)L_41) = (int32_t)(-1);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetMonthDayOrder(System.String,System.Globalization.DateTimeFormatInfo,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetMonthDayOrder_m30E015ED29548A3C43FD72F05EB1C76BB47F3069 (String_t* ___0_pattern, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___1_dtfi, int32_t* ___2_order, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
bool V_3 = false;
|
|
int32_t V_4 = 0;
|
|
Il2CppChar V_5 = 0x0;
|
|
int32_t V_6 = 0;
|
|
{
|
|
V_0 = (-1);
|
|
V_1 = (-1);
|
|
V_2 = 0;
|
|
V_3 = (bool)0;
|
|
V_4 = 0;
|
|
goto IL_00b7;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
String_t* L_0 = ___0_pattern;
|
|
int32_t L_1 = V_4;
|
|
NullCheck(L_0);
|
|
Il2CppChar L_2;
|
|
L_2 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, L_1, NULL);
|
|
V_5 = L_2;
|
|
Il2CppChar L_3 = V_5;
|
|
if ((((int32_t)L_3) == ((int32_t)((int32_t)92))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_4 = V_5;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)37)))))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
int32_t L_5 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
goto IL_00b1;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
Il2CppChar L_6 = V_5;
|
|
if ((((int32_t)L_6) == ((int32_t)((int32_t)39))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_7 = V_5;
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)34)))))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
bool L_8 = V_3;
|
|
V_3 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
bool L_9 = V_3;
|
|
if (L_9)
|
|
{
|
|
goto IL_00b1;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_10 = V_5;
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)100)))))
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
V_6 = 1;
|
|
goto IL_005c;
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
int32_t L_11 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
int32_t L_12 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
int32_t L_13 = V_4;
|
|
String_t* L_14 = ___0_pattern;
|
|
NullCheck(L_14);
|
|
int32_t L_15;
|
|
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_13, 1))) >= ((int32_t)L_15)))
|
|
{
|
|
goto IL_0076;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_16 = ___0_pattern;
|
|
int32_t L_17 = V_4;
|
|
NullCheck(L_16);
|
|
Il2CppChar L_18;
|
|
L_18 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_16, ((int32_t)il2cpp_codegen_add(L_17, 1)), NULL);
|
|
if ((((int32_t)L_18) == ((int32_t)((int32_t)100))))
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
int32_t L_19 = V_6;
|
|
if ((((int32_t)L_19) > ((int32_t)2)))
|
|
{
|
|
goto IL_00b1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_20 = V_2;
|
|
int32_t L_21 = L_20;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_21, 1));
|
|
V_1 = L_21;
|
|
goto IL_00b1;
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
Il2CppChar L_22 = V_5;
|
|
if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)77)))))
|
|
{
|
|
goto IL_00b1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_23 = V_2;
|
|
int32_t L_24 = L_23;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_24, 1));
|
|
V_0 = L_24;
|
|
goto IL_0097;
|
|
}
|
|
|
|
IL_0091:
|
|
{
|
|
int32_t L_25 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_25, 1));
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
int32_t L_26 = V_4;
|
|
String_t* L_27 = ___0_pattern;
|
|
NullCheck(L_27);
|
|
int32_t L_28;
|
|
L_28 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_27, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_26, 1))) >= ((int32_t)L_28)))
|
|
{
|
|
goto IL_00b1;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_29 = ___0_pattern;
|
|
int32_t L_30 = V_4;
|
|
NullCheck(L_29);
|
|
Il2CppChar L_31;
|
|
L_31 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_29, ((int32_t)il2cpp_codegen_add(L_30, 1)), NULL);
|
|
if ((((int32_t)L_31) == ((int32_t)((int32_t)77))))
|
|
{
|
|
goto IL_0091;
|
|
}
|
|
}
|
|
|
|
IL_00b1:
|
|
{
|
|
int32_t L_32 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
}
|
|
|
|
IL_00b7:
|
|
{
|
|
int32_t L_33 = V_4;
|
|
String_t* L_34 = ___0_pattern;
|
|
NullCheck(L_34);
|
|
int32_t L_35;
|
|
L_35 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_34, NULL);
|
|
if ((((int32_t)L_33) >= ((int32_t)L_35)))
|
|
{
|
|
goto IL_00c8;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_36 = V_2;
|
|
if ((((int32_t)L_36) < ((int32_t)2)))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
|
|
IL_00c8:
|
|
{
|
|
int32_t L_37 = V_0;
|
|
if (L_37)
|
|
{
|
|
goto IL_00d4;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_38 = V_1;
|
|
if ((!(((uint32_t)L_38) == ((uint32_t)1))))
|
|
{
|
|
goto IL_00d4;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_39 = ___2_order;
|
|
*((int32_t*)L_39) = (int32_t)6;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_00d4:
|
|
{
|
|
int32_t L_40 = V_1;
|
|
if (L_40)
|
|
{
|
|
goto IL_00e0;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_41 = V_0;
|
|
if ((!(((uint32_t)L_41) == ((uint32_t)1))))
|
|
{
|
|
goto IL_00e0;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_42 = ___2_order;
|
|
*((int32_t*)L_42) = (int32_t)7;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_00e0:
|
|
{
|
|
int32_t* L_43 = ___2_order;
|
|
*((int32_t*)L_43) = (int32_t)(-1);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::TryAdjustYear(System.DateTimeResult&,System.Int32,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_TryAdjustYear_m26365769C1D80C2BB5569B4C61474F644317CF4A (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t ___1_year, int32_t* ___2_adjustedYear, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
int32_t L_0 = ___1_year;
|
|
if ((((int32_t)L_0) >= ((int32_t)((int32_t)100))))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_1 = ___0_result;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_2 = L_1->___calendar_10;
|
|
int32_t L_3 = ___1_year;
|
|
NullCheck(L_2);
|
|
int32_t L_4;
|
|
L_4 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(28 /* System.Int32 System.Globalization.Calendar::ToFourDigitYear(System.Int32) */, L_2, L_3);
|
|
___1_year = L_4;
|
|
goto IL_001d;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0015;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0015:
|
|
{// begin catch(System.ArgumentOutOfRangeException)
|
|
int32_t* L_5 = ___2_adjustedYear;
|
|
*((int32_t*)L_5) = (int32_t)(-1);
|
|
V_0 = (bool)0;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION();
|
|
goto IL_0022;
|
|
}// end catch (depth: 1)
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t* L_6 = ___2_adjustedYear;
|
|
int32_t L_7 = ___1_year;
|
|
*((int32_t*)L_6) = (int32_t)L_7;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
bool L_8 = V_0;
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::SetDateYMD(System.DateTimeResult&,System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t ___1_year, int32_t ___2_month, int32_t ___3_day, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_1 = L_0->___calendar_10;
|
|
int32_t L_2 = ___1_year;
|
|
int32_t L_3 = ___2_month;
|
|
int32_t L_4 = ___3_day;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_5 = ___0_result;
|
|
int32_t L_6 = L_5->___era_7;
|
|
NullCheck(L_1);
|
|
bool L_7;
|
|
L_7 = VirtualFuncInvoker4< bool, int32_t, int32_t, int32_t, int32_t >::Invoke(26 /* System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32) */, L_1, L_2, L_3, L_4, L_6);
|
|
if (!L_7)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_8 = ___0_result;
|
|
int32_t L_9 = ___1_year;
|
|
int32_t L_10 = ___2_month;
|
|
int32_t L_11 = ___3_day;
|
|
DateTimeResult_SetDate_m5277FA9E5EB765F95AC12AAE43C9FB5AE93D9CEE(L_8, L_9, L_10, L_11, NULL);
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::SetDateMDY(System.DateTimeResult&,System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_SetDateMDY_mA0B9F27A64970C9BF92754F1B3D1183CCC8FF9F6 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t ___1_month, int32_t ___2_day, int32_t ___3_year, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = ___3_year;
|
|
int32_t L_2 = ___1_month;
|
|
int32_t L_3 = ___2_day;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_0, L_1, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::SetDateDMY(System.DateTimeResult&,System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_SetDateDMY_m47A14A57B35A265CF59A623C5061A1A2ABFF28AF (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t ___1_day, int32_t ___2_month, int32_t ___3_year, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = ___3_year;
|
|
int32_t L_2 = ___2_month;
|
|
int32_t L_3 = ___1_day;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_0, L_1, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::SetDateYDM(System.DateTimeResult&,System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_SetDateYDM_m32B11C9F65942A89F8A8A024DF1E56DB61E34AC3 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t ___1_year, int32_t ___2_day, int32_t ___3_month, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = ___1_year;
|
|
int32_t L_2 = ___3_month;
|
|
int32_t L_3 = ___2_day;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_0, L_1, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeParse::GetDefaultYear(System.DateTimeResult&,System.Globalization.DateTimeStyles&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeParse_GetDefaultYear_mE56B2E51B06360593D3706E4602814EFD46B8E34 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t* ___1_styles, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_1 = ___0_result;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_2 = L_1->___calendar_10;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_3 = ___0_result;
|
|
int32_t* L_4 = ___1_styles;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5;
|
|
L_5 = DateTimeParse_GetDateTimeNow_m12B3392F05B943A1834648699DBD5E24351FB544(L_3, L_4, NULL);
|
|
NullCheck(L_2);
|
|
int32_t L_6;
|
|
L_6 = VirtualFuncInvoker1< int32_t, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D >::Invoke(19 /* System.Int32 System.Globalization.Calendar::GetYear(System.DateTime) */, L_2, L_5);
|
|
L_0->___Year_0 = L_6;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_7 = ___0_result;
|
|
int32_t* L_8 = (&L_7->___flags_8);
|
|
int32_t* L_9 = L_8;
|
|
int32_t L_10 = *((int32_t*)L_9);
|
|
*((int32_t*)L_9) = (int32_t)((int32_t)(L_10|((int32_t)4096)));
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetDayOfNN(System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfNN_mD22CC6A4487C4D1C41183C997E1C9FB6E01B94B6 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t* ___1_styles, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___2_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___3_dtfi, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = L_0->___flags_8;
|
|
if (!((int32_t)((int32_t)L_1&((int32_t)128))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_2 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_2, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_3 = ___2_raw;
|
|
int32_t L_4;
|
|
L_4 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_3, 0, NULL);
|
|
V_0 = L_4;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_5 = ___2_raw;
|
|
int32_t L_6;
|
|
L_6 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_5, 1, NULL);
|
|
V_1 = L_6;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_7 = ___0_result;
|
|
int32_t* L_8 = ___1_styles;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
DateTimeParse_GetDefaultYear_mE56B2E51B06360593D3706E4602814EFD46B8E34(L_7, L_8, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_9 = ___3_dtfi;
|
|
NullCheck(L_9);
|
|
String_t* L_10;
|
|
L_10 = DateTimeFormatInfo_get_MonthDayPattern_m868752F743E864688FC5D251412A5657747EEEFD(L_9, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_11 = ___3_dtfi;
|
|
bool L_12;
|
|
L_12 = DateTimeParse_GetMonthDayOrder_m30E015ED29548A3C43FD72F05EB1C76BB47F3069(L_10, L_11, (&V_2), NULL);
|
|
if (L_12)
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_13 = ___0_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_14 = ___3_dtfi;
|
|
NullCheck(L_14);
|
|
String_t* L_15;
|
|
L_15 = DateTimeFormatInfo_get_MonthDayPattern_m868752F743E864688FC5D251412A5657747EEEFD(L_14, NULL);
|
|
DateTimeResult_SetFailure_m24BEDE43DC1A95BE46B6A6F9F37F74383FF01953(L_13, 3, _stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24, L_15, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
int32_t L_16 = V_2;
|
|
if ((!(((uint32_t)L_16) == ((uint32_t)6))))
|
|
{
|
|
goto IL_0076;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_17 = ___0_result;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_18 = ___0_result;
|
|
int32_t L_19 = L_18->___Year_0;
|
|
int32_t L_20 = V_0;
|
|
int32_t L_21 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_22;
|
|
L_22 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_17, L_19, L_20, L_21, NULL);
|
|
if (!L_22)
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_23 = ___0_result;
|
|
int32_t* L_24 = (&L_23->___flags_8);
|
|
int32_t* L_25 = L_24;
|
|
int32_t L_26 = *((int32_t*)L_25);
|
|
*((int32_t*)L_25) = (int32_t)((int32_t)(L_26|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_27 = ___0_result;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_28 = ___0_result;
|
|
int32_t L_29 = L_28->___Year_0;
|
|
int32_t L_30 = V_1;
|
|
int32_t L_31 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_32;
|
|
L_32 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_27, L_29, L_30, L_31, NULL);
|
|
if (!L_32)
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_33 = ___0_result;
|
|
int32_t* L_34 = (&L_33->___flags_8);
|
|
int32_t* L_35 = L_34;
|
|
int32_t L_36 = *((int32_t*)L_35);
|
|
*((int32_t*)L_35) = (int32_t)((int32_t)(L_36|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_37 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_37, NULL);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetDayOfNNN(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfNNN_mD3086C89CCAA727518CC519F5504BBAB4041506D (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = L_0->___flags_8;
|
|
if (!((int32_t)((int32_t)L_1&((int32_t)128))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_2 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_2, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_3 = ___1_raw;
|
|
int32_t L_4;
|
|
L_4 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_3, 0, NULL);
|
|
V_0 = L_4;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_5 = ___1_raw;
|
|
int32_t L_6;
|
|
L_6 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_5, 1, NULL);
|
|
V_1 = L_6;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_7 = ___1_raw;
|
|
int32_t L_8;
|
|
L_8 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_7, 2, NULL);
|
|
V_2 = L_8;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_9 = ___2_dtfi;
|
|
NullCheck(L_9);
|
|
String_t* L_10;
|
|
L_10 = DateTimeFormatInfo_get_ShortDatePattern_m8B5B3BC573F1836C9257B9CCB9C3C4B890E66A0D(L_9, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_11 = ___2_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_12;
|
|
L_12 = DateTimeParse_GetYearMonthDayOrder_m55496E783E5A65A2FA6DA3095C15D14A52339C80(L_10, L_11, (&V_3), NULL);
|
|
if (L_12)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_13 = ___0_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_14 = ___2_dtfi;
|
|
NullCheck(L_14);
|
|
String_t* L_15;
|
|
L_15 = DateTimeFormatInfo_get_ShortDatePattern_m8B5B3BC573F1836C9257B9CCB9C3C4B890E66A0D(L_14, NULL);
|
|
DateTimeResult_SetFailure_m24BEDE43DC1A95BE46B6A6F9F37F74383FF01953(L_13, 3, _stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24, L_15, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
int32_t L_16 = V_3;
|
|
if (L_16)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_17 = ___0_result;
|
|
int32_t L_18 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_19;
|
|
L_19 = DateTimeParse_TryAdjustYear_m26365769C1D80C2BB5569B4C61474F644317CF4A(L_17, L_18, (&V_4), NULL);
|
|
if (!L_19)
|
|
{
|
|
goto IL_0107;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_20 = ___0_result;
|
|
int32_t L_21 = V_4;
|
|
int32_t L_22 = V_1;
|
|
int32_t L_23 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_24;
|
|
L_24 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_20, L_21, L_22, L_23, NULL);
|
|
if (!L_24)
|
|
{
|
|
goto IL_0107;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_25 = ___0_result;
|
|
int32_t* L_26 = (&L_25->___flags_8);
|
|
int32_t* L_27 = L_26;
|
|
int32_t L_28 = *((int32_t*)L_27);
|
|
*((int32_t*)L_27) = (int32_t)((int32_t)(L_28|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
int32_t L_29 = V_3;
|
|
if ((!(((uint32_t)L_29) == ((uint32_t)1))))
|
|
{
|
|
goto IL_00af;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_30 = ___0_result;
|
|
int32_t L_31 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_32;
|
|
L_32 = DateTimeParse_TryAdjustYear_m26365769C1D80C2BB5569B4C61474F644317CF4A(L_30, L_31, (&V_4), NULL);
|
|
if (!L_32)
|
|
{
|
|
goto IL_0107;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_33 = ___0_result;
|
|
int32_t L_34 = V_0;
|
|
int32_t L_35 = V_1;
|
|
int32_t L_36 = V_4;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_37;
|
|
L_37 = DateTimeParse_SetDateMDY_mA0B9F27A64970C9BF92754F1B3D1183CCC8FF9F6(L_33, L_34, L_35, L_36, NULL);
|
|
if (!L_37)
|
|
{
|
|
goto IL_0107;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_38 = ___0_result;
|
|
int32_t* L_39 = (&L_38->___flags_8);
|
|
int32_t* L_40 = L_39;
|
|
int32_t L_41 = *((int32_t*)L_40);
|
|
*((int32_t*)L_40) = (int32_t)((int32_t)(L_41|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_00af:
|
|
{
|
|
int32_t L_42 = V_3;
|
|
if ((!(((uint32_t)L_42) == ((uint32_t)2))))
|
|
{
|
|
goto IL_00db;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_43 = ___0_result;
|
|
int32_t L_44 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_45;
|
|
L_45 = DateTimeParse_TryAdjustYear_m26365769C1D80C2BB5569B4C61474F644317CF4A(L_43, L_44, (&V_4), NULL);
|
|
if (!L_45)
|
|
{
|
|
goto IL_0107;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_46 = ___0_result;
|
|
int32_t L_47 = V_0;
|
|
int32_t L_48 = V_1;
|
|
int32_t L_49 = V_4;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_50;
|
|
L_50 = DateTimeParse_SetDateDMY_m47A14A57B35A265CF59A623C5061A1A2ABFF28AF(L_46, L_47, L_48, L_49, NULL);
|
|
if (!L_50)
|
|
{
|
|
goto IL_0107;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_51 = ___0_result;
|
|
int32_t* L_52 = (&L_51->___flags_8);
|
|
int32_t* L_53 = L_52;
|
|
int32_t L_54 = *((int32_t*)L_53);
|
|
*((int32_t*)L_53) = (int32_t)((int32_t)(L_54|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_00db:
|
|
{
|
|
int32_t L_55 = V_3;
|
|
if ((!(((uint32_t)L_55) == ((uint32_t)3))))
|
|
{
|
|
goto IL_0107;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_56 = ___0_result;
|
|
int32_t L_57 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_58;
|
|
L_58 = DateTimeParse_TryAdjustYear_m26365769C1D80C2BB5569B4C61474F644317CF4A(L_56, L_57, (&V_4), NULL);
|
|
if (!L_58)
|
|
{
|
|
goto IL_0107;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_59 = ___0_result;
|
|
int32_t L_60 = V_4;
|
|
int32_t L_61 = V_1;
|
|
int32_t L_62 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_63;
|
|
L_63 = DateTimeParse_SetDateYDM_m32B11C9F65942A89F8A8A024DF1E56DB61E34AC3(L_59, L_60, L_61, L_62, NULL);
|
|
if (!L_63)
|
|
{
|
|
goto IL_0107;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_64 = ___0_result;
|
|
int32_t* L_65 = (&L_64->___flags_8);
|
|
int32_t* L_66 = L_65;
|
|
int32_t L_67 = *((int32_t*)L_66);
|
|
*((int32_t*)L_66) = (int32_t)((int32_t)(L_67|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0107:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_68 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_68, NULL);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetDayOfMN(System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfMN_m8655BD2945C26B528C85D5E04485A8FC7D6291DC (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t* ___1_styles, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___2_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___3_dtfi, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = L_0->___flags_8;
|
|
if (!((int32_t)((int32_t)L_1&((int32_t)128))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_2 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_2, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_3 = ___3_dtfi;
|
|
NullCheck(L_3);
|
|
String_t* L_4;
|
|
L_4 = DateTimeFormatInfo_get_MonthDayPattern_m868752F743E864688FC5D251412A5657747EEEFD(L_3, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_5 = ___3_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = DateTimeParse_GetMonthDayOrder_m30E015ED29548A3C43FD72F05EB1C76BB47F3069(L_4, L_5, (&V_0), NULL);
|
|
if (L_6)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_7 = ___0_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_8 = ___3_dtfi;
|
|
NullCheck(L_8);
|
|
String_t* L_9;
|
|
L_9 = DateTimeFormatInfo_get_MonthDayPattern_m868752F743E864688FC5D251412A5657747EEEFD(L_8, NULL);
|
|
DateTimeResult_SetFailure_m24BEDE43DC1A95BE46B6A6F9F37F74383FF01953(L_7, 3, _stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24, L_9, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)7))))
|
|
{
|
|
goto IL_0091;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_11 = ___3_dtfi;
|
|
NullCheck(L_11);
|
|
String_t* L_12;
|
|
L_12 = DateTimeFormatInfo_get_YearMonthPattern_m98C6AAE1CA577D103C522991D843FCD5817EDF04(L_11, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_13 = ___3_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_14;
|
|
L_14 = DateTimeParse_GetYearMonthOrder_mFAB37BA13AEB39810B6344DBD80E744E260317B7(L_12, L_13, (&V_1), NULL);
|
|
if (L_14)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_15 = ___0_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_16 = ___3_dtfi;
|
|
NullCheck(L_16);
|
|
String_t* L_17;
|
|
L_17 = DateTimeFormatInfo_get_YearMonthPattern_m98C6AAE1CA577D103C522991D843FCD5817EDF04(L_16, NULL);
|
|
DateTimeResult_SetFailure_m24BEDE43DC1A95BE46B6A6F9F37F74383FF01953(L_15, 3, _stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24, L_17, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
int32_t L_18 = V_1;
|
|
if ((!(((uint32_t)L_18) == ((uint32_t)5))))
|
|
{
|
|
goto IL_0091;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_19 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_20 = ___2_raw;
|
|
int32_t L_21;
|
|
L_21 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_20, 0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_22;
|
|
L_22 = DateTimeParse_TryAdjustYear_m26365769C1D80C2BB5569B4C61474F644317CF4A(L_19, L_21, (&V_2), NULL);
|
|
if (!L_22)
|
|
{
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_23 = ___0_result;
|
|
int32_t L_24 = V_2;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_25 = ___2_raw;
|
|
int32_t L_26 = L_25->___month_2;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_27;
|
|
L_27 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_23, L_24, L_26, 1, NULL);
|
|
if (L_27)
|
|
{
|
|
goto IL_008f;
|
|
}
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_28 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_28, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_008f:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0091:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_29 = ___0_result;
|
|
int32_t* L_30 = ___1_styles;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
DateTimeParse_GetDefaultYear_mE56B2E51B06360593D3706E4602814EFD46B8E34(L_29, L_30, NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_31 = ___0_result;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_32 = ___0_result;
|
|
int32_t L_33 = L_32->___Year_0;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_34 = ___2_raw;
|
|
int32_t L_35 = L_34->___month_2;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_36 = ___2_raw;
|
|
int32_t L_37;
|
|
L_37 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_36, 0, NULL);
|
|
bool L_38;
|
|
L_38 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_31, L_33, L_35, L_37, NULL);
|
|
if (L_38)
|
|
{
|
|
goto IL_00bb;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_39 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_39, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00bb:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetHebrewDayOfNM(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetHebrewDayOfNM_mD4EA6F932655FB3210289787A90BA7F9557FCEF4 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_0 = ___2_dtfi;
|
|
NullCheck(L_0);
|
|
String_t* L_1;
|
|
L_1 = DateTimeFormatInfo_get_MonthDayPattern_m868752F743E864688FC5D251412A5657747EEEFD(L_0, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_2 = ___2_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = DateTimeParse_GetMonthDayOrder_m30E015ED29548A3C43FD72F05EB1C76BB47F3069(L_1, L_2, (&V_0), NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_4 = ___0_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_5 = ___2_dtfi;
|
|
NullCheck(L_5);
|
|
String_t* L_6;
|
|
L_6 = DateTimeFormatInfo_get_MonthDayPattern_m868752F743E864688FC5D251412A5657747EEEFD(L_5, NULL);
|
|
DateTimeResult_SetFailure_m24BEDE43DC1A95BE46B6A6F9F37F74383FF01953(L_4, 3, _stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24, L_6, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_7 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_8 = ___1_raw;
|
|
int32_t L_9 = L_8->___month_2;
|
|
L_7->___Month_1 = L_9;
|
|
int32_t L_10 = V_0;
|
|
if ((((int32_t)L_10) == ((int32_t)7)))
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = V_0;
|
|
if ((!(((uint32_t)L_11) == ((uint32_t)6))))
|
|
{
|
|
goto IL_006d;
|
|
}
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_12 = ___0_result;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_13 = L_12->___calendar_10;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_14 = ___0_result;
|
|
int32_t L_15 = L_14->___Year_0;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_16 = ___0_result;
|
|
int32_t L_17 = L_16->___Month_1;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_18 = ___1_raw;
|
|
int32_t L_19;
|
|
L_19 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_18, 0, NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_20 = ___0_result;
|
|
int32_t L_21 = L_20->___era_7;
|
|
NullCheck(L_13);
|
|
bool L_22;
|
|
L_22 = VirtualFuncInvoker4< bool, int32_t, int32_t, int32_t, int32_t >::Invoke(26 /* System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32) */, L_13, L_15, L_17, L_19, L_21);
|
|
if (!L_22)
|
|
{
|
|
goto IL_006d;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_23 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_24 = ___1_raw;
|
|
int32_t L_25;
|
|
L_25 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_24, 0, NULL);
|
|
L_23->___Day_2 = L_25;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_26 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_26, NULL);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetDayOfNM(System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfNM_m097A0070DFA787294F8D883E249A733269F79638 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t* ___1_styles, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___2_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___3_dtfi, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = L_0->___flags_8;
|
|
if (!((int32_t)((int32_t)L_1&((int32_t)128))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_2 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_2, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_3 = ___3_dtfi;
|
|
NullCheck(L_3);
|
|
String_t* L_4;
|
|
L_4 = DateTimeFormatInfo_get_MonthDayPattern_m868752F743E864688FC5D251412A5657747EEEFD(L_3, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_5 = ___3_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = DateTimeParse_GetMonthDayOrder_m30E015ED29548A3C43FD72F05EB1C76BB47F3069(L_4, L_5, (&V_0), NULL);
|
|
if (L_6)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_7 = ___0_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_8 = ___3_dtfi;
|
|
NullCheck(L_8);
|
|
String_t* L_9;
|
|
L_9 = DateTimeFormatInfo_get_MonthDayPattern_m868752F743E864688FC5D251412A5657747EEEFD(L_8, NULL);
|
|
DateTimeResult_SetFailure_m24BEDE43DC1A95BE46B6A6F9F37F74383FF01953(L_7, 3, _stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24, L_9, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)6))))
|
|
{
|
|
goto IL_0091;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_11 = ___3_dtfi;
|
|
NullCheck(L_11);
|
|
String_t* L_12;
|
|
L_12 = DateTimeFormatInfo_get_YearMonthPattern_m98C6AAE1CA577D103C522991D843FCD5817EDF04(L_11, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_13 = ___3_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_14;
|
|
L_14 = DateTimeParse_GetYearMonthOrder_mFAB37BA13AEB39810B6344DBD80E744E260317B7(L_12, L_13, (&V_1), NULL);
|
|
if (L_14)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_15 = ___0_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_16 = ___3_dtfi;
|
|
NullCheck(L_16);
|
|
String_t* L_17;
|
|
L_17 = DateTimeFormatInfo_get_YearMonthPattern_m98C6AAE1CA577D103C522991D843FCD5817EDF04(L_16, NULL);
|
|
DateTimeResult_SetFailure_m24BEDE43DC1A95BE46B6A6F9F37F74383FF01953(L_15, 3, _stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24, L_17, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
int32_t L_18 = V_1;
|
|
if ((!(((uint32_t)L_18) == ((uint32_t)4))))
|
|
{
|
|
goto IL_0091;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_19 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_20 = ___2_raw;
|
|
int32_t L_21;
|
|
L_21 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_20, 0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_22;
|
|
L_22 = DateTimeParse_TryAdjustYear_m26365769C1D80C2BB5569B4C61474F644317CF4A(L_19, L_21, (&V_2), NULL);
|
|
if (!L_22)
|
|
{
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_23 = ___0_result;
|
|
int32_t L_24 = V_2;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_25 = ___2_raw;
|
|
int32_t L_26 = L_25->___month_2;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_27;
|
|
L_27 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_23, L_24, L_26, 1, NULL);
|
|
if (L_27)
|
|
{
|
|
goto IL_008f;
|
|
}
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_28 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_28, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_008f:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0091:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_29 = ___0_result;
|
|
int32_t* L_30 = ___1_styles;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
DateTimeParse_GetDefaultYear_mE56B2E51B06360593D3706E4602814EFD46B8E34(L_29, L_30, NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_31 = ___0_result;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_32 = ___0_result;
|
|
int32_t L_33 = L_32->___Year_0;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_34 = ___2_raw;
|
|
int32_t L_35 = L_34->___month_2;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_36 = ___2_raw;
|
|
int32_t L_37;
|
|
L_37 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_36, 0, NULL);
|
|
bool L_38;
|
|
L_38 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_31, L_33, L_35, L_37, NULL);
|
|
if (L_38)
|
|
{
|
|
goto IL_00bb;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_39 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_39, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00bb:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetDayOfMNN(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfMNN_m0E6FFE70FC040B210A8AF4C8C69DA21F0CCBE629 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = L_0->___flags_8;
|
|
if (!((int32_t)((int32_t)L_1&((int32_t)128))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_2 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_2, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_3 = ___1_raw;
|
|
int32_t L_4;
|
|
L_4 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_3, 0, NULL);
|
|
V_0 = L_4;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_5 = ___1_raw;
|
|
int32_t L_6;
|
|
L_6 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_5, 1, NULL);
|
|
V_1 = L_6;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_7 = ___2_dtfi;
|
|
NullCheck(L_7);
|
|
String_t* L_8;
|
|
L_8 = DateTimeFormatInfo_get_ShortDatePattern_m8B5B3BC573F1836C9257B9CCB9C3C4B890E66A0D(L_7, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_9 = ___2_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_10;
|
|
L_10 = DateTimeParse_GetYearMonthDayOrder_m55496E783E5A65A2FA6DA3095C15D14A52339C80(L_8, L_9, (&V_2), NULL);
|
|
if (L_10)
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_11 = ___0_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_12 = ___2_dtfi;
|
|
NullCheck(L_12);
|
|
String_t* L_13;
|
|
L_13 = DateTimeFormatInfo_get_ShortDatePattern_m8B5B3BC573F1836C9257B9CCB9C3C4B890E66A0D(L_12, NULL);
|
|
DateTimeResult_SetFailure_m24BEDE43DC1A95BE46B6A6F9F37F74383FF01953(L_11, 3, _stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24, L_13, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
int32_t L_14 = V_2;
|
|
if ((!(((uint32_t)L_14) == ((uint32_t)1))))
|
|
{
|
|
goto IL_00e1;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_15 = ___0_result;
|
|
int32_t L_16 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_17;
|
|
L_17 = DateTimeParse_TryAdjustYear_m26365769C1D80C2BB5569B4C61474F644317CF4A(L_15, L_16, (&V_3), NULL);
|
|
if (!L_17)
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_18 = ___0_result;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_19 = L_18->___calendar_10;
|
|
int32_t L_20 = V_3;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_21 = ___1_raw;
|
|
int32_t L_22 = L_21->___month_2;
|
|
int32_t L_23 = V_0;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_24 = ___0_result;
|
|
int32_t L_25 = L_24->___era_7;
|
|
NullCheck(L_19);
|
|
bool L_26;
|
|
L_26 = VirtualFuncInvoker4< bool, int32_t, int32_t, int32_t, int32_t >::Invoke(26 /* System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32) */, L_19, L_20, L_22, L_23, L_25);
|
|
if (!L_26)
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_27 = ___0_result;
|
|
int32_t L_28 = V_3;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_29 = ___1_raw;
|
|
int32_t L_30 = L_29->___month_2;
|
|
int32_t L_31 = V_0;
|
|
DateTimeResult_SetDate_m5277FA9E5EB765F95AC12AAE43C9FB5AE93D9CEE(L_27, L_28, L_30, L_31, NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_32 = ___0_result;
|
|
int32_t* L_33 = (&L_32->___flags_8);
|
|
int32_t* L_34 = L_33;
|
|
int32_t L_35 = *((int32_t*)L_34);
|
|
*((int32_t*)L_34) = (int32_t)((int32_t)(L_35|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_36 = ___0_result;
|
|
int32_t L_37 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_38;
|
|
L_38 = DateTimeParse_TryAdjustYear_m26365769C1D80C2BB5569B4C61474F644317CF4A(L_36, L_37, (&V_3), NULL);
|
|
if (!L_38)
|
|
{
|
|
goto IL_0208;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_39 = ___0_result;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_40 = L_39->___calendar_10;
|
|
int32_t L_41 = V_3;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_42 = ___1_raw;
|
|
int32_t L_43 = L_42->___month_2;
|
|
int32_t L_44 = V_1;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_45 = ___0_result;
|
|
int32_t L_46 = L_45->___era_7;
|
|
NullCheck(L_40);
|
|
bool L_47;
|
|
L_47 = VirtualFuncInvoker4< bool, int32_t, int32_t, int32_t, int32_t >::Invoke(26 /* System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32) */, L_40, L_41, L_43, L_44, L_46);
|
|
if (!L_47)
|
|
{
|
|
goto IL_0208;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_48 = ___0_result;
|
|
int32_t L_49 = V_3;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_50 = ___1_raw;
|
|
int32_t L_51 = L_50->___month_2;
|
|
int32_t L_52 = V_1;
|
|
DateTimeResult_SetDate_m5277FA9E5EB765F95AC12AAE43C9FB5AE93D9CEE(L_48, L_49, L_51, L_52, NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_53 = ___0_result;
|
|
int32_t* L_54 = (&L_53->___flags_8);
|
|
int32_t* L_55 = L_54;
|
|
int32_t L_56 = *((int32_t*)L_55);
|
|
*((int32_t*)L_55) = (int32_t)((int32_t)(L_56|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_00e1:
|
|
{
|
|
int32_t L_57 = V_2;
|
|
if (L_57)
|
|
{
|
|
goto IL_0177;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_58 = ___0_result;
|
|
int32_t L_59 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_60;
|
|
L_60 = DateTimeParse_TryAdjustYear_m26365769C1D80C2BB5569B4C61474F644317CF4A(L_58, L_59, (&V_3), NULL);
|
|
if (!L_60)
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_61 = ___0_result;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_62 = L_61->___calendar_10;
|
|
int32_t L_63 = V_3;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_64 = ___1_raw;
|
|
int32_t L_65 = L_64->___month_2;
|
|
int32_t L_66 = V_1;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_67 = ___0_result;
|
|
int32_t L_68 = L_67->___era_7;
|
|
NullCheck(L_62);
|
|
bool L_69;
|
|
L_69 = VirtualFuncInvoker4< bool, int32_t, int32_t, int32_t, int32_t >::Invoke(26 /* System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32) */, L_62, L_63, L_65, L_66, L_68);
|
|
if (!L_69)
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_70 = ___0_result;
|
|
int32_t L_71 = V_3;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_72 = ___1_raw;
|
|
int32_t L_73 = L_72->___month_2;
|
|
int32_t L_74 = V_1;
|
|
DateTimeResult_SetDate_m5277FA9E5EB765F95AC12AAE43C9FB5AE93D9CEE(L_70, L_71, L_73, L_74, NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_75 = ___0_result;
|
|
int32_t* L_76 = (&L_75->___flags_8);
|
|
int32_t* L_77 = L_76;
|
|
int32_t L_78 = *((int32_t*)L_77);
|
|
*((int32_t*)L_77) = (int32_t)((int32_t)(L_78|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_79 = ___0_result;
|
|
int32_t L_80 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_81;
|
|
L_81 = DateTimeParse_TryAdjustYear_m26365769C1D80C2BB5569B4C61474F644317CF4A(L_79, L_80, (&V_3), NULL);
|
|
if (!L_81)
|
|
{
|
|
goto IL_0208;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_82 = ___0_result;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_83 = L_82->___calendar_10;
|
|
int32_t L_84 = V_3;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_85 = ___1_raw;
|
|
int32_t L_86 = L_85->___month_2;
|
|
int32_t L_87 = V_0;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_88 = ___0_result;
|
|
int32_t L_89 = L_88->___era_7;
|
|
NullCheck(L_83);
|
|
bool L_90;
|
|
L_90 = VirtualFuncInvoker4< bool, int32_t, int32_t, int32_t, int32_t >::Invoke(26 /* System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32) */, L_83, L_84, L_86, L_87, L_89);
|
|
if (!L_90)
|
|
{
|
|
goto IL_0208;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_91 = ___0_result;
|
|
int32_t L_92 = V_3;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_93 = ___1_raw;
|
|
int32_t L_94 = L_93->___month_2;
|
|
int32_t L_95 = V_0;
|
|
DateTimeResult_SetDate_m5277FA9E5EB765F95AC12AAE43C9FB5AE93D9CEE(L_91, L_92, L_94, L_95, NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_96 = ___0_result;
|
|
int32_t* L_97 = (&L_96->___flags_8);
|
|
int32_t* L_98 = L_97;
|
|
int32_t L_99 = *((int32_t*)L_98);
|
|
*((int32_t*)L_98) = (int32_t)((int32_t)(L_99|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0177:
|
|
{
|
|
int32_t L_100 = V_2;
|
|
if ((!(((uint32_t)L_100) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0208;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_101 = ___0_result;
|
|
int32_t L_102 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_103;
|
|
L_103 = DateTimeParse_TryAdjustYear_m26365769C1D80C2BB5569B4C61474F644317CF4A(L_101, L_102, (&V_3), NULL);
|
|
if (!L_103)
|
|
{
|
|
goto IL_01c3;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_104 = ___0_result;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_105 = L_104->___calendar_10;
|
|
int32_t L_106 = V_3;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_107 = ___1_raw;
|
|
int32_t L_108 = L_107->___month_2;
|
|
int32_t L_109 = V_0;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_110 = ___0_result;
|
|
int32_t L_111 = L_110->___era_7;
|
|
NullCheck(L_105);
|
|
bool L_112;
|
|
L_112 = VirtualFuncInvoker4< bool, int32_t, int32_t, int32_t, int32_t >::Invoke(26 /* System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32) */, L_105, L_106, L_108, L_109, L_111);
|
|
if (!L_112)
|
|
{
|
|
goto IL_01c3;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_113 = ___0_result;
|
|
int32_t L_114 = V_3;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_115 = ___1_raw;
|
|
int32_t L_116 = L_115->___month_2;
|
|
int32_t L_117 = V_0;
|
|
DateTimeResult_SetDate_m5277FA9E5EB765F95AC12AAE43C9FB5AE93D9CEE(L_113, L_114, L_116, L_117, NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_118 = ___0_result;
|
|
int32_t* L_119 = (&L_118->___flags_8);
|
|
int32_t* L_120 = L_119;
|
|
int32_t L_121 = *((int32_t*)L_120);
|
|
*((int32_t*)L_120) = (int32_t)((int32_t)(L_121|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_01c3:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_122 = ___0_result;
|
|
int32_t L_123 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_124;
|
|
L_124 = DateTimeParse_TryAdjustYear_m26365769C1D80C2BB5569B4C61474F644317CF4A(L_122, L_123, (&V_3), NULL);
|
|
if (!L_124)
|
|
{
|
|
goto IL_0208;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_125 = ___0_result;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_126 = L_125->___calendar_10;
|
|
int32_t L_127 = V_3;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_128 = ___1_raw;
|
|
int32_t L_129 = L_128->___month_2;
|
|
int32_t L_130 = V_1;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_131 = ___0_result;
|
|
int32_t L_132 = L_131->___era_7;
|
|
NullCheck(L_126);
|
|
bool L_133;
|
|
L_133 = VirtualFuncInvoker4< bool, int32_t, int32_t, int32_t, int32_t >::Invoke(26 /* System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32) */, L_126, L_127, L_129, L_130, L_132);
|
|
if (!L_133)
|
|
{
|
|
goto IL_0208;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_134 = ___0_result;
|
|
int32_t L_135 = V_3;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_136 = ___1_raw;
|
|
int32_t L_137 = L_136->___month_2;
|
|
int32_t L_138 = V_1;
|
|
DateTimeResult_SetDate_m5277FA9E5EB765F95AC12AAE43C9FB5AE93D9CEE(L_134, L_135, L_137, L_138, NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_139 = ___0_result;
|
|
int32_t* L_140 = (&L_139->___flags_8);
|
|
int32_t* L_141 = L_140;
|
|
int32_t L_142 = *((int32_t*)L_141);
|
|
*((int32_t*)L_141) = (int32_t)((int32_t)(L_142|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0208:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_143 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_143, NULL);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetDayOfYNN(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfYNN_m816F3FBCDC6AF274A29D1BD9C55D2A5D6E203528 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = L_0->___flags_8;
|
|
if (!((int32_t)((int32_t)L_1&((int32_t)128))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_2 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_2, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_3 = ___1_raw;
|
|
int32_t L_4;
|
|
L_4 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_3, 0, NULL);
|
|
V_0 = L_4;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_5 = ___1_raw;
|
|
int32_t L_6;
|
|
L_6 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_5, 1, NULL);
|
|
V_1 = L_6;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_7 = ___2_dtfi;
|
|
NullCheck(L_7);
|
|
String_t* L_8;
|
|
L_8 = DateTimeFormatInfo_get_ShortDatePattern_m8B5B3BC573F1836C9257B9CCB9C3C4B890E66A0D(L_7, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_9 = ___2_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_10;
|
|
L_10 = DateTimeParse_GetYearMonthDayOrder_m55496E783E5A65A2FA6DA3095C15D14A52339C80(L_8, L_9, (&V_2), NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = V_2;
|
|
if ((!(((uint32_t)L_11) == ((uint32_t)3))))
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_12 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_13 = ___1_raw;
|
|
int32_t L_14 = L_13->___year_3;
|
|
int32_t L_15 = V_1;
|
|
int32_t L_16 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_17;
|
|
L_17 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_12, L_14, L_15, L_16, NULL);
|
|
if (!L_17)
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_18 = ___0_result;
|
|
int32_t* L_19 = (&L_18->___flags_8);
|
|
int32_t* L_20 = L_19;
|
|
int32_t L_21 = *((int32_t*)L_20);
|
|
*((int32_t*)L_20) = (int32_t)((int32_t)(L_21|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_22 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_23 = ___1_raw;
|
|
int32_t L_24 = L_23->___year_3;
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_27;
|
|
L_27 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_22, L_24, L_25, L_26, NULL);
|
|
if (!L_27)
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_28 = ___0_result;
|
|
int32_t* L_29 = (&L_28->___flags_8);
|
|
int32_t* L_30 = L_29;
|
|
int32_t L_31 = *((int32_t*)L_30);
|
|
*((int32_t*)L_30) = (int32_t)((int32_t)(L_31|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_32 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_32, NULL);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetDayOfNNY(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfNNY_m2203BB15601556266B90698E9D73CFD02021D0AF (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = L_0->___flags_8;
|
|
if (!((int32_t)((int32_t)L_1&((int32_t)128))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_2 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_2, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_3 = ___1_raw;
|
|
int32_t L_4;
|
|
L_4 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_3, 0, NULL);
|
|
V_0 = L_4;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_5 = ___1_raw;
|
|
int32_t L_6;
|
|
L_6 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_5, 1, NULL);
|
|
V_1 = L_6;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_7 = ___2_dtfi;
|
|
NullCheck(L_7);
|
|
String_t* L_8;
|
|
L_8 = DateTimeFormatInfo_get_ShortDatePattern_m8B5B3BC573F1836C9257B9CCB9C3C4B890E66A0D(L_7, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_9 = ___2_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_10;
|
|
L_10 = DateTimeParse_GetYearMonthDayOrder_m55496E783E5A65A2FA6DA3095C15D14A52339C80(L_8, L_9, (&V_2), NULL);
|
|
if (L_10)
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_11 = ___0_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_12 = ___2_dtfi;
|
|
NullCheck(L_12);
|
|
String_t* L_13;
|
|
L_13 = DateTimeFormatInfo_get_ShortDatePattern_m8B5B3BC573F1836C9257B9CCB9C3C4B890E66A0D(L_12, NULL);
|
|
DateTimeResult_SetFailure_m24BEDE43DC1A95BE46B6A6F9F37F74383FF01953(L_11, 3, _stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24, L_13, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
int32_t L_14 = V_2;
|
|
if ((((int32_t)L_14) == ((int32_t)1)))
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_15 = V_2;
|
|
if (L_15)
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_16 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_17 = ___1_raw;
|
|
int32_t L_18 = L_17->___year_3;
|
|
int32_t L_19 = V_0;
|
|
int32_t L_20 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_21;
|
|
L_21 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_16, L_18, L_19, L_20, NULL);
|
|
if (!L_21)
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_22 = ___0_result;
|
|
int32_t* L_23 = (&L_22->___flags_8);
|
|
int32_t* L_24 = L_23;
|
|
int32_t L_25 = *((int32_t*)L_24);
|
|
*((int32_t*)L_24) = (int32_t)((int32_t)(L_25|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_26 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_27 = ___1_raw;
|
|
int32_t L_28 = L_27->___year_3;
|
|
int32_t L_29 = V_1;
|
|
int32_t L_30 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_31;
|
|
L_31 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_26, L_28, L_29, L_30, NULL);
|
|
if (!L_31)
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_32 = ___0_result;
|
|
int32_t* L_33 = (&L_32->___flags_8);
|
|
int32_t* L_34 = L_33;
|
|
int32_t L_35 = *((int32_t*)L_34);
|
|
*((int32_t*)L_34) = (int32_t)((int32_t)(L_35|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_36 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_36, NULL);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetDayOfYMN(System.DateTimeResult&,System.DateTimeRawInfo&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfYMN_mFFF3449C750D04BA6E9CE83AECF4B7DE16FF0642 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = L_0->___flags_8;
|
|
if (!((int32_t)((int32_t)L_1&((int32_t)128))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_2 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_2, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_3 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_4 = ___1_raw;
|
|
int32_t L_5 = L_4->___year_3;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_6 = ___1_raw;
|
|
int32_t L_7 = L_6->___month_2;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_8 = ___1_raw;
|
|
int32_t L_9;
|
|
L_9 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_8, 0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_10;
|
|
L_10 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_3, L_5, L_7, L_9, NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_11 = ___0_result;
|
|
int32_t* L_12 = (&L_11->___flags_8);
|
|
int32_t* L_13 = L_12;
|
|
int32_t L_14 = *((int32_t*)L_13);
|
|
*((int32_t*)L_13) = (int32_t)((int32_t)(L_14|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_15 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_15, NULL);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetDayOfYN(System.DateTimeResult&,System.DateTimeRawInfo&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfYN_mB78AB5FF5BD6C311C3AC88B5A85D5601C341D7AA (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = L_0->___flags_8;
|
|
if (!((int32_t)((int32_t)L_1&((int32_t)128))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_2 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_2, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_3 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_4 = ___1_raw;
|
|
int32_t L_5 = L_4->___year_3;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_6 = ___1_raw;
|
|
int32_t L_7;
|
|
L_7 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_6, 0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_8;
|
|
L_8 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_3, L_5, L_7, 1, NULL);
|
|
if (!L_8)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_9 = ___0_result;
|
|
int32_t* L_10 = (&L_9->___flags_8);
|
|
int32_t* L_11 = L_10;
|
|
int32_t L_12 = *((int32_t*)L_11);
|
|
*((int32_t*)L_11) = (int32_t)((int32_t)(L_12|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_13 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_13, NULL);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetDayOfYM(System.DateTimeResult&,System.DateTimeRawInfo&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDayOfYM_m28FF22A12675C0D1939C13AA512D93D8DA08370C (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = L_0->___flags_8;
|
|
if (!((int32_t)((int32_t)L_1&((int32_t)128))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_2 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_2, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_3 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_4 = ___1_raw;
|
|
int32_t L_5 = L_4->___year_3;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_6 = ___1_raw;
|
|
int32_t L_7 = L_6->___month_2;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_8;
|
|
L_8 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_3, L_5, L_7, 1, NULL);
|
|
if (!L_8)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_9 = ___0_result;
|
|
int32_t* L_10 = (&L_9->___flags_8);
|
|
int32_t* L_11 = L_10;
|
|
int32_t L_12 = *((int32_t*)L_11);
|
|
*((int32_t*)L_11) = (int32_t)((int32_t)(L_12|((int32_t)128)));
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_13 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_13, NULL);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeParse::AdjustTimeMark(System.Globalization.DateTimeFormatInfo,System.DateTimeRawInfo&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeParse_AdjustTimeMark_m1BD073173719E6B8681B9FB310E7166C2ACD3048 (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___0_dtfi, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_0 = ___1_raw;
|
|
int32_t L_1 = L_0->___timeMark_6;
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_2 = ___0_dtfi;
|
|
NullCheck(L_2);
|
|
String_t* L_3;
|
|
L_3 = DateTimeFormatInfo_get_AMDesignator_m132D601293E679B6FC624E88517B25246F6EC4CB(L_2, NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_4 = ___0_dtfi;
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = DateTimeFormatInfo_get_PMDesignator_m3B06ECAF8B79E1AAAF8159198A9334658EB1F2CC(L_4, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_6 = ___0_dtfi;
|
|
NullCheck(L_6);
|
|
String_t* L_7;
|
|
L_7 = DateTimeFormatInfo_get_AMDesignator_m132D601293E679B6FC624E88517B25246F6EC4CB(L_6, NULL);
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
|
|
if (L_8)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_9 = ___0_dtfi;
|
|
NullCheck(L_9);
|
|
String_t* L_10;
|
|
L_10 = DateTimeFormatInfo_get_PMDesignator_m3B06ECAF8B79E1AAAF8159198A9334658EB1F2CC(L_9, NULL);
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_10, NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_12 = ___1_raw;
|
|
L_12->___timeMark_6 = 0;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_13 = ___0_dtfi;
|
|
NullCheck(L_13);
|
|
String_t* L_14;
|
|
L_14 = DateTimeFormatInfo_get_PMDesignator_m3B06ECAF8B79E1AAAF8159198A9334658EB1F2CC(L_13, NULL);
|
|
NullCheck(L_14);
|
|
int32_t L_15;
|
|
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL);
|
|
if (L_15)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_16 = ___0_dtfi;
|
|
NullCheck(L_16);
|
|
String_t* L_17;
|
|
L_17 = DateTimeFormatInfo_get_AMDesignator_m132D601293E679B6FC624E88517B25246F6EC4CB(L_16, NULL);
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_17, NULL);
|
|
if (!L_18)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_19 = ___1_raw;
|
|
L_19->___timeMark_6 = 1;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::AdjustHour(System.Int32&,System.DateTimeParse/TM)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_AdjustHour_m1ACF46BC6F29D4CDFD4D6785838EECFE3963A397 (int32_t* ___0_hour, int32_t ___1_timeMark, const RuntimeMethod* method)
|
|
{
|
|
int32_t* G_B7_0 = NULL;
|
|
int32_t* G_B6_0 = NULL;
|
|
int32_t G_B8_0 = 0;
|
|
int32_t* G_B8_1 = NULL;
|
|
{
|
|
int32_t L_0 = ___1_timeMark;
|
|
if ((((int32_t)L_0) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___1_timeMark;
|
|
if (L_1)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_2 = ___0_hour;
|
|
int32_t L_3 = *((int32_t*)L_2);
|
|
if ((((int32_t)L_3) < ((int32_t)0)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_4 = ___0_hour;
|
|
int32_t L_5 = *((int32_t*)L_4);
|
|
if ((((int32_t)L_5) <= ((int32_t)((int32_t)12))))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
int32_t* L_6 = ___0_hour;
|
|
int32_t* L_7 = ___0_hour;
|
|
int32_t L_8 = *((int32_t*)L_7);
|
|
G_B6_0 = L_6;
|
|
if ((((int32_t)L_8) == ((int32_t)((int32_t)12))))
|
|
{
|
|
G_B7_0 = L_6;
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_9 = ___0_hour;
|
|
int32_t L_10 = *((int32_t*)L_9);
|
|
G_B8_0 = L_10;
|
|
G_B8_1 = G_B6_0;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
G_B8_0 = 0;
|
|
G_B8_1 = G_B7_0;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
*((int32_t*)G_B8_1) = (int32_t)G_B8_0;
|
|
goto IL_003d;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t* L_11 = ___0_hour;
|
|
int32_t L_12 = *((int32_t*)L_11);
|
|
if ((((int32_t)L_12) < ((int32_t)0)))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_13 = ___0_hour;
|
|
int32_t L_14 = *((int32_t*)L_13);
|
|
if ((((int32_t)L_14) <= ((int32_t)((int32_t)23))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
int32_t* L_15 = ___0_hour;
|
|
int32_t L_16 = *((int32_t*)L_15);
|
|
if ((((int32_t)L_16) >= ((int32_t)((int32_t)12))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_17 = ___0_hour;
|
|
int32_t* L_18 = ___0_hour;
|
|
int32_t L_19 = *((int32_t*)L_18);
|
|
*((int32_t*)L_17) = (int32_t)((int32_t)il2cpp_codegen_add(L_19, ((int32_t)12)));
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetTimeOfN(System.DateTimeResult&,System.DateTimeRawInfo&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetTimeOfN_m0A36C0793C91E4A721C06FD56177FA594AD377B7 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = L_0->___flags_8;
|
|
if (!((int32_t)((int32_t)L_1&((int32_t)64))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_2 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_2, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_3 = ___1_raw;
|
|
int32_t L_4 = L_3->___timeMark_6;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_5 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_5, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_6 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_7 = ___1_raw;
|
|
int32_t L_8;
|
|
L_8 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_7, 0, NULL);
|
|
L_6->___Hour_3 = L_8;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_9 = ___0_result;
|
|
int32_t* L_10 = (&L_9->___flags_8);
|
|
int32_t* L_11 = L_10;
|
|
int32_t L_12 = *((int32_t*)L_11);
|
|
*((int32_t*)L_11) = (int32_t)((int32_t)(L_12|((int32_t)64)));
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetTimeOfNN(System.DateTimeResult&,System.DateTimeRawInfo&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetTimeOfNN_mB43596CCEF17A01D6DB03384A160026422A3E418 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = L_0->___flags_8;
|
|
if (!((int32_t)((int32_t)L_1&((int32_t)64))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_2 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_2, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_3 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_4 = ___1_raw;
|
|
int32_t L_5;
|
|
L_5 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_4, 0, NULL);
|
|
L_3->___Hour_3 = L_5;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_6 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_7 = ___1_raw;
|
|
int32_t L_8;
|
|
L_8 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_7, 1, NULL);
|
|
L_6->___Minute_4 = L_8;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_9 = ___0_result;
|
|
int32_t* L_10 = (&L_9->___flags_8);
|
|
int32_t* L_11 = L_10;
|
|
int32_t L_12 = *((int32_t*)L_11);
|
|
*((int32_t*)L_11) = (int32_t)((int32_t)(L_12|((int32_t)64)));
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetTimeOfNNN(System.DateTimeResult&,System.DateTimeRawInfo&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetTimeOfNNN_m4711F85847B4CB5AEBD8C5EB7130F7510709DEDE (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = L_0->___flags_8;
|
|
if (!((int32_t)((int32_t)L_1&((int32_t)64))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_2 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_2, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_3 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_4 = ___1_raw;
|
|
int32_t L_5;
|
|
L_5 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_4, 0, NULL);
|
|
L_3->___Hour_3 = L_5;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_6 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_7 = ___1_raw;
|
|
int32_t L_8;
|
|
L_8 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_7, 1, NULL);
|
|
L_6->___Minute_4 = L_8;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_9 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_10 = ___1_raw;
|
|
int32_t L_11;
|
|
L_11 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_10, 2, NULL);
|
|
L_9->___Second_5 = L_11;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_12 = ___0_result;
|
|
int32_t* L_13 = (&L_12->___flags_8);
|
|
int32_t* L_14 = L_13;
|
|
int32_t L_15 = *((int32_t*)L_14);
|
|
*((int32_t*)L_14) = (int32_t)((int32_t)(L_15|((int32_t)64)));
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetDateOfDSN(System.DateTimeResult&,System.DateTimeRawInfo&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDateOfDSN_m6B6BBC576E3DE54963D2DA4D2A46FE1833253299 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_0 = ___1_raw;
|
|
int32_t L_1 = L_0->___numCount_1;
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_2 = ___0_result;
|
|
int32_t L_3 = L_2->___Day_2;
|
|
if ((((int32_t)L_3) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_4 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_4, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_5 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_6 = ___1_raw;
|
|
int32_t L_7;
|
|
L_7 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_6, 0, NULL);
|
|
L_5->___Day_2 = L_7;
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetDateOfNDS(System.DateTimeResult&,System.DateTimeRawInfo&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDateOfNDS_m58F710C09D1EBE97FC3D86F21429502D943990B5 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = L_0->___Month_1;
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_2 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_2, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_3 = ___0_result;
|
|
int32_t L_4 = L_3->___Year_0;
|
|
if ((((int32_t)L_4) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_5 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_5, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_6 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_7 = ___1_raw;
|
|
int32_t L_8;
|
|
L_8 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_7, 0, NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_9 = ___0_result;
|
|
int32_t* L_10 = (&L_9->___Year_0);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_11;
|
|
L_11 = DateTimeParse_TryAdjustYear_m26365769C1D80C2BB5569B4C61474F644317CF4A(L_6, L_8, L_10, NULL);
|
|
if (L_11)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_12 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_12, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_13 = ___0_result;
|
|
L_13->___Day_2 = 1;
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::GetDateOfNNDS(System.DateTimeResult&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_GetDateOfNNDS_mCAC1D8ADCC1EAFC4BEE0C491F8D42C59C7D1BAEE (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = L_0->___flags_8;
|
|
if (!((int32_t)((int32_t)L_1&1)))
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_2 = ___0_result;
|
|
int32_t L_3 = L_2->___flags_8;
|
|
if (((int32_t)((int32_t)L_3&2)))
|
|
{
|
|
goto IL_00f9;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_4 = ___0_result;
|
|
int32_t L_5 = L_4->___flags_8;
|
|
if (((int32_t)((int32_t)L_5&4)))
|
|
{
|
|
goto IL_00f9;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_6 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_7 = ___1_raw;
|
|
int32_t L_8 = L_7->___year_3;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_9 = ___0_result;
|
|
int32_t* L_10 = (&L_9->___Year_0);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_11;
|
|
L_11 = DateTimeParse_TryAdjustYear_m26365769C1D80C2BB5569B4C61474F644317CF4A(L_6, L_8, L_10, NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_00f9;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_12 = ___0_result;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_13 = ___0_result;
|
|
int32_t L_14 = L_13->___Year_0;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_15 = ___1_raw;
|
|
int32_t L_16;
|
|
L_16 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_15, 0, NULL);
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_17 = ___1_raw;
|
|
int32_t L_18;
|
|
L_18 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_17, 1, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_19;
|
|
L_19 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_12, L_14, L_16, L_18, NULL);
|
|
if (!L_19)
|
|
{
|
|
goto IL_00f9;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_20 = ___0_result;
|
|
int32_t L_21 = L_20->___flags_8;
|
|
if (!((int32_t)((int32_t)L_21&2)))
|
|
{
|
|
goto IL_00f9;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_22 = ___0_result;
|
|
int32_t L_23 = L_22->___flags_8;
|
|
if (((int32_t)((int32_t)L_23&1)))
|
|
{
|
|
goto IL_00f9;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_24 = ___0_result;
|
|
int32_t L_25 = L_24->___flags_8;
|
|
if (((int32_t)((int32_t)L_25&4)))
|
|
{
|
|
goto IL_00f9;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_26 = ___2_dtfi;
|
|
NullCheck(L_26);
|
|
String_t* L_27;
|
|
L_27 = DateTimeFormatInfo_get_ShortDatePattern_m8B5B3BC573F1836C9257B9CCB9C3C4B890E66A0D(L_26, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_28 = ___2_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_29;
|
|
L_29 = DateTimeParse_GetYearMonthDayOrder_m55496E783E5A65A2FA6DA3095C15D14A52339C80(L_27, L_28, (&V_0), NULL);
|
|
if (L_29)
|
|
{
|
|
goto IL_00a4;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_30 = ___0_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_31 = ___2_dtfi;
|
|
NullCheck(L_31);
|
|
String_t* L_32;
|
|
L_32 = DateTimeFormatInfo_get_ShortDatePattern_m8B5B3BC573F1836C9257B9CCB9C3C4B890E66A0D(L_31, NULL);
|
|
DateTimeResult_SetFailure_m24BEDE43DC1A95BE46B6A6F9F37F74383FF01953(L_30, 3, _stringLiteral2C154FDD6479BB0DFCA8AAC5E34CF91832191F24, L_32, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00a4:
|
|
{
|
|
int32_t L_33 = V_0;
|
|
if (L_33)
|
|
{
|
|
goto IL_00d0;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_34 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_35 = ___1_raw;
|
|
int32_t L_36;
|
|
L_36 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_35, 0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_37;
|
|
L_37 = DateTimeParse_TryAdjustYear_m26365769C1D80C2BB5569B4C61474F644317CF4A(L_34, L_36, (&V_1), NULL);
|
|
if (!L_37)
|
|
{
|
|
goto IL_00f9;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_38 = ___0_result;
|
|
int32_t L_39 = V_1;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_40 = ___0_result;
|
|
int32_t L_41 = L_40->___Month_1;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_42 = ___1_raw;
|
|
int32_t L_43;
|
|
L_43 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_42, 1, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_44;
|
|
L_44 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_38, L_39, L_41, L_43, NULL);
|
|
if (!L_44)
|
|
{
|
|
goto IL_00f9;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_00d0:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_45 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_46 = ___1_raw;
|
|
int32_t L_47;
|
|
L_47 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_46, 1, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_48;
|
|
L_48 = DateTimeParse_TryAdjustYear_m26365769C1D80C2BB5569B4C61474F644317CF4A(L_45, L_47, (&V_1), NULL);
|
|
if (!L_48)
|
|
{
|
|
goto IL_00f9;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_49 = ___0_result;
|
|
int32_t L_50 = V_1;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_51 = ___0_result;
|
|
int32_t L_52 = L_51->___Month_1;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_53 = ___1_raw;
|
|
int32_t L_54;
|
|
L_54 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_53, 0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_55;
|
|
L_55 = DateTimeParse_SetDateYMD_m43E0BB228CE3E82339815149AADAB68A00264EC2(L_49, L_50, L_52, L_54, NULL);
|
|
if (!L_55)
|
|
{
|
|
goto IL_00f9;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_00f9:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_56 = ___0_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_56, NULL);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::ProcessDateTimeSuffix(System.DateTimeResult&,System.DateTimeRawInfo&,System.DateTimeToken&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_ProcessDateTimeSuffix_m89FF28A0D52FEC3359FE56ABD0D797B5FA86D6C5 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___1_raw, DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* ___2_dtok, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_0 = ___2_dtok;
|
|
int32_t L_1 = L_0->___suffix_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) > ((int32_t)((int32_t)2560))))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_3) == ((int32_t)((int32_t)2048))))
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_4) == ((int32_t)((int32_t)2304))))
|
|
{
|
|
goto IL_0086;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_0;
|
|
if ((((int32_t)L_5) == ((int32_t)((int32_t)2560))))
|
|
{
|
|
goto IL_00b7;
|
|
}
|
|
}
|
|
{
|
|
goto IL_014d;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
int32_t L_6 = V_0;
|
|
if ((((int32_t)L_6) == ((int32_t)((int32_t)2816))))
|
|
{
|
|
goto IL_00dc;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)3072))))
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = V_0;
|
|
if ((((int32_t)L_8) == ((int32_t)((int32_t)3328))))
|
|
{
|
|
goto IL_0128;
|
|
}
|
|
}
|
|
{
|
|
goto IL_014d;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_9 = ___0_result;
|
|
int32_t L_10 = L_9->___flags_8;
|
|
if (!((int32_t)((int32_t)L_10&1)))
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_11 = ___0_result;
|
|
int32_t* L_12 = (&L_11->___flags_8);
|
|
int32_t* L_13 = L_12;
|
|
int32_t L_14 = *((int32_t*)L_13);
|
|
*((int32_t*)L_13) = (int32_t)((int32_t)(L_14|1));
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_15 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_16 = ___1_raw;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_17 = ___2_dtok;
|
|
int32_t L_18 = L_17->___num_2;
|
|
int32_t L_19 = L_18;
|
|
V_1 = L_19;
|
|
L_16->___year_3 = L_19;
|
|
int32_t L_20 = V_1;
|
|
L_15->___Year_0 = L_20;
|
|
goto IL_014d;
|
|
}
|
|
|
|
IL_0086:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_21 = ___0_result;
|
|
int32_t L_22 = L_21->___flags_8;
|
|
if (!((int32_t)((int32_t)L_22&2)))
|
|
{
|
|
goto IL_0092;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0092:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_23 = ___0_result;
|
|
int32_t* L_24 = (&L_23->___flags_8);
|
|
int32_t* L_25 = L_24;
|
|
int32_t L_26 = *((int32_t*)L_25);
|
|
*((int32_t*)L_25) = (int32_t)((int32_t)(L_26|2));
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_27 = ___0_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_28 = ___1_raw;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_29 = ___2_dtok;
|
|
int32_t L_30 = L_29->___num_2;
|
|
int32_t L_31 = L_30;
|
|
V_1 = L_31;
|
|
L_28->___month_2 = L_31;
|
|
int32_t L_32 = V_1;
|
|
L_27->___Month_1 = L_32;
|
|
goto IL_014d;
|
|
}
|
|
|
|
IL_00b7:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_33 = ___0_result;
|
|
int32_t L_34 = L_33->___flags_8;
|
|
if (!((int32_t)((int32_t)L_34&4)))
|
|
{
|
|
goto IL_00c3;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00c3:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_35 = ___0_result;
|
|
int32_t* L_36 = (&L_35->___flags_8);
|
|
int32_t* L_37 = L_36;
|
|
int32_t L_38 = *((int32_t*)L_37);
|
|
*((int32_t*)L_37) = (int32_t)((int32_t)(L_38|4));
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_39 = ___0_result;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_40 = ___2_dtok;
|
|
int32_t L_41 = L_40->___num_2;
|
|
L_39->___Day_2 = L_41;
|
|
goto IL_014d;
|
|
}
|
|
|
|
IL_00dc:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_42 = ___0_result;
|
|
int32_t L_43 = L_42->___flags_8;
|
|
if (!((int32_t)((int32_t)L_43&8)))
|
|
{
|
|
goto IL_00e8;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00e8:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_44 = ___0_result;
|
|
int32_t* L_45 = (&L_44->___flags_8);
|
|
int32_t* L_46 = L_45;
|
|
int32_t L_47 = *((int32_t*)L_46);
|
|
*((int32_t*)L_46) = (int32_t)((int32_t)(L_47|8));
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_48 = ___0_result;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_49 = ___2_dtok;
|
|
int32_t L_50 = L_49->___num_2;
|
|
L_48->___Hour_3 = L_50;
|
|
goto IL_014d;
|
|
}
|
|
|
|
IL_0101:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_51 = ___0_result;
|
|
int32_t L_52 = L_51->___flags_8;
|
|
if (!((int32_t)((int32_t)L_52&((int32_t)16))))
|
|
{
|
|
goto IL_010e;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_010e:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_53 = ___0_result;
|
|
int32_t* L_54 = (&L_53->___flags_8);
|
|
int32_t* L_55 = L_54;
|
|
int32_t L_56 = *((int32_t*)L_55);
|
|
*((int32_t*)L_55) = (int32_t)((int32_t)(L_56|((int32_t)16)));
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_57 = ___0_result;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_58 = ___2_dtok;
|
|
int32_t L_59 = L_58->___num_2;
|
|
L_57->___Minute_4 = L_59;
|
|
goto IL_014d;
|
|
}
|
|
|
|
IL_0128:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_60 = ___0_result;
|
|
int32_t L_61 = L_60->___flags_8;
|
|
if (!((int32_t)((int32_t)L_61&((int32_t)32))))
|
|
{
|
|
goto IL_0135;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0135:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_62 = ___0_result;
|
|
int32_t* L_63 = (&L_62->___flags_8);
|
|
int32_t* L_64 = L_63;
|
|
int32_t L_65 = *((int32_t*)L_64);
|
|
*((int32_t*)L_64) = (int32_t)((int32_t)(L_65|((int32_t)32)));
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_66 = ___0_result;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* L_67 = ___2_dtok;
|
|
int32_t L_68 = L_67->___num_2;
|
|
L_66->___Second_5 = L_68;
|
|
}
|
|
|
|
IL_014d:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::ProcessHebrewTerminalState(System.DateTimeParse/DS,System.__DTString&,System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_ProcessHebrewTerminalState_m78C00EA31E59EEE2D083BAD9151DD22E3CBA834D (int32_t ___0_dps, __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___1_str, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___2_result, int32_t* ___3_styles, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___4_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___5_dtfi, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EE55018ADF7DD670653986FF76F19BB86A91162);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___0_dps;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, ((int32_t)23))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_011d;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_011d;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_01b4;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_01b4;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_01b4;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_01b4;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_01b4;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_01b4;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_015e;
|
|
}
|
|
case 11:
|
|
{
|
|
goto IL_0190;
|
|
}
|
|
case 12:
|
|
{
|
|
goto IL_019c;
|
|
}
|
|
case 13:
|
|
{
|
|
goto IL_01a8;
|
|
}
|
|
case 14:
|
|
{
|
|
goto IL_01b4;
|
|
}
|
|
case 15:
|
|
{
|
|
goto IL_00c9;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_01b4;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_1 = ___4_raw;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_2 = ___4_raw;
|
|
int32_t L_3;
|
|
L_3 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_2, 1, NULL);
|
|
L_1->___year_3 = L_3;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_4 = ___5_dtfi;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_5 = ___4_raw;
|
|
int32_t* L_6 = (&L_5->___year_3);
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_7 = ___4_raw;
|
|
int32_t* L_8 = (&L_7->___month_2);
|
|
NullCheck(L_4);
|
|
bool L_9;
|
|
L_9 = DateTimeFormatInfo_YearMonthAdjustment_m92A876ED6E935255CFFBFA4BD022D293181436EF(L_4, L_6, L_8, (bool)1, NULL);
|
|
if (L_9)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_10 = ___2_result;
|
|
DateTimeResult_SetFailure_m84403A0901C5114A46BB7F56E0208072C95AFB2A(L_10, 7, _stringLiteral3EE55018ADF7DD670653986FF76F19BB86A91162, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_11 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_12 = ___4_raw;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_13 = ___5_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_14;
|
|
L_14 = DateTimeParse_GetDayOfMNN_m0E6FFE70FC040B210A8AF4C8C69DA21F0CCBE629(L_11, L_12, L_13, NULL);
|
|
if (L_14)
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_15 = ___5_dtfi;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_16 = ___4_raw;
|
|
int32_t* L_17 = (&L_16->___year_3);
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_18 = ___4_raw;
|
|
int32_t* L_19 = (&L_18->___month_2);
|
|
NullCheck(L_15);
|
|
bool L_20;
|
|
L_20 = DateTimeFormatInfo_YearMonthAdjustment_m92A876ED6E935255CFFBFA4BD022D293181436EF(L_15, L_17, L_19, (bool)1, NULL);
|
|
if (L_20)
|
|
{
|
|
goto IL_00ba;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_21 = ___2_result;
|
|
DateTimeResult_SetFailure_m84403A0901C5114A46BB7F56E0208072C95AFB2A(L_21, 7, _stringLiteral3EE55018ADF7DD670653986FF76F19BB86A91162, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00ba:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_22 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_23 = ___4_raw;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_24;
|
|
L_24 = DateTimeParse_GetDayOfYMN_mFFF3449C750D04BA6E9CE83AECF4B7DE16FF0642(L_22, L_23, NULL);
|
|
if (L_24)
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00c9:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_25 = ___4_raw;
|
|
int32_t L_26 = L_25->___year_3;
|
|
if ((((int32_t)L_26) >= ((int32_t)((int32_t)1000))))
|
|
{
|
|
goto IL_00e7;
|
|
}
|
|
}
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_27 = ___4_raw;
|
|
int32_t* L_28 = (&L_27->___year_3);
|
|
int32_t* L_29 = L_28;
|
|
int32_t L_30 = *((int32_t*)L_29);
|
|
*((int32_t*)L_29) = (int32_t)((int32_t)il2cpp_codegen_add(L_30, ((int32_t)5000)));
|
|
}
|
|
|
|
IL_00e7:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_31 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_32 = ___4_raw;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_33 = ___5_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_34;
|
|
L_34 = DateTimeParse_GetDayOfNNY_m2203BB15601556266B90698E9D73CFD02021D0AF(L_31, L_32, L_33, NULL);
|
|
if (L_34)
|
|
{
|
|
goto IL_00f5;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00f5:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_35 = ___5_dtfi;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_36 = ___2_result;
|
|
int32_t* L_37 = (&L_36->___Year_0);
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_38 = ___4_raw;
|
|
int32_t* L_39 = (&L_38->___month_2);
|
|
NullCheck(L_35);
|
|
bool L_40;
|
|
L_40 = DateTimeFormatInfo_YearMonthAdjustment_m92A876ED6E935255CFFBFA4BD022D293181436EF(L_35, L_37, L_39, (bool)1, NULL);
|
|
if (L_40)
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_41 = ___2_result;
|
|
DateTimeResult_SetFailure_m84403A0901C5114A46BB7F56E0208072C95AFB2A(L_41, 7, _stringLiteral3EE55018ADF7DD670653986FF76F19BB86A91162, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_011d:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_42 = ___2_result;
|
|
int32_t* L_43 = ___3_styles;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
DateTimeParse_GetDefaultYear_mE56B2E51B06360593D3706E4602814EFD46B8E34(L_42, L_43, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_44 = ___5_dtfi;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_45 = ___2_result;
|
|
int32_t* L_46 = (&L_45->___Year_0);
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_47 = ___4_raw;
|
|
int32_t* L_48 = (&L_47->___month_2);
|
|
NullCheck(L_44);
|
|
bool L_49;
|
|
L_49 = DateTimeFormatInfo_YearMonthAdjustment_m92A876ED6E935255CFFBFA4BD022D293181436EF(L_44, L_46, L_48, (bool)1, NULL);
|
|
if (L_49)
|
|
{
|
|
goto IL_0149;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_50 = ___2_result;
|
|
DateTimeResult_SetFailure_m84403A0901C5114A46BB7F56E0208072C95AFB2A(L_50, 7, _stringLiteral3EE55018ADF7DD670653986FF76F19BB86A91162, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0149:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
bool L_51;
|
|
L_51 = GlobalizationMode_get_Invariant_m07C027203B17E9B629D292376366608B7DDB2903_inline(NULL);
|
|
if (L_51)
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_52 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_53 = ___4_raw;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_54 = ___5_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_55;
|
|
L_55 = DateTimeParse_GetHebrewDayOfNM_mD4EA6F932655FB3210289787A90BA7F9557FCEF4(L_52, L_53, L_54, NULL);
|
|
if (L_55)
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_015e:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_56 = ___5_dtfi;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_57 = ___4_raw;
|
|
int32_t* L_58 = (&L_57->___year_3);
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_59 = ___4_raw;
|
|
int32_t* L_60 = (&L_59->___month_2);
|
|
NullCheck(L_56);
|
|
bool L_61;
|
|
L_61 = DateTimeFormatInfo_YearMonthAdjustment_m92A876ED6E935255CFFBFA4BD022D293181436EF(L_56, L_58, L_60, (bool)1, NULL);
|
|
if (L_61)
|
|
{
|
|
goto IL_0184;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_62 = ___2_result;
|
|
DateTimeResult_SetFailure_m84403A0901C5114A46BB7F56E0208072C95AFB2A(L_62, 7, _stringLiteral3EE55018ADF7DD670653986FF76F19BB86A91162, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0184:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_63 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_64 = ___4_raw;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_65;
|
|
L_65 = DateTimeParse_GetDayOfYM_m28FF22A12675C0D1939C13AA512D93D8DA08370C(L_63, L_64, NULL);
|
|
if (L_65)
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0190:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_66 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_67 = ___4_raw;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_68;
|
|
L_68 = DateTimeParse_GetTimeOfN_m0A36C0793C91E4A721C06FD56177FA594AD377B7(L_66, L_67, NULL);
|
|
if (L_68)
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_019c:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_69 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_70 = ___4_raw;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_71;
|
|
L_71 = DateTimeParse_GetTimeOfNN_mB43596CCEF17A01D6DB03384A160026422A3E418(L_69, L_70, NULL);
|
|
if (L_71)
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_01a8:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_72 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_73 = ___4_raw;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_74;
|
|
L_74 = DateTimeParse_GetTimeOfNNN_m4711F85847B4CB5AEBD8C5EB7130F7510709DEDE(L_72, L_73, NULL);
|
|
if (L_74)
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_01b4:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_75 = ___2_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_75, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_01bc:
|
|
{
|
|
int32_t L_76 = ___0_dps;
|
|
if ((((int32_t)L_76) <= ((int32_t)((int32_t)20))))
|
|
{
|
|
goto IL_01c9;
|
|
}
|
|
}
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_77 = ___4_raw;
|
|
L_77->___numCount_1 = 0;
|
|
}
|
|
|
|
IL_01c9:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::ProcessTerminalState(System.DateTimeParse/DS,System.__DTString&,System.DateTimeResult&,System.Globalization.DateTimeStyles&,System.DateTimeRawInfo&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_ProcessTerminalState_m1635E1524D64F67289FC2CBAD1FCDBC948EC1474 (int32_t ___0_dps, __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___1_str, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___2_result, int32_t* ___3_styles, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___4_raw, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___5_dtfi, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)1;
|
|
int32_t L_0 = ___0_dps;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, ((int32_t)21))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_009b;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0112;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_011d;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_0128;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_00b2;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_00cc;
|
|
}
|
|
case 11:
|
|
{
|
|
goto IL_00d7;
|
|
}
|
|
case 12:
|
|
{
|
|
goto IL_00e2;
|
|
}
|
|
case 13:
|
|
{
|
|
goto IL_00ed;
|
|
}
|
|
case 14:
|
|
{
|
|
goto IL_00f8;
|
|
}
|
|
case 15:
|
|
{
|
|
goto IL_0103;
|
|
}
|
|
case 16:
|
|
{
|
|
goto IL_010e;
|
|
}
|
|
case 17:
|
|
{
|
|
goto IL_00bf;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_1 = ___2_result;
|
|
int32_t* L_2 = ___3_styles;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_3 = ___4_raw;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_4 = ___5_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = DateTimeParse_GetDayOfNN_mD22CC6A4487C4D1C41183C997E1C9FB6E01B94B6(L_1, L_2, L_3, L_4, NULL);
|
|
V_0 = L_5;
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_6 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_7 = ___4_raw;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_8 = ___5_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_9;
|
|
L_9 = DateTimeParse_GetDayOfNNN_mD3086C89CCAA727518CC519F5504BBAB4041506D(L_6, L_7, L_8, NULL);
|
|
V_0 = L_9;
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_10 = ___2_result;
|
|
int32_t* L_11 = ___3_styles;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_12 = ___4_raw;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_13 = ___5_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_14;
|
|
L_14 = DateTimeParse_GetDayOfMN_m8655BD2945C26B528C85D5E04485A8FC7D6291DC(L_10, L_11, L_12, L_13, NULL);
|
|
V_0 = L_14;
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_15 = ___2_result;
|
|
int32_t* L_16 = ___3_styles;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_17 = ___4_raw;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_18 = ___5_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_19;
|
|
L_19 = DateTimeParse_GetDayOfNM_m097A0070DFA787294F8D883E249A733269F79638(L_15, L_16, L_17, L_18, NULL);
|
|
V_0 = L_19;
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_20 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_21 = ___4_raw;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_22 = ___5_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_23;
|
|
L_23 = DateTimeParse_GetDayOfMNN_m0E6FFE70FC040B210A8AF4C8C69DA21F0CCBE629(L_20, L_21, L_22, NULL);
|
|
V_0 = L_23;
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
V_0 = (bool)1;
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_00b2:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_24 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_25 = ___4_raw;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_26 = ___5_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_27;
|
|
L_27 = DateTimeParse_GetDayOfYNN_m816F3FBCDC6AF274A29D1BD9C55D2A5D6E203528(L_24, L_25, L_26, NULL);
|
|
V_0 = L_27;
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_00bf:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_28 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_29 = ___4_raw;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_30 = ___5_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_31;
|
|
L_31 = DateTimeParse_GetDayOfNNY_m2203BB15601556266B90698E9D73CFD02021D0AF(L_28, L_29, L_30, NULL);
|
|
V_0 = L_31;
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_00cc:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_32 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_33 = ___4_raw;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_34;
|
|
L_34 = DateTimeParse_GetDayOfYMN_mFFF3449C750D04BA6E9CE83AECF4B7DE16FF0642(L_32, L_33, NULL);
|
|
V_0 = L_34;
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_00d7:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_35 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_36 = ___4_raw;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_37;
|
|
L_37 = DateTimeParse_GetDayOfYN_mB78AB5FF5BD6C311C3AC88B5A85D5601C341D7AA(L_35, L_36, NULL);
|
|
V_0 = L_37;
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_00e2:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_38 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_39 = ___4_raw;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_40;
|
|
L_40 = DateTimeParse_GetDayOfYM_m28FF22A12675C0D1939C13AA512D93D8DA08370C(L_38, L_39, NULL);
|
|
V_0 = L_40;
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_00ed:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_41 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_42 = ___4_raw;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_43;
|
|
L_43 = DateTimeParse_GetTimeOfN_m0A36C0793C91E4A721C06FD56177FA594AD377B7(L_41, L_42, NULL);
|
|
V_0 = L_43;
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_00f8:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_44 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_45 = ___4_raw;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_46;
|
|
L_46 = DateTimeParse_GetTimeOfNN_mB43596CCEF17A01D6DB03384A160026422A3E418(L_44, L_45, NULL);
|
|
V_0 = L_46;
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_0103:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_47 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_48 = ___4_raw;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_49;
|
|
L_49 = DateTimeParse_GetTimeOfNNN_m4711F85847B4CB5AEBD8C5EB7130F7510709DEDE(L_47, L_48, NULL);
|
|
V_0 = L_49;
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_010e:
|
|
{
|
|
V_0 = (bool)1;
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_0112:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_50 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_51 = ___4_raw;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_52;
|
|
L_52 = DateTimeParse_GetDateOfDSN_m6B6BBC576E3DE54963D2DA4D2A46FE1833253299(L_50, L_51, NULL);
|
|
V_0 = L_52;
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_011d:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_53 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_54 = ___4_raw;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_55;
|
|
L_55 = DateTimeParse_GetDateOfNDS_m58F710C09D1EBE97FC3D86F21429502D943990B5(L_53, L_54, NULL);
|
|
V_0 = L_55;
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_0128:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_56 = ___2_result;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_57 = ___4_raw;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_58 = ___5_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_59;
|
|
L_59 = DateTimeParse_GetDateOfNNDS_mCAC1D8ADCC1EAFC4BEE0C491F8D42C59C7D1BAEE(L_56, L_57, L_58, NULL);
|
|
V_0 = L_59;
|
|
}
|
|
|
|
IL_0133:
|
|
{
|
|
bool L_60 = V_0;
|
|
if (L_60)
|
|
{
|
|
goto IL_0138;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0138:
|
|
{
|
|
int32_t L_61 = ___0_dps;
|
|
if ((((int32_t)L_61) <= ((int32_t)((int32_t)20))))
|
|
{
|
|
goto IL_0145;
|
|
}
|
|
}
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_62 = ___4_raw;
|
|
L_62->___numCount_1 = 0;
|
|
}
|
|
|
|
IL_0145:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.DateTime System.DateTimeParse::Parse(System.ReadOnlySpan`1<System.Char>,System.Globalization.DateTimeFormatInfo,System.Globalization.DateTimeStyles)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeParse_Parse_mA20355303009B45379D61C550110547C6C4772B7 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_s, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___1_dtfi, int32_t ___2_styles, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722));
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_s;
|
|
DateTimeResult_Init_mA6717EEF433A842BEAB6C2DD78D1139C2B4BB63D((&V_0), L_0, NULL);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = ___0_s;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_2 = ___1_dtfi;
|
|
int32_t L_3 = ___2_styles;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = DateTimeParse_TryParse_m78F4F4910B11488044E249056D2E9546AA3E7617(L_1, L_2, L_3, (&V_0), NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722 L_5 = V_0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6 = L_5.___parsedDate_11;
|
|
return L_6;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var)));
|
|
Exception_t* L_7;
|
|
L_7 = DateTimeParse_GetDateTimeParseException_m06B7086328CD3F5D28FFD26013FB47043D6E5D0A((&V_0), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeParse_Parse_mA20355303009B45379D61C550110547C6C4772B7_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::TryParse(System.ReadOnlySpan`1<System.Char>,System.Globalization.DateTimeFormatInfo,System.Globalization.DateTimeStyles,System.DateTimeResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_TryParse_m78F4F4910B11488044E249056D2E9546AA3E7617 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_s, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___1_dtfi, int32_t ___2_styles, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___3_result, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral05ABA3CF47C1FCAEF66432D85D6B44E99603F880);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3BFFD325D0E9B8DB1041A8F32A1F7B2DBB2042C8);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EE55018ADF7DD670653986FF76F19BB86A91162);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
bool V_6 = false;
|
|
int32_t* V_7 = NULL;
|
|
bool V_8 = false;
|
|
int32_t V_9 = 0;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* G_B28_0 = NULL;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* G_B27_0 = NULL;
|
|
int32_t G_B29_0 = 0;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* G_B29_1 = NULL;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* G_B32_0 = NULL;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* G_B31_0 = NULL;
|
|
int32_t G_B33_0 = 0;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* G_B33_1 = NULL;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* G_B36_0 = NULL;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* G_B35_0 = NULL;
|
|
int32_t G_B37_0 = 0;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* G_B37_1 = NULL;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* G_B40_0 = NULL;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* G_B39_0 = NULL;
|
|
int32_t G_B41_0 = 0;
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4* G_B41_1 = NULL;
|
|
int32_t G_B63_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_s), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if (L_0)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_1 = ___3_result;
|
|
DateTimeResult_SetFailure_m84403A0901C5114A46BB7F56E0208072C95AFB2A(L_1, 3, _stringLiteral05ABA3CF47C1FCAEF66432D85D6B44E99603F880, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
V_1 = 0;
|
|
V_2 = (bool)0;
|
|
il2cpp_codegen_initobj((&V_3), sizeof(DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4));
|
|
(&V_3)->___suffix_1 = ((int32_t)256);
|
|
il2cpp_codegen_initobj((&V_4), sizeof(DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03));
|
|
uintptr_t L_2 = ((uintptr_t)((int32_t)12));
|
|
int8_t* L_3 = (int8_t*) (L_2 ? alloca(L_2) : NULL);
|
|
memset(L_3, 0, L_2);
|
|
V_7 = (int32_t*)(L_3);
|
|
int32_t* L_4 = V_7;
|
|
DateTimeRawInfo_Init_m58939922AA569BAE7260CFD425D079C654D0731B((&V_4), L_4, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_5 = ___1_dtfi;
|
|
NullCheck(L_5);
|
|
String_t* L_6;
|
|
L_6 = DateTimeFormatInfo_get_DateSeparator_mBD2B8F51FE1491BC6695B10CB1973754BBF54CDD(L_5, NULL);
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_7 = ___1_dtfi;
|
|
NullCheck(L_7);
|
|
String_t* L_8;
|
|
L_8 = DateTimeFormatInfo_get_TimeSeparator_m708070A0307E7FB6D0FB9C5FF3E371EBF8800791(L_7, NULL);
|
|
NullCheck(L_6);
|
|
bool L_9;
|
|
L_9 = String_Equals_m7BDFC0B951005B9DC2BAED464AFE68FF7E9ACE5A(L_6, L_8, 4, NULL);
|
|
(&V_4)->___hasSameDateAndTimeSeparators_8 = L_9;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_10 = ___3_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_11 = ___1_dtfi;
|
|
NullCheck(L_11);
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_12;
|
|
L_12 = DateTimeFormatInfo_get_Calendar_m1280AC2F196ECBE7B664394CC3821062015DEF99_inline(L_11, NULL);
|
|
L_10->___calendar_10 = L_12;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_13 = ___3_result;
|
|
L_13->___era_7 = 0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_14 = ___0_s;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_15 = ___1_dtfi;
|
|
__DTString__ctor_mA373A18F43531434E2B5644E88171623C86416F6((&V_5), L_14, L_15, NULL);
|
|
bool L_16;
|
|
L_16 = __DTString_GetNext_m2DAFC0E1EB763649B66110695BDB206B71B1407F((&V_5), NULL);
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
int32_t L_17 = V_1;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_18 = ___3_result;
|
|
int32_t L_19 = ___2_styles;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_20;
|
|
L_20 = DateTimeParse_Lex_mCFD30C9C1058FD72DFB2E3BEDE5289C5EF1E087B(L_17, (&V_5), (&V_3), (&V_4), L_18, (&___1_dtfi), L_19, NULL);
|
|
if (L_20)
|
|
{
|
|
goto IL_0098;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0098:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4 L_21 = V_3;
|
|
int32_t L_22 = L_21.___dtt_0;
|
|
if ((((int32_t)L_22) == ((int32_t)((int32_t)18))))
|
|
{
|
|
goto IL_021b;
|
|
}
|
|
}
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4 L_23 = V_3;
|
|
int32_t L_24 = L_23.___suffix_1;
|
|
if ((((int32_t)L_24) == ((int32_t)((int32_t)256))))
|
|
{
|
|
goto IL_00d2;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_25 = ___3_result;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_26;
|
|
L_26 = DateTimeParse_ProcessDateTimeSuffix_m89FF28A0D52FEC3359FE56ABD0D797B5FA86D6C5(L_25, (&V_4), (&V_3), NULL);
|
|
if (L_26)
|
|
{
|
|
goto IL_00c6;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_27 = ___3_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_27, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00c6:
|
|
{
|
|
(&V_3)->___suffix_1 = ((int32_t)256);
|
|
}
|
|
|
|
IL_00d2:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4 L_28 = V_3;
|
|
int32_t L_29 = L_28.___dtt_0;
|
|
if ((!(((uint32_t)L_29) == ((uint32_t)((int32_t)19)))))
|
|
{
|
|
goto IL_00fa;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_30 = V_1;
|
|
if ((((int32_t)L_30) == ((int32_t)((int32_t)13))))
|
|
{
|
|
goto IL_00e6;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_31 = V_1;
|
|
if ((!(((uint32_t)L_31) == ((uint32_t)((int32_t)12)))))
|
|
{
|
|
goto IL_00f2;
|
|
}
|
|
}
|
|
|
|
IL_00e6:
|
|
{
|
|
int32_t L_32 = ___2_styles;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_33 = ___3_result;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_34;
|
|
L_34 = DateTimeParse_ParseISO8601_m1C2FF613F8756547385C1C32635BA23029FEA7CB((&V_4), (&V_5), L_32, L_33, NULL);
|
|
return L_34;
|
|
}
|
|
|
|
IL_00f2:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_35 = ___3_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_35, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00fa:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03 L_36 = V_4;
|
|
bool L_37 = L_36.___hasSameDateAndTimeSeparators_8;
|
|
if (!L_37)
|
|
{
|
|
goto IL_01c1;
|
|
}
|
|
}
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4 L_38 = V_3;
|
|
int32_t L_39 = L_38.___dtt_0;
|
|
if ((((int32_t)L_39) == ((int32_t)((int32_t)14))))
|
|
{
|
|
goto IL_0124;
|
|
}
|
|
}
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4 L_40 = V_3;
|
|
int32_t L_41 = L_40.___dtt_0;
|
|
if ((((int32_t)L_41) == ((int32_t)((int32_t)12))))
|
|
{
|
|
goto IL_0124;
|
|
}
|
|
}
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4 L_42 = V_3;
|
|
int32_t L_43 = L_42.___dtt_0;
|
|
if ((!(((uint32_t)L_43) == ((uint32_t)((int32_t)13)))))
|
|
{
|
|
goto IL_0132;
|
|
}
|
|
}
|
|
|
|
IL_0124:
|
|
{
|
|
int32_t L_44 = V_1;
|
|
if ((!(((uint32_t)L_44) == ((uint32_t)((int32_t)18)))))
|
|
{
|
|
goto IL_012b;
|
|
}
|
|
}
|
|
{
|
|
V_1 = 3;
|
|
}
|
|
|
|
IL_012b:
|
|
{
|
|
int32_t L_45 = V_1;
|
|
if ((!(((uint32_t)L_45) == ((uint32_t)((int32_t)19)))))
|
|
{
|
|
goto IL_0132;
|
|
}
|
|
}
|
|
{
|
|
V_1 = 5;
|
|
}
|
|
|
|
IL_0132:
|
|
{
|
|
bool L_46;
|
|
L_46 = __DTString_AtEnd_m842272A109A260E9175838B489D9A8582400E59A((&V_5), NULL);
|
|
V_8 = L_46;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_47 = ((DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var))->___dateParsingStates_0;
|
|
int32_t L_48 = V_1;
|
|
NullCheck(L_47);
|
|
int32_t L_49 = L_48;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_50 = (L_47)->GetAt(static_cast<il2cpp_array_size_t>(L_49));
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4 L_51 = V_3;
|
|
int32_t L_52 = L_51.___dtt_0;
|
|
NullCheck(L_50);
|
|
int32_t L_53 = L_52;
|
|
int32_t L_54 = (int32_t)(L_50)->GetAt(static_cast<il2cpp_array_size_t>(L_53));
|
|
bool L_55 = V_8;
|
|
if (!((int32_t)(((((int32_t)L_54) == ((int32_t)((int32_t)20)))? 1 : 0)|(int32_t)L_55)))
|
|
{
|
|
goto IL_01c1;
|
|
}
|
|
}
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4 L_56 = V_3;
|
|
int32_t L_57 = L_56.___dtt_0;
|
|
V_9 = L_57;
|
|
int32_t L_58 = V_9;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_58, 4)))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0190;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_01a1;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_01c1;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_01c1;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_01b2;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
int32_t L_59 = V_9;
|
|
if ((!(((uint32_t)L_59) == ((uint32_t)((int32_t)13)))))
|
|
{
|
|
goto IL_01c1;
|
|
}
|
|
}
|
|
{
|
|
bool L_60 = V_8;
|
|
G_B27_0 = (&V_3);
|
|
if (L_60)
|
|
{
|
|
G_B28_0 = (&V_3);
|
|
goto IL_0187;
|
|
}
|
|
}
|
|
{
|
|
G_B29_0 = ((int32_t)12);
|
|
G_B29_1 = G_B27_0;
|
|
goto IL_0189;
|
|
}
|
|
|
|
IL_0187:
|
|
{
|
|
G_B29_0 = ((int32_t)14);
|
|
G_B29_1 = G_B28_0;
|
|
}
|
|
|
|
IL_0189:
|
|
{
|
|
G_B29_1->___dtt_0 = G_B29_0;
|
|
goto IL_01c1;
|
|
}
|
|
|
|
IL_0190:
|
|
{
|
|
bool L_61 = V_8;
|
|
G_B31_0 = (&V_3);
|
|
if (L_61)
|
|
{
|
|
G_B32_0 = (&V_3);
|
|
goto IL_0199;
|
|
}
|
|
}
|
|
{
|
|
G_B33_0 = 3;
|
|
G_B33_1 = G_B31_0;
|
|
goto IL_019a;
|
|
}
|
|
|
|
IL_0199:
|
|
{
|
|
G_B33_0 = 1;
|
|
G_B33_1 = G_B32_0;
|
|
}
|
|
|
|
IL_019a:
|
|
{
|
|
G_B33_1->___dtt_0 = G_B33_0;
|
|
goto IL_01c1;
|
|
}
|
|
|
|
IL_01a1:
|
|
{
|
|
bool L_62 = V_8;
|
|
G_B35_0 = (&V_3);
|
|
if (L_62)
|
|
{
|
|
G_B36_0 = (&V_3);
|
|
goto IL_01aa;
|
|
}
|
|
}
|
|
{
|
|
G_B37_0 = 3;
|
|
G_B37_1 = G_B35_0;
|
|
goto IL_01ab;
|
|
}
|
|
|
|
IL_01aa:
|
|
{
|
|
G_B37_0 = 1;
|
|
G_B37_1 = G_B36_0;
|
|
}
|
|
|
|
IL_01ab:
|
|
{
|
|
G_B37_1->___dtt_0 = G_B37_0;
|
|
goto IL_01c1;
|
|
}
|
|
|
|
IL_01b2:
|
|
{
|
|
bool L_63 = V_8;
|
|
G_B39_0 = (&V_3);
|
|
if (L_63)
|
|
{
|
|
G_B40_0 = (&V_3);
|
|
goto IL_01bb;
|
|
}
|
|
}
|
|
{
|
|
G_B41_0 = 7;
|
|
G_B41_1 = G_B39_0;
|
|
goto IL_01bc;
|
|
}
|
|
|
|
IL_01bb:
|
|
{
|
|
G_B41_0 = 6;
|
|
G_B41_1 = G_B40_0;
|
|
}
|
|
|
|
IL_01bc:
|
|
{
|
|
G_B41_1->___dtt_0 = G_B41_0;
|
|
}
|
|
|
|
IL_01c1:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_64 = ((DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var))->___dateParsingStates_0;
|
|
int32_t L_65 = V_1;
|
|
NullCheck(L_64);
|
|
int32_t L_66 = L_65;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_67 = (L_64)->GetAt(static_cast<il2cpp_array_size_t>(L_66));
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4 L_68 = V_3;
|
|
int32_t L_69 = L_68.___dtt_0;
|
|
NullCheck(L_67);
|
|
int32_t L_70 = L_69;
|
|
int32_t L_71 = (int32_t)(L_67)->GetAt(static_cast<il2cpp_array_size_t>(L_70));
|
|
V_1 = L_71;
|
|
int32_t L_72 = V_1;
|
|
if ((!(((uint32_t)L_72) == ((uint32_t)((int32_t)20)))))
|
|
{
|
|
goto IL_01dd;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_73 = ___3_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_73, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_01dd:
|
|
{
|
|
int32_t L_74 = V_1;
|
|
if ((((int32_t)L_74) <= ((int32_t)((int32_t)20))))
|
|
{
|
|
goto IL_021b;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_75 = ___1_dtfi;
|
|
NullCheck(L_75);
|
|
int32_t L_76;
|
|
L_76 = DateTimeFormatInfo_get_FormatFlags_m02C18CB504B5F1547635C20439FF6E468D08A669(L_75, NULL);
|
|
if (!((int32_t)((int32_t)L_76&8)))
|
|
{
|
|
goto IL_0205;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
bool L_77;
|
|
L_77 = GlobalizationMode_get_Invariant_m07C027203B17E9B629D292376366608B7DDB2903_inline(NULL);
|
|
if (L_77)
|
|
{
|
|
goto IL_0217;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_78 = V_1;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_79 = ___3_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_80 = ___1_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_81;
|
|
L_81 = DateTimeParse_ProcessHebrewTerminalState_m78C00EA31E59EEE2D083BAD9151DD22E3CBA834D(L_78, (&V_5), L_79, (&___2_styles), (&V_4), L_80, NULL);
|
|
if (L_81)
|
|
{
|
|
goto IL_0217;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0205:
|
|
{
|
|
int32_t L_82 = V_1;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_83 = ___3_result;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_84 = ___1_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_85;
|
|
L_85 = DateTimeParse_ProcessTerminalState_m1635E1524D64F67289FC2CBAD1FCDBC948EC1474(L_82, (&V_5), L_83, (&___2_styles), (&V_4), L_84, NULL);
|
|
if (L_85)
|
|
{
|
|
goto IL_0217;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0217:
|
|
{
|
|
V_2 = (bool)1;
|
|
V_1 = 0;
|
|
}
|
|
|
|
IL_021b:
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4 L_86 = V_3;
|
|
int32_t L_87 = L_86.___dtt_0;
|
|
if (!L_87)
|
|
{
|
|
goto IL_0238;
|
|
}
|
|
}
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4 L_88 = V_3;
|
|
int32_t L_89 = L_88.___dtt_0;
|
|
if ((((int32_t)L_89) == ((int32_t)1)))
|
|
{
|
|
goto IL_0238;
|
|
}
|
|
}
|
|
{
|
|
DateTimeToken_t39E2670CBE0C34AB5AE9852D1A5785F1C6B0A9B4 L_90 = V_3;
|
|
int32_t L_91 = L_90.___dtt_0;
|
|
if ((!(((uint32_t)L_91) == ((uint32_t)6))))
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
|
|
IL_0238:
|
|
{
|
|
bool L_92 = V_2;
|
|
if (L_92)
|
|
{
|
|
goto IL_0243;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_93 = ___3_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_93, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0243:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_94 = ___1_dtfi;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
DateTimeParse_AdjustTimeMark_m1BD073173719E6B8681B9FB310E7166C2ACD3048(L_94, (&V_4), NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_95 = ___3_result;
|
|
int32_t* L_96 = (&L_95->___Hour_3);
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03 L_97 = V_4;
|
|
int32_t L_98 = L_97.___timeMark_6;
|
|
bool L_99;
|
|
L_99 = DateTimeParse_AdjustHour_m1ACF46BC6F29D4CDFD4D6785838EECFE3963A397(L_96, L_98, NULL);
|
|
if (L_99)
|
|
{
|
|
goto IL_0267;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_100 = ___3_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_100, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0267:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_101 = ___3_result;
|
|
int32_t L_102 = L_101->___Year_0;
|
|
if ((!(((uint32_t)L_102) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0284;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_103 = ___3_result;
|
|
int32_t L_104 = L_103->___Month_1;
|
|
if ((!(((uint32_t)L_104) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0284;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_105 = ___3_result;
|
|
int32_t L_106 = L_105->___Day_2;
|
|
G_B63_0 = ((((int32_t)L_106) == ((int32_t)(-1)))? 1 : 0);
|
|
goto IL_0285;
|
|
}
|
|
|
|
IL_0284:
|
|
{
|
|
G_B63_0 = 0;
|
|
}
|
|
|
|
IL_0285:
|
|
{
|
|
V_6 = (bool)G_B63_0;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_107 = ___3_result;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_108 = ___3_result;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B** L_109 = (&L_108->___calendar_10);
|
|
int32_t L_110 = ___2_styles;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_111;
|
|
L_111 = DateTimeParse_CheckDefaultDateTime_mEB866B24DCD1C5B2FDD6C490F71EAF2F316D77E9(L_107, L_109, L_110, NULL);
|
|
if (L_111)
|
|
{
|
|
goto IL_0298;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0298:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_112 = ___3_result;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_113 = L_112->___calendar_10;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_114 = ___3_result;
|
|
int32_t L_115 = L_114->___Year_0;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_116 = ___3_result;
|
|
int32_t L_117 = L_116->___Month_1;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_118 = ___3_result;
|
|
int32_t L_119 = L_118->___Day_2;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_120 = ___3_result;
|
|
int32_t L_121 = L_120->___Hour_3;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_122 = ___3_result;
|
|
int32_t L_123 = L_122->___Minute_4;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_124 = ___3_result;
|
|
int32_t L_125 = L_124->___Second_5;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_126 = ___3_result;
|
|
int32_t L_127 = L_126->___era_7;
|
|
NullCheck(L_113);
|
|
bool L_128;
|
|
L_128 = VirtualFuncInvoker9< bool, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* >::Invoke(23 /* System.Boolean System.Globalization.Calendar::TryToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTime&) */, L_113, L_115, L_117, L_119, L_121, L_123, L_125, 0, L_127, (&V_0));
|
|
if (L_128)
|
|
{
|
|
goto IL_02e0;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_129 = ___3_result;
|
|
DateTimeResult_SetFailure_m84403A0901C5114A46BB7F56E0208072C95AFB2A(L_129, 7, _stringLiteral3EE55018ADF7DD670653986FF76F19BB86A91162, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_02e0:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03 L_130 = V_4;
|
|
double L_131 = L_130.___fraction_7;
|
|
if ((!(((double)L_131) > ((double)(0.0)))))
|
|
{
|
|
goto IL_0311;
|
|
}
|
|
}
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03 L_132 = V_4;
|
|
double L_133 = L_132.___fraction_7;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
double L_134;
|
|
L_134 = bankers_round(((double)il2cpp_codegen_multiply(L_133, (10000000.0))));
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_135;
|
|
L_135 = DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D((&V_0), il2cpp_codegen_cast_double_to_int<int64_t>(L_134), NULL);
|
|
V_0 = L_135;
|
|
}
|
|
|
|
IL_0311:
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03 L_136 = V_4;
|
|
int32_t L_137 = L_136.___dayOfWeek_4;
|
|
if ((((int32_t)L_137) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_033e;
|
|
}
|
|
}
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03 L_138 = V_4;
|
|
int32_t L_139 = L_138.___dayOfWeek_4;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_140 = ___3_result;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_141 = L_140->___calendar_10;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_142 = V_0;
|
|
NullCheck(L_141);
|
|
int32_t L_143;
|
|
L_143 = VirtualFuncInvoker1< int32_t, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D >::Invoke(12 /* System.DayOfWeek System.Globalization.Calendar::GetDayOfWeek(System.DateTime) */, L_141, L_142);
|
|
if ((((int32_t)L_139) == ((int32_t)L_143)))
|
|
{
|
|
goto IL_033e;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_144 = ___3_result;
|
|
DateTimeResult_SetFailure_m84403A0901C5114A46BB7F56E0208072C95AFB2A(L_144, 4, _stringLiteral3BFFD325D0E9B8DB1041A8F32A1F7B2DBB2042C8, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_033e:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_145 = ___3_result;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_146 = V_0;
|
|
L_145->___parsedDate_11 = L_146;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_147 = ___3_result;
|
|
int32_t L_148 = ___2_styles;
|
|
bool L_149 = V_6;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_150;
|
|
L_150 = DateTimeParse_DetermineTimeZoneAdjustments_m1371F204F9CD47963E2A1E82E50E808472D593A9((&V_5), L_147, L_148, L_149, NULL);
|
|
if (L_150)
|
|
{
|
|
goto IL_0354;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0354:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::DetermineTimeZoneAdjustments(System.__DTString&,System.DateTimeResult&,System.Globalization.DateTimeStyles,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_DetermineTimeZoneAdjustments_m1371F204F9CD47963E2A1E82E50E808472D593A9 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___0_str, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___1_result, int32_t ___2_styles, bool ___3_bTimeOnly, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D9E79CFA886984022D22A5A9A8CF4B9F5ED9E94);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int64_t V_0 = 0;
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___1_result;
|
|
int32_t L_1 = L_0->___flags_8;
|
|
if (!((int32_t)((int32_t)L_1&((int32_t)2048))))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_2 = ___0_str;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_3 = ___1_result;
|
|
int32_t L_4 = ___2_styles;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = DateTimeParse_DateTimeOffsetTimeZonePostProcessing_m9E4D03E6BC6DC2A4165281C0CB4504183F986949(L_2, L_3, L_4, NULL);
|
|
return L_5;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_6 = ___1_result;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_7 = (&L_6->___timeZoneOffset_9);
|
|
int64_t L_8;
|
|
L_8 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline(L_7, NULL);
|
|
V_0 = L_8;
|
|
int64_t L_9 = V_0;
|
|
if ((((int64_t)L_9) < ((int64_t)((int64_t)-504000000000LL))))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_10 = V_0;
|
|
if ((((int64_t)L_10) <= ((int64_t)((int64_t)504000000000LL))))
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_11 = ___1_result;
|
|
DateTimeResult_SetFailure_m84403A0901C5114A46BB7F56E0208072C95AFB2A(L_11, 4, _stringLiteral6D9E79CFA886984022D22A5A9A8CF4B9F5ED9E94, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_12 = ___1_result;
|
|
int32_t L_13 = L_12->___flags_8;
|
|
if (((int32_t)((int32_t)L_13&((int32_t)256))))
|
|
{
|
|
goto IL_00db;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_14 = ___2_styles;
|
|
if (!((int32_t)((int32_t)L_14&((int32_t)32))))
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_15 = ___2_styles;
|
|
if (!((int32_t)((int32_t)L_15&((int32_t)16))))
|
|
{
|
|
goto IL_0089;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_16 = ___1_result;
|
|
int32_t* L_17 = (&L_16->___flags_8);
|
|
int32_t* L_18 = L_17;
|
|
int32_t L_19 = *((int32_t*)L_18);
|
|
*((int32_t*)L_18) = (int32_t)((int32_t)(L_19|((int32_t)256)));
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_20 = ___1_result;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_21 = ___1_result;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_22 = L_21->___parsedDate_11;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_23;
|
|
L_23 = TimeZoneInfo_GetLocalUtcOffset_m3D55DA415FB33A0721CF19FBCAB899EB8EAC4433(L_22, 2, NULL);
|
|
L_20->___timeZoneOffset_9 = L_23;
|
|
goto IL_00db;
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_24 = ___1_result;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_25 = ___1_result;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_26 = L_25->___parsedDate_11;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_27;
|
|
L_27 = DateTime_SpecifyKind_mFC3F6DD6AD017F62A8AF81DAD5620AEC474871D0(L_26, 2, NULL);
|
|
L_24->___parsedDate_11 = L_27;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
int32_t L_28 = ___2_styles;
|
|
if (!((int32_t)((int32_t)L_28&((int32_t)64))))
|
|
{
|
|
goto IL_00d9;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_29 = ___2_styles;
|
|
if (!((int32_t)((int32_t)L_29&((int32_t)16))))
|
|
{
|
|
goto IL_00bd;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_30 = ___1_result;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_31 = ___1_result;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_32 = L_31->___parsedDate_11;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_33;
|
|
L_33 = DateTime_SpecifyKind_mFC3F6DD6AD017F62A8AF81DAD5620AEC474871D0(L_32, 1, NULL);
|
|
L_30->___parsedDate_11 = L_33;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_00bd:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_34 = ___1_result;
|
|
int32_t* L_35 = (&L_34->___flags_8);
|
|
int32_t* L_36 = L_35;
|
|
int32_t L_37 = *((int32_t*)L_36);
|
|
*((int32_t*)L_36) = (int32_t)((int32_t)(L_37|((int32_t)256)));
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_38 = ___1_result;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_39 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19;
|
|
L_38->___timeZoneOffset_9 = L_39;
|
|
goto IL_00db;
|
|
}
|
|
|
|
IL_00d9:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_00db:
|
|
{
|
|
int32_t L_40 = ___2_styles;
|
|
if (!((int32_t)((int32_t)L_40&((int32_t)128))))
|
|
{
|
|
goto IL_0106;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_41 = ___1_result;
|
|
int32_t L_42 = L_41->___flags_8;
|
|
if (!((int32_t)((int32_t)L_42&((int32_t)512))))
|
|
{
|
|
goto IL_0106;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_43 = ___1_result;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_44 = ___1_result;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_45 = L_44->___parsedDate_11;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_46;
|
|
L_46 = DateTime_SpecifyKind_mFC3F6DD6AD017F62A8AF81DAD5620AEC474871D0(L_45, 1, NULL);
|
|
L_43->___parsedDate_11 = L_46;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0106:
|
|
{
|
|
int32_t L_47 = ___2_styles;
|
|
if (!((int32_t)((int32_t)L_47&((int32_t)16))))
|
|
{
|
|
goto IL_0113;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_48 = ___1_result;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_49;
|
|
L_49 = DateTimeParse_AdjustTimeZoneToUniversal_mF1124073B1DC0A796A6A97F4C0CA28CC593D34B9(L_48, NULL);
|
|
return L_49;
|
|
}
|
|
|
|
IL_0113:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_50 = ___1_result;
|
|
bool L_51 = ___3_bTimeOnly;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_52;
|
|
L_52 = DateTimeParse_AdjustTimeZoneToLocal_mECDC1152FAAD82F47DAC66BDBFC7F03125F5D7DE(L_50, L_51, NULL);
|
|
return L_52;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::DateTimeOffsetTimeZonePostProcessing(System.__DTString&,System.DateTimeResult&,System.Globalization.DateTimeStyles)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_DateTimeOffsetTimeZonePostProcessing_m9E4D03E6BC6DC2A4165281C0CB4504183F986949 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___0_str, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___1_result, int32_t ___2_styles, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4D9C538E6EC016DFB961C75A2EDB9047E7364ADD);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D9E79CFA886984022D22A5A9A8CF4B9F5ED9E94);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int64_t V_0 = 0;
|
|
int64_t V_1 = 0;
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___1_result;
|
|
int32_t L_1 = L_0->___flags_8;
|
|
if (((int32_t)((int32_t)L_1&((int32_t)256))))
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___2_styles;
|
|
if (!((int32_t)((int32_t)L_2&((int32_t)64))))
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_3 = ___1_result;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_4 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19;
|
|
L_3->___timeZoneOffset_9 = L_4;
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_5 = ___1_result;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_6 = ___1_result;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7 = L_6->___parsedDate_11;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8;
|
|
L_8 = TimeZoneInfo_GetLocalUtcOffset_m3D55DA415FB33A0721CF19FBCAB899EB8EAC4433(L_7, 2, NULL);
|
|
L_5->___timeZoneOffset_9 = L_8;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_9 = ___1_result;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_10 = (&L_9->___timeZoneOffset_9);
|
|
int64_t L_11;
|
|
L_11 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline(L_10, NULL);
|
|
V_0 = L_11;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_12 = ___1_result;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_13 = (&L_12->___parsedDate_11);
|
|
int64_t L_14;
|
|
L_14 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6(L_13, NULL);
|
|
int64_t L_15 = V_0;
|
|
V_1 = ((int64_t)il2cpp_codegen_subtract(L_14, L_15));
|
|
int64_t L_16 = V_1;
|
|
if ((((int64_t)L_16) < ((int64_t)((int64_t)0))))
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_17 = V_1;
|
|
if ((((int64_t)L_17) <= ((int64_t)((int64_t)3155378975999999999LL))))
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_18 = ___1_result;
|
|
DateTimeResult_SetFailure_m84403A0901C5114A46BB7F56E0208072C95AFB2A(L_18, 4, _stringLiteral4D9C538E6EC016DFB961C75A2EDB9047E7364ADD, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
int64_t L_19 = V_0;
|
|
if ((((int64_t)L_19) < ((int64_t)((int64_t)-504000000000LL))))
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_20 = V_0;
|
|
if ((((int64_t)L_20) <= ((int64_t)((int64_t)504000000000LL))))
|
|
{
|
|
goto IL_0092;
|
|
}
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_21 = ___1_result;
|
|
DateTimeResult_SetFailure_m84403A0901C5114A46BB7F56E0208072C95AFB2A(L_21, 4, _stringLiteral6D9E79CFA886984022D22A5A9A8CF4B9F5ED9E94, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0092:
|
|
{
|
|
int32_t L_22 = ___2_styles;
|
|
if (!((int32_t)((int32_t)L_22&((int32_t)16))))
|
|
{
|
|
goto IL_00d6;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_23 = ___1_result;
|
|
int32_t L_24 = L_23->___flags_8;
|
|
if (((int32_t)((int32_t)L_24&((int32_t)256))))
|
|
{
|
|
goto IL_00be;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_25 = ___2_styles;
|
|
if (((int32_t)((int32_t)L_25&((int32_t)64))))
|
|
{
|
|
goto IL_00be;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_26 = ___1_result;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_27;
|
|
L_27 = DateTimeParse_AdjustTimeZoneToUniversal_mF1124073B1DC0A796A6A97F4C0CA28CC593D34B9(L_26, NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_28 = ___1_result;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_29 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19;
|
|
L_28->___timeZoneOffset_9 = L_29;
|
|
return L_27;
|
|
}
|
|
|
|
IL_00be:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_30 = ___1_result;
|
|
int64_t L_31 = V_1;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_32;
|
|
memset((&L_32), 0, sizeof(L_32));
|
|
DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_32), L_31, 1, /*hidden argument*/NULL);
|
|
L_30->___parsedDate_11 = L_32;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_33 = ___1_result;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_34 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19;
|
|
L_33->___timeZoneOffset_9 = L_34;
|
|
}
|
|
|
|
IL_00d6:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::AdjustTimeZoneToUniversal(System.DateTimeResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_AdjustTimeZoneToUniversal_mF1124073B1DC0A796A6A97F4C0CA28CC593D34B9 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1EEA80CEDFABFC29B06BF4349B427A62D62722AC);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int64_t V_0 = 0;
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_1 = (&L_0->___parsedDate_11);
|
|
int64_t L_2;
|
|
L_2 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6(L_1, NULL);
|
|
V_0 = L_2;
|
|
int64_t L_3 = V_0;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_4 = ___0_result;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_5 = (&L_4->___timeZoneOffset_9);
|
|
int64_t L_6;
|
|
L_6 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline(L_5, NULL);
|
|
V_0 = ((int64_t)il2cpp_codegen_subtract(L_3, L_6));
|
|
int64_t L_7 = V_0;
|
|
if ((((int64_t)L_7) >= ((int64_t)((int64_t)0))))
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_8 = V_0;
|
|
V_0 = ((int64_t)il2cpp_codegen_add(L_8, ((int64_t)864000000000LL)));
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
int64_t L_9 = V_0;
|
|
if ((((int64_t)L_9) < ((int64_t)((int64_t)0))))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_10 = V_0;
|
|
if ((((int64_t)L_10) <= ((int64_t)((int64_t)3155378975999999999LL))))
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_11 = ___0_result;
|
|
DateTimeResult_SetFailure_m84403A0901C5114A46BB7F56E0208072C95AFB2A(L_11, 4, _stringLiteral1EEA80CEDFABFC29B06BF4349B427A62D62722AC, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_12 = ___0_result;
|
|
int64_t L_13 = V_0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_14;
|
|
memset((&L_14), 0, sizeof(L_14));
|
|
DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_14), L_13, 1, /*hidden argument*/NULL);
|
|
L_12->___parsedDate_11 = L_14;
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::AdjustTimeZoneToLocal(System.DateTimeResult&,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_AdjustTimeZoneToLocal_mECDC1152FAAD82F47DAC66BDBFC7F03125F5D7DE (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, bool ___1_bTimeOnly, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1EEA80CEDFABFC29B06BF4349B427A62D62722AC);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int64_t V_0 = 0;
|
|
TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* V_1 = NULL;
|
|
bool V_2 = false;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
bool V_5 = false;
|
|
TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* G_B3_0 = NULL;
|
|
int64_t G_B3_1 = 0;
|
|
TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* G_B2_0 = NULL;
|
|
int64_t G_B2_1 = 0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B4_0;
|
|
memset((&G_B4_0), 0, sizeof(G_B4_0));
|
|
TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* G_B4_1 = NULL;
|
|
int64_t G_B4_2 = 0;
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_1 = (&L_0->___parsedDate_11);
|
|
int64_t L_2;
|
|
L_2 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6(L_1, NULL);
|
|
V_0 = L_2;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
|
|
TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_3;
|
|
L_3 = TimeZoneInfo_get_Local_mC43C34632FAEEF6BD0E3B5C04417E9C90277445F(NULL);
|
|
V_1 = L_3;
|
|
V_2 = (bool)0;
|
|
int64_t L_4 = V_0;
|
|
if ((((int64_t)L_4) >= ((int64_t)((int64_t)864000000000LL))))
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_5 = V_0;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_6 = ___0_result;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_7 = (&L_6->___timeZoneOffset_9);
|
|
int64_t L_8;
|
|
L_8 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline(L_7, NULL);
|
|
V_0 = ((int64_t)il2cpp_codegen_subtract(L_5, L_8));
|
|
int64_t L_9 = V_0;
|
|
TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_10 = V_1;
|
|
bool L_11 = ___1_bTimeOnly;
|
|
G_B2_0 = L_10;
|
|
G_B2_1 = L_9;
|
|
if (L_11)
|
|
{
|
|
G_B3_0 = L_10;
|
|
G_B3_1 = L_9;
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_12 = ___0_result;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13 = L_12->___parsedDate_11;
|
|
G_B4_0 = L_13;
|
|
G_B4_1 = G_B2_0;
|
|
G_B4_2 = G_B2_1;
|
|
goto IL_0040;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_14;
|
|
L_14 = DateTime_get_Now_m636CB9651A9099D20BA1CF813A0C69637317325C(NULL);
|
|
G_B4_0 = L_14;
|
|
G_B4_1 = G_B3_0;
|
|
G_B4_2 = G_B3_1;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
NullCheck(G_B4_1);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_15;
|
|
L_15 = TimeZoneInfo_GetUtcOffset_m0BDDBF392737305C4A4AA517DD3CB0DA40C7D375(G_B4_1, G_B4_0, 2, NULL);
|
|
V_3 = L_15;
|
|
int64_t L_16;
|
|
L_16 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_3), NULL);
|
|
V_0 = ((int64_t)il2cpp_codegen_add(G_B4_2, L_16));
|
|
int64_t L_17 = V_0;
|
|
if ((((int64_t)L_17) >= ((int64_t)((int64_t)0))))
|
|
{
|
|
goto IL_00c3;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_18 = V_0;
|
|
V_0 = ((int64_t)il2cpp_codegen_add(L_18, ((int64_t)864000000000LL)));
|
|
goto IL_00c3;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
int64_t L_19 = V_0;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_20 = ___0_result;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_21 = (&L_20->___timeZoneOffset_9);
|
|
int64_t L_22;
|
|
L_22 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline(L_21, NULL);
|
|
V_0 = ((int64_t)il2cpp_codegen_subtract(L_19, L_22));
|
|
int64_t L_23 = V_0;
|
|
if ((((int64_t)L_23) < ((int64_t)((int64_t)0))))
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_24 = V_0;
|
|
if ((((int64_t)L_24) <= ((int64_t)((int64_t)3155378975999999999LL))))
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
int64_t L_25 = V_0;
|
|
TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_26 = V_1;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_27 = ___0_result;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_28 = L_27->___parsedDate_11;
|
|
NullCheck(L_26);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_29;
|
|
L_29 = TimeZoneInfo_GetUtcOffset_m0BDDBF392737305C4A4AA517DD3CB0DA40C7D375(L_26, L_28, 2, NULL);
|
|
V_3 = L_29;
|
|
int64_t L_30;
|
|
L_30 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_3), NULL);
|
|
V_0 = ((int64_t)il2cpp_codegen_add(L_25, L_30));
|
|
goto IL_00c3;
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
int64_t L_31 = V_0;
|
|
DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&V_4), L_31, 1, NULL);
|
|
V_5 = (bool)0;
|
|
int64_t L_32 = V_0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_33 = V_4;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
|
|
TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_34;
|
|
L_34 = TimeZoneInfo_get_Local_mC43C34632FAEEF6BD0E3B5C04417E9C90277445F(NULL);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_35;
|
|
L_35 = TimeZoneInfo_GetUtcOffsetFromUtc_mF8355640EDDE18145F010556290EFF1910EEFAD2(L_33, L_34, (&V_5), (&V_2), NULL);
|
|
V_3 = L_35;
|
|
int64_t L_36;
|
|
L_36 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_3), NULL);
|
|
V_0 = ((int64_t)il2cpp_codegen_add(L_32, L_36));
|
|
}
|
|
|
|
IL_00c3:
|
|
{
|
|
int64_t L_37 = V_0;
|
|
if ((((int64_t)L_37) < ((int64_t)((int64_t)0))))
|
|
{
|
|
goto IL_00d4;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_38 = V_0;
|
|
if ((((int64_t)L_38) <= ((int64_t)((int64_t)3155378975999999999LL))))
|
|
{
|
|
goto IL_00ed;
|
|
}
|
|
}
|
|
|
|
IL_00d4:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_39 = ___0_result;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_40 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32;
|
|
L_39->___parsedDate_11 = L_40;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_41 = ___0_result;
|
|
DateTimeResult_SetFailure_m84403A0901C5114A46BB7F56E0208072C95AFB2A(L_41, 4, _stringLiteral1EEA80CEDFABFC29B06BF4349B427A62D62722AC, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00ed:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_42 = ___0_result;
|
|
int64_t L_43 = V_0;
|
|
bool L_44 = V_2;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_45;
|
|
memset((&L_45), 0, sizeof(L_45));
|
|
DateTime__ctor_m8CFD20DDCCB14AB28392A047FC4EE3F11929B8F2((&L_45), L_43, 2, L_44, /*hidden argument*/NULL);
|
|
L_42->___parsedDate_11 = L_45;
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::ParseISO8601(System.DateTimeRawInfo&,System.__DTString&,System.Globalization.DateTimeStyles,System.DateTimeResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_ParseISO8601_m1C2FF613F8756547385C1C32635BA23029FEA7CB (DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* ___0_raw, __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___1_str, int32_t ___2_styles, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___3_result, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GregorianCalendar_t6CC2956C5298E69CE93FE53A9DF5AE4F33621815_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EE55018ADF7DD670653986FF76F19BB86A91162);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
double V_3 = 0.0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
Il2CppChar V_5 = 0x0;
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_0 = ___0_raw;
|
|
int32_t L_1 = L_0->___year_3;
|
|
if ((((int32_t)L_1) < ((int32_t)0)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_2 = ___0_raw;
|
|
int32_t L_3;
|
|
L_3 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_2, 0, NULL);
|
|
if ((((int32_t)L_3) < ((int32_t)0)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_4 = ___0_raw;
|
|
int32_t L_5;
|
|
L_5 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_4, 1, NULL);
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_6 = ___1_str;
|
|
int32_t* L_7 = (&L_6->___Index_1);
|
|
int32_t* L_8 = L_7;
|
|
int32_t L_9 = *((int32_t*)L_8);
|
|
*((int32_t*)L_8) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_9, 1));
|
|
V_2 = 0;
|
|
V_3 = (0.0);
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_10 = ___1_str;
|
|
__DTString_SkipWhiteSpaces_mC7F076DEEEECFB3F54E2C516C8F662FDFB86FA33(L_10, NULL);
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_11 = ___1_str;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_12;
|
|
L_12 = DateTimeParse_ParseDigits_mFF092ACCCF892D92899E7C413624900EAC24D81D(L_11, 2, (&V_0), NULL);
|
|
if (L_12)
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_13 = ___3_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_13, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_14 = ___1_str;
|
|
__DTString_SkipWhiteSpaces_mC7F076DEEEECFB3F54E2C516C8F662FDFB86FA33(L_14, NULL);
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_15 = ___1_str;
|
|
bool L_16;
|
|
L_16 = __DTString_Match_m480E53CC8F4EF31DF728891F4D0A5C476C0A6B6A(L_15, ((int32_t)58), NULL);
|
|
if (L_16)
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_17 = ___3_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_17, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_18 = ___1_str;
|
|
__DTString_SkipWhiteSpaces_mC7F076DEEEECFB3F54E2C516C8F662FDFB86FA33(L_18, NULL);
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_19 = ___1_str;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_20;
|
|
L_20 = DateTimeParse_ParseDigits_mFF092ACCCF892D92899E7C413624900EAC24D81D(L_19, 2, (&V_1), NULL);
|
|
if (L_20)
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_21 = ___3_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_21, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_22 = ___1_str;
|
|
__DTString_SkipWhiteSpaces_mC7F076DEEEECFB3F54E2C516C8F662FDFB86FA33(L_22, NULL);
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_23 = ___1_str;
|
|
bool L_24;
|
|
L_24 = __DTString_Match_m480E53CC8F4EF31DF728891F4D0A5C476C0A6B6A(L_23, ((int32_t)58), NULL);
|
|
if (!L_24)
|
|
{
|
|
goto IL_00d4;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_25 = ___1_str;
|
|
__DTString_SkipWhiteSpaces_mC7F076DEEEECFB3F54E2C516C8F662FDFB86FA33(L_25, NULL);
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_26 = ___1_str;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_27;
|
|
L_27 = DateTimeParse_ParseDigits_mFF092ACCCF892D92899E7C413624900EAC24D81D(L_26, 2, (&V_2), NULL);
|
|
if (L_27)
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_28 = ___3_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_28, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00a7:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_29 = ___1_str;
|
|
bool L_30;
|
|
L_30 = __DTString_Match_m480E53CC8F4EF31DF728891F4D0A5C476C0A6B6A(L_29, ((int32_t)46), NULL);
|
|
if (!L_30)
|
|
{
|
|
goto IL_00ce;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_31 = ___1_str;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_32;
|
|
L_32 = DateTimeParse_ParseFraction_mC56E08E358B2C3452E536E6F3D62ACA05EAC1C31(L_31, (&V_3), NULL);
|
|
if (L_32)
|
|
{
|
|
goto IL_00c3;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_33 = ___3_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_33, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00c3:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_34 = ___1_str;
|
|
int32_t* L_35 = (&L_34->___Index_1);
|
|
int32_t* L_36 = L_35;
|
|
int32_t L_37 = *((int32_t*)L_36);
|
|
*((int32_t*)L_36) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_37, 1));
|
|
}
|
|
|
|
IL_00ce:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_38 = ___1_str;
|
|
__DTString_SkipWhiteSpaces_mC7F076DEEEECFB3F54E2C516C8F662FDFB86FA33(L_38, NULL);
|
|
}
|
|
|
|
IL_00d4:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_39 = ___1_str;
|
|
bool L_40;
|
|
L_40 = __DTString_GetNext_m2DAFC0E1EB763649B66110695BDB206B71B1407F(L_39, NULL);
|
|
if (!L_40)
|
|
{
|
|
goto IL_01a9;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_41 = ___1_str;
|
|
Il2CppChar L_42;
|
|
L_42 = __DTString_GetChar_m30E31D23B3403023076FE096F5BD09824F4FA92A(L_41, NULL);
|
|
V_5 = L_42;
|
|
Il2CppChar L_43 = V_5;
|
|
if ((((int32_t)L_43) == ((int32_t)((int32_t)43))))
|
|
{
|
|
goto IL_00f3;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_44 = V_5;
|
|
if ((!(((uint32_t)L_44) == ((uint32_t)((int32_t)45)))))
|
|
{
|
|
goto IL_0118;
|
|
}
|
|
}
|
|
|
|
IL_00f3:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_45 = ___3_result;
|
|
int32_t* L_46 = (&L_45->___flags_8);
|
|
int32_t* L_47 = L_46;
|
|
int32_t L_48 = *((int32_t*)L_47);
|
|
*((int32_t*)L_47) = (int32_t)((int32_t)(L_48|((int32_t)256)));
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_49 = ___1_str;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_50 = ___3_result;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_51 = (&L_50->___timeZoneOffset_9);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_52;
|
|
L_52 = DateTimeParse_ParseTimeZone_mC6D964CA55CC3922B0912AA1BEB5ECD5EF5E18CF(L_49, L_51, NULL);
|
|
if (L_52)
|
|
{
|
|
goto IL_015a;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_53 = ___3_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_53, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0118:
|
|
{
|
|
Il2CppChar L_54 = V_5;
|
|
if ((((int32_t)L_54) == ((int32_t)((int32_t)90))))
|
|
{
|
|
goto IL_0124;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_55 = V_5;
|
|
if ((!(((uint32_t)L_55) == ((uint32_t)((int32_t)122)))))
|
|
{
|
|
goto IL_014f;
|
|
}
|
|
}
|
|
|
|
IL_0124:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_56 = ___3_result;
|
|
int32_t* L_57 = (&L_56->___flags_8);
|
|
int32_t* L_58 = L_57;
|
|
int32_t L_59 = *((int32_t*)L_58);
|
|
*((int32_t*)L_58) = (int32_t)((int32_t)(L_59|((int32_t)256)));
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_60 = ___3_result;
|
|
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_61 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19;
|
|
L_60->___timeZoneOffset_9 = L_61;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_62 = ___3_result;
|
|
int32_t* L_63 = (&L_62->___flags_8);
|
|
int32_t* L_64 = L_63;
|
|
int32_t L_65 = *((int32_t*)L_64);
|
|
*((int32_t*)L_64) = (int32_t)((int32_t)(L_65|((int32_t)512)));
|
|
goto IL_015a;
|
|
}
|
|
|
|
IL_014f:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_66 = ___1_str;
|
|
int32_t* L_67 = (&L_66->___Index_1);
|
|
int32_t* L_68 = L_67;
|
|
int32_t L_69 = *((int32_t*)L_68);
|
|
*((int32_t*)L_68) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_69, 1));
|
|
}
|
|
|
|
IL_015a:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_70 = ___1_str;
|
|
__DTString_SkipWhiteSpaces_mC7F076DEEEECFB3F54E2C516C8F662FDFB86FA33(L_70, NULL);
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_71 = ___1_str;
|
|
bool L_72;
|
|
L_72 = __DTString_Match_m480E53CC8F4EF31DF728891F4D0A5C476C0A6B6A(L_71, ((int32_t)35), NULL);
|
|
if (!L_72)
|
|
{
|
|
goto IL_0180;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_73 = ___1_str;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_74;
|
|
L_74 = DateTimeParse_VerifyValidPunctuation_mC1B41036A753D97D308AB0E940DD204A23B5C128(L_73, NULL);
|
|
if (L_74)
|
|
{
|
|
goto IL_017a;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_75 = ___3_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_75, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_017a:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_76 = ___1_str;
|
|
__DTString_SkipWhiteSpaces_mC7F076DEEEECFB3F54E2C516C8F662FDFB86FA33(L_76, NULL);
|
|
}
|
|
|
|
IL_0180:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_77 = ___1_str;
|
|
bool L_78;
|
|
L_78 = __DTString_Match_m480E53CC8F4EF31DF728891F4D0A5C476C0A6B6A(L_77, 0, NULL);
|
|
if (!L_78)
|
|
{
|
|
goto IL_0199;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_79 = ___1_str;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_80;
|
|
L_80 = DateTimeParse_VerifyValidPunctuation_mC1B41036A753D97D308AB0E940DD204A23B5C128(L_79, NULL);
|
|
if (L_80)
|
|
{
|
|
goto IL_0199;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_81 = ___3_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_81, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0199:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_82 = ___1_str;
|
|
bool L_83;
|
|
L_83 = __DTString_GetNext_m2DAFC0E1EB763649B66110695BDB206B71B1407F(L_82, NULL);
|
|
if (!L_83)
|
|
{
|
|
goto IL_01a9;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_84 = ___3_result;
|
|
DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0(L_84, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_01a9:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(GregorianCalendar_t6CC2956C5298E69CE93FE53A9DF5AE4F33621815_il2cpp_TypeInfo_var);
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_85;
|
|
L_85 = GregorianCalendar_GetDefaultInstance_mD47205AFE3A1E57FAE3857D4B82041A08FDB346A(NULL);
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_86 = ___0_raw;
|
|
int32_t L_87 = L_86->___year_3;
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_88 = ___0_raw;
|
|
int32_t L_89;
|
|
L_89 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_88, 0, NULL);
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* L_90 = ___0_raw;
|
|
int32_t L_91;
|
|
L_91 = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(L_90, 1, NULL);
|
|
int32_t L_92 = V_0;
|
|
int32_t L_93 = V_1;
|
|
int32_t L_94 = V_2;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_95 = ___3_result;
|
|
int32_t L_96 = L_95->___era_7;
|
|
NullCheck(L_85);
|
|
bool L_97;
|
|
L_97 = VirtualFuncInvoker9< bool, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* >::Invoke(23 /* System.Boolean System.Globalization.Calendar::TryToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTime&) */, L_85, L_87, L_89, L_91, L_92, L_93, L_94, 0, L_96, (&V_4));
|
|
if (L_97)
|
|
{
|
|
goto IL_01e3;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_98 = ___3_result;
|
|
DateTimeResult_SetFailure_m84403A0901C5114A46BB7F56E0208072C95AFB2A(L_98, 7, _stringLiteral3EE55018ADF7DD670653986FF76F19BB86A91162, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_01e3:
|
|
{
|
|
double L_99 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
double L_100;
|
|
L_100 = bankers_round(((double)il2cpp_codegen_multiply(L_99, (10000000.0))));
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_101;
|
|
L_101 = DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D((&V_4), il2cpp_codegen_cast_double_to_int<int64_t>(L_100), NULL);
|
|
V_4 = L_101;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_102 = ___3_result;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_103 = V_4;
|
|
L_102->___parsedDate_11 = L_103;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_104 = ___1_str;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_105 = ___3_result;
|
|
int32_t L_106 = ___2_styles;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_107;
|
|
L_107 = DateTimeParse_DetermineTimeZoneAdjustments_m1371F204F9CD47963E2A1E82E50E808472D593A9(L_104, L_105, L_106, (bool)0, NULL);
|
|
if (L_107)
|
|
{
|
|
goto IL_0212;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0212:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::ParseDigits(System.__DTString&,System.Int32,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_ParseDigits_mFF092ACCCF892D92899E7C413624900EAC24D81D (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___0_str, int32_t ___1_digitLen, int32_t* ___2_result, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___1_digitLen;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)1))))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_1 = ___0_str;
|
|
int32_t* L_2 = ___2_result;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = DateTimeParse_ParseDigits_m4CFA9E934F44809D2B1794710731A62BCAA790F2(L_1, 1, 2, L_2, NULL);
|
|
return L_3;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_4 = ___0_str;
|
|
int32_t L_5 = ___1_digitLen;
|
|
int32_t L_6 = ___1_digitLen;
|
|
int32_t* L_7 = ___2_result;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_8;
|
|
L_8 = DateTimeParse_ParseDigits_m4CFA9E934F44809D2B1794710731A62BCAA790F2(L_4, L_5, L_6, L_7, NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::ParseDigits(System.__DTString&,System.Int32,System.Int32,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_ParseDigits_m4CFA9E934F44809D2B1794710731A62BCAA790F2 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* ___0_str, int32_t ___1_minDigitLen, int32_t ___2_maxDigitLen, int32_t* ___3_result, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
V_0 = 0;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_0 = ___0_str;
|
|
int32_t L_1 = L_0->___Index_1;
|
|
V_1 = L_1;
|
|
V_2 = 0;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_2 = ___0_str;
|
|
bool L_3;
|
|
L_3 = __DTString_GetNextDigit_m078932668F40B02FE142720C8BB0C1A43F2B81A4_inline(L_2, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_4 = ___0_str;
|
|
int32_t* L_5 = (&L_4->___Index_1);
|
|
int32_t* L_6 = L_5;
|
|
int32_t L_7 = *((int32_t*)L_6);
|
|
*((int32_t*)L_6) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_7, 1));
|
|
goto IL_0036;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_9 = ___0_str;
|
|
int32_t L_10;
|
|
L_10 = __DTString_GetDigit_m2C1710445781E19205ECECC147287B2A1E325A4B(L_9, NULL);
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_8, ((int32_t)10))), L_10));
|
|
int32_t L_11 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
int32_t L_12 = V_2;
|
|
int32_t L_13 = ___2_maxDigitLen;
|
|
if ((((int32_t)L_12) < ((int32_t)L_13)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
int32_t* L_14 = ___3_result;
|
|
int32_t L_15 = V_0;
|
|
*((int32_t*)L_14) = (int32_t)L_15;
|
|
int32_t L_16 = V_2;
|
|
int32_t L_17 = ___1_minDigitLen;
|
|
if ((((int32_t)L_16) >= ((int32_t)L_17)))
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* L_18 = ___0_str;
|
|
int32_t L_19 = V_1;
|
|
L_18->___Index_1 = L_19;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.DateTime System.DateTimeParse::GetDateTimeNow(System.DateTimeResult&,System.Globalization.DateTimeStyles&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeParse_GetDateTimeNow_m12B3392F05B943A1834648699DBD5E24351FB544 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, int32_t* ___1_styles, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = L_0->___flags_8;
|
|
if (!((int32_t)((int32_t)L_1&((int32_t)2048))))
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_2 = ___0_result;
|
|
int32_t L_3 = L_2->___flags_8;
|
|
if (!((int32_t)((int32_t)L_3&((int32_t)256))))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4;
|
|
L_4 = DateTime_get_UtcNow_m06B6E9995FE16846A0F71EC9DB23E90BE2C5F9FA(NULL);
|
|
V_0 = L_4;
|
|
int64_t L_5;
|
|
L_5 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&V_0), NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_6 = ___0_result;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_7 = (&L_6->___timeZoneOffset_9);
|
|
int64_t L_8;
|
|
L_8 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline(L_7, NULL);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_9), ((int64_t)il2cpp_codegen_add(L_5, L_8)), 0, /*hidden argument*/NULL);
|
|
return L_9;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
int32_t* L_10 = ___1_styles;
|
|
int32_t L_11 = *((int32_t*)L_10);
|
|
if (!((int32_t)(L_11&((int32_t)64))))
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_12;
|
|
L_12 = DateTime_get_UtcNow_m06B6E9995FE16846A0F71EC9DB23E90BE2C5F9FA(NULL);
|
|
return L_12;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13;
|
|
L_13 = DateTime_get_Now_m636CB9651A9099D20BA1CF813A0C69637317325C(NULL);
|
|
return L_13;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::CheckDefaultDateTime(System.DateTimeResult&,System.Globalization.Calendar&,System.Globalization.DateTimeStyles)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_CheckDefaultDateTime_mEB866B24DCD1C5B2FDD6C490F71EAF2F316D77E9 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B** ___1_cal, int32_t ___2_styles, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GregorianCalendar_t6CC2956C5298E69CE93FE53A9DF5AE4F33621815_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral18B4C3FF17ADD49C3A5FCB657614AF5293A47A25);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = L_0->___flags_8;
|
|
if (!((int32_t)((int32_t)L_1&((int32_t)2048))))
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_2 = ___0_result;
|
|
int32_t L_3 = L_2->___Month_1;
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_4 = ___0_result;
|
|
int32_t L_5 = L_4->___Day_2;
|
|
if ((((int32_t)L_5) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_6 = ___0_result;
|
|
int32_t L_7 = L_6->___Year_0;
|
|
if ((((int32_t)L_7) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_8 = ___0_result;
|
|
int32_t L_9 = L_8->___flags_8;
|
|
if (!((int32_t)((int32_t)L_9&((int32_t)4096))))
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_10 = ___0_result;
|
|
int32_t L_11 = L_10->___flags_8;
|
|
if (!((int32_t)((int32_t)L_11&((int32_t)256))))
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_12 = ___0_result;
|
|
DateTimeResult_SetFailure_m84403A0901C5114A46BB7F56E0208072C95AFB2A(L_12, 4, _stringLiteral18B4C3FF17ADD49C3A5FCB657614AF5293A47A25, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_13 = ___0_result;
|
|
int32_t L_14 = L_13->___Year_0;
|
|
if ((((int32_t)L_14) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0071;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_15 = ___0_result;
|
|
int32_t L_16 = L_15->___Month_1;
|
|
if ((((int32_t)L_16) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0071;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_17 = ___0_result;
|
|
int32_t L_18 = L_17->___Day_2;
|
|
if ((!(((uint32_t)L_18) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_012f;
|
|
}
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_19 = ___0_result;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_20;
|
|
L_20 = DateTimeParse_GetDateTimeNow_m12B3392F05B943A1834648699DBD5E24351FB544(L_19, (&___2_styles), NULL);
|
|
V_0 = L_20;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_21 = ___0_result;
|
|
int32_t L_22 = L_21->___Month_1;
|
|
if ((!(((uint32_t)L_22) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_00f8;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_23 = ___0_result;
|
|
int32_t L_24 = L_23->___Day_2;
|
|
if ((!(((uint32_t)L_24) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_00f8;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_25 = ___0_result;
|
|
int32_t L_26 = L_25->___Year_0;
|
|
if ((!(((uint32_t)L_26) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_00e8;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_27 = ___2_styles;
|
|
if (!((int32_t)((int32_t)L_27&8)))
|
|
{
|
|
goto IL_00bc;
|
|
}
|
|
}
|
|
{
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B** L_28 = ___1_cal;
|
|
il2cpp_codegen_runtime_class_init_inline(GregorianCalendar_t6CC2956C5298E69CE93FE53A9DF5AE4F33621815_il2cpp_TypeInfo_var);
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_29;
|
|
L_29 = GregorianCalendar_GetDefaultInstance_mD47205AFE3A1E57FAE3857D4B82041A08FDB346A(NULL);
|
|
*((RuntimeObject**)L_28) = (RuntimeObject*)L_29;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_28, (void*)(RuntimeObject*)L_29);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_30 = ___0_result;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_31 = ___0_result;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_32 = ___0_result;
|
|
int32_t L_33 = 1;
|
|
V_1 = L_33;
|
|
L_32->___Day_2 = L_33;
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = L_34;
|
|
V_1 = L_35;
|
|
L_31->___Month_1 = L_35;
|
|
int32_t L_36 = V_1;
|
|
L_30->___Year_0 = L_36;
|
|
goto IL_012f;
|
|
}
|
|
|
|
IL_00bc:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_37 = ___0_result;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B** L_38 = ___1_cal;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_39 = *((Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B**)L_38);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_40 = V_0;
|
|
NullCheck(L_39);
|
|
int32_t L_41;
|
|
L_41 = VirtualFuncInvoker1< int32_t, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D >::Invoke(19 /* System.Int32 System.Globalization.Calendar::GetYear(System.DateTime) */, L_39, L_40);
|
|
L_37->___Year_0 = L_41;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_42 = ___0_result;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B** L_43 = ___1_cal;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_44 = *((Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B**)L_43);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_45 = V_0;
|
|
NullCheck(L_44);
|
|
int32_t L_46;
|
|
L_46 = VirtualFuncInvoker1< int32_t, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D >::Invoke(17 /* System.Int32 System.Globalization.Calendar::GetMonth(System.DateTime) */, L_44, L_45);
|
|
L_42->___Month_1 = L_46;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_47 = ___0_result;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B** L_48 = ___1_cal;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_49 = *((Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B**)L_48);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_50 = V_0;
|
|
NullCheck(L_49);
|
|
int32_t L_51;
|
|
L_51 = VirtualFuncInvoker1< int32_t, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D >::Invoke(11 /* System.Int32 System.Globalization.Calendar::GetDayOfMonth(System.DateTime) */, L_49, L_50);
|
|
L_47->___Day_2 = L_51;
|
|
goto IL_012f;
|
|
}
|
|
|
|
IL_00e8:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_52 = ___0_result;
|
|
L_52->___Month_1 = 1;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_53 = ___0_result;
|
|
L_53->___Day_2 = 1;
|
|
goto IL_012f;
|
|
}
|
|
|
|
IL_00f8:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_54 = ___0_result;
|
|
int32_t L_55 = L_54->___Year_0;
|
|
if ((!(((uint32_t)L_55) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_010f;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_56 = ___0_result;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B** L_57 = ___1_cal;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_58 = *((Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B**)L_57);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_59 = V_0;
|
|
NullCheck(L_58);
|
|
int32_t L_60;
|
|
L_60 = VirtualFuncInvoker1< int32_t, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D >::Invoke(19 /* System.Int32 System.Globalization.Calendar::GetYear(System.DateTime) */, L_58, L_59);
|
|
L_56->___Year_0 = L_60;
|
|
}
|
|
|
|
IL_010f:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_61 = ___0_result;
|
|
int32_t L_62 = L_61->___Month_1;
|
|
if ((!(((uint32_t)L_62) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_011f;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_63 = ___0_result;
|
|
L_63->___Month_1 = 1;
|
|
}
|
|
|
|
IL_011f:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_64 = ___0_result;
|
|
int32_t L_65 = L_64->___Day_2;
|
|
if ((!(((uint32_t)L_65) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_012f;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_66 = ___0_result;
|
|
L_66->___Day_2 = 1;
|
|
}
|
|
|
|
IL_012f:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_67 = ___0_result;
|
|
int32_t L_68 = L_67->___Hour_3;
|
|
if ((!(((uint32_t)L_68) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_013f;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_69 = ___0_result;
|
|
L_69->___Hour_3 = 0;
|
|
}
|
|
|
|
IL_013f:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_70 = ___0_result;
|
|
int32_t L_71 = L_70->___Minute_4;
|
|
if ((!(((uint32_t)L_71) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_014f;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_72 = ___0_result;
|
|
L_72->___Minute_4 = 0;
|
|
}
|
|
|
|
IL_014f:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_73 = ___0_result;
|
|
int32_t L_74 = L_73->___Second_5;
|
|
if ((!(((uint32_t)L_74) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_015f;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_75 = ___0_result;
|
|
L_75->___Second_5 = 0;
|
|
}
|
|
|
|
IL_015f:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_76 = ___0_result;
|
|
int32_t L_77 = L_76->___era_7;
|
|
if ((!(((uint32_t)L_77) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_016f;
|
|
}
|
|
}
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_78 = ___0_result;
|
|
L_78->___era_7 = 0;
|
|
}
|
|
|
|
IL_016f:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.DateTimeParse::TryParseQuoteString(System.ReadOnlySpan`1<System.Char>,System.Int32,System.Text.StringBuilder,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParse_TryParseQuoteString_m6799328DAE05EF606C3725BD24C077F6DC3EF16C (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, int32_t ___1_pos, StringBuilder_t* ___2_result, int32_t* ___3_returnValue, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
bool V_3 = false;
|
|
Il2CppChar V_4 = 0x0;
|
|
{
|
|
int32_t* L_0 = ___3_returnValue;
|
|
*((int32_t*)L_0) = (int32_t)0;
|
|
int32_t L_1;
|
|
L_1 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_format), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
int32_t L_2 = ___1_pos;
|
|
V_1 = L_2;
|
|
int32_t L_3 = ___1_pos;
|
|
int32_t L_4 = L_3;
|
|
___1_pos = ((int32_t)il2cpp_codegen_add(L_4, 1));
|
|
Il2CppChar* L_5;
|
|
L_5 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_format))->____pointer_0))->value, (L_4), ((&___0_format))->____length_1);
|
|
int32_t L_6 = *((uint16_t*)L_5);
|
|
V_2 = L_6;
|
|
V_3 = (bool)0;
|
|
goto IL_0065;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t L_7 = ___1_pos;
|
|
int32_t L_8 = L_7;
|
|
___1_pos = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
Il2CppChar* L_9;
|
|
L_9 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_format))->____pointer_0))->value, (L_8), ((&___0_format))->____length_1);
|
|
int32_t L_10 = *((uint16_t*)L_9);
|
|
V_4 = L_10;
|
|
Il2CppChar L_11 = V_4;
|
|
Il2CppChar L_12 = V_2;
|
|
if ((!(((uint32_t)L_11) == ((uint32_t)L_12))))
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (bool)1;
|
|
goto IL_0069;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
Il2CppChar L_13 = V_4;
|
|
if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)92)))))
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_14 = ___1_pos;
|
|
int32_t L_15 = V_0;
|
|
if ((((int32_t)L_14) >= ((int32_t)L_15)))
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t* L_16 = ___2_result;
|
|
int32_t L_17 = ___1_pos;
|
|
int32_t L_18 = L_17;
|
|
___1_pos = ((int32_t)il2cpp_codegen_add(L_18, 1));
|
|
Il2CppChar* L_19;
|
|
L_19 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_format))->____pointer_0))->value, (L_18), ((&___0_format))->____length_1);
|
|
int32_t L_20 = *((uint16_t*)L_19);
|
|
NullCheck(L_16);
|
|
StringBuilder_t* L_21;
|
|
L_21 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_16, L_20, NULL);
|
|
goto IL_0065;
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
StringBuilder_t* L_22 = ___2_result;
|
|
Il2CppChar L_23 = V_4;
|
|
NullCheck(L_22);
|
|
StringBuilder_t* L_24;
|
|
L_24 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_22, L_23, NULL);
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
int32_t L_25 = ___1_pos;
|
|
int32_t L_26 = V_0;
|
|
if ((((int32_t)L_25) < ((int32_t)L_26)))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
bool L_27 = V_3;
|
|
if (L_27)
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
int32_t* L_28 = ___3_returnValue;
|
|
int32_t L_29 = ___1_pos;
|
|
int32_t L_30 = V_1;
|
|
*((int32_t*)L_28) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_29, L_30));
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Exception System.DateTimeParse::GetDateTimeParseException(System.DateTimeResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* DateTimeParse_GetDateTimeParseException_m06B7086328CD3F5D28FFD26013FB47043D6E5D0A (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* ___0_result, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_0 = ___0_result;
|
|
int32_t L_1 = L_0->___failure_12;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, 1)))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_009b;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_00bc;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_00dd;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0104;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_3 = ___0_result;
|
|
String_t* L_4 = L_3->___failureArgumentName_15;
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_5 = ___0_result;
|
|
String_t* L_6 = L_5->___failureMessageID_13;
|
|
String_t* L_7;
|
|
L_7 = SR_GetResourceString_m10BCB05F0B61836C66DAC9C1A8D68C82B0781F1E(L_6, NULL);
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_8 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var);
|
|
NullCheck(L_8);
|
|
ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_8, L_4, L_7, NULL);
|
|
return L_8;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_9 = ___0_result;
|
|
String_t* L_10 = L_9->___failureMessageID_13;
|
|
String_t* L_11;
|
|
L_11 = SR_GetResourceString_m10BCB05F0B61836C66DAC9C1A8D68C82B0781F1E(L_10, NULL);
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_12 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_12);
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_12, L_11, NULL);
|
|
return L_12;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_13 = ___0_result;
|
|
String_t* L_14 = L_13->___failureMessageID_13;
|
|
String_t* L_15;
|
|
L_15 = SR_GetResourceString_m10BCB05F0B61836C66DAC9C1A8D68C82B0781F1E(L_14, NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_16 = ___0_result;
|
|
RuntimeObject* L_17 = L_16->___failureMessageFormatArgument_14;
|
|
String_t* L_18;
|
|
L_18 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(L_15, L_17, NULL);
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_19 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_19);
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_19, L_18, NULL);
|
|
return L_19;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_20 = ___0_result;
|
|
String_t* L_21 = L_20->___failureMessageID_13;
|
|
String_t* L_22;
|
|
L_22 = SR_GetResourceString_m10BCB05F0B61836C66DAC9C1A8D68C82B0781F1E(L_21, NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_23 = ___0_result;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_24 = L_23->___originalDateTimeString_16;
|
|
String_t* L_25;
|
|
L_25 = String_CreateString_m1618CF9F1145C9832FC830A4BD6DD96A540012F8(NULL, L_24, NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_26 = ___0_result;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_27 = L_26->___calendar_10;
|
|
String_t* L_28;
|
|
L_28 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(L_22, L_25, L_27, NULL);
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_29 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_29);
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_29, L_28, NULL);
|
|
return L_29;
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_30 = ___0_result;
|
|
String_t* L_31 = L_30->___failureMessageID_13;
|
|
String_t* L_32;
|
|
L_32 = SR_GetResourceString_m10BCB05F0B61836C66DAC9C1A8D68C82B0781F1E(L_31, NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_33 = ___0_result;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_34 = L_33->___originalDateTimeString_16;
|
|
String_t* L_35;
|
|
L_35 = String_CreateString_m1618CF9F1145C9832FC830A4BD6DD96A540012F8(NULL, L_34, NULL);
|
|
String_t* L_36;
|
|
L_36 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(L_32, L_35, NULL);
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_37 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_37);
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_37, L_36, NULL);
|
|
return L_37;
|
|
}
|
|
|
|
IL_00bc:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_38 = ___0_result;
|
|
String_t* L_39 = L_38->___failureMessageID_13;
|
|
String_t* L_40;
|
|
L_40 = SR_GetResourceString_m10BCB05F0B61836C66DAC9C1A8D68C82B0781F1E(L_39, NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_41 = ___0_result;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_42 = L_41->___failedFormatSpecifier_17;
|
|
String_t* L_43;
|
|
L_43 = String_CreateString_m1618CF9F1145C9832FC830A4BD6DD96A540012F8(NULL, L_42, NULL);
|
|
String_t* L_44;
|
|
L_44 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(L_40, L_43, NULL);
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_45 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_45);
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_45, L_44, NULL);
|
|
return L_45;
|
|
}
|
|
|
|
IL_00dd:
|
|
{
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_46 = ___0_result;
|
|
String_t* L_47 = L_46->___failureMessageID_13;
|
|
String_t* L_48;
|
|
L_48 = SR_GetResourceString_m10BCB05F0B61836C66DAC9C1A8D68C82B0781F1E(L_47, NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_49 = ___0_result;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_50 = L_49->___originalDateTimeString_16;
|
|
String_t* L_51;
|
|
L_51 = String_CreateString_m1618CF9F1145C9832FC830A4BD6DD96A540012F8(NULL, L_50, NULL);
|
|
DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* L_52 = ___0_result;
|
|
RuntimeObject* L_53 = L_52->___failureMessageFormatArgument_14;
|
|
String_t* L_54;
|
|
L_54 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(L_48, L_51, L_53, NULL);
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_55 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_55);
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_55, L_54, NULL);
|
|
return L_55;
|
|
}
|
|
|
|
IL_0104:
|
|
{
|
|
return (Exception_t*)NULL;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeParse::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeParse__cctor_mC80F7ECF1FC2C543394AAC88022A2019D68963FF (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____0E499E7743BCDFF289B85890E4DFDD635594DB16246DC094C3C19556B6C1262C_3_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____2CCF4119215BDAD102DA7AD5B57E0E6CA19CC8FF5524856FC58907E824213E1F_14_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____3444EB31231B2CCC1B05C7A44EBD1B2A009C1D9977A99B453F52E2F81DD6C32F_15_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____3F62692E2AD5078353EC4471A13421A61EE493294CF59DC66626A6EF9CCCD2C4_17_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____5EC4E50DA95A113769D73E5F7F8221A876185CEE6498ABB16FBB9F0563C15BBF_28_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____6DC92D3617F0357376502FBA4CDD465B5423818DABE8B2CA1A06E1351F2F1C85_32_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____7F777906B0704EB248888E491577584D5BEBE71B375BD595A06444390B471915_36_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____8259E3EBA4D41CA02AE5322BBD280034A9C9860D9CD0D2038139FC9EBE6B6C77_39_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____861FD05B0EAD3D0AA9418B140CC37846BBC5F195214D90CEF42919D1E36EED10_41_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____A252A93D042C5E2453990C2829A425C6DD749CCDCDF13DB58C11BBC78E8D3CE9_53_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____A30E1152CFB528AE968FAC58E83BBEB3611BFDE2E6CF60B4FA9535A7D0A9B8EA_56_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____AAF4528994DD7C464F43C131F6CD44DF41ACC18462C95877252FFC7EAC0164EF_58_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____C5733A1245383FBF067B4A9BDB41E3FB8E3A6BDEF37B3D5418F389422875783F_64_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____CAF8A46B3A07E26F84FE849B57A877051A0D06194B1C057985446B64BCC6E016_68_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____D1A99909A2923269BB67E72C1AED693F74961BDA58360FCC133007740CEBF5F1_70_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____D503954AE2C3616EA32CEB0D66F5B2E119D03CE722773E5D7E1A8BC8F1803631_71_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____D8A29F3D197FBB54CF9F4B105AFBA6B1257ADF6449F0184F843380AAAA24639C_74_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____DCDCF594464B904F763D4CE53B1DBE08A47E551AE86FD5D61F63FD0C3313FDC3_75_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____DF29A050CD2EBD9DFDC783DB1CC74D3D716DAEC1630A337EE31B9E2E03D34D2D_78_FieldInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____F4BD8144313C3B67E191C6F3CD8B00540FF1809837C5BCA5C2FDA0D518681563_90_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_0 = (DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A*)(DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A*)SZArrayNew(DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)20));
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_1 = L_0;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_2 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_3 = L_2;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_4 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____8259E3EBA4D41CA02AE5322BBD280034A9C9860D9CD0D2038139FC9EBE6B6C77_39_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_3, L_4, NULL);
|
|
NullCheck(L_1);
|
|
ArrayElementTypeCheck (L_1, L_3);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_3);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_5 = L_1;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_6 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_7 = L_6;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_8 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____7F777906B0704EB248888E491577584D5BEBE71B375BD595A06444390B471915_36_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_7, L_8, NULL);
|
|
NullCheck(L_5);
|
|
ArrayElementTypeCheck (L_5, L_7);
|
|
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_7);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_9 = L_5;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_10 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_11 = L_10;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_12 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____A30E1152CFB528AE968FAC58E83BBEB3611BFDE2E6CF60B4FA9535A7D0A9B8EA_56_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_11, L_12, NULL);
|
|
NullCheck(L_9);
|
|
ArrayElementTypeCheck (L_9, L_11);
|
|
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(2), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_11);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_13 = L_9;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_14 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_15 = L_14;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_16 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____CAF8A46B3A07E26F84FE849B57A877051A0D06194B1C057985446B64BCC6E016_68_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_15, L_16, NULL);
|
|
NullCheck(L_13);
|
|
ArrayElementTypeCheck (L_13, L_15);
|
|
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(3), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_15);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_17 = L_13;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_18 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_19 = L_18;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_20 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____D8A29F3D197FBB54CF9F4B105AFBA6B1257ADF6449F0184F843380AAAA24639C_74_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_19, L_20, NULL);
|
|
NullCheck(L_17);
|
|
ArrayElementTypeCheck (L_17, L_19);
|
|
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(4), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_19);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_21 = L_17;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_22 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_23 = L_22;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_24 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____3F62692E2AD5078353EC4471A13421A61EE493294CF59DC66626A6EF9CCCD2C4_17_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_23, L_24, NULL);
|
|
NullCheck(L_21);
|
|
ArrayElementTypeCheck (L_21, L_23);
|
|
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(5), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_23);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_25 = L_21;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_26 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_27 = L_26;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_28 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____DCDCF594464B904F763D4CE53B1DBE08A47E551AE86FD5D61F63FD0C3313FDC3_75_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_27, L_28, NULL);
|
|
NullCheck(L_25);
|
|
ArrayElementTypeCheck (L_25, L_27);
|
|
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(6), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_27);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_29 = L_25;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_30 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_31 = L_30;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_32 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____A252A93D042C5E2453990C2829A425C6DD749CCDCDF13DB58C11BBC78E8D3CE9_53_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_31, L_32, NULL);
|
|
NullCheck(L_29);
|
|
ArrayElementTypeCheck (L_29, L_31);
|
|
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(7), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_31);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_33 = L_29;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_34 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_35 = L_34;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_36 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____D503954AE2C3616EA32CEB0D66F5B2E119D03CE722773E5D7E1A8BC8F1803631_71_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_35, L_36, NULL);
|
|
NullCheck(L_33);
|
|
ArrayElementTypeCheck (L_33, L_35);
|
|
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(8), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_35);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_37 = L_33;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_38 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_39 = L_38;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_40 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____2CCF4119215BDAD102DA7AD5B57E0E6CA19CC8FF5524856FC58907E824213E1F_14_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_39, L_40, NULL);
|
|
NullCheck(L_37);
|
|
ArrayElementTypeCheck (L_37, L_39);
|
|
(L_37)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_39);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_41 = L_37;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_42 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_43 = L_42;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_44 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____3444EB31231B2CCC1B05C7A44EBD1B2A009C1D9977A99B453F52E2F81DD6C32F_15_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_43, L_44, NULL);
|
|
NullCheck(L_41);
|
|
ArrayElementTypeCheck (L_41, L_43);
|
|
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_43);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_45 = L_41;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_46 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_47 = L_46;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_48 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____6DC92D3617F0357376502FBA4CDD465B5423818DABE8B2CA1A06E1351F2F1C85_32_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_47, L_48, NULL);
|
|
NullCheck(L_45);
|
|
ArrayElementTypeCheck (L_45, L_47);
|
|
(L_45)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_47);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_49 = L_45;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_50 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_51 = L_50;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_52 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____0E499E7743BCDFF289B85890E4DFDD635594DB16246DC094C3C19556B6C1262C_3_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_51, L_52, NULL);
|
|
NullCheck(L_49);
|
|
ArrayElementTypeCheck (L_49, L_51);
|
|
(L_49)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_51);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_53 = L_49;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_54 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_55 = L_54;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_56 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____861FD05B0EAD3D0AA9418B140CC37846BBC5F195214D90CEF42919D1E36EED10_41_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_55, L_56, NULL);
|
|
NullCheck(L_53);
|
|
ArrayElementTypeCheck (L_53, L_55);
|
|
(L_53)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_55);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_57 = L_53;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_58 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_59 = L_58;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_60 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____AAF4528994DD7C464F43C131F6CD44DF41ACC18462C95877252FFC7EAC0164EF_58_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_59, L_60, NULL);
|
|
NullCheck(L_57);
|
|
ArrayElementTypeCheck (L_57, L_59);
|
|
(L_57)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_59);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_61 = L_57;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_62 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_63 = L_62;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_64 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____5EC4E50DA95A113769D73E5F7F8221A876185CEE6498ABB16FBB9F0563C15BBF_28_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_63, L_64, NULL);
|
|
NullCheck(L_61);
|
|
ArrayElementTypeCheck (L_61, L_63);
|
|
(L_61)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_63);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_65 = L_61;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_66 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_67 = L_66;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_68 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____C5733A1245383FBF067B4A9BDB41E3FB8E3A6BDEF37B3D5418F389422875783F_64_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_67, L_68, NULL);
|
|
NullCheck(L_65);
|
|
ArrayElementTypeCheck (L_65, L_67);
|
|
(L_65)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)16)), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_67);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_69 = L_65;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_70 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_71 = L_70;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_72 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____DF29A050CD2EBD9DFDC783DB1CC74D3D716DAEC1630A337EE31B9E2E03D34D2D_78_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_71, L_72, NULL);
|
|
NullCheck(L_69);
|
|
ArrayElementTypeCheck (L_69, L_71);
|
|
(L_69)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)17)), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_71);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_73 = L_69;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_74 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_75 = L_74;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_76 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____F4BD8144313C3B67E191C6F3CD8B00540FF1809837C5BCA5C2FDA0D518681563_90_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_75, L_76, NULL);
|
|
NullCheck(L_73);
|
|
ArrayElementTypeCheck (L_73, L_75);
|
|
(L_73)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)18)), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_75);
|
|
DSU5BU5DU5BU5D_tB103BA15B839EEFCBA5FA2FF2234903A177E854A* L_77 = L_73;
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_78 = (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)SZArrayNew(DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970_il2cpp_TypeInfo_var, (uint32_t)((int32_t)18));
|
|
DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970* L_79 = L_78;
|
|
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_80 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____D1A99909A2923269BB67E72C1AED693F74961BDA58360FCC133007740CEBF5F1_70_FieldInfo_var) };
|
|
RuntimeHelpers_InitializeArray_m751372AA3F24FBF6DA9B9D687CBFA2DE436CAB9B((RuntimeArray*)L_79, L_80, NULL);
|
|
NullCheck(L_77);
|
|
ArrayElementTypeCheck (L_77, L_79);
|
|
(L_77)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)19)), (DSU5BU5D_tA2725FE50E2AC3781DDB1EBE98D99AF307BAA970*)L_79);
|
|
((DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var))->___dateParsingStates_0 = L_77;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var))->___dateParsingStates_0), (void*)L_77);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Conversion methods for marshalling of: System.__DTString
|
|
IL2CPP_EXTERN_C void __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_marshal_pinvoke(const __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637& unmarshaled, __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___m_info_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_info' of type '__DTString': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_info_3Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_marshal_pinvoke_back(const __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_marshaled_pinvoke& marshaled, __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637& unmarshaled)
|
|
{
|
|
Exception_t* ___m_info_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_info' of type '__DTString': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_info_3Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: System.__DTString
|
|
IL2CPP_EXTERN_C void __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_marshal_pinvoke_cleanup(__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: System.__DTString
|
|
IL2CPP_EXTERN_C void __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_marshal_com(const __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637& unmarshaled, __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___m_info_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_info' of type '__DTString': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_info_3Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_marshal_com_back(const __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_marshaled_com& marshaled, __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637& unmarshaled)
|
|
{
|
|
Exception_t* ___m_info_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_info' of type '__DTString': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_info_3Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: System.__DTString
|
|
IL2CPP_EXTERN_C void __DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_marshal_com_cleanup(__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// System.Int32 System.__DTString::get_Length()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_0 = (&__this->___Value_0);
|
|
int32_t L_1;
|
|
L_1 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline(L_0, ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.__DTString::.ctor(System.ReadOnlySpan`1<System.Char>,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __DTString__ctor_mA373A18F43531434E2B5644E88171623C86416F6 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___1_dtfi, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
__this->___Index_1 = (-1);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_str;
|
|
__this->___Value_0 = L_0;
|
|
__this->___m_current_2 = 0;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_1 = ___1_dtfi;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_2 = ___1_dtfi;
|
|
NullCheck(L_2);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_3;
|
|
L_3 = DateTimeFormatInfo_get_CompareInfo_m5EE0D2D859788948D1A235DD8166A25B30908426(L_2, NULL);
|
|
__this->___m_info_3 = L_3;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_4 = ___1_dtfi;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = DateTimeFormatInfo_get_FormatFlags_m02C18CB504B5F1547635C20439FF6E468D08A669(L_4, NULL);
|
|
__this->___m_checkDigitToken_4 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_5&((int32_t)32)))) <= ((uint32_t)0)))? 1 : 0);
|
|
return;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_6;
|
|
L_6 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL);
|
|
NullCheck(L_6);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_7;
|
|
L_7 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_6);
|
|
__this->___m_info_3 = L_7;
|
|
__this->___m_checkDigitToken_4 = (bool)0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.__DTString::GetNext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool __DTString_GetNext_m2DAFC0E1EB763649B66110695BDB206B71B1407F (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Index_1;
|
|
__this->___Index_1 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
int32_t L_1 = __this->___Index_1;
|
|
int32_t L_2;
|
|
L_2 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(__this, NULL);
|
|
if ((((int32_t)L_1) >= ((int32_t)L_2)))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_3 = (&__this->___Value_0);
|
|
int32_t L_4 = __this->___Index_1;
|
|
Il2CppChar* L_5;
|
|
L_5 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_3)->____pointer_0))->value, (L_4), (L_3)->____length_1);
|
|
int32_t L_6 = *((uint16_t*)L_5);
|
|
__this->___m_current_2 = L_6;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.__DTString::AtEnd()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool __DTString_AtEnd_m842272A109A260E9175838B489D9A8582400E59A (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Index_1;
|
|
int32_t L_1;
|
|
L_1 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(__this, NULL);
|
|
if ((((int32_t)L_0) < ((int32_t)L_1)))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.__DTString::Advance(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool __DTString_Advance_m81BD906CCFA3F0C557BB61A2E8D24698979420B8 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, int32_t ___0_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Index_1;
|
|
int32_t L_1 = ___0_count;
|
|
__this->___Index_1 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = __this->___Index_1;
|
|
int32_t L_3;
|
|
L_3 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(__this, NULL);
|
|
if ((((int32_t)L_2) >= ((int32_t)L_3)))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_4 = (&__this->___Value_0);
|
|
int32_t L_5 = __this->___Index_1;
|
|
Il2CppChar* L_6;
|
|
L_6 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_4)->____pointer_0))->value, (L_5), (L_4)->____length_1);
|
|
int32_t L_7 = *((uint16_t*)L_6);
|
|
__this->___m_current_2 = L_7;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Void System.__DTString::GetRegularToken(System.TokenType&,System.Int32&,System.Globalization.DateTimeFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __DTString_GetRegularToken_mF7E4F8A3FDA483D70D31E919BD247BE18834842A (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, int32_t* ___0_tokenType, int32_t* ___1_tokenValue, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___2_dtfi, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
Il2CppChar V_4 = 0x0;
|
|
int32_t V_5 = 0;
|
|
int32_t V_6 = 0;
|
|
{
|
|
int32_t* L_0 = ___1_tokenValue;
|
|
*((int32_t*)L_0) = (int32_t)0;
|
|
int32_t L_1 = __this->___Index_1;
|
|
int32_t L_2;
|
|
L_2 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(__this, NULL);
|
|
if ((((int32_t)L_1) < ((int32_t)L_2)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_3 = ___0_tokenType;
|
|
*((int32_t*)L_3) = (int32_t)6;
|
|
return;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
int32_t* L_4 = ___0_tokenType;
|
|
*((int32_t*)L_4) = (int32_t)((int32_t)11);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
Il2CppChar L_5 = __this->___m_current_2;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = DateTimeParse_IsDigit_m6B5476FF200B01E7DFE11AEB34706EE1CC796AF1(L_5, NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0114;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_7 = ___1_tokenValue;
|
|
Il2CppChar L_8 = __this->___m_current_2;
|
|
*((int32_t*)L_7) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, ((int32_t)48)));
|
|
int32_t L_9 = __this->___Index_1;
|
|
V_1 = L_9;
|
|
goto IL_0071;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_10 = (&__this->___Value_0);
|
|
int32_t L_11 = __this->___Index_1;
|
|
Il2CppChar* L_12;
|
|
L_12 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_10)->____pointer_0))->value, (L_11), (L_10)->____length_1);
|
|
int32_t L_13 = *((uint16_t*)L_12);
|
|
__this->___m_current_2 = L_13;
|
|
Il2CppChar L_14 = __this->___m_current_2;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, ((int32_t)48)));
|
|
int32_t L_15 = V_0;
|
|
if ((((int32_t)L_15) < ((int32_t)0)))
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_0;
|
|
if ((((int32_t)L_16) > ((int32_t)((int32_t)9))))
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_17 = ___1_tokenValue;
|
|
int32_t* L_18 = ___1_tokenValue;
|
|
int32_t L_19 = *((int32_t*)L_18);
|
|
int32_t L_20 = V_0;
|
|
*((int32_t*)L_17) = (int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_19, ((int32_t)10))), L_20));
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
int32_t L_21 = __this->___Index_1;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_21, 1));
|
|
int32_t L_22 = V_2;
|
|
__this->___Index_1 = L_22;
|
|
int32_t L_23 = V_2;
|
|
int32_t L_24;
|
|
L_24 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(__this, NULL);
|
|
if ((((int32_t)L_23) < ((int32_t)L_24)))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
int32_t L_25 = __this->___Index_1;
|
|
int32_t L_26 = V_1;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_25, L_26))) <= ((int32_t)8)))
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_27 = ___0_tokenType;
|
|
*((int32_t*)L_27) = (int32_t)1;
|
|
int32_t* L_28 = ___1_tokenValue;
|
|
*((int32_t*)L_28) = (int32_t)(-1);
|
|
goto IL_00b0;
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
int32_t L_29 = __this->___Index_1;
|
|
int32_t L_30 = V_1;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_29, L_30))) >= ((int32_t)3)))
|
|
{
|
|
goto IL_00ad;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_31 = ___0_tokenType;
|
|
*((int32_t*)L_31) = (int32_t)1;
|
|
goto IL_00b0;
|
|
}
|
|
|
|
IL_00ad:
|
|
{
|
|
int32_t* L_32 = ___0_tokenType;
|
|
*((int32_t*)L_32) = (int32_t)2;
|
|
}
|
|
|
|
IL_00b0:
|
|
{
|
|
bool L_33 = __this->___m_checkDigitToken_4;
|
|
if (!L_33)
|
|
{
|
|
goto IL_0177;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_34 = __this->___Index_1;
|
|
V_3 = L_34;
|
|
Il2CppChar L_35 = __this->___m_current_2;
|
|
V_4 = L_35;
|
|
int32_t L_36 = V_1;
|
|
__this->___Index_1 = L_36;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_37 = (&__this->___Value_0);
|
|
int32_t L_38 = __this->___Index_1;
|
|
Il2CppChar* L_39;
|
|
L_39 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_37)->____pointer_0))->value, (L_38), (L_37)->____length_1);
|
|
int32_t L_40 = *((uint16_t*)L_39);
|
|
__this->___m_current_2 = L_40;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_41 = ___2_dtfi;
|
|
NullCheck(L_41);
|
|
bool L_42;
|
|
L_42 = DateTimeFormatInfo_Tokenize_mF3AFCE9FF7A9E916C1FD45D74259144A5F9B773F(L_41, ((int32_t)255), (&V_5), (&V_6), __this, NULL);
|
|
if (!L_42)
|
|
{
|
|
goto IL_0104;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_43 = ___0_tokenType;
|
|
int32_t L_44 = V_5;
|
|
*((int32_t*)L_43) = (int32_t)L_44;
|
|
int32_t* L_45 = ___1_tokenValue;
|
|
int32_t L_46 = V_6;
|
|
*((int32_t*)L_45) = (int32_t)L_46;
|
|
return;
|
|
}
|
|
|
|
IL_0104:
|
|
{
|
|
int32_t L_47 = V_3;
|
|
__this->___Index_1 = L_47;
|
|
Il2CppChar L_48 = V_4;
|
|
__this->___m_current_2 = L_48;
|
|
return;
|
|
}
|
|
|
|
IL_0114:
|
|
{
|
|
Il2CppChar L_49 = __this->___m_current_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_50;
|
|
L_50 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_49, NULL);
|
|
if (!L_50)
|
|
{
|
|
goto IL_0168;
|
|
}
|
|
}
|
|
{
|
|
goto IL_014b;
|
|
}
|
|
|
|
IL_0123:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_51 = (&__this->___Value_0);
|
|
int32_t L_52 = __this->___Index_1;
|
|
Il2CppChar* L_53;
|
|
L_53 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_51)->____pointer_0))->value, (L_52), (L_51)->____length_1);
|
|
int32_t L_54 = *((uint16_t*)L_53);
|
|
__this->___m_current_2 = L_54;
|
|
Il2CppChar L_55 = __this->___m_current_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_56;
|
|
L_56 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_55, NULL);
|
|
if (!L_56)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
|
|
IL_014b:
|
|
{
|
|
int32_t L_57 = __this->___Index_1;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_57, 1));
|
|
int32_t L_58 = V_2;
|
|
__this->___Index_1 = L_58;
|
|
int32_t L_59 = V_2;
|
|
int32_t L_60;
|
|
L_60 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(__this, NULL);
|
|
if ((((int32_t)L_59) < ((int32_t)L_60)))
|
|
{
|
|
goto IL_0123;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_61 = ___0_tokenType;
|
|
*((int32_t*)L_61) = (int32_t)6;
|
|
return;
|
|
}
|
|
|
|
IL_0168:
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_62 = ___2_dtfi;
|
|
int32_t* L_63 = ___0_tokenType;
|
|
int32_t* L_64 = ___1_tokenValue;
|
|
NullCheck(L_62);
|
|
bool L_65;
|
|
L_65 = DateTimeFormatInfo_Tokenize_mF3AFCE9FF7A9E916C1FD45D74259144A5F9B773F(L_62, ((int32_t)255), L_63, L_64, __this, NULL);
|
|
}
|
|
|
|
IL_0177:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.TokenType System.__DTString::GetSeparatorToken(System.Globalization.DateTimeFormatInfo,System.Int32&,System.Char&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t __DTString_GetSeparatorToken_m9ADF41C54B30D0AE706F3CB6E1433B1E51B6CA84 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___0_dtfi, int32_t* ___1_indexBeforeSeparator, Il2CppChar* ___2_charBeforeSeparator, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t* L_0 = ___1_indexBeforeSeparator;
|
|
int32_t L_1 = __this->___Index_1;
|
|
*((int32_t*)L_0) = (int32_t)L_1;
|
|
Il2CppChar* L_2 = ___2_charBeforeSeparator;
|
|
Il2CppChar L_3 = __this->___m_current_2;
|
|
*((int16_t*)L_2) = (int16_t)L_3;
|
|
bool L_4;
|
|
L_4 = __DTString_SkipWhiteSpaceCurrent_mEFCC8DCABD43754458F9DB4C371AE9BBE9961D91(__this, NULL);
|
|
if (L_4)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
return (int32_t)(((int32_t)512));
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
Il2CppChar L_5 = __this->___m_current_2;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = DateTimeParse_IsDigit_m6B5476FF200B01E7DFE11AEB34706EE1CC796AF1(L_5, NULL);
|
|
if (L_6)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* L_7 = ___0_dtfi;
|
|
NullCheck(L_7);
|
|
bool L_8;
|
|
L_8 = DateTimeFormatInfo_Tokenize_mF3AFCE9FF7A9E916C1FD45D74259144A5F9B773F(L_7, ((int32_t)65280), (&V_0), (&V_1), __this, NULL);
|
|
if (L_8)
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
V_0 = ((int32_t)768);
|
|
goto IL_004b;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
V_0 = ((int32_t)768);
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
int32_t L_9 = V_0;
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Boolean System.__DTString::MatchSpecifiedWords(System.String,System.Boolean,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool __DTString_MatchSpecifiedWords_m04927913B3403CAF82463E212A333E2D2F3568E4 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, String_t* ___0_target, bool ___1_checkWordBoundary, int32_t* ___2_matchLength, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
int32_t V_6 = 0;
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_0 = (&__this->___Value_0);
|
|
int32_t L_1;
|
|
L_1 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline(L_0, ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
int32_t L_2 = __this->___Index_1;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, L_2));
|
|
int32_t* L_3 = ___2_matchLength;
|
|
String_t* L_4 = ___0_target;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
|
|
*((int32_t*)L_3) = (int32_t)L_5;
|
|
int32_t* L_6 = ___2_matchLength;
|
|
int32_t L_7 = *((int32_t*)L_6);
|
|
int32_t L_8 = V_0;
|
|
if ((((int32_t)L_7) > ((int32_t)L_8)))
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_9 = __this->___m_info_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_10 = (&__this->___Value_0);
|
|
int32_t L_11 = __this->___Index_1;
|
|
int32_t* L_12 = ___2_matchLength;
|
|
int32_t L_13 = *((int32_t*)L_12);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_14;
|
|
L_14 = ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_inline(L_10, L_11, L_13, ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var);
|
|
String_t* L_15 = ___0_target;
|
|
NullCheck(L_9);
|
|
int32_t L_16;
|
|
L_16 = CompareInfo_Compare_mFD591987EB505C7B67AFF638293F718976A215C6(L_9, L_14, L_15, 1, NULL);
|
|
if (!L_16)
|
|
{
|
|
goto IL_015d;
|
|
}
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
V_1 = 0;
|
|
int32_t L_17 = __this->___Index_1;
|
|
V_2 = L_17;
|
|
String_t* L_18 = ___0_target;
|
|
il2cpp_codegen_runtime_class_init_inline(__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_il2cpp_TypeInfo_var);
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = ((__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_StaticFields*)il2cpp_codegen_static_fields_for(__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_il2cpp_TypeInfo_var))->___WhiteSpaceChecks_5;
|
|
int32_t L_20 = V_1;
|
|
NullCheck(L_18);
|
|
int32_t L_21;
|
|
L_21 = String_IndexOfAny_m1AE18DB3B14A0D05EF4A2D3403D4DC1930A199F3(L_18, L_19, L_20, NULL);
|
|
V_3 = L_21;
|
|
int32_t L_22 = V_3;
|
|
if ((!(((uint32_t)L_22) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
int32_t L_23 = V_3;
|
|
int32_t L_24 = V_1;
|
|
V_4 = ((int32_t)il2cpp_codegen_subtract(L_23, L_24));
|
|
int32_t L_25 = V_2;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_26 = (&__this->___Value_0);
|
|
int32_t L_27;
|
|
L_27 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline(L_26, ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
int32_t L_28 = V_4;
|
|
if ((((int32_t)L_25) < ((int32_t)((int32_t)il2cpp_codegen_subtract(L_27, L_28)))))
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
int32_t L_29 = V_4;
|
|
if (L_29)
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_30 = ___2_matchLength;
|
|
int32_t* L_31 = ___2_matchLength;
|
|
int32_t L_32 = *((int32_t*)L_31);
|
|
*((int32_t*)L_30) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_32, 1));
|
|
goto IL_00cb;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_33 = (&__this->___Value_0);
|
|
int32_t L_34 = V_2;
|
|
int32_t L_35 = V_4;
|
|
Il2CppChar* L_36;
|
|
L_36 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_33)->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(L_34, L_35))), (L_33)->____length_1);
|
|
int32_t L_37 = *((uint16_t*)L_36);
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_38;
|
|
L_38 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_37, NULL);
|
|
if (L_38)
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_39 = __this->___m_info_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_40 = (&__this->___Value_0);
|
|
int32_t L_41 = V_2;
|
|
int32_t L_42 = V_4;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_43;
|
|
L_43 = ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_inline(L_40, L_41, L_42, ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var);
|
|
String_t* L_44 = ___0_target;
|
|
int32_t L_45 = V_1;
|
|
int32_t L_46 = V_4;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_47;
|
|
L_47 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_44, L_45, L_46, NULL);
|
|
NullCheck(L_39);
|
|
int32_t L_48;
|
|
L_48 = CompareInfo_CompareOptionIgnoreCase_m707A09DA84BE513742B5F7A05138A6E96809EEBE(L_39, L_43, L_47, NULL);
|
|
if (!L_48)
|
|
{
|
|
goto IL_00c4;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00c4:
|
|
{
|
|
int32_t L_49 = V_2;
|
|
int32_t L_50 = V_4;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_49, L_50)), 1));
|
|
}
|
|
|
|
IL_00cb:
|
|
{
|
|
int32_t L_51 = V_3;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_51, 1));
|
|
goto IL_00db;
|
|
}
|
|
|
|
IL_00d1:
|
|
{
|
|
int32_t L_52 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_52, 1));
|
|
int32_t* L_53 = ___2_matchLength;
|
|
int32_t* L_54 = ___2_matchLength;
|
|
int32_t L_55 = *((int32_t*)L_54);
|
|
*((int32_t*)L_53) = (int32_t)((int32_t)il2cpp_codegen_add(L_55, 1));
|
|
}
|
|
|
|
IL_00db:
|
|
{
|
|
int32_t L_56 = V_2;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_57 = (&__this->___Value_0);
|
|
int32_t L_58;
|
|
L_58 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline(L_57, ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)L_56) >= ((int32_t)L_58)))
|
|
{
|
|
goto IL_00fd;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_59 = (&__this->___Value_0);
|
|
int32_t L_60 = V_2;
|
|
Il2CppChar* L_61;
|
|
L_61 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_59)->____pointer_0))->value, (L_60), (L_59)->____length_1);
|
|
int32_t L_62 = *((uint16_t*)L_61);
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_63;
|
|
L_63 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_62, NULL);
|
|
if (L_63)
|
|
{
|
|
goto IL_00d1;
|
|
}
|
|
}
|
|
|
|
IL_00fd:
|
|
{
|
|
String_t* L_64 = ___0_target;
|
|
il2cpp_codegen_runtime_class_init_inline(__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_il2cpp_TypeInfo_var);
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_65 = ((__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_StaticFields*)il2cpp_codegen_static_fields_for(__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_il2cpp_TypeInfo_var))->___WhiteSpaceChecks_5;
|
|
int32_t L_66 = V_1;
|
|
NullCheck(L_64);
|
|
int32_t L_67;
|
|
L_67 = String_IndexOfAny_m1AE18DB3B14A0D05EF4A2D3403D4DC1930A199F3(L_64, L_65, L_66, NULL);
|
|
int32_t L_68 = L_67;
|
|
V_3 = L_68;
|
|
if ((((int32_t)L_68) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_69 = V_1;
|
|
String_t* L_70 = ___0_target;
|
|
NullCheck(L_70);
|
|
int32_t L_71;
|
|
L_71 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_70, NULL);
|
|
if ((((int32_t)L_69) >= ((int32_t)L_71)))
|
|
{
|
|
goto IL_015d;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_72 = ___0_target;
|
|
NullCheck(L_72);
|
|
int32_t L_73;
|
|
L_73 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_72, NULL);
|
|
int32_t L_74 = V_1;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_73, L_74));
|
|
int32_t L_75 = V_2;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_76 = (&__this->___Value_0);
|
|
int32_t L_77;
|
|
L_77 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline(L_76, ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
int32_t L_78 = V_5;
|
|
if ((((int32_t)L_75) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_77, L_78)))))
|
|
{
|
|
goto IL_0137;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0137:
|
|
{
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_79 = __this->___m_info_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_80 = (&__this->___Value_0);
|
|
int32_t L_81 = V_2;
|
|
int32_t L_82 = V_5;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_83;
|
|
L_83 = ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_inline(L_80, L_81, L_82, ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var);
|
|
String_t* L_84 = ___0_target;
|
|
int32_t L_85 = V_1;
|
|
int32_t L_86 = V_5;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_87;
|
|
L_87 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_84, L_85, L_86, NULL);
|
|
NullCheck(L_79);
|
|
int32_t L_88;
|
|
L_88 = CompareInfo_CompareOptionIgnoreCase_m707A09DA84BE513742B5F7A05138A6E96809EEBE(L_79, L_83, L_87, NULL);
|
|
if (!L_88)
|
|
{
|
|
goto IL_015d;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_015d:
|
|
{
|
|
bool L_89 = ___1_checkWordBoundary;
|
|
if (!L_89)
|
|
{
|
|
goto IL_0191;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_90 = __this->___Index_1;
|
|
int32_t* L_91 = ___2_matchLength;
|
|
int32_t L_92 = *((int32_t*)L_91);
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_90, L_92));
|
|
int32_t L_93 = V_6;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_94 = (&__this->___Value_0);
|
|
int32_t L_95;
|
|
L_95 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline(L_94, ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)L_93) >= ((int32_t)L_95)))
|
|
{
|
|
goto IL_0191;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_96 = (&__this->___Value_0);
|
|
int32_t L_97 = V_6;
|
|
Il2CppChar* L_98;
|
|
L_98 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_96)->____pointer_0))->value, (L_97), (L_96)->____length_1);
|
|
int32_t L_99 = *((uint16_t*)L_98);
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_100;
|
|
L_100 = Char_IsLetter_m4363120285B51739DEE559E5C81E89580DDC78C0(L_99, NULL);
|
|
if (!L_100)
|
|
{
|
|
goto IL_0191;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0191:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.__DTString::Match(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool __DTString_Match_m480E53CC8F4EF31DF728891F4D0A5C476C0A6B6A (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, Il2CppChar ___0_ch, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Index_1;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
int32_t L_1 = V_0;
|
|
__this->___Index_1 = L_1;
|
|
int32_t L_2 = V_0;
|
|
int32_t L_3;
|
|
L_3 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(__this, NULL);
|
|
if ((((int32_t)L_2) < ((int32_t)L_3)))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_4 = (&__this->___Value_0);
|
|
int32_t L_5 = __this->___Index_1;
|
|
Il2CppChar* L_6;
|
|
L_6 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_4)->____pointer_0))->value, (L_5), (L_4)->____length_1);
|
|
int32_t L_7 = *((uint16_t*)L_6);
|
|
Il2CppChar L_8 = ___0_ch;
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)L_8))))
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_9 = ___0_ch;
|
|
__this->___m_current_2 = L_9;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
int32_t L_10 = __this->___Index_1;
|
|
__this->___Index_1 = ((int32_t)il2cpp_codegen_subtract(L_10, 1));
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.__DTString::GetNextDigit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool __DTString_GetNextDigit_m078932668F40B02FE142720C8BB0C1A43F2B81A4 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Index_1;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
int32_t L_1 = V_0;
|
|
__this->___Index_1 = L_1;
|
|
int32_t L_2 = V_0;
|
|
int32_t L_3;
|
|
L_3 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(__this, NULL);
|
|
if ((((int32_t)L_2) >= ((int32_t)L_3)))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_4 = (&__this->___Value_0);
|
|
int32_t L_5 = __this->___Index_1;
|
|
Il2CppChar* L_6;
|
|
L_6 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_4)->____pointer_0))->value, (L_5), (L_4)->____length_1);
|
|
int32_t L_7 = *((uint16_t*)L_6);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_8;
|
|
L_8 = DateTimeParse_IsDigit_m6B5476FF200B01E7DFE11AEB34706EE1CC796AF1(L_7, NULL);
|
|
return L_8;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Char System.__DTString::GetChar()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar __DTString_GetChar_m30E31D23B3403023076FE096F5BD09824F4FA92A (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_0 = (&__this->___Value_0);
|
|
int32_t L_1 = __this->___Index_1;
|
|
Il2CppChar* L_2;
|
|
L_2 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_0)->____pointer_0))->value, (L_1), (L_0)->____length_1);
|
|
int32_t L_3 = *((uint16_t*)L_2);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Int32 System.__DTString::GetDigit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t __DTString_GetDigit_m2C1710445781E19205ECECC147287B2A1E325A4B (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_0 = (&__this->___Value_0);
|
|
int32_t L_1 = __this->___Index_1;
|
|
Il2CppChar* L_2;
|
|
L_2 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_0)->____pointer_0))->value, (L_1), (L_0)->____length_1);
|
|
int32_t L_3 = *((uint16_t*)L_2);
|
|
return ((int32_t)il2cpp_codegen_subtract(L_3, ((int32_t)48)));
|
|
}
|
|
}
|
|
// System.Void System.__DTString::SkipWhiteSpaces()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __DTString_SkipWhiteSpaces_mC7F076DEEEECFB3F54E2C516C8F662FDFB86FA33 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
|
|
IL_0002:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_0 = (&__this->___Value_0);
|
|
int32_t L_1 = __this->___Index_1;
|
|
Il2CppChar* L_2;
|
|
L_2 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_0)->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(L_1, 1))), (L_0)->____length_1);
|
|
int32_t L_3 = *((uint16_t*)L_2);
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_3, NULL);
|
|
if (L_4)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_5 = __this->___Index_1;
|
|
__this->___Index_1 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
int32_t L_6 = __this->___Index_1;
|
|
int32_t L_7;
|
|
L_7 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(__this, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_6, 1))) < ((int32_t)L_7)))
|
|
{
|
|
goto IL_0002;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.__DTString::SkipWhiteSpaceCurrent()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool __DTString_SkipWhiteSpaceCurrent_mEFCC8DCABD43754458F9DB4C371AE9BBE9961D91 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Index_1;
|
|
int32_t L_1;
|
|
L_1 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(__this, NULL);
|
|
if ((((int32_t)L_0) < ((int32_t)L_1)))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
Il2CppChar L_2 = __this->___m_current_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_2, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_4 = (&__this->___Value_0);
|
|
int32_t L_5 = __this->___Index_1;
|
|
Il2CppChar* L_6;
|
|
L_6 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_4)->____pointer_0))->value, (L_5), (L_4)->____length_1);
|
|
int32_t L_7 = *((uint16_t*)L_6);
|
|
__this->___m_current_2 = L_7;
|
|
Il2CppChar L_8 = __this->___m_current_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_9;
|
|
L_9 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_8, NULL);
|
|
if (L_9)
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
int32_t L_10 = __this->___Index_1;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
int32_t L_11 = V_0;
|
|
__this->___Index_1 = L_11;
|
|
int32_t L_12 = V_0;
|
|
int32_t L_13;
|
|
L_13 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(__this, NULL);
|
|
if ((((int32_t)L_12) < ((int32_t)L_13)))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.DTSubString System.__DTString::GetSubString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 __DTString_GetSubString_mCAA1E40658D9C121F7F93E9FD9471BA32ADE5E27 (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method)
|
|
{
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70));
|
|
int32_t L_0 = __this->___Index_1;
|
|
(&V_0)->___index_1 = L_0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = __this->___Value_0;
|
|
(&V_0)->___s_0 = L_1;
|
|
goto IL_00a3;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_2 = (&__this->___Value_0);
|
|
int32_t L_3 = __this->___Index_1;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_4 = V_0;
|
|
int32_t L_5 = L_4.___length_2;
|
|
Il2CppChar* L_6;
|
|
L_6 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_2)->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(L_3, L_5))), (L_2)->____length_1);
|
|
int32_t L_7 = *((uint16_t*)L_6);
|
|
V_2 = L_7;
|
|
Il2CppChar L_8 = V_2;
|
|
if ((((int32_t)L_8) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_9 = V_2;
|
|
if ((((int32_t)L_9) > ((int32_t)((int32_t)57))))
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
V_1 = 2;
|
|
goto IL_004e;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
V_1 = 4;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_10 = V_0;
|
|
int32_t L_11 = L_10.___length_2;
|
|
if (L_11)
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_12 = V_1;
|
|
(&V_0)->___type_3 = L_12;
|
|
goto IL_0069;
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_13 = V_0;
|
|
int32_t L_14 = L_13.___type_3;
|
|
int32_t L_15 = V_1;
|
|
if ((!(((uint32_t)L_14) == ((uint32_t)L_15))))
|
|
{
|
|
goto IL_00bb;
|
|
}
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
int32_t* L_16 = (&(&V_0)->___length_2);
|
|
int32_t* L_17 = L_16;
|
|
int32_t L_18 = *((int32_t*)L_17);
|
|
*((int32_t*)L_17) = (int32_t)((int32_t)il2cpp_codegen_add(L_18, 1));
|
|
int32_t L_19 = V_1;
|
|
if ((!(((uint32_t)L_19) == ((uint32_t)2))))
|
|
{
|
|
goto IL_00bb;
|
|
}
|
|
}
|
|
{
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_20 = V_0;
|
|
int32_t L_21 = L_20.___length_2;
|
|
if ((((int32_t)L_21) <= ((int32_t)8)))
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
{
|
|
(&V_0)->___type_3 = 1;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_22 = V_0;
|
|
return L_22;
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
Il2CppChar L_23 = V_2;
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, ((int32_t)48)));
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_24 = V_0;
|
|
int32_t L_25 = L_24.___value_4;
|
|
int32_t L_26 = V_3;
|
|
(&V_0)->___value_4 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_25, ((int32_t)10))), L_26));
|
|
}
|
|
|
|
IL_00a3:
|
|
{
|
|
int32_t L_27 = __this->___Index_1;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_28 = V_0;
|
|
int32_t L_29 = L_28.___length_2;
|
|
int32_t L_30;
|
|
L_30 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(__this, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_27, L_29))) < ((int32_t)L_30)))
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
|
|
IL_00bb:
|
|
{
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_31 = V_0;
|
|
int32_t L_32 = L_31.___length_2;
|
|
if (L_32)
|
|
{
|
|
goto IL_00cd;
|
|
}
|
|
}
|
|
{
|
|
(&V_0)->___type_3 = 3;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_33 = V_0;
|
|
return L_33;
|
|
}
|
|
|
|
IL_00cd:
|
|
{
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_34 = V_0;
|
|
return L_34;
|
|
}
|
|
}
|
|
// System.Void System.__DTString::ConsumeSubString(System.DTSubString)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __DTString_ConsumeSubString_m5EA5ACB00CE8435A7710E7A41EB2378293F4177F (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 ___0_sub, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_0 = ___0_sub;
|
|
int32_t L_1 = L_0.___index_1;
|
|
DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70 L_2 = ___0_sub;
|
|
int32_t L_3 = L_2.___length_2;
|
|
__this->___Index_1 = ((int32_t)il2cpp_codegen_add(L_1, L_3));
|
|
int32_t L_4 = __this->___Index_1;
|
|
int32_t L_5;
|
|
L_5 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(__this, NULL);
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_6 = (&__this->___Value_0);
|
|
int32_t L_7 = __this->___Index_1;
|
|
Il2CppChar* L_8;
|
|
L_8 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_6)->____pointer_0))->value, (L_7), (L_6)->____length_1);
|
|
int32_t L_9 = *((uint16_t*)L_8);
|
|
__this->___m_current_2 = L_9;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.__DTString::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void __DTString__cctor_mEBC8B7366305AD3CE5B24EF2E609C99CD13C81D8 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)32));
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)((int32_t)160));
|
|
((__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_StaticFields*)il2cpp_codegen_static_fields_for(__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637_il2cpp_TypeInfo_var))->___WhiteSpaceChecks_5 = L_2;
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Char System.DTSubString::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar DTSubString_get_Item_m1F52F78057FA33F0CB350659CF94DC678C4725B6 (DTSubString_tE3D3286EE2D813E13B011BBE80C26010CFBCFE70* __this, int32_t ___0_relativeIndex, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_0 = (&__this->___s_0);
|
|
int32_t L_1 = __this->___index_1;
|
|
int32_t L_2 = ___0_relativeIndex;
|
|
Il2CppChar* L_3;
|
|
L_3 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_0)->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(L_1, L_2))), (L_0)->____length_1);
|
|
int32_t L_4 = *((uint16_t*)L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Conversion methods for marshalling of: System.DateTimeRawInfo
|
|
IL2CPP_EXTERN_C void DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03_marshal_pinvoke(const DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03& unmarshaled, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03_marshaled_pinvoke& marshaled)
|
|
{
|
|
marshaled.___num_0 = unmarshaled.___num_0;
|
|
marshaled.___numCount_1 = unmarshaled.___numCount_1;
|
|
marshaled.___month_2 = unmarshaled.___month_2;
|
|
marshaled.___year_3 = unmarshaled.___year_3;
|
|
marshaled.___dayOfWeek_4 = unmarshaled.___dayOfWeek_4;
|
|
marshaled.___era_5 = unmarshaled.___era_5;
|
|
marshaled.___timeMark_6 = unmarshaled.___timeMark_6;
|
|
marshaled.___fraction_7 = unmarshaled.___fraction_7;
|
|
marshaled.___hasSameDateAndTimeSeparators_8 = static_cast<int32_t>(unmarshaled.___hasSameDateAndTimeSeparators_8);
|
|
}
|
|
IL2CPP_EXTERN_C void DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03_marshal_pinvoke_back(const DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03_marshaled_pinvoke& marshaled, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03& unmarshaled)
|
|
{
|
|
unmarshaled.___num_0 = marshaled.___num_0;
|
|
int32_t unmarshalednumCount_temp_1 = 0;
|
|
unmarshalednumCount_temp_1 = marshaled.___numCount_1;
|
|
unmarshaled.___numCount_1 = unmarshalednumCount_temp_1;
|
|
int32_t unmarshaledmonth_temp_2 = 0;
|
|
unmarshaledmonth_temp_2 = marshaled.___month_2;
|
|
unmarshaled.___month_2 = unmarshaledmonth_temp_2;
|
|
int32_t unmarshaledyear_temp_3 = 0;
|
|
unmarshaledyear_temp_3 = marshaled.___year_3;
|
|
unmarshaled.___year_3 = unmarshaledyear_temp_3;
|
|
int32_t unmarshaleddayOfWeek_temp_4 = 0;
|
|
unmarshaleddayOfWeek_temp_4 = marshaled.___dayOfWeek_4;
|
|
unmarshaled.___dayOfWeek_4 = unmarshaleddayOfWeek_temp_4;
|
|
int32_t unmarshaledera_temp_5 = 0;
|
|
unmarshaledera_temp_5 = marshaled.___era_5;
|
|
unmarshaled.___era_5 = unmarshaledera_temp_5;
|
|
int32_t unmarshaledtimeMark_temp_6 = 0;
|
|
unmarshaledtimeMark_temp_6 = marshaled.___timeMark_6;
|
|
unmarshaled.___timeMark_6 = unmarshaledtimeMark_temp_6;
|
|
double unmarshaledfraction_temp_7 = 0.0;
|
|
unmarshaledfraction_temp_7 = marshaled.___fraction_7;
|
|
unmarshaled.___fraction_7 = unmarshaledfraction_temp_7;
|
|
bool unmarshaledhasSameDateAndTimeSeparators_temp_8 = false;
|
|
unmarshaledhasSameDateAndTimeSeparators_temp_8 = static_cast<bool>(marshaled.___hasSameDateAndTimeSeparators_8);
|
|
unmarshaled.___hasSameDateAndTimeSeparators_8 = unmarshaledhasSameDateAndTimeSeparators_temp_8;
|
|
}
|
|
// Conversion method for clean up from marshalling of: System.DateTimeRawInfo
|
|
IL2CPP_EXTERN_C void DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03_marshal_pinvoke_cleanup(DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: System.DateTimeRawInfo
|
|
IL2CPP_EXTERN_C void DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03_marshal_com(const DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03& unmarshaled, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03_marshaled_com& marshaled)
|
|
{
|
|
marshaled.___num_0 = unmarshaled.___num_0;
|
|
marshaled.___numCount_1 = unmarshaled.___numCount_1;
|
|
marshaled.___month_2 = unmarshaled.___month_2;
|
|
marshaled.___year_3 = unmarshaled.___year_3;
|
|
marshaled.___dayOfWeek_4 = unmarshaled.___dayOfWeek_4;
|
|
marshaled.___era_5 = unmarshaled.___era_5;
|
|
marshaled.___timeMark_6 = unmarshaled.___timeMark_6;
|
|
marshaled.___fraction_7 = unmarshaled.___fraction_7;
|
|
marshaled.___hasSameDateAndTimeSeparators_8 = static_cast<int32_t>(unmarshaled.___hasSameDateAndTimeSeparators_8);
|
|
}
|
|
IL2CPP_EXTERN_C void DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03_marshal_com_back(const DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03_marshaled_com& marshaled, DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03& unmarshaled)
|
|
{
|
|
unmarshaled.___num_0 = marshaled.___num_0;
|
|
int32_t unmarshalednumCount_temp_1 = 0;
|
|
unmarshalednumCount_temp_1 = marshaled.___numCount_1;
|
|
unmarshaled.___numCount_1 = unmarshalednumCount_temp_1;
|
|
int32_t unmarshaledmonth_temp_2 = 0;
|
|
unmarshaledmonth_temp_2 = marshaled.___month_2;
|
|
unmarshaled.___month_2 = unmarshaledmonth_temp_2;
|
|
int32_t unmarshaledyear_temp_3 = 0;
|
|
unmarshaledyear_temp_3 = marshaled.___year_3;
|
|
unmarshaled.___year_3 = unmarshaledyear_temp_3;
|
|
int32_t unmarshaleddayOfWeek_temp_4 = 0;
|
|
unmarshaleddayOfWeek_temp_4 = marshaled.___dayOfWeek_4;
|
|
unmarshaled.___dayOfWeek_4 = unmarshaleddayOfWeek_temp_4;
|
|
int32_t unmarshaledera_temp_5 = 0;
|
|
unmarshaledera_temp_5 = marshaled.___era_5;
|
|
unmarshaled.___era_5 = unmarshaledera_temp_5;
|
|
int32_t unmarshaledtimeMark_temp_6 = 0;
|
|
unmarshaledtimeMark_temp_6 = marshaled.___timeMark_6;
|
|
unmarshaled.___timeMark_6 = unmarshaledtimeMark_temp_6;
|
|
double unmarshaledfraction_temp_7 = 0.0;
|
|
unmarshaledfraction_temp_7 = marshaled.___fraction_7;
|
|
unmarshaled.___fraction_7 = unmarshaledfraction_temp_7;
|
|
bool unmarshaledhasSameDateAndTimeSeparators_temp_8 = false;
|
|
unmarshaledhasSameDateAndTimeSeparators_temp_8 = static_cast<bool>(marshaled.___hasSameDateAndTimeSeparators_8);
|
|
unmarshaled.___hasSameDateAndTimeSeparators_8 = unmarshaledhasSameDateAndTimeSeparators_temp_8;
|
|
}
|
|
// Conversion method for clean up from marshalling of: System.DateTimeRawInfo
|
|
IL2CPP_EXTERN_C void DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03_marshal_com_cleanup(DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// System.Void System.DateTimeRawInfo::Init(System.Int32*)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeRawInfo_Init_m58939922AA569BAE7260CFD425D079C654D0731B (DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* __this, int32_t* ___0_numberBuffer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___month_2 = (-1);
|
|
__this->___year_3 = (-1);
|
|
__this->___dayOfWeek_4 = (-1);
|
|
__this->___era_5 = (-1);
|
|
__this->___timeMark_6 = (-1);
|
|
__this->___fraction_7 = (-1.0);
|
|
int32_t* L_0 = ___0_numberBuffer;
|
|
__this->___num_0 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DateTimeRawInfo_Init_m58939922AA569BAE7260CFD425D079C654D0731B_AdjustorThunk (RuntimeObject* __this, int32_t* ___0_numberBuffer, const RuntimeMethod* method)
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03*>(__this + _offset);
|
|
DateTimeRawInfo_Init_m58939922AA569BAE7260CFD425D079C654D0731B(_thisAdjusted, ___0_numberBuffer, method);
|
|
}
|
|
// System.Void System.DateTimeRawInfo::AddNumber(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeRawInfo_AddNumber_m2DA05B04979A1CE5D6022B4926B4837CDD9AC9BA (DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t* L_0 = __this->___num_0;
|
|
int32_t L_1 = __this->___numCount_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
__this->___numCount_1 = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
int32_t L_3 = V_0;
|
|
int32_t L_4 = ___0_value;
|
|
*((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_3), 4))))) = (int32_t)L_4;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DateTimeRawInfo_AddNumber_m2DA05B04979A1CE5D6022B4926B4837CDD9AC9BA_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03*>(__this + _offset);
|
|
DateTimeRawInfo_AddNumber_m2DA05B04979A1CE5D6022B4926B4837CDD9AC9BA(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// System.Int32 System.DateTimeRawInfo::GetNumber(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1 (DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t* L_0 = __this->___num_0;
|
|
int32_t L_1 = ___0_index;
|
|
int32_t L_2 = *((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_1), 4)))));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1_AdjustorThunk (RuntimeObject* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DateTimeRawInfo_tEAC42047935006C924842337850170E9AEA0AB03*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = DateTimeRawInfo_GetNumber_mD3A995185B82D464237FF9B32561AD8FE9DA9BA1(_thisAdjusted, ___0_index, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Conversion methods for marshalling of: System.DateTimeResult
|
|
IL2CPP_EXTERN_C void DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722_marshal_pinvoke(const DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722& unmarshaled, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___calendar_10Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'calendar' of type 'DateTimeResult': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___calendar_10Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722_marshal_pinvoke_back(const DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722_marshaled_pinvoke& marshaled, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722& unmarshaled)
|
|
{
|
|
Exception_t* ___calendar_10Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'calendar' of type 'DateTimeResult': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___calendar_10Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: System.DateTimeResult
|
|
IL2CPP_EXTERN_C void DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722_marshal_pinvoke_cleanup(DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: System.DateTimeResult
|
|
IL2CPP_EXTERN_C void DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722_marshal_com(const DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722& unmarshaled, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___calendar_10Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'calendar' of type 'DateTimeResult': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___calendar_10Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722_marshal_com_back(const DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722_marshaled_com& marshaled, DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722& unmarshaled)
|
|
{
|
|
Exception_t* ___calendar_10Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'calendar' of type 'DateTimeResult': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___calendar_10Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: System.DateTimeResult
|
|
IL2CPP_EXTERN_C void DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722_marshal_com_cleanup(DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// System.Void System.DateTimeResult::Init(System.ReadOnlySpan`1<System.Char>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeResult_Init_mA6717EEF433A842BEAB6C2DD78D1139C2B4BB63D (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_originalDateTimeString, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_originalDateTimeString;
|
|
__this->___originalDateTimeString_16 = L_0;
|
|
__this->___Year_0 = (-1);
|
|
__this->___Month_1 = (-1);
|
|
__this->___Day_2 = (-1);
|
|
__this->___fraction_6 = (-1.0);
|
|
__this->___era_7 = (-1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeResult::SetDate(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeResult_SetDate_m5277FA9E5EB765F95AC12AAE43C9FB5AE93D9CEE (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* __this, int32_t ___0_year, int32_t ___1_month, int32_t ___2_day, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_year;
|
|
__this->___Year_0 = L_0;
|
|
int32_t L_1 = ___1_month;
|
|
__this->___Month_1 = L_1;
|
|
int32_t L_2 = ___2_day;
|
|
__this->___Day_2 = L_2;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeResult::SetBadDateTimeFailure()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeResult_SetBadDateTimeFailure_mA46C1437130D90AC59061DCC5F0C5BA4D82257D0 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral05ABA3CF47C1FCAEF66432D85D6B44E99603F880);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
__this->___failure_12 = 4;
|
|
__this->___failureMessageID_13 = _stringLiteral05ABA3CF47C1FCAEF66432D85D6B44E99603F880;
|
|
__this->___failureMessageFormatArgument_14 = NULL;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeResult::SetFailure(System.ParseFailureKind,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeResult_SetFailure_m84403A0901C5114A46BB7F56E0208072C95AFB2A (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* __this, int32_t ___0_failure, String_t* ___1_failureMessageID, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_failure;
|
|
__this->___failure_12 = L_0;
|
|
String_t* L_1 = ___1_failureMessageID;
|
|
__this->___failureMessageID_13 = L_1;
|
|
__this->___failureMessageFormatArgument_14 = NULL;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.DateTimeResult::SetFailure(System.ParseFailureKind,System.String,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeResult_SetFailure_m24BEDE43DC1A95BE46B6A6F9F37F74383FF01953 (DateTimeResult_t88A2CAF7FB72DB24CD634B742B58043128BB9722* __this, int32_t ___0_failure, String_t* ___1_failureMessageID, RuntimeObject* ___2_failureMessageFormatArgument, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_failure;
|
|
__this->___failure_12 = L_0;
|
|
String_t* L_1 = ___1_failureMessageID;
|
|
__this->___failureMessageID_13 = L_1;
|
|
RuntimeObject* L_2 = ___2_failureMessageFormatArgument;
|
|
__this->___failureMessageFormatArgument_14 = L_2;
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Guid System.Guid::NewGuid()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t Guid_NewGuid_m1F4894E8DC089811D6252148AD5858E58D43A7BD (const RuntimeMethod* method)
|
|
{
|
|
Guid_t V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
uint32_t L_0 = sizeof(Guid_t);
|
|
Interop_GetRandomBytes_mCA054362D47D8B1BB32A7501F26A646DD8CA6947((uint8_t*)((uintptr_t)(&V_0)), L_0, NULL);
|
|
Guid_t L_1 = V_0;
|
|
int16_t L_2 = L_1.____c_3;
|
|
(&V_0)->____c_3 = ((int16_t)((int32_t)(((int32_t)((int32_t)L_2&((int32_t)-61441)))|((int32_t)16384))));
|
|
Guid_t L_3 = V_0;
|
|
uint8_t L_4 = L_3.____d_4;
|
|
(&V_0)->____d_4 = (uint8_t)((int32_t)(uint8_t)((int32_t)(((int32_t)((int32_t)L_4&((int32_t)-193)))|((int32_t)128))));
|
|
Guid_t L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Void System.Guid::.ctor(System.Byte[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_m9BEFD9FC285BE9ACEC2EB97FC76C0E35E14D725C (Guid_t* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_b, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* G_B2_0 = NULL;
|
|
Guid_t* G_B2_1 = NULL;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* G_B1_0 = NULL;
|
|
Guid_t* G_B1_1 = NULL;
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_b;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0;
|
|
G_B1_0 = L_1;
|
|
G_B1_1 = __this;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
G_B2_1 = __this;
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4609D79FE2FAD95C38B6DA64FC671E8594984D4C)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Guid__ctor_m9BEFD9FC285BE9ACEC2EB97FC76C0E35E14D725C_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_inline((&L_3), G_B2_0, /*hidden argument*/ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_RuntimeMethod_var);
|
|
Guid__ctor_m6533072DFD3E81582E8949EB2D5BFABEFC7C403D(G_B2_1, L_3, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Guid__ctor_m9BEFD9FC285BE9ACEC2EB97FC76C0E35E14D725C_AdjustorThunk (RuntimeObject* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_b, const RuntimeMethod* method)
|
|
{
|
|
Guid_t* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Guid_t*>(__this + _offset);
|
|
Guid__ctor_m9BEFD9FC285BE9ACEC2EB97FC76C0E35E14D725C(_thisAdjusted, ___0_b, method);
|
|
}
|
|
// System.Void System.Guid::.ctor(System.ReadOnlySpan`1<System.Byte>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_m6533072DFD3E81582E8949EB2D5BFABEFC7C403D (Guid_t* __this, ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D ___0_b, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0;
|
|
L_0 = ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_inline((&___0_b), ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_RuntimeMethod_var);
|
|
if ((((int32_t)L_0) == ((int32_t)((int32_t)16))))
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1;
|
|
L_1 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9E73F441AA920D49C2AE389F5A0431D2B7955821)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFF01C47ABD568A459C8EA38273E930831E0F8561)), NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_2, L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4609D79FE2FAD95C38B6DA64FC671E8594984D4C)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Guid__ctor_m6533072DFD3E81582E8949EB2D5BFABEFC7C403D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
uint8_t* L_3;
|
|
L_3 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&___0_b))->____pointer_0))->value, (3), ((&___0_b))->____length_1);
|
|
int32_t L_4 = *((uint8_t*)L_3);
|
|
uint8_t* L_5;
|
|
L_5 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&___0_b))->____pointer_0))->value, (2), ((&___0_b))->____length_1);
|
|
int32_t L_6 = *((uint8_t*)L_5);
|
|
uint8_t* L_7;
|
|
L_7 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&___0_b))->____pointer_0))->value, (1), ((&___0_b))->____length_1);
|
|
int32_t L_8 = *((uint8_t*)L_7);
|
|
uint8_t* L_9;
|
|
L_9 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&___0_b))->____pointer_0))->value, (0), ((&___0_b))->____length_1);
|
|
int32_t L_10 = *((uint8_t*)L_9);
|
|
__this->____a_1 = ((int32_t)(((int32_t)(((int32_t)(((int32_t)(L_4<<((int32_t)24)))|((int32_t)(L_6<<((int32_t)16)))))|((int32_t)(L_8<<8))))|L_10));
|
|
uint8_t* L_11;
|
|
L_11 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&___0_b))->____pointer_0))->value, (5), ((&___0_b))->____length_1);
|
|
int32_t L_12 = *((uint8_t*)L_11);
|
|
uint8_t* L_13;
|
|
L_13 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&___0_b))->____pointer_0))->value, (4), ((&___0_b))->____length_1);
|
|
int32_t L_14 = *((uint8_t*)L_13);
|
|
__this->____b_2 = ((int16_t)((int32_t)(((int32_t)(L_12<<8))|L_14)));
|
|
uint8_t* L_15;
|
|
L_15 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&___0_b))->____pointer_0))->value, (7), ((&___0_b))->____length_1);
|
|
int32_t L_16 = *((uint8_t*)L_15);
|
|
uint8_t* L_17;
|
|
L_17 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&___0_b))->____pointer_0))->value, (6), ((&___0_b))->____length_1);
|
|
int32_t L_18 = *((uint8_t*)L_17);
|
|
__this->____c_3 = ((int16_t)((int32_t)(((int32_t)(L_16<<8))|L_18)));
|
|
uint8_t* L_19;
|
|
L_19 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&___0_b))->____pointer_0))->value, (8), ((&___0_b))->____length_1);
|
|
int32_t L_20 = *((uint8_t*)L_19);
|
|
__this->____d_4 = (uint8_t)L_20;
|
|
uint8_t* L_21;
|
|
L_21 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&___0_b))->____pointer_0))->value, (((int32_t)9)), ((&___0_b))->____length_1);
|
|
int32_t L_22 = *((uint8_t*)L_21);
|
|
__this->____e_5 = (uint8_t)L_22;
|
|
uint8_t* L_23;
|
|
L_23 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&___0_b))->____pointer_0))->value, (((int32_t)10)), ((&___0_b))->____length_1);
|
|
int32_t L_24 = *((uint8_t*)L_23);
|
|
__this->____f_6 = (uint8_t)L_24;
|
|
uint8_t* L_25;
|
|
L_25 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&___0_b))->____pointer_0))->value, (((int32_t)11)), ((&___0_b))->____length_1);
|
|
int32_t L_26 = *((uint8_t*)L_25);
|
|
__this->____g_7 = (uint8_t)L_26;
|
|
uint8_t* L_27;
|
|
L_27 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&___0_b))->____pointer_0))->value, (((int32_t)12)), ((&___0_b))->____length_1);
|
|
int32_t L_28 = *((uint8_t*)L_27);
|
|
__this->____h_8 = (uint8_t)L_28;
|
|
uint8_t* L_29;
|
|
L_29 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&___0_b))->____pointer_0))->value, (((int32_t)13)), ((&___0_b))->____length_1);
|
|
int32_t L_30 = *((uint8_t*)L_29);
|
|
__this->____i_9 = (uint8_t)L_30;
|
|
uint8_t* L_31;
|
|
L_31 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&___0_b))->____pointer_0))->value, (((int32_t)14)), ((&___0_b))->____length_1);
|
|
int32_t L_32 = *((uint8_t*)L_31);
|
|
__this->____j_10 = (uint8_t)L_32;
|
|
uint8_t* L_33;
|
|
L_33 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&___0_b))->____pointer_0))->value, (((int32_t)15)), ((&___0_b))->____length_1);
|
|
int32_t L_34 = *((uint8_t*)L_33);
|
|
__this->____k_11 = (uint8_t)L_34;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Guid__ctor_m6533072DFD3E81582E8949EB2D5BFABEFC7C403D_AdjustorThunk (RuntimeObject* __this, ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D ___0_b, const RuntimeMethod* method)
|
|
{
|
|
Guid_t* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Guid_t*>(__this + _offset);
|
|
Guid__ctor_m6533072DFD3E81582E8949EB2D5BFABEFC7C403D(_thisAdjusted, ___0_b, method);
|
|
}
|
|
// System.Void System.Guid::.ctor(System.Int32,System.Int16,System.Int16,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_mC52E0191E06C110F9F6E0A417BCA4437D79CC130 (Guid_t* __this, int32_t ___0_a, int16_t ___1_b, int16_t ___2_c, uint8_t ___3_d, uint8_t ___4_e, uint8_t ___5_f, uint8_t ___6_g, uint8_t ___7_h, uint8_t ___8_i, uint8_t ___9_j, uint8_t ___10_k, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
__this->____a_1 = L_0;
|
|
int16_t L_1 = ___1_b;
|
|
__this->____b_2 = L_1;
|
|
int16_t L_2 = ___2_c;
|
|
__this->____c_3 = L_2;
|
|
uint8_t L_3 = ___3_d;
|
|
__this->____d_4 = L_3;
|
|
uint8_t L_4 = ___4_e;
|
|
__this->____e_5 = L_4;
|
|
uint8_t L_5 = ___5_f;
|
|
__this->____f_6 = L_5;
|
|
uint8_t L_6 = ___6_g;
|
|
__this->____g_7 = L_6;
|
|
uint8_t L_7 = ___7_h;
|
|
__this->____h_8 = L_7;
|
|
uint8_t L_8 = ___8_i;
|
|
__this->____i_9 = L_8;
|
|
uint8_t L_9 = ___9_j;
|
|
__this->____j_10 = L_9;
|
|
uint8_t L_10 = ___10_k;
|
|
__this->____k_11 = L_10;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Guid__ctor_mC52E0191E06C110F9F6E0A417BCA4437D79CC130_AdjustorThunk (RuntimeObject* __this, int32_t ___0_a, int16_t ___1_b, int16_t ___2_c, uint8_t ___3_d, uint8_t ___4_e, uint8_t ___5_f, uint8_t ___6_g, uint8_t ___7_h, uint8_t ___8_i, uint8_t ___9_j, uint8_t ___10_k, const RuntimeMethod* method)
|
|
{
|
|
Guid_t* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Guid_t*>(__this + _offset);
|
|
Guid__ctor_mC52E0191E06C110F9F6E0A417BCA4437D79CC130(_thisAdjusted, ___0_a, ___1_b, ___2_c, ___3_d, ___4_e, ___5_f, ___6_g, ___7_h, ___8_i, ___9_j, ___10_k, method);
|
|
}
|
|
// System.Void System.Guid::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_mAE66BA1C43B4194F4F7991E2E30370E36CBBF830 (Guid_t* __this, String_t* ___0_g, const RuntimeMethod* method)
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
String_t* L_0 = ___0_g;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B9B6C84CC15492CCB290C4B79418FA6D7DD24C1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Guid__ctor_mAE66BA1C43B4194F4F7991E2E30370E36CBBF830_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79));
|
|
GuidResult_Init_mA6B695110665C265D17C97D0AB8AA25D25D874AB_inline((&V_0), 1, NULL);
|
|
String_t* L_2 = ___0_g;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3;
|
|
L_3 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Guid_TryParseGuid_m6792F3C351DA8944391B880568730DDEA8A34E01(L_3, ((int32_t)15), (&V_0), NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79 L_5 = V_0;
|
|
Guid_t L_6 = L_5.____parsedGuid_0;
|
|
*(Guid_t*)__this = L_6;
|
|
return;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
Exception_t* L_7;
|
|
L_7 = GuidResult_GetGuidParseException_m64B716090AACED88AAA921D1B6EE7BC3AB7F606B((&V_0), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Guid__ctor_mAE66BA1C43B4194F4F7991E2E30370E36CBBF830_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Guid__ctor_mAE66BA1C43B4194F4F7991E2E30370E36CBBF830_AdjustorThunk (RuntimeObject* __this, String_t* ___0_g, const RuntimeMethod* method)
|
|
{
|
|
Guid_t* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Guid_t*>(__this + _offset);
|
|
Guid__ctor_mAE66BA1C43B4194F4F7991E2E30370E36CBBF830(_thisAdjusted, ___0_g, method);
|
|
}
|
|
// System.Guid System.Guid::Parse(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t Guid_Parse_mC068B0047F86921D817F600C75C6EBFE15A461D0 (String_t* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
String_t* L_0 = ___0_input;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_1);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral15088A7C50E83E49058833A4287B3C2F1CD730D2)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Guid_Parse_mC068B0047F86921D817F600C75C6EBFE15A461D0_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
String_t* L_2 = ___0_input;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3;
|
|
L_3 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(L_2, NULL);
|
|
Guid_t L_4;
|
|
L_4 = Guid_Parse_m47AC2E6437504837BAB8F5011FFEC0DEB3C6B8E7(L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Guid System.Guid::Parse(System.ReadOnlySpan`1<System.Char>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t Guid_Parse_m47AC2E6437504837BAB8F5011FFEC0DEB3C6B8E7 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_input, const RuntimeMethod* method)
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79));
|
|
GuidResult_Init_mA6B695110665C265D17C97D0AB8AA25D25D874AB_inline((&V_0), 2, NULL);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_input;
|
|
bool L_1;
|
|
L_1 = Guid_TryParseGuid_m6792F3C351DA8944391B880568730DDEA8A34E01(L_0, ((int32_t)15), (&V_0), NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79 L_2 = V_0;
|
|
Guid_t L_3 = L_2.____parsedGuid_0;
|
|
return L_3;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
Exception_t* L_4;
|
|
L_4 = GuidResult_GetGuidParseException_m64B716090AACED88AAA921D1B6EE7BC3AB7F606B((&V_0), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Guid_Parse_m47AC2E6437504837BAB8F5011FFEC0DEB3C6B8E7_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// System.Boolean System.Guid::TryParseGuid(System.ReadOnlySpan`1<System.Char>,System.Guid/GuidStyles,System.Guid/GuidResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_TryParseGuid_m6792F3C351DA8944391B880568730DDEA8A34E01 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_guidString, int32_t ___1_flags, GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* ___2_result, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFBC88717BD32A7FD98D754192338108D9C58269D);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* V_3 = NULL;
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* V_4 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_guidString;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1;
|
|
L_1 = MemoryExtensions_Trim_m8062B15A9D800FE916FEF8755F6C4F38B66E6030(L_0, NULL);
|
|
___0_guidString = L_1;
|
|
int32_t L_2;
|
|
L_2 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_guidString), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if (L_2)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_3 = ___2_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_3, 2, _stringLiteralFBC88717BD32A7FD98D754192338108D9C58269D, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_4 = ___0_guidString;
|
|
int32_t L_5;
|
|
L_5 = MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_inline(L_4, ((int32_t)45), MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_RuntimeMethod_var);
|
|
V_0 = (bool)((((int32_t)((((int32_t)L_5) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_6 = V_0;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = ___1_flags;
|
|
if (((int32_t)((int32_t)L_7&((int32_t)68))))
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_8 = ___2_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_8, 2, _stringLiteralFBC88717BD32A7FD98D754192338108D9C58269D, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
int32_t L_9 = ___1_flags;
|
|
if (!((int32_t)((int32_t)L_9&((int32_t)64))))
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_10 = ___2_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_10, 2, _stringLiteralFBC88717BD32A7FD98D754192338108D9C58269D, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_11 = ___0_guidString;
|
|
int32_t L_12;
|
|
L_12 = MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_inline(L_11, ((int32_t)123), MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_RuntimeMethod_var);
|
|
V_1 = (bool)((((int32_t)((((int32_t)L_12) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_13 = V_1;
|
|
if (!L_13)
|
|
{
|
|
goto IL_007f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_14 = ___1_flags;
|
|
if (((int32_t)((int32_t)L_14&((int32_t)34))))
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_15 = ___2_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_15, 2, _stringLiteralFBC88717BD32A7FD98D754192338108D9C58269D, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_007f:
|
|
{
|
|
int32_t L_16 = ___1_flags;
|
|
if (!((int32_t)((int32_t)L_16&((int32_t)32))))
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_17 = ___2_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_17, 2, _stringLiteralFBC88717BD32A7FD98D754192338108D9C58269D, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_18 = ___0_guidString;
|
|
int32_t L_19;
|
|
L_19 = MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_inline(L_18, ((int32_t)40), MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_RuntimeMethod_var);
|
|
if (!((((int32_t)((((int32_t)L_19) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0))
|
|
{
|
|
goto IL_00b7;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_20 = ___1_flags;
|
|
if (((int32_t)((int32_t)L_20&((int32_t)17))))
|
|
{
|
|
goto IL_00cb;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_21 = ___2_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_21, 2, _stringLiteralFBC88717BD32A7FD98D754192338108D9C58269D, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00b7:
|
|
{
|
|
int32_t L_22 = ___1_flags;
|
|
if (!((int32_t)((int32_t)L_22&((int32_t)16))))
|
|
{
|
|
goto IL_00cb;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_23 = ___2_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_23, 2, _stringLiteralFBC88717BD32A7FD98D754192338108D9C58269D, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00cb:
|
|
{
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
bool L_24 = V_0;
|
|
if (!L_24)
|
|
{
|
|
goto IL_00d9_1;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_25 = ___0_guidString;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_26 = ___2_result;
|
|
bool L_27;
|
|
L_27 = Guid_TryParseGuidWithDashes_mA7FFE85E8078F0A465092E6DD009B66B5C731A30(L_25, L_26, NULL);
|
|
V_2 = L_27;
|
|
goto IL_011a;
|
|
}
|
|
|
|
IL_00d9_1:
|
|
{
|
|
bool L_28 = V_1;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00e6_1;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_29 = ___0_guidString;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_30 = ___2_result;
|
|
bool L_31;
|
|
L_31 = Guid_TryParseGuidWithHexPrefix_mF5E0432278A7EE8AA096136CD3F252E97B81E0EF(L_29, L_30, NULL);
|
|
V_2 = L_31;
|
|
goto IL_011a;
|
|
}
|
|
|
|
IL_00e6_1:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_32 = ___0_guidString;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_33 = ___2_result;
|
|
bool L_34;
|
|
L_34 = Guid_TryParseGuidWithNoStyle_mACE2E31EA05846B0D70FCC50D8D6D2D169B5F60C(L_32, L_33, NULL);
|
|
V_2 = L_34;
|
|
goto IL_011a;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_00f0;
|
|
}
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0104;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00f0:
|
|
{// begin catch(System.IndexOutOfRangeException)
|
|
V_3 = ((IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82*)IL2CPP_GET_ACTIVE_EXCEPTION(IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82*));
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_35 = ___2_result;
|
|
IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* L_36 = V_3;
|
|
GuidResult_SetFailure_m0F74454921C3AAAC764BC7144BF33D95CF131AE8(L_35, 5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBC88717BD32A7FD98D754192338108D9C58269D)), NULL, (String_t*)NULL, L_36, NULL);
|
|
V_2 = (bool)0;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION();
|
|
goto IL_011a;
|
|
}// end catch (depth: 1)
|
|
|
|
CATCH_0104:
|
|
{// begin catch(System.ArgumentException)
|
|
V_4 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*));
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_37 = ___2_result;
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_38 = V_4;
|
|
GuidResult_SetFailure_m0F74454921C3AAAC764BC7144BF33D95CF131AE8(L_37, 5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBC88717BD32A7FD98D754192338108D9C58269D)), NULL, (String_t*)NULL, L_38, NULL);
|
|
V_2 = (bool)0;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION();
|
|
goto IL_011a;
|
|
}// end catch (depth: 1)
|
|
|
|
IL_011a:
|
|
{
|
|
bool L_39 = V_2;
|
|
return L_39;
|
|
}
|
|
}
|
|
// System.Boolean System.Guid::TryParseGuidWithHexPrefix(System.ReadOnlySpan`1<System.Char>,System.Guid/GuidResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_TryParseGuidWithHexPrefix_mF5E0432278A7EE8AA096136CD3F252E97B81E0EF (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_guidString, GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* ___1_result, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral061124E28B93E647C6AA75774A91732587C06ECF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral29B3810DD5248A58C29574BDA4100443A74E1DD7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5942706348DC624AD1C57CB5A1B99A73876BDDE6);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral632A16D967E0C773F8BD6CC0C1BC0757266B098C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83EBD43501C62D49B91CCC44587BCA88778AD230);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9DC029E8A2AE7210A6E64E6548ACE71AB0EAC1C4);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FE21686ED85979C6721683C1AE7814B97848718);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAA665F32B703053351F7E870B8F846853A461A04);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAF58B0212B060B5C1E0C49A01A669F6E85E98C07);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDCA17A4DF49FD0CA7B9C262B02F93841AF666D1D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFA21AE346609B8F4B72E20E1720DE0FA22D72B0F);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
uint32_t V_5 = 0;
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_guidString;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1;
|
|
L_1 = Guid_EatAllWhitespace_m30F6DA8C5546820D86DABCF509A9DAA9CFE8214E(L_0, NULL);
|
|
___0_guidString = L_1;
|
|
int32_t L_2;
|
|
L_2 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_guidString), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar* L_3;
|
|
L_3 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_guidString))->____pointer_0))->value, (0), ((&___0_guidString))->____length_1);
|
|
int32_t L_4 = *((uint16_t*)L_3);
|
|
if ((((int32_t)L_4) == ((int32_t)((int32_t)123))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_5 = ___1_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_5, 2, _stringLiteralAF58B0212B060B5C1E0C49A01A669F6E85E98C07, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_6 = ___0_guidString;
|
|
bool L_7;
|
|
L_7 = Guid_IsHexPrefix_m1D3D917C7223786C87C58914798833F77181A222(L_6, 1, NULL);
|
|
if (L_7)
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_8 = ___1_result;
|
|
GuidResult_SetFailure_m15EA2A1141E6D694F88A1B01982D8FD25B77635A(L_8, 2, _stringLiteral9DC029E8A2AE7210A6E64E6548ACE71AB0EAC1C4, _stringLiteral632A16D967E0C773F8BD6CC0C1BC0757266B098C, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
V_0 = 3;
|
|
int32_t L_9 = V_0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_10;
|
|
L_10 = ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_inline((&___0_guidString), L_9, ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_RuntimeMethod_var);
|
|
int32_t L_11;
|
|
L_11 = MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_inline(L_10, ((int32_t)44), MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_RuntimeMethod_var);
|
|
V_1 = L_11;
|
|
int32_t L_12 = V_1;
|
|
if ((((int32_t)L_12) > ((int32_t)0)))
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_13 = ___1_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_13, 2, _stringLiteral29B3810DD5248A58C29574BDA4100443A74E1DD7, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
int32_t L_14 = V_0;
|
|
int32_t L_15 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_16;
|
|
L_16 = ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_inline((&___0_guidString), L_14, L_15, ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var);
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_17 = ___1_result;
|
|
Guid_t* L_18 = (&L_17->____parsedGuid_0);
|
|
int32_t* L_19 = (&L_18->____a_1);
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_20 = ___1_result;
|
|
bool L_21;
|
|
L_21 = Guid_StringToInt_m2F526068E0F36DA2FB0B6328189B5458D9F9B2AC(L_16, (-1), ((int32_t)4096), L_19, L_20, NULL);
|
|
if (L_21)
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_22 = ___0_guidString;
|
|
int32_t L_23 = V_0;
|
|
int32_t L_24 = V_1;
|
|
bool L_25;
|
|
L_25 = Guid_IsHexPrefix_m1D3D917C7223786C87C58914798833F77181A222(L_22, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_23, L_24)), 1)), NULL);
|
|
if (L_25)
|
|
{
|
|
goto IL_00b4;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_26 = ___1_result;
|
|
GuidResult_SetFailure_m15EA2A1141E6D694F88A1B01982D8FD25B77635A(L_26, 2, _stringLiteral9DC029E8A2AE7210A6E64E6548ACE71AB0EAC1C4, _stringLiteral9FE21686ED85979C6721683C1AE7814B97848718, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00b4:
|
|
{
|
|
int32_t L_27 = V_0;
|
|
int32_t L_28 = V_1;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_27, L_28)), 3));
|
|
int32_t L_29 = V_0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_30;
|
|
L_30 = ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_inline((&___0_guidString), L_29, ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_RuntimeMethod_var);
|
|
int32_t L_31;
|
|
L_31 = MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_inline(L_30, ((int32_t)44), MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_RuntimeMethod_var);
|
|
V_1 = L_31;
|
|
int32_t L_32 = V_1;
|
|
if ((((int32_t)L_32) > ((int32_t)0)))
|
|
{
|
|
goto IL_00dc;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_33 = ___1_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_33, 2, _stringLiteral29B3810DD5248A58C29574BDA4100443A74E1DD7, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00dc:
|
|
{
|
|
int32_t L_34 = V_0;
|
|
int32_t L_35 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_36;
|
|
L_36 = ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_inline((&___0_guidString), L_34, L_35, ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var);
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_37 = ___1_result;
|
|
Guid_t* L_38 = (&L_37->____parsedGuid_0);
|
|
int16_t* L_39 = (&L_38->____b_2);
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_40 = ___1_result;
|
|
bool L_41;
|
|
L_41 = Guid_StringToShort_m8A05D2DF2760542B040A24B5D489A457E9059EC6(L_36, (-1), ((int32_t)4096), L_39, L_40, NULL);
|
|
if (L_41)
|
|
{
|
|
goto IL_0100;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0100:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_42 = ___0_guidString;
|
|
int32_t L_43 = V_0;
|
|
int32_t L_44 = V_1;
|
|
bool L_45;
|
|
L_45 = Guid_IsHexPrefix_m1D3D917C7223786C87C58914798833F77181A222(L_42, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_43, L_44)), 1)), NULL);
|
|
if (L_45)
|
|
{
|
|
goto IL_0120;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_46 = ___1_result;
|
|
GuidResult_SetFailure_m15EA2A1141E6D694F88A1B01982D8FD25B77635A(L_46, 2, _stringLiteral9DC029E8A2AE7210A6E64E6548ACE71AB0EAC1C4, _stringLiteral83EBD43501C62D49B91CCC44587BCA88778AD230, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0120:
|
|
{
|
|
int32_t L_47 = V_0;
|
|
int32_t L_48 = V_1;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_47, L_48)), 3));
|
|
int32_t L_49 = V_0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_50;
|
|
L_50 = ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_inline((&___0_guidString), L_49, ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_RuntimeMethod_var);
|
|
int32_t L_51;
|
|
L_51 = MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_inline(L_50, ((int32_t)44), MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_RuntimeMethod_var);
|
|
V_1 = L_51;
|
|
int32_t L_52 = V_1;
|
|
if ((((int32_t)L_52) > ((int32_t)0)))
|
|
{
|
|
goto IL_0148;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_53 = ___1_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_53, 2, _stringLiteral29B3810DD5248A58C29574BDA4100443A74E1DD7, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0148:
|
|
{
|
|
int32_t L_54 = V_0;
|
|
int32_t L_55 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_56;
|
|
L_56 = ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_inline((&___0_guidString), L_54, L_55, ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var);
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_57 = ___1_result;
|
|
Guid_t* L_58 = (&L_57->____parsedGuid_0);
|
|
int16_t* L_59 = (&L_58->____c_3);
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_60 = ___1_result;
|
|
bool L_61;
|
|
L_61 = Guid_StringToShort_m8A05D2DF2760542B040A24B5D489A457E9059EC6(L_56, (-1), ((int32_t)4096), L_59, L_60, NULL);
|
|
if (L_61)
|
|
{
|
|
goto IL_016c;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_016c:
|
|
{
|
|
int32_t L_62;
|
|
L_62 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_guidString), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
int32_t L_63 = V_0;
|
|
int32_t L_64 = V_1;
|
|
if ((((int32_t)L_62) <= ((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_63, L_64)), 1)))))
|
|
{
|
|
goto IL_018b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_65 = V_0;
|
|
int32_t L_66 = V_1;
|
|
Il2CppChar* L_67;
|
|
L_67 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_guidString))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_65, L_66)), 1))), ((&___0_guidString))->____length_1);
|
|
int32_t L_68 = *((uint16_t*)L_67);
|
|
if ((((int32_t)L_68) == ((int32_t)((int32_t)123))))
|
|
{
|
|
goto IL_0199;
|
|
}
|
|
}
|
|
|
|
IL_018b:
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_69 = ___1_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_69, 2, _stringLiteralAF58B0212B060B5C1E0C49A01A669F6E85E98C07, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0199:
|
|
{
|
|
int32_t L_70 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_70, 1));
|
|
uintptr_t L_71 = ((uintptr_t)8);
|
|
int8_t* L_72 = (int8_t*) (L_71 ? alloca(L_71) : NULL);
|
|
memset(L_72, 0, L_71);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_73;
|
|
memset((&L_73), 0, sizeof(L_73));
|
|
Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_inline((&L_73), (void*)(L_72), 8, /*hidden argument*/Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_RuntimeMethod_var);
|
|
V_2 = L_73;
|
|
V_3 = 0;
|
|
goto IL_0263;
|
|
}
|
|
|
|
IL_01af:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_74 = ___0_guidString;
|
|
int32_t L_75 = V_0;
|
|
int32_t L_76 = V_1;
|
|
bool L_77;
|
|
L_77 = Guid_IsHexPrefix_m1D3D917C7223786C87C58914798833F77181A222(L_74, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_75, L_76)), 1)), NULL);
|
|
if (L_77)
|
|
{
|
|
goto IL_01cf;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_78 = ___1_result;
|
|
GuidResult_SetFailure_m15EA2A1141E6D694F88A1B01982D8FD25B77635A(L_78, 2, _stringLiteral9DC029E8A2AE7210A6E64E6548ACE71AB0EAC1C4, _stringLiteral5942706348DC624AD1C57CB5A1B99A73876BDDE6, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_01cf:
|
|
{
|
|
int32_t L_79 = V_0;
|
|
int32_t L_80 = V_1;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_79, L_80)), 3));
|
|
int32_t L_81 = V_3;
|
|
if ((((int32_t)L_81) >= ((int32_t)7)))
|
|
{
|
|
goto IL_01fb;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_82 = V_0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_83;
|
|
L_83 = ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_inline((&___0_guidString), L_82, ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_RuntimeMethod_var);
|
|
int32_t L_84;
|
|
L_84 = MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_inline(L_83, ((int32_t)44), MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_RuntimeMethod_var);
|
|
V_1 = L_84;
|
|
int32_t L_85 = V_1;
|
|
if ((((int32_t)L_85) > ((int32_t)0)))
|
|
{
|
|
goto IL_021d;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_86 = ___1_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_86, 2, _stringLiteral29B3810DD5248A58C29574BDA4100443A74E1DD7, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_01fb:
|
|
{
|
|
int32_t L_87 = V_0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_88;
|
|
L_88 = ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_inline((&___0_guidString), L_87, ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_RuntimeMethod_var);
|
|
int32_t L_89;
|
|
L_89 = MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_inline(L_88, ((int32_t)125), MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_RuntimeMethod_var);
|
|
V_1 = L_89;
|
|
int32_t L_90 = V_1;
|
|
if ((((int32_t)L_90) > ((int32_t)0)))
|
|
{
|
|
goto IL_021d;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_91 = ___1_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_91, 2, _stringLiteralAA665F32B703053351F7E870B8F846853A461A04, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_021d:
|
|
{
|
|
int32_t L_92 = V_0;
|
|
int32_t L_93 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_94;
|
|
L_94 = ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_inline((&___0_guidString), L_92, L_93, ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var);
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_95 = ___1_result;
|
|
bool L_96;
|
|
L_96 = Guid_StringToInt_m2F526068E0F36DA2FB0B6328189B5458D9F9B2AC(L_94, (-1), ((int32_t)4096), (&V_4), L_95, NULL);
|
|
if (L_96)
|
|
{
|
|
goto IL_0238;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0238:
|
|
{
|
|
int32_t L_97 = V_4;
|
|
V_5 = L_97;
|
|
uint32_t L_98 = V_5;
|
|
if ((!(((uint32_t)L_98) > ((uint32_t)((int32_t)255)))))
|
|
{
|
|
goto IL_0253;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_99 = ___1_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_99, 2, _stringLiteralFA21AE346609B8F4B72E20E1720DE0FA22D72B0F, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0253:
|
|
{
|
|
int32_t L_100 = V_3;
|
|
uint8_t* L_101;
|
|
L_101 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&V_2))->____pointer_0))->value, (L_100), ((&V_2))->____length_1);
|
|
uint32_t L_102 = V_5;
|
|
*((int8_t*)L_101) = (int8_t)((int32_t)(uint8_t)L_102);
|
|
int32_t L_103 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_103, 1));
|
|
}
|
|
|
|
IL_0263:
|
|
{
|
|
int32_t L_104 = V_3;
|
|
int32_t L_105;
|
|
L_105 = Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_inline((&V_2), Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_RuntimeMethod_var);
|
|
if ((((int32_t)L_104) < ((int32_t)L_105)))
|
|
{
|
|
goto IL_01af;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_106 = ___1_result;
|
|
Guid_t* L_107 = (&L_106->____parsedGuid_0);
|
|
uint8_t* L_108;
|
|
L_108 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&V_2))->____pointer_0))->value, (0), ((&V_2))->____length_1);
|
|
int32_t L_109 = *((uint8_t*)L_108);
|
|
L_107->____d_4 = (uint8_t)L_109;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_110 = ___1_result;
|
|
Guid_t* L_111 = (&L_110->____parsedGuid_0);
|
|
uint8_t* L_112;
|
|
L_112 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&V_2))->____pointer_0))->value, (1), ((&V_2))->____length_1);
|
|
int32_t L_113 = *((uint8_t*)L_112);
|
|
L_111->____e_5 = (uint8_t)L_113;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_114 = ___1_result;
|
|
Guid_t* L_115 = (&L_114->____parsedGuid_0);
|
|
uint8_t* L_116;
|
|
L_116 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&V_2))->____pointer_0))->value, (2), ((&V_2))->____length_1);
|
|
int32_t L_117 = *((uint8_t*)L_116);
|
|
L_115->____f_6 = (uint8_t)L_117;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_118 = ___1_result;
|
|
Guid_t* L_119 = (&L_118->____parsedGuid_0);
|
|
uint8_t* L_120;
|
|
L_120 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&V_2))->____pointer_0))->value, (3), ((&V_2))->____length_1);
|
|
int32_t L_121 = *((uint8_t*)L_120);
|
|
L_119->____g_7 = (uint8_t)L_121;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_122 = ___1_result;
|
|
Guid_t* L_123 = (&L_122->____parsedGuid_0);
|
|
uint8_t* L_124;
|
|
L_124 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&V_2))->____pointer_0))->value, (4), ((&V_2))->____length_1);
|
|
int32_t L_125 = *((uint8_t*)L_124);
|
|
L_123->____h_8 = (uint8_t)L_125;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_126 = ___1_result;
|
|
Guid_t* L_127 = (&L_126->____parsedGuid_0);
|
|
uint8_t* L_128;
|
|
L_128 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&V_2))->____pointer_0))->value, (5), ((&V_2))->____length_1);
|
|
int32_t L_129 = *((uint8_t*)L_128);
|
|
L_127->____i_9 = (uint8_t)L_129;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_130 = ___1_result;
|
|
Guid_t* L_131 = (&L_130->____parsedGuid_0);
|
|
uint8_t* L_132;
|
|
L_132 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&V_2))->____pointer_0))->value, (6), ((&V_2))->____length_1);
|
|
int32_t L_133 = *((uint8_t*)L_132);
|
|
L_131->____j_10 = (uint8_t)L_133;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_134 = ___1_result;
|
|
Guid_t* L_135 = (&L_134->____parsedGuid_0);
|
|
uint8_t* L_136;
|
|
L_136 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&V_2))->____pointer_0))->value, (7), ((&V_2))->____length_1);
|
|
int32_t L_137 = *((uint8_t*)L_136);
|
|
L_135->____k_11 = (uint8_t)L_137;
|
|
int32_t L_138 = V_0;
|
|
int32_t L_139 = V_1;
|
|
int32_t L_140;
|
|
L_140 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_guidString), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_138, L_139)), 1))) >= ((int32_t)L_140)))
|
|
{
|
|
goto IL_032f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_141 = V_0;
|
|
int32_t L_142 = V_1;
|
|
Il2CppChar* L_143;
|
|
L_143 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_guidString))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_141, L_142)), 1))), ((&___0_guidString))->____length_1);
|
|
int32_t L_144 = *((uint16_t*)L_143);
|
|
if ((((int32_t)L_144) == ((int32_t)((int32_t)125))))
|
|
{
|
|
goto IL_033d;
|
|
}
|
|
}
|
|
|
|
IL_032f:
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_145 = ___1_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_145, 2, _stringLiteral061124E28B93E647C6AA75774A91732587C06ECF, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_033d:
|
|
{
|
|
int32_t L_146 = V_0;
|
|
int32_t L_147 = V_1;
|
|
int32_t L_148;
|
|
L_148 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_guidString), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_146, L_147)), 1))) == ((int32_t)((int32_t)il2cpp_codegen_subtract(L_148, 1)))))
|
|
{
|
|
goto IL_035b;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_149 = ___1_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_149, 2, _stringLiteralDCA17A4DF49FD0CA7B9C262B02F93841AF666D1D, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_035b:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.Guid::TryParseGuidWithNoStyle(System.ReadOnlySpan`1<System.Char>,System.Guid/GuidResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_TryParseGuidWithNoStyle_mACE2E31EA05846B0D70FCC50D8D6D2D169B5F60C (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_guidString, GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* ___1_result, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBC6164A18588D32CF33FC986D4DFD4EC4CDCAD9D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF7F3659E8021DAE64079570DFC3041787F1C824D);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int64_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
Il2CppChar V_5 = 0x0;
|
|
Il2CppChar V_6 = 0x0;
|
|
{
|
|
V_0 = 0;
|
|
V_3 = 0;
|
|
int32_t L_0;
|
|
L_0 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_guidString), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)L_0) == ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_1 = ___1_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_1, 2, _stringLiteralBC6164A18588D32CF33FC986D4DFD4EC4CDCAD9D, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
V_4 = 0;
|
|
goto IL_0063;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_2 = V_4;
|
|
Il2CppChar* L_3;
|
|
L_3 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_guidString))->____pointer_0))->value, (L_2), ((&___0_guidString))->____length_1);
|
|
int32_t L_4 = *((uint16_t*)L_3);
|
|
V_5 = L_4;
|
|
Il2CppChar L_5 = V_5;
|
|
if ((((int32_t)L_5) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_6 = V_5;
|
|
if ((((int32_t)L_6) <= ((int32_t)((int32_t)57))))
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
Il2CppChar L_7 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
Il2CppChar L_8;
|
|
L_8 = Char_ToUpperInvariant_m43EADCB6987DB5FC44A6BFDBA8800EBACCEC68C8(L_7, NULL);
|
|
V_6 = L_8;
|
|
Il2CppChar L_9 = V_6;
|
|
if ((((int32_t)L_9) < ((int32_t)((int32_t)65))))
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_10 = V_6;
|
|
if ((((int32_t)L_10) <= ((int32_t)((int32_t)70))))
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_11 = ___1_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_11, 2, _stringLiteralF7F3659E8021DAE64079570DFC3041787F1C824D, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
int32_t L_12 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
int32_t L_13 = V_4;
|
|
int32_t L_14;
|
|
L_14 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_guidString), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)L_13) < ((int32_t)L_14)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_15 = V_0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_16;
|
|
L_16 = ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_inline((&___0_guidString), L_15, 8, ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var);
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_17 = ___1_result;
|
|
Guid_t* L_18 = (&L_17->____parsedGuid_0);
|
|
int32_t* L_19 = (&L_18->____a_1);
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_20 = ___1_result;
|
|
bool L_21;
|
|
L_21 = Guid_StringToInt_m2F526068E0F36DA2FB0B6328189B5458D9F9B2AC(L_16, (-1), ((int32_t)4096), L_19, L_20, NULL);
|
|
if (L_21)
|
|
{
|
|
goto IL_0092;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0092:
|
|
{
|
|
int32_t L_22 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_22, 8));
|
|
int32_t L_23 = V_0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_24;
|
|
L_24 = ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_inline((&___0_guidString), L_23, 4, ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var);
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_25 = ___1_result;
|
|
Guid_t* L_26 = (&L_25->____parsedGuid_0);
|
|
int16_t* L_27 = (&L_26->____b_2);
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_28 = ___1_result;
|
|
bool L_29;
|
|
L_29 = Guid_StringToShort_m8A05D2DF2760542B040A24B5D489A457E9059EC6(L_24, (-1), ((int32_t)4096), L_27, L_28, NULL);
|
|
if (L_29)
|
|
{
|
|
goto IL_00ba;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00ba:
|
|
{
|
|
int32_t L_30 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_30, 4));
|
|
int32_t L_31 = V_0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_32;
|
|
L_32 = ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_inline((&___0_guidString), L_31, 4, ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var);
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_33 = ___1_result;
|
|
Guid_t* L_34 = (&L_33->____parsedGuid_0);
|
|
int16_t* L_35 = (&L_34->____c_3);
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_36 = ___1_result;
|
|
bool L_37;
|
|
L_37 = Guid_StringToShort_m8A05D2DF2760542B040A24B5D489A457E9059EC6(L_32, (-1), ((int32_t)4096), L_35, L_36, NULL);
|
|
if (L_37)
|
|
{
|
|
goto IL_00e2;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00e2:
|
|
{
|
|
int32_t L_38 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_38, 4));
|
|
int32_t L_39 = V_0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_40;
|
|
L_40 = ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_inline((&___0_guidString), L_39, 4, ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var);
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_41 = ___1_result;
|
|
bool L_42;
|
|
L_42 = Guid_StringToInt_m2F526068E0F36DA2FB0B6328189B5458D9F9B2AC(L_40, (-1), ((int32_t)4096), (&V_1), L_41, NULL);
|
|
if (L_42)
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0101:
|
|
{
|
|
int32_t L_43 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_43, 4));
|
|
int32_t L_44 = V_0;
|
|
V_3 = L_44;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45 = ___0_guidString;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_46 = ___1_result;
|
|
bool L_47;
|
|
L_47 = Guid_StringToLong_m832A3F9F7A385B6B42E6D78EC030881ACF95B0DA(L_45, (&V_3), ((int32_t)8192), (&V_2), L_46, NULL);
|
|
if (L_47)
|
|
{
|
|
goto IL_011b;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_011b:
|
|
{
|
|
int32_t L_48 = V_3;
|
|
int32_t L_49 = V_0;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_48, L_49))) == ((int32_t)((int32_t)12))))
|
|
{
|
|
goto IL_0130;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_50 = ___1_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_50, 2, _stringLiteralBC6164A18588D32CF33FC986D4DFD4EC4CDCAD9D, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0130:
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_51 = ___1_result;
|
|
Guid_t* L_52 = (&L_51->____parsedGuid_0);
|
|
int32_t L_53 = V_1;
|
|
L_52->____d_4 = (uint8_t)((int32_t)(uint8_t)((int32_t)(L_53>>8)));
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_54 = ___1_result;
|
|
Guid_t* L_55 = (&L_54->____parsedGuid_0);
|
|
int32_t L_56 = V_1;
|
|
L_55->____e_5 = (uint8_t)((int32_t)(uint8_t)L_56);
|
|
int64_t L_57 = V_2;
|
|
V_1 = ((int32_t)((int64_t)(L_57>>((int32_t)32))));
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_58 = ___1_result;
|
|
Guid_t* L_59 = (&L_58->____parsedGuid_0);
|
|
int32_t L_60 = V_1;
|
|
L_59->____f_6 = (uint8_t)((int32_t)(uint8_t)((int32_t)(L_60>>8)));
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_61 = ___1_result;
|
|
Guid_t* L_62 = (&L_61->____parsedGuid_0);
|
|
int32_t L_63 = V_1;
|
|
L_62->____g_7 = (uint8_t)((int32_t)(uint8_t)L_63);
|
|
int64_t L_64 = V_2;
|
|
V_1 = ((int32_t)L_64);
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_65 = ___1_result;
|
|
Guid_t* L_66 = (&L_65->____parsedGuid_0);
|
|
int32_t L_67 = V_1;
|
|
L_66->____h_8 = (uint8_t)((int32_t)(uint8_t)((int32_t)(L_67>>((int32_t)24))));
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_68 = ___1_result;
|
|
Guid_t* L_69 = (&L_68->____parsedGuid_0);
|
|
int32_t L_70 = V_1;
|
|
L_69->____i_9 = (uint8_t)((int32_t)(uint8_t)((int32_t)(L_70>>((int32_t)16))));
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_71 = ___1_result;
|
|
Guid_t* L_72 = (&L_71->____parsedGuid_0);
|
|
int32_t L_73 = V_1;
|
|
L_72->____j_10 = (uint8_t)((int32_t)(uint8_t)((int32_t)(L_73>>8)));
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_74 = ___1_result;
|
|
Guid_t* L_75 = (&L_74->____parsedGuid_0);
|
|
int32_t L_76 = V_1;
|
|
L_75->____k_11 = (uint8_t)((int32_t)(uint8_t)L_76);
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.Guid::TryParseGuidWithDashes(System.ReadOnlySpan`1<System.Char>,System.Guid/GuidResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_TryParseGuidWithDashes_mA7FFE85E8078F0A465092E6DD009B66B5C731A30 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_guidString, GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* ___1_result, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11911B3D4C1551AA9AE78EADF7852BAE78025BB1);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBC6164A18588D32CF33FC986D4DFD4EC4CDCAD9D);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int64_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
V_0 = 0;
|
|
V_3 = 0;
|
|
Il2CppChar* L_0;
|
|
L_0 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_guidString))->____pointer_0))->value, (0), ((&___0_guidString))->____length_1);
|
|
int32_t L_1 = *((uint16_t*)L_0);
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_guidString), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)38)))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar* L_3;
|
|
L_3 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_guidString))->____pointer_0))->value, (((int32_t)37)), ((&___0_guidString))->____length_1);
|
|
int32_t L_4 = *((uint16_t*)L_3);
|
|
if ((((int32_t)L_4) == ((int32_t)((int32_t)125))))
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_5 = ___1_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_5, 2, _stringLiteralBC6164A18588D32CF33FC986D4DFD4EC4CDCAD9D, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
V_0 = 1;
|
|
goto IL_008d;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
Il2CppChar* L_6;
|
|
L_6 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_guidString))->____pointer_0))->value, (0), ((&___0_guidString))->____length_1);
|
|
int32_t L_7 = *((uint16_t*)L_6);
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)40)))))
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8;
|
|
L_8 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_guidString), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)38)))))
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar* L_9;
|
|
L_9 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_guidString))->____pointer_0))->value, (((int32_t)37)), ((&___0_guidString))->____length_1);
|
|
int32_t L_10 = *((uint16_t*)L_9);
|
|
if ((((int32_t)L_10) == ((int32_t)((int32_t)41))))
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_11 = ___1_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_11, 2, _stringLiteralBC6164A18588D32CF33FC986D4DFD4EC4CDCAD9D, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_0 = 1;
|
|
goto IL_008d;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
int32_t L_12;
|
|
L_12 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_guidString), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)L_12) == ((int32_t)((int32_t)36))))
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_13 = ___1_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_13, 2, _stringLiteralBC6164A18588D32CF33FC986D4DFD4EC4CDCAD9D, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
int32_t L_14 = V_0;
|
|
Il2CppChar* L_15;
|
|
L_15 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_guidString))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(8, L_14))), ((&___0_guidString))->____length_1);
|
|
int32_t L_16 = *((uint16_t*)L_15);
|
|
if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)45)))))
|
|
{
|
|
goto IL_00cc;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_17 = V_0;
|
|
Il2CppChar* L_18;
|
|
L_18 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_guidString))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(((int32_t)13), L_17))), ((&___0_guidString))->____length_1);
|
|
int32_t L_19 = *((uint16_t*)L_18);
|
|
if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)45)))))
|
|
{
|
|
goto IL_00cc;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_20 = V_0;
|
|
Il2CppChar* L_21;
|
|
L_21 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_guidString))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(((int32_t)18), L_20))), ((&___0_guidString))->____length_1);
|
|
int32_t L_22 = *((uint16_t*)L_21);
|
|
if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)45)))))
|
|
{
|
|
goto IL_00cc;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_23 = V_0;
|
|
Il2CppChar* L_24;
|
|
L_24 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_guidString))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(((int32_t)23), L_23))), ((&___0_guidString))->____length_1);
|
|
int32_t L_25 = *((uint16_t*)L_24);
|
|
if ((((int32_t)L_25) == ((int32_t)((int32_t)45))))
|
|
{
|
|
goto IL_00da;
|
|
}
|
|
}
|
|
|
|
IL_00cc:
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_26 = ___1_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_26, 2, _stringLiteral11911B3D4C1551AA9AE78EADF7852BAE78025BB1, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00da:
|
|
{
|
|
int32_t L_27 = V_0;
|
|
V_3 = L_27;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_28 = ___0_guidString;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_29 = ___1_result;
|
|
bool L_30;
|
|
L_30 = Guid_StringToInt_mA5A688F393A47866F6AE04BCB46FC38127646737(L_28, (&V_3), 8, ((int32_t)8192), (&V_1), L_29, NULL);
|
|
if (L_30)
|
|
{
|
|
goto IL_00f1;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00f1:
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_31 = ___1_result;
|
|
Guid_t* L_32 = (&L_31->____parsedGuid_0);
|
|
int32_t L_33 = V_1;
|
|
L_32->____a_1 = L_33;
|
|
int32_t L_34 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_34, 1));
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_35 = ___0_guidString;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_36 = ___1_result;
|
|
bool L_37;
|
|
L_37 = Guid_StringToInt_mA5A688F393A47866F6AE04BCB46FC38127646737(L_35, (&V_3), 4, ((int32_t)8192), (&V_1), L_36, NULL);
|
|
if (L_37)
|
|
{
|
|
goto IL_0116;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0116:
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_38 = ___1_result;
|
|
Guid_t* L_39 = (&L_38->____parsedGuid_0);
|
|
int32_t L_40 = V_1;
|
|
L_39->____b_2 = ((int16_t)L_40);
|
|
int32_t L_41 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_41, 1));
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_42 = ___0_guidString;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_43 = ___1_result;
|
|
bool L_44;
|
|
L_44 = Guid_StringToInt_mA5A688F393A47866F6AE04BCB46FC38127646737(L_42, (&V_3), 4, ((int32_t)8192), (&V_1), L_43, NULL);
|
|
if (L_44)
|
|
{
|
|
goto IL_013c;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_013c:
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_45 = ___1_result;
|
|
Guid_t* L_46 = (&L_45->____parsedGuid_0);
|
|
int32_t L_47 = V_1;
|
|
L_46->____c_3 = ((int16_t)L_47);
|
|
int32_t L_48 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_48, 1));
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_49 = ___0_guidString;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_50 = ___1_result;
|
|
bool L_51;
|
|
L_51 = Guid_StringToInt_mA5A688F393A47866F6AE04BCB46FC38127646737(L_49, (&V_3), 4, ((int32_t)8192), (&V_1), L_50, NULL);
|
|
if (L_51)
|
|
{
|
|
goto IL_0162;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0162:
|
|
{
|
|
int32_t L_52 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_52, 1));
|
|
int32_t L_53 = V_3;
|
|
V_0 = L_53;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_54 = ___0_guidString;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_55 = ___1_result;
|
|
bool L_56;
|
|
L_56 = Guid_StringToLong_m832A3F9F7A385B6B42E6D78EC030881ACF95B0DA(L_54, (&V_3), ((int32_t)8192), (&V_2), L_55, NULL);
|
|
if (L_56)
|
|
{
|
|
goto IL_017c;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_017c:
|
|
{
|
|
int32_t L_57 = V_3;
|
|
int32_t L_58 = V_0;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_57, L_58))) == ((int32_t)((int32_t)12))))
|
|
{
|
|
goto IL_0191;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_59 = ___1_result;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_59, 2, _stringLiteralBC6164A18588D32CF33FC986D4DFD4EC4CDCAD9D, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0191:
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_60 = ___1_result;
|
|
Guid_t* L_61 = (&L_60->____parsedGuid_0);
|
|
int32_t L_62 = V_1;
|
|
L_61->____d_4 = (uint8_t)((int32_t)(uint8_t)((int32_t)(L_62>>8)));
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_63 = ___1_result;
|
|
Guid_t* L_64 = (&L_63->____parsedGuid_0);
|
|
int32_t L_65 = V_1;
|
|
L_64->____e_5 = (uint8_t)((int32_t)(uint8_t)L_65);
|
|
int64_t L_66 = V_2;
|
|
V_1 = ((int32_t)((int64_t)(L_66>>((int32_t)32))));
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_67 = ___1_result;
|
|
Guid_t* L_68 = (&L_67->____parsedGuid_0);
|
|
int32_t L_69 = V_1;
|
|
L_68->____f_6 = (uint8_t)((int32_t)(uint8_t)((int32_t)(L_69>>8)));
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_70 = ___1_result;
|
|
Guid_t* L_71 = (&L_70->____parsedGuid_0);
|
|
int32_t L_72 = V_1;
|
|
L_71->____g_7 = (uint8_t)((int32_t)(uint8_t)L_72);
|
|
int64_t L_73 = V_2;
|
|
V_1 = ((int32_t)L_73);
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_74 = ___1_result;
|
|
Guid_t* L_75 = (&L_74->____parsedGuid_0);
|
|
int32_t L_76 = V_1;
|
|
L_75->____h_8 = (uint8_t)((int32_t)(uint8_t)((int32_t)(L_76>>((int32_t)24))));
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_77 = ___1_result;
|
|
Guid_t* L_78 = (&L_77->____parsedGuid_0);
|
|
int32_t L_79 = V_1;
|
|
L_78->____i_9 = (uint8_t)((int32_t)(uint8_t)((int32_t)(L_79>>((int32_t)16))));
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_80 = ___1_result;
|
|
Guid_t* L_81 = (&L_80->____parsedGuid_0);
|
|
int32_t L_82 = V_1;
|
|
L_81->____j_10 = (uint8_t)((int32_t)(uint8_t)((int32_t)(L_82>>8)));
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_83 = ___1_result;
|
|
Guid_t* L_84 = (&L_83->____parsedGuid_0);
|
|
int32_t L_85 = V_1;
|
|
L_84->____k_11 = (uint8_t)((int32_t)(uint8_t)L_85);
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.Guid::StringToShort(System.ReadOnlySpan`1<System.Char>,System.Int32,System.Int32,System.Int16&,System.Guid/GuidResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_StringToShort_m8A05D2DF2760542B040A24B5D489A457E9059EC6 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, int32_t ___1_requiredLength, int32_t ___2_flags, int16_t* ___3_result, GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* ___4_parseResult, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_str;
|
|
int32_t L_1 = ___1_requiredLength;
|
|
int32_t L_2 = ___2_flags;
|
|
int16_t* L_3 = ___3_result;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_4 = ___4_parseResult;
|
|
bool L_5;
|
|
L_5 = Guid_StringToShort_m3EF9E1B0048A5C23DA7D2467BB99ECFA54E93730(L_0, (&V_0), L_1, L_2, L_3, L_4, NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Boolean System.Guid::StringToShort(System.ReadOnlySpan`1<System.Char>,System.Int32&,System.Int32,System.Int32,System.Int16&,System.Guid/GuidResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_StringToShort_m3EF9E1B0048A5C23DA7D2467BB99ECFA54E93730 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, int32_t* ___1_parsePos, int32_t ___2_requiredLength, int32_t ___3_flags, int16_t* ___4_result, GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* ___5_parseResult, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int16_t* L_0 = ___4_result;
|
|
*((int16_t*)L_0) = (int16_t)0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = ___0_str;
|
|
int32_t* L_2 = ___1_parsePos;
|
|
int32_t L_3 = ___2_requiredLength;
|
|
int32_t L_4 = ___3_flags;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_5 = ___5_parseResult;
|
|
bool L_6;
|
|
L_6 = Guid_StringToInt_mA5A688F393A47866F6AE04BCB46FC38127646737(L_1, L_2, L_3, L_4, (&V_0), L_5, NULL);
|
|
int16_t* L_7 = ___4_result;
|
|
int32_t L_8 = V_0;
|
|
*((int16_t*)L_7) = (int16_t)((int16_t)L_8);
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Boolean System.Guid::StringToInt(System.ReadOnlySpan`1<System.Char>,System.Int32,System.Int32,System.Int32&,System.Guid/GuidResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_StringToInt_m2F526068E0F36DA2FB0B6328189B5458D9F9B2AC (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, int32_t ___1_requiredLength, int32_t ___2_flags, int32_t* ___3_result, GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* ___4_parseResult, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_str;
|
|
int32_t L_1 = ___1_requiredLength;
|
|
int32_t L_2 = ___2_flags;
|
|
int32_t* L_3 = ___3_result;
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_4 = ___4_parseResult;
|
|
bool L_5;
|
|
L_5 = Guid_StringToInt_mA5A688F393A47866F6AE04BCB46FC38127646737(L_0, (&V_0), L_1, L_2, L_3, L_4, NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Boolean System.Guid::StringToInt(System.ReadOnlySpan`1<System.Char>,System.Int32&,System.Int32,System.Int32,System.Int32&,System.Guid/GuidResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_StringToInt_mA5A688F393A47866F6AE04BCB46FC38127646737 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, int32_t* ___1_parsePos, int32_t ___2_requiredLength, int32_t ___3_flags, int32_t* ___4_result, GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* ___5_parseResult, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF7F3659E8021DAE64079570DFC3041787F1C824D);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* V_1 = NULL;
|
|
bool V_2 = false;
|
|
Exception_t* V_3 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
int32_t* L_0 = ___4_result;
|
|
*((int32_t*)L_0) = (int32_t)0;
|
|
int32_t* L_1 = ___1_parsePos;
|
|
int32_t L_2 = *((int32_t*)L_1);
|
|
V_0 = L_2;
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
int32_t* L_3 = ___4_result;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_4 = ___0_str;
|
|
int32_t L_5 = ___3_flags;
|
|
int32_t* L_6 = ___1_parsePos;
|
|
int32_t L_7;
|
|
L_7 = ParseNumbers_StringToInt_mE762839BFF1D52853DC70197BDDD20F9FFB834A2(L_4, ((int32_t)16), L_5, L_6, NULL);
|
|
*((int32_t*)L_3) = (int32_t)L_7;
|
|
goto IL_005d;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0016;
|
|
}
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0045;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0016:
|
|
{// begin catch(System.OverflowException)
|
|
{
|
|
V_1 = ((OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)IL2CPP_GET_ACTIVE_EXCEPTION(OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*));
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_8 = ___5_parseResult;
|
|
int32_t L_9 = L_8->____throwStyle_1;
|
|
if ((!(((uint32_t)L_9) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RETHROW_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_10 = ___5_parseResult;
|
|
int32_t L_11 = L_10->____throwStyle_1;
|
|
if ((!(((uint32_t)L_11) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_12 = V_1;
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_13 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_13);
|
|
FormatException__ctor_mE31CCFC2A6FA296CA9E9C6813112D7850FE682D4(L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBC88717BD32A7FD98D754192338108D9C58269D)), L_12, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Guid_StringToInt_mA5A688F393A47866F6AE04BCB46FC38127646737_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_14 = ___5_parseResult;
|
|
OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_15 = V_1;
|
|
GuidResult_SetFailure_mA88DCBD6280AA9823F2A2810AD3B0BDF50EAD239(L_14, L_15, NULL);
|
|
V_2 = (bool)0;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION();
|
|
goto IL_0079;
|
|
}
|
|
}// end catch (depth: 1)
|
|
|
|
CATCH_0045:
|
|
{// begin catch(System.Exception)
|
|
{
|
|
V_3 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_16 = ___5_parseResult;
|
|
int32_t L_17 = L_16->____throwStyle_1;
|
|
if (L_17)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_18 = ___5_parseResult;
|
|
Exception_t* L_19 = V_3;
|
|
GuidResult_SetFailure_mA88DCBD6280AA9823F2A2810AD3B0BDF50EAD239(L_18, L_19, NULL);
|
|
V_2 = (bool)0;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION();
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
IL2CPP_RETHROW_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
|
|
}
|
|
}// end catch (depth: 1)
|
|
|
|
IL_005d:
|
|
{
|
|
int32_t L_20 = ___2_requiredLength;
|
|
if ((((int32_t)L_20) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_21 = ___1_parsePos;
|
|
int32_t L_22 = *((int32_t*)L_21);
|
|
int32_t L_23 = V_0;
|
|
int32_t L_24 = ___2_requiredLength;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_22, L_23))) == ((int32_t)L_24)))
|
|
{
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_25 = ___5_parseResult;
|
|
GuidResult_SetFailure_mAD082AA9068B9208F6D872480AD041716484A1CA(L_25, 2, _stringLiteralF7F3659E8021DAE64079570DFC3041787F1C824D, NULL);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
bool L_26 = V_2;
|
|
return L_26;
|
|
}
|
|
}
|
|
// System.Boolean System.Guid::StringToLong(System.ReadOnlySpan`1<System.Char>,System.Int32&,System.Int32,System.Int64&,System.Guid/GuidResult&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_StringToLong_m832A3F9F7A385B6B42E6D78EC030881ACF95B0DA (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, int32_t* ___1_parsePos, int32_t ___2_flags, int64_t* ___3_result, GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* ___4_parseResult, const RuntimeMethod* method)
|
|
{
|
|
OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* V_0 = NULL;
|
|
bool V_1 = false;
|
|
Exception_t* V_2 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
int64_t* L_0 = ___3_result;
|
|
*((int64_t*)L_0) = (int64_t)((int64_t)0);
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
int64_t* L_1 = ___3_result;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2 = ___0_str;
|
|
int32_t L_3 = ___2_flags;
|
|
int32_t* L_4 = ___1_parsePos;
|
|
int64_t L_5;
|
|
L_5 = ParseNumbers_StringToLong_m88499EFA2A45950A789D61466A3656D9D1351A2E(L_2, ((int32_t)16), L_3, L_4, NULL);
|
|
*((int64_t*)L_1) = (int64_t)L_5;
|
|
goto IL_0059;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0012;
|
|
}
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0041;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0012:
|
|
{// begin catch(System.OverflowException)
|
|
{
|
|
V_0 = ((OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)IL2CPP_GET_ACTIVE_EXCEPTION(OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*));
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_6 = ___4_parseResult;
|
|
int32_t L_7 = L_6->____throwStyle_1;
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)1))))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RETHROW_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_8 = ___4_parseResult;
|
|
int32_t L_9 = L_8->____throwStyle_1;
|
|
if ((!(((uint32_t)L_9) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_10 = V_0;
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_11 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_11);
|
|
FormatException__ctor_mE31CCFC2A6FA296CA9E9C6813112D7850FE682D4(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBC88717BD32A7FD98D754192338108D9C58269D)), L_10, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Guid_StringToLong_m832A3F9F7A385B6B42E6D78EC030881ACF95B0DA_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_12 = ___4_parseResult;
|
|
OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_13 = V_0;
|
|
GuidResult_SetFailure_mA88DCBD6280AA9823F2A2810AD3B0BDF50EAD239(L_12, L_13, NULL);
|
|
V_1 = (bool)0;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION();
|
|
goto IL_005b;
|
|
}
|
|
}// end catch (depth: 1)
|
|
|
|
CATCH_0041:
|
|
{// begin catch(System.Exception)
|
|
{
|
|
V_2 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_14 = ___4_parseResult;
|
|
int32_t L_15 = L_14->____throwStyle_1;
|
|
if (L_15)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* L_16 = ___4_parseResult;
|
|
Exception_t* L_17 = V_2;
|
|
GuidResult_SetFailure_mA88DCBD6280AA9823F2A2810AD3B0BDF50EAD239(L_16, L_17, NULL);
|
|
V_1 = (bool)0;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION();
|
|
goto IL_005b;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
IL2CPP_RETHROW_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
|
|
}
|
|
}// end catch (depth: 1)
|
|
|
|
IL_0059:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
bool L_18 = V_1;
|
|
return L_18;
|
|
}
|
|
}
|
|
// System.ReadOnlySpan`1<System.Char> System.Guid::EatAllWhitespace(System.ReadOnlySpan`1<System.Char>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Guid_EatAllWhitespace_m30F6DA8C5546820D86DABCF509A9DAA9CFE8214E (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_mDADE08E6B4594775C6675B389078E5FE98C745D5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_op_Implicit_mA0E9FDCF2C5113BA9F9C4964D17D8BDFBD6F3C98_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
Il2CppChar V_4 = 0x0;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0008;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
int32_t L_2;
|
|
L_2 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_str), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)L_1) >= ((int32_t)L_2)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
Il2CppChar* L_4;
|
|
L_4 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_str))->____pointer_0))->value, (L_3), ((&___0_str))->____length_1);
|
|
int32_t L_5 = *((uint16_t*)L_4);
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_5, NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
int32_t L_8;
|
|
L_8 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_str), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)L_8))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_9 = ___0_str;
|
|
return L_9;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
int32_t L_10;
|
|
L_10 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_str), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)L_10);
|
|
V_1 = L_11;
|
|
V_2 = 0;
|
|
int32_t L_12 = V_0;
|
|
if ((((int32_t)L_12) <= ((int32_t)0)))
|
|
{
|
|
goto IL_007d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_13 = V_0;
|
|
V_2 = L_13;
|
|
int32_t L_14 = V_0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_15;
|
|
L_15 = ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_inline((&___0_str), 0, L_14, ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var);
|
|
V_3 = L_15;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = V_1;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_17;
|
|
L_17 = Span_1_op_Implicit_mA0E9FDCF2C5113BA9F9C4964D17D8BDFBD6F3C98(L_16, Span_1_op_Implicit_mA0E9FDCF2C5113BA9F9C4964D17D8BDFBD6F3C98_RuntimeMethod_var);
|
|
ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030((&V_3), L_17, ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030_RuntimeMethod_var);
|
|
goto IL_007d;
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
int32_t L_18 = V_0;
|
|
Il2CppChar* L_19;
|
|
L_19 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_str))->____pointer_0))->value, (L_18), ((&___0_str))->____length_1);
|
|
int32_t L_20 = *((uint16_t*)L_19);
|
|
V_4 = L_20;
|
|
Il2CppChar L_21 = V_4;
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_22;
|
|
L_22 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_21, NULL);
|
|
if (L_22)
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
}
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_23 = V_1;
|
|
int32_t L_24 = V_2;
|
|
int32_t L_25 = L_24;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_25, 1));
|
|
Il2CppChar L_26 = V_4;
|
|
NullCheck(L_23);
|
|
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_25), (Il2CppChar)L_26);
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
int32_t L_27 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_27, 1));
|
|
}
|
|
|
|
IL_007d:
|
|
{
|
|
int32_t L_28 = V_0;
|
|
int32_t L_29;
|
|
L_29 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_str), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)L_28) < ((int32_t)L_29)))
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_30 = V_1;
|
|
int32_t L_31 = V_2;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_32;
|
|
memset((&L_32), 0, sizeof(L_32));
|
|
ReadOnlySpan_1__ctor_mDADE08E6B4594775C6675B389078E5FE98C745D5_inline((&L_32), L_30, 0, L_31, /*hidden argument*/ReadOnlySpan_1__ctor_mDADE08E6B4594775C6675B389078E5FE98C745D5_RuntimeMethod_var);
|
|
return L_32;
|
|
}
|
|
}
|
|
// System.Boolean System.Guid::IsHexPrefix(System.ReadOnlySpan`1<System.Char>,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_IsHexPrefix_m1D3D917C7223786C87C58914798833F77181A222 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, int32_t ___1_i, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___1_i;
|
|
int32_t L_1;
|
|
L_1 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_str), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_0, 1))) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___1_i;
|
|
Il2CppChar* L_3;
|
|
L_3 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_str))->____pointer_0))->value, (L_2), ((&___0_str))->____length_1);
|
|
int32_t L_4 = *((uint16_t*)L_3);
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)48)))))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = ___1_i;
|
|
Il2CppChar* L_6;
|
|
L_6 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_str))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(L_5, 1))), ((&___0_str))->____length_1);
|
|
int32_t L_7 = *((uint16_t*)L_6);
|
|
if ((((int32_t)L_7) == ((int32_t)((int32_t)120))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = ___1_i;
|
|
Il2CppChar* L_9;
|
|
L_9 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___0_str))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(L_8, 1))), ((&___0_str))->____length_1);
|
|
int32_t L_10 = *((uint16_t*)L_9);
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
Il2CppChar L_11;
|
|
L_11 = Char_ToLowerInvariant_m983C1CD07015E41B97D71F466B4B686F1145E60D(L_10, NULL);
|
|
return (bool)((((int32_t)L_11) == ((int32_t)((int32_t)120)))? 1 : 0);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.String System.Guid::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Guid_ToString_m2BFFD5FA726E03FA707AAFCCF065896C46D5290C (Guid_t* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA019FB7F17AA36A9743C530E1F11D5613B8B1158);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0;
|
|
L_0 = Guid_ToString_mD2A93BCA0CBFABB680A93A8FA668AD90E7B56130(__this, _stringLiteralA019FB7F17AA36A9743C530E1F11D5613B8B1158, (RuntimeObject*)NULL, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Guid_ToString_m2BFFD5FA726E03FA707AAFCCF065896C46D5290C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Guid_t* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Guid_t*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = Guid_ToString_m2BFFD5FA726E03FA707AAFCCF065896C46D5290C(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 System.Guid::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Guid_GetHashCode_m239B7679BB9ED5A207B3D2F858B5F30FFC455408 (Guid_t* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____a_1;
|
|
int32_t* L_1 = (&__this->____a_1);
|
|
int32_t* L_2;
|
|
L_2 = il2cpp_unsafe_add<int32_t,int32_t>(L_1, 1);
|
|
int32_t L_3 = *((int32_t*)L_2);
|
|
int32_t* L_4 = (&__this->____a_1);
|
|
int32_t* L_5;
|
|
L_5 = il2cpp_unsafe_add<int32_t,int32_t>(L_4, 2);
|
|
int32_t L_6 = *((int32_t*)L_5);
|
|
int32_t* L_7 = (&__this->____a_1);
|
|
int32_t* L_8;
|
|
L_8 = il2cpp_unsafe_add<int32_t,int32_t>(L_7, 3);
|
|
int32_t L_9 = *((int32_t*)L_8);
|
|
return ((int32_t)(((int32_t)(((int32_t)(L_0^L_3))^L_6))^L_9));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Guid_GetHashCode_m239B7679BB9ED5A207B3D2F858B5F30FFC455408_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Guid_t* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Guid_t*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = Guid_GetHashCode_m239B7679BB9ED5A207B3D2F858B5F30FFC455408(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean System.Guid::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_Equals_mC7349E47BF1CBCBFB4C9032C050DE54AAC10000B (Guid_t* __this, RuntimeObject* ___0_o, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Guid_t V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
RuntimeObject* L_0 = ___0_o;
|
|
if (!L_0)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1 = ___0_o;
|
|
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1, Guid_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_2 = ___0_o;
|
|
V_0 = ((*(Guid_t*)((Guid_t*)(Guid_t*)UnBox(L_2, Guid_t_il2cpp_TypeInfo_var))));
|
|
Guid_t L_3 = V_0;
|
|
int32_t L_4 = L_3.____a_1;
|
|
int32_t L_5 = __this->____a_1;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)L_5))))
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_6 = (&(&V_0)->____a_1);
|
|
int32_t* L_7;
|
|
L_7 = il2cpp_unsafe_add<int32_t,int32_t>(L_6, 1);
|
|
int32_t L_8 = *((int32_t*)L_7);
|
|
int32_t* L_9 = (&__this->____a_1);
|
|
int32_t* L_10;
|
|
L_10 = il2cpp_unsafe_add<int32_t,int32_t>(L_9, 1);
|
|
int32_t L_11 = *((int32_t*)L_10);
|
|
if ((!(((uint32_t)L_8) == ((uint32_t)L_11))))
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_12 = (&(&V_0)->____a_1);
|
|
int32_t* L_13;
|
|
L_13 = il2cpp_unsafe_add<int32_t,int32_t>(L_12, 2);
|
|
int32_t L_14 = *((int32_t*)L_13);
|
|
int32_t* L_15 = (&__this->____a_1);
|
|
int32_t* L_16;
|
|
L_16 = il2cpp_unsafe_add<int32_t,int32_t>(L_15, 2);
|
|
int32_t L_17 = *((int32_t*)L_16);
|
|
if ((!(((uint32_t)L_14) == ((uint32_t)L_17))))
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_18 = (&(&V_0)->____a_1);
|
|
int32_t* L_19;
|
|
L_19 = il2cpp_unsafe_add<int32_t,int32_t>(L_18, 3);
|
|
int32_t L_20 = *((int32_t*)L_19);
|
|
int32_t* L_21 = (&__this->____a_1);
|
|
int32_t* L_22;
|
|
L_22 = il2cpp_unsafe_add<int32_t,int32_t>(L_21, 3);
|
|
int32_t L_23 = *((int32_t*)L_22);
|
|
return (bool)((((int32_t)L_20) == ((int32_t)L_23))? 1 : 0);
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Guid_Equals_mC7349E47BF1CBCBFB4C9032C050DE54AAC10000B_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_o, const RuntimeMethod* method)
|
|
{
|
|
Guid_t* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Guid_t*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Guid_Equals_mC7349E47BF1CBCBFB4C9032C050DE54AAC10000B(_thisAdjusted, ___0_o, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean System.Guid::Equals(System.Guid)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_Equals_m1839AD036DD7C056E8439A64D5D82490C1F08E0C (Guid_t* __this, Guid_t ___0_g, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Guid_t L_0 = ___0_g;
|
|
int32_t L_1 = L_0.____a_1;
|
|
int32_t L_2 = __this->____a_1;
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0066;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_3 = (&(&___0_g)->____a_1);
|
|
int32_t* L_4;
|
|
L_4 = il2cpp_unsafe_add<int32_t,int32_t>(L_3, 1);
|
|
int32_t L_5 = *((int32_t*)L_4);
|
|
int32_t* L_6 = (&__this->____a_1);
|
|
int32_t* L_7;
|
|
L_7 = il2cpp_unsafe_add<int32_t,int32_t>(L_6, 1);
|
|
int32_t L_8 = *((int32_t*)L_7);
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)L_8))))
|
|
{
|
|
goto IL_0066;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_9 = (&(&___0_g)->____a_1);
|
|
int32_t* L_10;
|
|
L_10 = il2cpp_unsafe_add<int32_t,int32_t>(L_9, 2);
|
|
int32_t L_11 = *((int32_t*)L_10);
|
|
int32_t* L_12 = (&__this->____a_1);
|
|
int32_t* L_13;
|
|
L_13 = il2cpp_unsafe_add<int32_t,int32_t>(L_12, 2);
|
|
int32_t L_14 = *((int32_t*)L_13);
|
|
if ((!(((uint32_t)L_11) == ((uint32_t)L_14))))
|
|
{
|
|
goto IL_0066;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_15 = (&(&___0_g)->____a_1);
|
|
int32_t* L_16;
|
|
L_16 = il2cpp_unsafe_add<int32_t,int32_t>(L_15, 3);
|
|
int32_t L_17 = *((int32_t*)L_16);
|
|
int32_t* L_18 = (&__this->____a_1);
|
|
int32_t* L_19;
|
|
L_19 = il2cpp_unsafe_add<int32_t,int32_t>(L_18, 3);
|
|
int32_t L_20 = *((int32_t*)L_19);
|
|
return (bool)((((int32_t)L_17) == ((int32_t)L_20))? 1 : 0);
|
|
}
|
|
|
|
IL_0066:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Guid_Equals_m1839AD036DD7C056E8439A64D5D82490C1F08E0C_AdjustorThunk (RuntimeObject* __this, Guid_t ___0_g, const RuntimeMethod* method)
|
|
{
|
|
Guid_t* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Guid_t*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Guid_Equals_m1839AD036DD7C056E8439A64D5D82490C1F08E0C(_thisAdjusted, ___0_g, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 System.Guid::GetResult(System.UInt32,System.UInt32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C (Guid_t* __this, uint32_t ___0_me, uint32_t ___1_them, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint32_t L_0 = ___0_me;
|
|
uint32_t L_1 = ___1_them;
|
|
if ((!(((uint32_t)L_0) < ((uint32_t)L_1))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
return 1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C_AdjustorThunk (RuntimeObject* __this, uint32_t ___0_me, uint32_t ___1_them, const RuntimeMethod* method)
|
|
{
|
|
Guid_t* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Guid_t*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(_thisAdjusted, ___0_me, ___1_them, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 System.Guid::CompareTo(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Guid_CompareTo_m25940E81E692D335CFDE59D11862C99D99D044BB (Guid_t* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Guid_t V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
RuntimeObject* L_0 = ___0_value;
|
|
if (L_0)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
RuntimeObject* L_1 = ___0_value;
|
|
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1, Guid_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC933E93DDFB39592649EC75ECA0E66F2D71BCEF3)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Guid_CompareTo_m25940E81E692D335CFDE59D11862C99D99D044BB_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
RuntimeObject* L_3 = ___0_value;
|
|
V_0 = ((*(Guid_t*)((Guid_t*)(Guid_t*)UnBox(L_3, Guid_t_il2cpp_TypeInfo_var))));
|
|
Guid_t L_4 = V_0;
|
|
int32_t L_5 = L_4.____a_1;
|
|
int32_t L_6 = __this->____a_1;
|
|
if ((((int32_t)L_5) == ((int32_t)L_6)))
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = __this->____a_1;
|
|
Guid_t L_8 = V_0;
|
|
int32_t L_9 = L_8.____a_1;
|
|
int32_t L_10;
|
|
L_10 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_7, L_9, NULL);
|
|
return L_10;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
Guid_t L_11 = V_0;
|
|
int16_t L_12 = L_11.____b_2;
|
|
int16_t L_13 = __this->____b_2;
|
|
if ((((int32_t)L_12) == ((int32_t)L_13)))
|
|
{
|
|
goto IL_0066;
|
|
}
|
|
}
|
|
{
|
|
int16_t L_14 = __this->____b_2;
|
|
Guid_t L_15 = V_0;
|
|
int16_t L_16 = L_15.____b_2;
|
|
int32_t L_17;
|
|
L_17 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_14, L_16, NULL);
|
|
return L_17;
|
|
}
|
|
|
|
IL_0066:
|
|
{
|
|
Guid_t L_18 = V_0;
|
|
int16_t L_19 = L_18.____c_3;
|
|
int16_t L_20 = __this->____c_3;
|
|
if ((((int32_t)L_19) == ((int32_t)L_20)))
|
|
{
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
int16_t L_21 = __this->____c_3;
|
|
Guid_t L_22 = V_0;
|
|
int16_t L_23 = L_22.____c_3;
|
|
int32_t L_24;
|
|
L_24 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_21, L_23, NULL);
|
|
return L_24;
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
Guid_t L_25 = V_0;
|
|
uint8_t L_26 = L_25.____d_4;
|
|
uint8_t L_27 = __this->____d_4;
|
|
if ((((int32_t)L_26) == ((int32_t)L_27)))
|
|
{
|
|
goto IL_00a8;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_28 = __this->____d_4;
|
|
Guid_t L_29 = V_0;
|
|
uint8_t L_30 = L_29.____d_4;
|
|
int32_t L_31;
|
|
L_31 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_28, L_30, NULL);
|
|
return L_31;
|
|
}
|
|
|
|
IL_00a8:
|
|
{
|
|
Guid_t L_32 = V_0;
|
|
uint8_t L_33 = L_32.____e_5;
|
|
uint8_t L_34 = __this->____e_5;
|
|
if ((((int32_t)L_33) == ((int32_t)L_34)))
|
|
{
|
|
goto IL_00c9;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_35 = __this->____e_5;
|
|
Guid_t L_36 = V_0;
|
|
uint8_t L_37 = L_36.____e_5;
|
|
int32_t L_38;
|
|
L_38 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_35, L_37, NULL);
|
|
return L_38;
|
|
}
|
|
|
|
IL_00c9:
|
|
{
|
|
Guid_t L_39 = V_0;
|
|
uint8_t L_40 = L_39.____f_6;
|
|
uint8_t L_41 = __this->____f_6;
|
|
if ((((int32_t)L_40) == ((int32_t)L_41)))
|
|
{
|
|
goto IL_00ea;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_42 = __this->____f_6;
|
|
Guid_t L_43 = V_0;
|
|
uint8_t L_44 = L_43.____f_6;
|
|
int32_t L_45;
|
|
L_45 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_42, L_44, NULL);
|
|
return L_45;
|
|
}
|
|
|
|
IL_00ea:
|
|
{
|
|
Guid_t L_46 = V_0;
|
|
uint8_t L_47 = L_46.____g_7;
|
|
uint8_t L_48 = __this->____g_7;
|
|
if ((((int32_t)L_47) == ((int32_t)L_48)))
|
|
{
|
|
goto IL_010b;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_49 = __this->____g_7;
|
|
Guid_t L_50 = V_0;
|
|
uint8_t L_51 = L_50.____g_7;
|
|
int32_t L_52;
|
|
L_52 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_49, L_51, NULL);
|
|
return L_52;
|
|
}
|
|
|
|
IL_010b:
|
|
{
|
|
Guid_t L_53 = V_0;
|
|
uint8_t L_54 = L_53.____h_8;
|
|
uint8_t L_55 = __this->____h_8;
|
|
if ((((int32_t)L_54) == ((int32_t)L_55)))
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_56 = __this->____h_8;
|
|
Guid_t L_57 = V_0;
|
|
uint8_t L_58 = L_57.____h_8;
|
|
int32_t L_59;
|
|
L_59 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_56, L_58, NULL);
|
|
return L_59;
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
Guid_t L_60 = V_0;
|
|
uint8_t L_61 = L_60.____i_9;
|
|
uint8_t L_62 = __this->____i_9;
|
|
if ((((int32_t)L_61) == ((int32_t)L_62)))
|
|
{
|
|
goto IL_014d;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_63 = __this->____i_9;
|
|
Guid_t L_64 = V_0;
|
|
uint8_t L_65 = L_64.____i_9;
|
|
int32_t L_66;
|
|
L_66 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_63, L_65, NULL);
|
|
return L_66;
|
|
}
|
|
|
|
IL_014d:
|
|
{
|
|
Guid_t L_67 = V_0;
|
|
uint8_t L_68 = L_67.____j_10;
|
|
uint8_t L_69 = __this->____j_10;
|
|
if ((((int32_t)L_68) == ((int32_t)L_69)))
|
|
{
|
|
goto IL_016e;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_70 = __this->____j_10;
|
|
Guid_t L_71 = V_0;
|
|
uint8_t L_72 = L_71.____j_10;
|
|
int32_t L_73;
|
|
L_73 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_70, L_72, NULL);
|
|
return L_73;
|
|
}
|
|
|
|
IL_016e:
|
|
{
|
|
Guid_t L_74 = V_0;
|
|
uint8_t L_75 = L_74.____k_11;
|
|
uint8_t L_76 = __this->____k_11;
|
|
if ((((int32_t)L_75) == ((int32_t)L_76)))
|
|
{
|
|
goto IL_018f;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_77 = __this->____k_11;
|
|
Guid_t L_78 = V_0;
|
|
uint8_t L_79 = L_78.____k_11;
|
|
int32_t L_80;
|
|
L_80 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_77, L_79, NULL);
|
|
return L_80;
|
|
}
|
|
|
|
IL_018f:
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Guid_CompareTo_m25940E81E692D335CFDE59D11862C99D99D044BB_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
Guid_t* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Guid_t*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = Guid_CompareTo_m25940E81E692D335CFDE59D11862C99D99D044BB(_thisAdjusted, ___0_value, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 System.Guid::CompareTo(System.Guid)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Guid_CompareTo_mC22A00A14BBCCBF55F303C89A567FCA43925B586 (Guid_t* __this, Guid_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Guid_t L_0 = ___0_value;
|
|
int32_t L_1 = L_0.____a_1;
|
|
int32_t L_2 = __this->____a_1;
|
|
if ((((int32_t)L_1) == ((int32_t)L_2)))
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = __this->____a_1;
|
|
Guid_t L_4 = ___0_value;
|
|
int32_t L_5 = L_4.____a_1;
|
|
int32_t L_6;
|
|
L_6 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_3, L_5, NULL);
|
|
return L_6;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
Guid_t L_7 = ___0_value;
|
|
int16_t L_8 = L_7.____b_2;
|
|
int16_t L_9 = __this->____b_2;
|
|
if ((((int32_t)L_8) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
int16_t L_10 = __this->____b_2;
|
|
Guid_t L_11 = ___0_value;
|
|
int16_t L_12 = L_11.____b_2;
|
|
int32_t L_13;
|
|
L_13 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_10, L_12, NULL);
|
|
return L_13;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
Guid_t L_14 = ___0_value;
|
|
int16_t L_15 = L_14.____c_3;
|
|
int16_t L_16 = __this->____c_3;
|
|
if ((((int32_t)L_15) == ((int32_t)L_16)))
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
{
|
|
int16_t L_17 = __this->____c_3;
|
|
Guid_t L_18 = ___0_value;
|
|
int16_t L_19 = L_18.____c_3;
|
|
int32_t L_20;
|
|
L_20 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_17, L_19, NULL);
|
|
return L_20;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
Guid_t L_21 = ___0_value;
|
|
uint8_t L_22 = L_21.____d_4;
|
|
uint8_t L_23 = __this->____d_4;
|
|
if ((((int32_t)L_22) == ((int32_t)L_23)))
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_24 = __this->____d_4;
|
|
Guid_t L_25 = ___0_value;
|
|
uint8_t L_26 = L_25.____d_4;
|
|
int32_t L_27;
|
|
L_27 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_24, L_26, NULL);
|
|
return L_27;
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
Guid_t L_28 = ___0_value;
|
|
uint8_t L_29 = L_28.____e_5;
|
|
uint8_t L_30 = __this->____e_5;
|
|
if ((((int32_t)L_29) == ((int32_t)L_30)))
|
|
{
|
|
goto IL_00a5;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_31 = __this->____e_5;
|
|
Guid_t L_32 = ___0_value;
|
|
uint8_t L_33 = L_32.____e_5;
|
|
int32_t L_34;
|
|
L_34 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_31, L_33, NULL);
|
|
return L_34;
|
|
}
|
|
|
|
IL_00a5:
|
|
{
|
|
Guid_t L_35 = ___0_value;
|
|
uint8_t L_36 = L_35.____f_6;
|
|
uint8_t L_37 = __this->____f_6;
|
|
if ((((int32_t)L_36) == ((int32_t)L_37)))
|
|
{
|
|
goto IL_00c6;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_38 = __this->____f_6;
|
|
Guid_t L_39 = ___0_value;
|
|
uint8_t L_40 = L_39.____f_6;
|
|
int32_t L_41;
|
|
L_41 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_38, L_40, NULL);
|
|
return L_41;
|
|
}
|
|
|
|
IL_00c6:
|
|
{
|
|
Guid_t L_42 = ___0_value;
|
|
uint8_t L_43 = L_42.____g_7;
|
|
uint8_t L_44 = __this->____g_7;
|
|
if ((((int32_t)L_43) == ((int32_t)L_44)))
|
|
{
|
|
goto IL_00e7;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_45 = __this->____g_7;
|
|
Guid_t L_46 = ___0_value;
|
|
uint8_t L_47 = L_46.____g_7;
|
|
int32_t L_48;
|
|
L_48 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_45, L_47, NULL);
|
|
return L_48;
|
|
}
|
|
|
|
IL_00e7:
|
|
{
|
|
Guid_t L_49 = ___0_value;
|
|
uint8_t L_50 = L_49.____h_8;
|
|
uint8_t L_51 = __this->____h_8;
|
|
if ((((int32_t)L_50) == ((int32_t)L_51)))
|
|
{
|
|
goto IL_0108;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_52 = __this->____h_8;
|
|
Guid_t L_53 = ___0_value;
|
|
uint8_t L_54 = L_53.____h_8;
|
|
int32_t L_55;
|
|
L_55 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_52, L_54, NULL);
|
|
return L_55;
|
|
}
|
|
|
|
IL_0108:
|
|
{
|
|
Guid_t L_56 = ___0_value;
|
|
uint8_t L_57 = L_56.____i_9;
|
|
uint8_t L_58 = __this->____i_9;
|
|
if ((((int32_t)L_57) == ((int32_t)L_58)))
|
|
{
|
|
goto IL_0129;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_59 = __this->____i_9;
|
|
Guid_t L_60 = ___0_value;
|
|
uint8_t L_61 = L_60.____i_9;
|
|
int32_t L_62;
|
|
L_62 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_59, L_61, NULL);
|
|
return L_62;
|
|
}
|
|
|
|
IL_0129:
|
|
{
|
|
Guid_t L_63 = ___0_value;
|
|
uint8_t L_64 = L_63.____j_10;
|
|
uint8_t L_65 = __this->____j_10;
|
|
if ((((int32_t)L_64) == ((int32_t)L_65)))
|
|
{
|
|
goto IL_014a;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_66 = __this->____j_10;
|
|
Guid_t L_67 = ___0_value;
|
|
uint8_t L_68 = L_67.____j_10;
|
|
int32_t L_69;
|
|
L_69 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_66, L_68, NULL);
|
|
return L_69;
|
|
}
|
|
|
|
IL_014a:
|
|
{
|
|
Guid_t L_70 = ___0_value;
|
|
uint8_t L_71 = L_70.____k_11;
|
|
uint8_t L_72 = __this->____k_11;
|
|
if ((((int32_t)L_71) == ((int32_t)L_72)))
|
|
{
|
|
goto IL_016b;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_73 = __this->____k_11;
|
|
Guid_t L_74 = ___0_value;
|
|
uint8_t L_75 = L_74.____k_11;
|
|
int32_t L_76;
|
|
L_76 = Guid_GetResult_m75C7C69F0565A5E2197E193EC5793DD0AC42EA6C(__this, L_73, L_75, NULL);
|
|
return L_76;
|
|
}
|
|
|
|
IL_016b:
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Guid_CompareTo_mC22A00A14BBCCBF55F303C89A567FCA43925B586_AdjustorThunk (RuntimeObject* __this, Guid_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
Guid_t* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Guid_t*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = Guid_CompareTo_mC22A00A14BBCCBF55F303C89A567FCA43925B586(_thisAdjusted, ___0_value, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean System.Guid::op_Equality(System.Guid,System.Guid)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_op_Equality_mAD728A1A4FB970715E84B7D346E094FE5EF2A240 (Guid_t ___0_a, Guid_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Guid_t L_0 = ___0_a;
|
|
int32_t L_1 = L_0.____a_1;
|
|
Guid_t L_2 = ___1_b;
|
|
int32_t L_3 = L_2.____a_1;
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_4 = (&(&___0_a)->____a_1);
|
|
int32_t* L_5;
|
|
L_5 = il2cpp_unsafe_add<int32_t,int32_t>(L_4, 1);
|
|
int32_t L_6 = *((int32_t*)L_5);
|
|
int32_t* L_7 = (&(&___1_b)->____a_1);
|
|
int32_t* L_8;
|
|
L_8 = il2cpp_unsafe_add<int32_t,int32_t>(L_7, 1);
|
|
int32_t L_9 = *((int32_t*)L_8);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)L_9))))
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_10 = (&(&___0_a)->____a_1);
|
|
int32_t* L_11;
|
|
L_11 = il2cpp_unsafe_add<int32_t,int32_t>(L_10, 2);
|
|
int32_t L_12 = *((int32_t*)L_11);
|
|
int32_t* L_13 = (&(&___1_b)->____a_1);
|
|
int32_t* L_14;
|
|
L_14 = il2cpp_unsafe_add<int32_t,int32_t>(L_13, 2);
|
|
int32_t L_15 = *((int32_t*)L_14);
|
|
if ((!(((uint32_t)L_12) == ((uint32_t)L_15))))
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_16 = (&(&___0_a)->____a_1);
|
|
int32_t* L_17;
|
|
L_17 = il2cpp_unsafe_add<int32_t,int32_t>(L_16, 3);
|
|
int32_t L_18 = *((int32_t*)L_17);
|
|
int32_t* L_19 = (&(&___1_b)->____a_1);
|
|
int32_t* L_20;
|
|
L_20 = il2cpp_unsafe_add<int32_t,int32_t>(L_19, 3);
|
|
int32_t L_21 = *((int32_t*)L_20);
|
|
return (bool)((((int32_t)L_18) == ((int32_t)L_21))? 1 : 0);
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.String System.Guid::ToString(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Guid_ToString_mDAA91A4A993E3A7AD8339665E3F0CC35FE00E833 (Guid_t* __this, String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
String_t* L_1;
|
|
L_1 = Guid_ToString_mD2A93BCA0CBFABB680A93A8FA668AD90E7B56130(__this, L_0, (RuntimeObject*)NULL, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Guid_ToString_mDAA91A4A993E3A7AD8339665E3F0CC35FE00E833_AdjustorThunk (RuntimeObject* __this, String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
Guid_t* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Guid_t*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = Guid_ToString_mDAA91A4A993E3A7AD8339665E3F0CC35FE00E833(_thisAdjusted, ___0_format, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Char System.Guid::HexToChar(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Guid_HexToChar_mBA9068B41C7375C0B48FAC9F543DF59ECE37C31F (int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
___0_a = ((int32_t)(L_0&((int32_t)15)));
|
|
int32_t L_1 = ___0_a;
|
|
if ((((int32_t)L_1) > ((int32_t)((int32_t)9))))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___0_a;
|
|
G_B3_0 = ((int32_t)il2cpp_codegen_add(L_2, ((int32_t)48)));
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
int32_t L_3 = ___0_a;
|
|
G_B3_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_3, ((int32_t)10))), ((int32_t)97)));
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return ((int32_t)(uint16_t)G_B3_0);
|
|
}
|
|
}
|
|
// System.Int32 System.Guid::HexsToChars(System.Char*,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Guid_HexsToChars_m9951D597B3F5132533658BA1940410B2CDB9B354 (Il2CppChar* ___0_guidChars, int32_t ___1_a, int32_t ___2_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar* L_0 = ___0_guidChars;
|
|
int32_t L_1 = ___1_a;
|
|
Il2CppChar L_2;
|
|
L_2 = Guid_HexToChar_mBA9068B41C7375C0B48FAC9F543DF59ECE37C31F_inline(((int32_t)(L_1>>4)), NULL);
|
|
*((int16_t*)L_0) = (int16_t)L_2;
|
|
Il2CppChar* L_3 = ___0_guidChars;
|
|
int32_t L_4 = ___1_a;
|
|
Il2CppChar L_5;
|
|
L_5 = Guid_HexToChar_mBA9068B41C7375C0B48FAC9F543DF59ECE37C31F_inline(L_4, NULL);
|
|
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, 2))) = (int16_t)L_5;
|
|
Il2CppChar* L_6 = ___0_guidChars;
|
|
int32_t L_7 = ___2_b;
|
|
Il2CppChar L_8;
|
|
L_8 = Guid_HexToChar_mBA9068B41C7375C0B48FAC9F543DF59ECE37C31F_inline(((int32_t)(L_7>>4)), NULL);
|
|
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_6, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))))) = (int16_t)L_8;
|
|
Il2CppChar* L_9 = ___0_guidChars;
|
|
int32_t L_10 = ___2_b;
|
|
Il2CppChar L_11;
|
|
L_11 = Guid_HexToChar_mBA9068B41C7375C0B48FAC9F543DF59ECE37C31F_inline(L_10, NULL);
|
|
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_9, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), 2))))) = (int16_t)L_11;
|
|
return 4;
|
|
}
|
|
}
|
|
// System.Int32 System.Guid::HexsToCharsHexOutput(System.Char*,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Guid_HexsToCharsHexOutput_m3A01A028F16D95ADDF615E0EBA6B5F93D21C1A62 (Il2CppChar* ___0_guidChars, int32_t ___1_a, int32_t ___2_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar* L_0 = ___0_guidChars;
|
|
*((int16_t*)L_0) = (int16_t)((int32_t)48);
|
|
Il2CppChar* L_1 = ___0_guidChars;
|
|
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_1, 2))) = (int16_t)((int32_t)120);
|
|
Il2CppChar* L_2 = ___0_guidChars;
|
|
int32_t L_3 = ___1_a;
|
|
Il2CppChar L_4;
|
|
L_4 = Guid_HexToChar_mBA9068B41C7375C0B48FAC9F543DF59ECE37C31F_inline(((int32_t)(L_3>>4)), NULL);
|
|
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))))) = (int16_t)L_4;
|
|
Il2CppChar* L_5 = ___0_guidChars;
|
|
int32_t L_6 = ___1_a;
|
|
Il2CppChar L_7;
|
|
L_7 = Guid_HexToChar_mBA9068B41C7375C0B48FAC9F543DF59ECE37C31F_inline(L_6, NULL);
|
|
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), 2))))) = (int16_t)L_7;
|
|
Il2CppChar* L_8 = ___0_guidChars;
|
|
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_8, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), 2))))) = (int16_t)((int32_t)44);
|
|
Il2CppChar* L_9 = ___0_guidChars;
|
|
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_9, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)5), 2))))) = (int16_t)((int32_t)48);
|
|
Il2CppChar* L_10 = ___0_guidChars;
|
|
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_10, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)6), 2))))) = (int16_t)((int32_t)120);
|
|
Il2CppChar* L_11 = ___0_guidChars;
|
|
int32_t L_12 = ___2_b;
|
|
Il2CppChar L_13;
|
|
L_13 = Guid_HexToChar_mBA9068B41C7375C0B48FAC9F543DF59ECE37C31F_inline(((int32_t)(L_12>>4)), NULL);
|
|
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_11, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)7), 2))))) = (int16_t)L_13;
|
|
Il2CppChar* L_14 = ___0_guidChars;
|
|
int32_t L_15 = ___2_b;
|
|
Il2CppChar L_16;
|
|
L_16 = Guid_HexToChar_mBA9068B41C7375C0B48FAC9F543DF59ECE37C31F_inline(L_15, NULL);
|
|
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)8), 2))))) = (int16_t)L_16;
|
|
return ((int32_t)9);
|
|
}
|
|
}
|
|
// System.String System.Guid::ToString(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Guid_ToString_mD2A93BCA0CBFABB680A93A8FA668AD90E7B56130 (Guid_t* __this, String_t* ___0_format, RuntimeObject* ___1_provider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA019FB7F17AA36A9743C530E1F11D5613B8B1158);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
String_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
Il2CppChar V_3 = 0x0;
|
|
Il2CppChar* V_4 = NULL;
|
|
String_t* V_5 = NULL;
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
if (!L_0)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = ___0_format;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
___0_format = _stringLiteralA019FB7F17AA36A9743C530E1F11D5613B8B1158;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
String_t* L_3 = ___0_format;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
|
|
if ((((int32_t)L_4) == ((int32_t)1)))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_5 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_5);
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8198C3D4DD21FBED5685EAF69C1087FA1961F2F6)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Guid_ToString_mD2A93BCA0CBFABB680A93A8FA668AD90E7B56130_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
String_t* L_6 = ___0_format;
|
|
NullCheck(L_6);
|
|
Il2CppChar L_7;
|
|
L_7 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_6, 0, NULL);
|
|
V_3 = L_7;
|
|
Il2CppChar L_8 = V_3;
|
|
if ((!(((uint32_t)L_8) <= ((uint32_t)((int32_t)88)))))
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_9 = V_3;
|
|
if ((!(((uint32_t)L_9) <= ((uint32_t)((int32_t)68)))))
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_10 = V_3;
|
|
if ((((int32_t)L_10) == ((int32_t)((int32_t)66))))
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_11 = V_3;
|
|
if ((((int32_t)L_11) == ((int32_t)((int32_t)68))))
|
|
{
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008b;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
Il2CppChar L_12 = V_3;
|
|
if ((((int32_t)L_12) == ((int32_t)((int32_t)78))))
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_13 = V_3;
|
|
if ((((int32_t)L_13) == ((int32_t)((int32_t)80))))
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_14 = V_3;
|
|
if ((((int32_t)L_14) == ((int32_t)((int32_t)88))))
|
|
{
|
|
goto IL_0086;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008b;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
Il2CppChar L_15 = V_3;
|
|
if ((!(((uint32_t)L_15) <= ((uint32_t)((int32_t)100)))))
|
|
{
|
|
goto IL_0066;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_16 = V_3;
|
|
if ((((int32_t)L_16) == ((int32_t)((int32_t)98))))
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_17 = V_3;
|
|
if ((((int32_t)L_17) == ((int32_t)((int32_t)100))))
|
|
{
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008b;
|
|
}
|
|
|
|
IL_0066:
|
|
{
|
|
Il2CppChar L_18 = V_3;
|
|
if ((((int32_t)L_18) == ((int32_t)((int32_t)110))))
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_19 = V_3;
|
|
if ((((int32_t)L_19) == ((int32_t)((int32_t)112))))
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_20 = V_3;
|
|
if ((((int32_t)L_20) == ((int32_t)((int32_t)120))))
|
|
{
|
|
goto IL_0086;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008b;
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
V_0 = ((int32_t)36);
|
|
goto IL_0096;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
V_0 = ((int32_t)32);
|
|
goto IL_0096;
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
V_0 = ((int32_t)38);
|
|
goto IL_0096;
|
|
}
|
|
|
|
IL_0086:
|
|
{
|
|
V_0 = ((int32_t)68);
|
|
goto IL_0096;
|
|
}
|
|
|
|
IL_008b:
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_21 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_21);
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_21, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8198C3D4DD21FBED5685EAF69C1087FA1961F2F6)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Guid_ToString_mD2A93BCA0CBFABB680A93A8FA668AD90E7B56130_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_22 = V_0;
|
|
String_t* L_23;
|
|
L_23 = String_FastAllocateString_m071BD33B9EFB2375443E1550C028861164D0F104(L_22, NULL);
|
|
V_1 = L_23;
|
|
String_t* L_24 = V_1;
|
|
V_5 = L_24;
|
|
String_t* L_25 = V_5;
|
|
V_4 = (Il2CppChar*)((uintptr_t)L_25);
|
|
Il2CppChar* L_26 = V_4;
|
|
if (!L_26)
|
|
{
|
|
goto IL_00b3;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar* L_27 = V_4;
|
|
int32_t L_28;
|
|
L_28 = RuntimeHelpers_get_OffsetToStringData_m90A5D27EF88BE9432BF7093B7D7E7A0ACB0A8FBD(NULL);
|
|
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_27, L_28));
|
|
}
|
|
|
|
IL_00b3:
|
|
{
|
|
Il2CppChar* L_29 = V_4;
|
|
String_t* L_30 = V_1;
|
|
NullCheck(L_30);
|
|
int32_t L_31;
|
|
L_31 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_30, NULL);
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_32;
|
|
memset((&L_32), 0, sizeof(L_32));
|
|
Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline((&L_32), (void*)L_29, L_31, /*hidden argument*/Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
String_t* L_33 = ___0_format;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_34;
|
|
L_34 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(L_33, NULL);
|
|
bool L_35;
|
|
L_35 = Guid_TryFormat_m9D48F66E2448F329A3DD1234B0A8F3EAF6757E79(__this, L_32, (&V_2), L_34, NULL);
|
|
V_5 = (String_t*)NULL;
|
|
String_t* L_36 = V_1;
|
|
return L_36;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Guid_ToString_mD2A93BCA0CBFABB680A93A8FA668AD90E7B56130_AdjustorThunk (RuntimeObject* __this, String_t* ___0_format, RuntimeObject* ___1_provider, const RuntimeMethod* method)
|
|
{
|
|
Guid_t* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Guid_t*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = Guid_ToString_mD2A93BCA0CBFABB680A93A8FA668AD90E7B56130(_thisAdjusted, ___0_format, ___1_provider, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean System.Guid::TryFormat(System.Span`1<System.Char>,System.Int32&,System.ReadOnlySpan`1<System.Char>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_TryFormat_m9D48F66E2448F329A3DD1234B0A8F3EAF6757E79 (Guid_t* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m7FA6FA19030FDE5E3810FBFFD0FD8D6D36172527_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA019FB7F17AA36A9743C530E1F11D5613B8B1158);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
Il2CppChar V_4 = 0x0;
|
|
Il2CppChar* V_5 = NULL;
|
|
Il2CppChar* V_6 = NULL;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___2_format), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if (L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1;
|
|
L_1 = String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline(_stringLiteralA019FB7F17AA36A9743C530E1F11D5613B8B1158, NULL);
|
|
___2_format = L_1;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
int32_t L_2;
|
|
L_2 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___2_format), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)L_2) == ((int32_t)1)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_3 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_3);
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8198C3D4DD21FBED5685EAF69C1087FA1961F2F6)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Guid_TryFormat_m9D48F66E2448F329A3DD1234B0A8F3EAF6757E79_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
V_0 = (bool)1;
|
|
V_1 = (bool)0;
|
|
V_2 = 0;
|
|
Il2CppChar* L_4;
|
|
L_4 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___2_format))->____pointer_0))->value, (0), ((&___2_format))->____length_1);
|
|
int32_t L_5 = *((uint16_t*)L_4);
|
|
V_4 = L_5;
|
|
Il2CppChar L_6 = V_4;
|
|
if ((!(((uint32_t)L_6) <= ((uint32_t)((int32_t)88)))))
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_7 = V_4;
|
|
if ((!(((uint32_t)L_7) <= ((uint32_t)((int32_t)68)))))
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_8 = V_4;
|
|
if ((((int32_t)L_8) == ((int32_t)((int32_t)66))))
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_9 = V_4;
|
|
if ((((int32_t)L_9) == ((int32_t)((int32_t)68))))
|
|
{
|
|
goto IL_0091;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00c2;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
Il2CppChar L_10 = V_4;
|
|
if ((((int32_t)L_10) == ((int32_t)((int32_t)78))))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_11 = V_4;
|
|
if ((((int32_t)L_11) == ((int32_t)((int32_t)80))))
|
|
{
|
|
goto IL_00a8;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_12 = V_4;
|
|
if ((((int32_t)L_12) == ((int32_t)((int32_t)88))))
|
|
{
|
|
goto IL_00b3;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00c2;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
Il2CppChar L_13 = V_4;
|
|
if ((!(((uint32_t)L_13) <= ((uint32_t)((int32_t)100)))))
|
|
{
|
|
goto IL_007d;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_14 = V_4;
|
|
if ((((int32_t)L_14) == ((int32_t)((int32_t)98))))
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_15 = V_4;
|
|
if ((((int32_t)L_15) == ((int32_t)((int32_t)100))))
|
|
{
|
|
goto IL_0091;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00c2;
|
|
}
|
|
|
|
IL_007d:
|
|
{
|
|
Il2CppChar L_16 = V_4;
|
|
if ((((int32_t)L_16) == ((int32_t)((int32_t)110))))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_17 = V_4;
|
|
if ((((int32_t)L_17) == ((int32_t)((int32_t)112))))
|
|
{
|
|
goto IL_00a8;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_18 = V_4;
|
|
if ((((int32_t)L_18) == ((int32_t)((int32_t)120))))
|
|
{
|
|
goto IL_00b3;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00c2;
|
|
}
|
|
|
|
IL_0091:
|
|
{
|
|
V_3 = ((int32_t)36);
|
|
goto IL_00cd;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
V_0 = (bool)0;
|
|
V_3 = ((int32_t)32);
|
|
goto IL_00cd;
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
V_2 = ((int32_t)8192123);
|
|
V_3 = ((int32_t)38);
|
|
goto IL_00cd;
|
|
}
|
|
|
|
IL_00a8:
|
|
{
|
|
V_2 = ((int32_t)2687016);
|
|
V_3 = ((int32_t)38);
|
|
goto IL_00cd;
|
|
}
|
|
|
|
IL_00b3:
|
|
{
|
|
V_2 = ((int32_t)8192123);
|
|
V_0 = (bool)0;
|
|
V_1 = (bool)1;
|
|
V_3 = ((int32_t)68);
|
|
goto IL_00cd;
|
|
}
|
|
|
|
IL_00c2:
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_19 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_19);
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8198C3D4DD21FBED5685EAF69C1087FA1961F2F6)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Guid_TryFormat_m9D48F66E2448F329A3DD1234B0A8F3EAF6757E79_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_00cd:
|
|
{
|
|
int32_t L_20;
|
|
L_20 = Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_inline((&___0_destination), Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var);
|
|
int32_t L_21 = V_3;
|
|
if ((((int32_t)L_20) >= ((int32_t)L_21)))
|
|
{
|
|
goto IL_00dc;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_22 = ___1_charsWritten;
|
|
*((int32_t*)L_22) = (int32_t)0;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00dc:
|
|
{
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_23 = ___0_destination;
|
|
Il2CppChar* L_24;
|
|
L_24 = MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m7FA6FA19030FDE5E3810FBFFD0FD8D6D36172527(L_23, MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m7FA6FA19030FDE5E3810FBFFD0FD8D6D36172527_RuntimeMethod_var);
|
|
V_5 = L_24;
|
|
Il2CppChar* L_25 = V_5;
|
|
V_6 = (Il2CppChar*)((uintptr_t)L_25);
|
|
int32_t L_26 = V_2;
|
|
if (!L_26)
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar* L_27 = V_6;
|
|
Il2CppChar* L_28 = L_27;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_28, 2));
|
|
int32_t L_29 = V_2;
|
|
*((int16_t*)L_28) = (int16_t)((int32_t)(uint16_t)L_29);
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
bool L_30 = V_1;
|
|
if (!L_30)
|
|
{
|
|
goto IL_0271;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar* L_31 = V_6;
|
|
Il2CppChar* L_32 = L_31;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_32, 2));
|
|
*((int16_t*)L_32) = (int16_t)((int32_t)48);
|
|
Il2CppChar* L_33 = V_6;
|
|
Il2CppChar* L_34 = L_33;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_34, 2));
|
|
*((int16_t*)L_34) = (int16_t)((int32_t)120);
|
|
Il2CppChar* L_35 = V_6;
|
|
Il2CppChar* L_36 = V_6;
|
|
int32_t L_37 = __this->____a_1;
|
|
int32_t L_38 = __this->____a_1;
|
|
int32_t L_39;
|
|
L_39 = Guid_HexsToChars_m9951D597B3F5132533658BA1940410B2CDB9B354(L_36, ((int32_t)(L_37>>((int32_t)24))), ((int32_t)(L_38>>((int32_t)16))), NULL);
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_35, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_39), 2))));
|
|
Il2CppChar* L_40 = V_6;
|
|
Il2CppChar* L_41 = V_6;
|
|
int32_t L_42 = __this->____a_1;
|
|
int32_t L_43 = __this->____a_1;
|
|
int32_t L_44;
|
|
L_44 = Guid_HexsToChars_m9951D597B3F5132533658BA1940410B2CDB9B354(L_41, ((int32_t)(L_42>>8)), L_43, NULL);
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_40, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_44), 2))));
|
|
Il2CppChar* L_45 = V_6;
|
|
Il2CppChar* L_46 = L_45;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_46, 2));
|
|
*((int16_t*)L_46) = (int16_t)((int32_t)44);
|
|
Il2CppChar* L_47 = V_6;
|
|
Il2CppChar* L_48 = L_47;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_48, 2));
|
|
*((int16_t*)L_48) = (int16_t)((int32_t)48);
|
|
Il2CppChar* L_49 = V_6;
|
|
Il2CppChar* L_50 = L_49;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_50, 2));
|
|
*((int16_t*)L_50) = (int16_t)((int32_t)120);
|
|
Il2CppChar* L_51 = V_6;
|
|
Il2CppChar* L_52 = V_6;
|
|
int16_t L_53 = __this->____b_2;
|
|
int16_t L_54 = __this->____b_2;
|
|
int32_t L_55;
|
|
L_55 = Guid_HexsToChars_m9951D597B3F5132533658BA1940410B2CDB9B354(L_52, ((int32_t)((int32_t)L_53>>8)), L_54, NULL);
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_51, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_55), 2))));
|
|
Il2CppChar* L_56 = V_6;
|
|
Il2CppChar* L_57 = L_56;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_57, 2));
|
|
*((int16_t*)L_57) = (int16_t)((int32_t)44);
|
|
Il2CppChar* L_58 = V_6;
|
|
Il2CppChar* L_59 = L_58;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_59, 2));
|
|
*((int16_t*)L_59) = (int16_t)((int32_t)48);
|
|
Il2CppChar* L_60 = V_6;
|
|
Il2CppChar* L_61 = L_60;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_61, 2));
|
|
*((int16_t*)L_61) = (int16_t)((int32_t)120);
|
|
Il2CppChar* L_62 = V_6;
|
|
Il2CppChar* L_63 = V_6;
|
|
int16_t L_64 = __this->____c_3;
|
|
int16_t L_65 = __this->____c_3;
|
|
int32_t L_66;
|
|
L_66 = Guid_HexsToChars_m9951D597B3F5132533658BA1940410B2CDB9B354(L_63, ((int32_t)((int32_t)L_64>>8)), L_65, NULL);
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_62, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_66), 2))));
|
|
Il2CppChar* L_67 = V_6;
|
|
Il2CppChar* L_68 = L_67;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_68, 2));
|
|
*((int16_t*)L_68) = (int16_t)((int32_t)44);
|
|
Il2CppChar* L_69 = V_6;
|
|
Il2CppChar* L_70 = L_69;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_70, 2));
|
|
*((int16_t*)L_70) = (int16_t)((int32_t)123);
|
|
Il2CppChar* L_71 = V_6;
|
|
Il2CppChar* L_72 = V_6;
|
|
uint8_t L_73 = __this->____d_4;
|
|
uint8_t L_74 = __this->____e_5;
|
|
int32_t L_75;
|
|
L_75 = Guid_HexsToCharsHexOutput_m3A01A028F16D95ADDF615E0EBA6B5F93D21C1A62(L_72, L_73, L_74, NULL);
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_71, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_75), 2))));
|
|
Il2CppChar* L_76 = V_6;
|
|
Il2CppChar* L_77 = L_76;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_77, 2));
|
|
*((int16_t*)L_77) = (int16_t)((int32_t)44);
|
|
Il2CppChar* L_78 = V_6;
|
|
Il2CppChar* L_79 = V_6;
|
|
uint8_t L_80 = __this->____f_6;
|
|
uint8_t L_81 = __this->____g_7;
|
|
int32_t L_82;
|
|
L_82 = Guid_HexsToCharsHexOutput_m3A01A028F16D95ADDF615E0EBA6B5F93D21C1A62(L_79, L_80, L_81, NULL);
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_78, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_82), 2))));
|
|
Il2CppChar* L_83 = V_6;
|
|
Il2CppChar* L_84 = L_83;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_84, 2));
|
|
*((int16_t*)L_84) = (int16_t)((int32_t)44);
|
|
Il2CppChar* L_85 = V_6;
|
|
Il2CppChar* L_86 = V_6;
|
|
uint8_t L_87 = __this->____h_8;
|
|
uint8_t L_88 = __this->____i_9;
|
|
int32_t L_89;
|
|
L_89 = Guid_HexsToCharsHexOutput_m3A01A028F16D95ADDF615E0EBA6B5F93D21C1A62(L_86, L_87, L_88, NULL);
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_85, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_89), 2))));
|
|
Il2CppChar* L_90 = V_6;
|
|
Il2CppChar* L_91 = L_90;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_91, 2));
|
|
*((int16_t*)L_91) = (int16_t)((int32_t)44);
|
|
Il2CppChar* L_92 = V_6;
|
|
Il2CppChar* L_93 = V_6;
|
|
uint8_t L_94 = __this->____j_10;
|
|
uint8_t L_95 = __this->____k_11;
|
|
int32_t L_96;
|
|
L_96 = Guid_HexsToCharsHexOutput_m3A01A028F16D95ADDF615E0EBA6B5F93D21C1A62(L_93, L_94, L_95, NULL);
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_92, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_96), 2))));
|
|
Il2CppChar* L_97 = V_6;
|
|
Il2CppChar* L_98 = L_97;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_98, 2));
|
|
*((int16_t*)L_98) = (int16_t)((int32_t)125);
|
|
goto IL_0389;
|
|
}
|
|
|
|
IL_0271:
|
|
{
|
|
Il2CppChar* L_99 = V_6;
|
|
Il2CppChar* L_100 = V_6;
|
|
int32_t L_101 = __this->____a_1;
|
|
int32_t L_102 = __this->____a_1;
|
|
int32_t L_103;
|
|
L_103 = Guid_HexsToChars_m9951D597B3F5132533658BA1940410B2CDB9B354(L_100, ((int32_t)(L_101>>((int32_t)24))), ((int32_t)(L_102>>((int32_t)16))), NULL);
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_99, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_103), 2))));
|
|
Il2CppChar* L_104 = V_6;
|
|
Il2CppChar* L_105 = V_6;
|
|
int32_t L_106 = __this->____a_1;
|
|
int32_t L_107 = __this->____a_1;
|
|
int32_t L_108;
|
|
L_108 = Guid_HexsToChars_m9951D597B3F5132533658BA1940410B2CDB9B354(L_105, ((int32_t)(L_106>>8)), L_107, NULL);
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_104, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_108), 2))));
|
|
bool L_109 = V_0;
|
|
if (!L_109)
|
|
{
|
|
goto IL_02bc;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar* L_110 = V_6;
|
|
Il2CppChar* L_111 = L_110;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_111, 2));
|
|
*((int16_t*)L_111) = (int16_t)((int32_t)45);
|
|
}
|
|
|
|
IL_02bc:
|
|
{
|
|
Il2CppChar* L_112 = V_6;
|
|
Il2CppChar* L_113 = V_6;
|
|
int16_t L_114 = __this->____b_2;
|
|
int16_t L_115 = __this->____b_2;
|
|
int32_t L_116;
|
|
L_116 = Guid_HexsToChars_m9951D597B3F5132533658BA1940410B2CDB9B354(L_113, ((int32_t)((int32_t)L_114>>8)), L_115, NULL);
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_112, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_116), 2))));
|
|
bool L_117 = V_0;
|
|
if (!L_117)
|
|
{
|
|
goto IL_02e6;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar* L_118 = V_6;
|
|
Il2CppChar* L_119 = L_118;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_119, 2));
|
|
*((int16_t*)L_119) = (int16_t)((int32_t)45);
|
|
}
|
|
|
|
IL_02e6:
|
|
{
|
|
Il2CppChar* L_120 = V_6;
|
|
Il2CppChar* L_121 = V_6;
|
|
int16_t L_122 = __this->____c_3;
|
|
int16_t L_123 = __this->____c_3;
|
|
int32_t L_124;
|
|
L_124 = Guid_HexsToChars_m9951D597B3F5132533658BA1940410B2CDB9B354(L_121, ((int32_t)((int32_t)L_122>>8)), L_123, NULL);
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_120, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_124), 2))));
|
|
bool L_125 = V_0;
|
|
if (!L_125)
|
|
{
|
|
goto IL_0310;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar* L_126 = V_6;
|
|
Il2CppChar* L_127 = L_126;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_127, 2));
|
|
*((int16_t*)L_127) = (int16_t)((int32_t)45);
|
|
}
|
|
|
|
IL_0310:
|
|
{
|
|
Il2CppChar* L_128 = V_6;
|
|
Il2CppChar* L_129 = V_6;
|
|
uint8_t L_130 = __this->____d_4;
|
|
uint8_t L_131 = __this->____e_5;
|
|
int32_t L_132;
|
|
L_132 = Guid_HexsToChars_m9951D597B3F5132533658BA1940410B2CDB9B354(L_129, L_130, L_131, NULL);
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_128, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_132), 2))));
|
|
bool L_133 = V_0;
|
|
if (!L_133)
|
|
{
|
|
goto IL_0338;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar* L_134 = V_6;
|
|
Il2CppChar* L_135 = L_134;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_135, 2));
|
|
*((int16_t*)L_135) = (int16_t)((int32_t)45);
|
|
}
|
|
|
|
IL_0338:
|
|
{
|
|
Il2CppChar* L_136 = V_6;
|
|
Il2CppChar* L_137 = V_6;
|
|
uint8_t L_138 = __this->____f_6;
|
|
uint8_t L_139 = __this->____g_7;
|
|
int32_t L_140;
|
|
L_140 = Guid_HexsToChars_m9951D597B3F5132533658BA1940410B2CDB9B354(L_137, L_138, L_139, NULL);
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_136, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_140), 2))));
|
|
Il2CppChar* L_141 = V_6;
|
|
Il2CppChar* L_142 = V_6;
|
|
uint8_t L_143 = __this->____h_8;
|
|
uint8_t L_144 = __this->____i_9;
|
|
int32_t L_145;
|
|
L_145 = Guid_HexsToChars_m9951D597B3F5132533658BA1940410B2CDB9B354(L_142, L_143, L_144, NULL);
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_141, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_145), 2))));
|
|
Il2CppChar* L_146 = V_6;
|
|
Il2CppChar* L_147 = V_6;
|
|
uint8_t L_148 = __this->____j_10;
|
|
uint8_t L_149 = __this->____k_11;
|
|
int32_t L_150;
|
|
L_150 = Guid_HexsToChars_m9951D597B3F5132533658BA1940410B2CDB9B354(L_147, L_148, L_149, NULL);
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_146, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_150), 2))));
|
|
}
|
|
|
|
IL_0389:
|
|
{
|
|
int32_t L_151 = V_2;
|
|
if (!L_151)
|
|
{
|
|
goto IL_0399;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar* L_152 = V_6;
|
|
Il2CppChar* L_153 = L_152;
|
|
V_6 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_153, 2));
|
|
int32_t L_154 = V_2;
|
|
*((int16_t*)L_153) = (int16_t)((int32_t)(uint16_t)((int32_t)(L_154>>((int32_t)16))));
|
|
}
|
|
|
|
IL_0399:
|
|
{
|
|
V_5 = (Il2CppChar*)((uintptr_t)0);
|
|
int32_t* L_155 = ___1_charsWritten;
|
|
int32_t L_156 = V_3;
|
|
*((int32_t*)L_155) = (int32_t)L_156;
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Guid_TryFormat_m9D48F66E2448F329A3DD1234B0A8F3EAF6757E79_AdjustorThunk (RuntimeObject* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, const RuntimeMethod* method)
|
|
{
|
|
Guid_t* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Guid_t*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Guid_TryFormat_m9D48F66E2448F329A3DD1234B0A8F3EAF6757E79(_thisAdjusted, ___0_destination, ___1_charsWritten, ___2_format, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean System.Guid::System.ISpanFormattable.TryFormat(System.Span`1<System.Char>,System.Int32&,System.ReadOnlySpan`1<System.Char>,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_System_ISpanFormattable_TryFormat_mAA4B1A160D805A87D08267AA47C933CE1480404D (Guid_t* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, RuntimeObject* ___3_provider, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_0 = ___0_destination;
|
|
int32_t* L_1 = ___1_charsWritten;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2 = ___2_format;
|
|
bool L_3;
|
|
L_3 = Guid_TryFormat_m9D48F66E2448F329A3DD1234B0A8F3EAF6757E79(__this, L_0, L_1, L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Guid_System_ISpanFormattable_TryFormat_mAA4B1A160D805A87D08267AA47C933CE1480404D_AdjustorThunk (RuntimeObject* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, RuntimeObject* ___3_provider, const RuntimeMethod* method)
|
|
{
|
|
Guid_t* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Guid_t*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Guid_System_ISpanFormattable_TryFormat_mAA4B1A160D805A87D08267AA47C933CE1480404D(_thisAdjusted, ___0_destination, ___1_charsWritten, ___2_format, ___3_provider, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimeSpan__ctor_m061B122FA11D2063FE751C1F1D019DF1C8B10B1F_inline (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, int64_t ___0_ticks, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = ___0_ticks;
|
|
__this->____ticks_22 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = __this->____ticks_22;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline (Exception_t* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->____HResult_11 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline (double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = *((int64_t*)((uintptr_t)(&___0_value)));
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Double_IsNaN_mF2BC6D1FD4813179B2CAE58D29770E42830D0883_inline (double ___0_d, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
double L_0 = ___0_d;
|
|
il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
|
|
int64_t L_1;
|
|
L_1 = BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(L_0, NULL);
|
|
return (bool)((((int64_t)((int64_t)(L_1&((int64_t)(std::numeric_limits<int64_t>::max)())))) > ((int64_t)((int64_t)9218868437227405312LL)))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Double_GetHashCode_m3761FC05AD24D97A68FA1E8412A9454DF3880E32_inline (double* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int64_t V_0 = 0;
|
|
{
|
|
double L_0 = *((double*)__this);
|
|
il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
|
|
int64_t L_1;
|
|
L_1 = BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
int64_t L_2 = V_0;
|
|
if ((((int64_t)((int64_t)(((int64_t)il2cpp_codegen_subtract(L_2, ((int64_t)1)))&((int64_t)(std::numeric_limits<int64_t>::max)())))) < ((int64_t)((int64_t)9218868437227405312LL))))
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_3 = V_0;
|
|
V_0 = ((int64_t)(L_3&((int64_t)9218868437227405312LL)));
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
int64_t L_4 = V_0;
|
|
int64_t L_5 = V_0;
|
|
return ((int32_t)(((int32_t)L_4)^((int32_t)((int64_t)(L_5>>((int32_t)32))))));
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 String_op_Implicit_m7D7FE0449303AF92D8B2A85A06ADC6933B2ECC3A_inline (String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
String_t* L_0 = ___0_value;
|
|
if (L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1));
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
String_t* L_2 = ___0_value;
|
|
NullCheck(L_2);
|
|
Il2CppChar* L_3;
|
|
L_3 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_2, NULL);
|
|
String_t* L_4 = ___0_value;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_6), L_3, L_5, /*hidden argument*/ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var);
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_PositiveInfinitySymbol_m022DC518C4D976C05E9160891169F238E744B160_inline (NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->___positiveInfinitySymbol_13;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MemoryExtensions_EqualsOrdinal_m50F3366691F8C10406AF0D385B5784D6EEA80C0A_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_span, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryExtensions_SequenceEqual_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m5C4C602E94DF85548E163F2D3FE9DDCA36C7E3E6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0;
|
|
L_0 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_span), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
int32_t L_1;
|
|
L_1 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___1_value), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)L_0) == ((int32_t)L_1)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
int32_t L_2;
|
|
L_2 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___1_value), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if (L_2)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3 = ___0_span;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_4 = ___1_value;
|
|
bool L_5;
|
|
L_5 = MemoryExtensions_SequenceEqual_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m5C4C602E94DF85548E163F2D3FE9DDCA36C7E3E6_inline(L_3, L_4, MemoryExtensions_SequenceEqual_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m5C4C602E94DF85548E163F2D3FE9DDCA36C7E3E6_RuntimeMethod_var);
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NegativeInfinitySymbol_mE8995F15D392D0114D2A6DCE3C2B440A7BFE4173_inline (NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->___negativeInfinitySymbol_14;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NaNSymbol_mD64FD5783A434442A15DF6DEDC6BC561ACB91ABC_inline (NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->___nanSymbol_12;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* DateTimeFormatInfo_get_Calendar_m1280AC2F196ECBE7B664394CC3821062015DEF99_inline (DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* L_0 = __this->___calendar_17;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool GlobalizationMode_get_Invariant_m07C027203B17E9B629D292376366608B7DDB2903_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var);
|
|
bool L_0 = ((GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_StaticFields*)il2cpp_codegen_static_fields_for(GlobalizationMode_t8C0DD244B8C6347DE7AB7AE83B10911D2EB7582A_il2cpp_TypeInfo_var))->___U3CInvariantU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____stringLength_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DateTimeFormat_WriteFourDecimalDigits_m029CF7826B6763DFB20656E4713B5180FDED19CD_inline (uint32_t ___0_value, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___1_buffer, int32_t ___2_startingIndex, const RuntimeMethod* method)
|
|
{
|
|
uint32_t V_0 = 0;
|
|
{
|
|
uint32_t L_0 = ___0_value;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)48), (int32_t)L_0));
|
|
uint32_t L_1 = ___0_value;
|
|
___0_value = ((int32_t)((uint32_t)(int32_t)L_1/(uint32_t)(int32_t)((int32_t)10)));
|
|
int32_t L_2 = ___2_startingIndex;
|
|
Il2CppChar* L_3;
|
|
L_3 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_buffer))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(L_2, 3))), ((&___1_buffer))->____length_1);
|
|
uint32_t L_4 = V_0;
|
|
uint32_t L_5 = ___0_value;
|
|
*((int16_t*)L_3) = (int16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, ((int32_t)il2cpp_codegen_multiply((int32_t)L_5, ((int32_t)10))))));
|
|
uint32_t L_6 = ___0_value;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)48), (int32_t)L_6));
|
|
uint32_t L_7 = ___0_value;
|
|
___0_value = ((int32_t)((uint32_t)(int32_t)L_7/(uint32_t)(int32_t)((int32_t)10)));
|
|
int32_t L_8 = ___2_startingIndex;
|
|
Il2CppChar* L_9;
|
|
L_9 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_buffer))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(L_8, 2))), ((&___1_buffer))->____length_1);
|
|
uint32_t L_10 = V_0;
|
|
uint32_t L_11 = ___0_value;
|
|
*((int16_t*)L_9) = (int16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, ((int32_t)il2cpp_codegen_multiply((int32_t)L_11, ((int32_t)10))))));
|
|
uint32_t L_12 = ___0_value;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)48), (int32_t)L_12));
|
|
uint32_t L_13 = ___0_value;
|
|
___0_value = ((int32_t)((uint32_t)(int32_t)L_13/(uint32_t)(int32_t)((int32_t)10)));
|
|
int32_t L_14 = ___2_startingIndex;
|
|
Il2CppChar* L_15;
|
|
L_15 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_buffer))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(L_14, 1))), ((&___1_buffer))->____length_1);
|
|
uint32_t L_16 = V_0;
|
|
uint32_t L_17 = ___0_value;
|
|
*((int16_t*)L_15) = (int16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_16, ((int32_t)il2cpp_codegen_multiply((int32_t)L_17, ((int32_t)10))))));
|
|
int32_t L_18 = ___2_startingIndex;
|
|
Il2CppChar* L_19;
|
|
L_19 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_buffer))->____pointer_0))->value, (L_18), ((&___1_buffer))->____length_1);
|
|
uint32_t L_20 = ___0_value;
|
|
*((int16_t*)L_19) = (int16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add(((int32_t)48), (int32_t)L_20)));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DateTimeFormat_WriteTwoDecimalDigits_mFF3D64FC4AE7785ABE28875436942F3C25C89AF9_inline (uint32_t ___0_value, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___1_destination, int32_t ___2_offset, const RuntimeMethod* method)
|
|
{
|
|
uint32_t V_0 = 0;
|
|
{
|
|
uint32_t L_0 = ___0_value;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)48), (int32_t)L_0));
|
|
uint32_t L_1 = ___0_value;
|
|
___0_value = ((int32_t)((uint32_t)(int32_t)L_1/(uint32_t)(int32_t)((int32_t)10)));
|
|
int32_t L_2 = ___2_offset;
|
|
Il2CppChar* L_3;
|
|
L_3 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_destination))->____pointer_0))->value, (((int32_t)il2cpp_codegen_add(L_2, 1))), ((&___1_destination))->____length_1);
|
|
uint32_t L_4 = V_0;
|
|
uint32_t L_5 = ___0_value;
|
|
*((int16_t*)L_3) = (int16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, ((int32_t)il2cpp_codegen_multiply((int32_t)L_5, ((int32_t)10))))));
|
|
int32_t L_6 = ___2_offset;
|
|
Il2CppChar* L_7;
|
|
L_7 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_destination))->____pointer_0))->value, (L_6), ((&___1_destination))->____length_1);
|
|
uint32_t L_8 = ___0_value;
|
|
*((int16_t*)L_7) = (int16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add(((int32_t)48), (int32_t)L_8)));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DateTimeFormat_WriteDigits_mE655D6367964D63DC44E158B2C3EA6F7C6030137_inline (uint64_t ___0_value, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___1_buffer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
uint64_t V_1 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_inline((&___1_buffer), Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var);
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_0, 1));
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
uint64_t L_1 = ___0_value;
|
|
V_1 = ((int64_t)il2cpp_codegen_add(((int64_t)((int32_t)48)), (int64_t)L_1));
|
|
uint64_t L_2 = ___0_value;
|
|
___0_value = ((int64_t)((uint64_t)(int64_t)L_2/(uint64_t)(int64_t)((int64_t)((int32_t)10))));
|
|
int32_t L_3 = V_0;
|
|
Il2CppChar* L_4;
|
|
L_4 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_buffer))->____pointer_0))->value, (L_3), ((&___1_buffer))->____length_1);
|
|
uint64_t L_5 = V_1;
|
|
uint64_t L_6 = ___0_value;
|
|
*((int16_t*)L_4) = (int16_t)((int32_t)(uint16_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_5, ((int64_t)il2cpp_codegen_multiply((int64_t)L_6, ((int64_t)((int32_t)10)))))));
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_7, 1));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
if ((((int32_t)L_8) >= ((int32_t)1)))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar* L_9;
|
|
L_9 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___1_buffer))->____pointer_0))->value, (0), ((&___1_buffer))->____length_1);
|
|
uint64_t L_10 = ___0_value;
|
|
*((int16_t*)L_9) = (int16_t)((int32_t)(uint16_t)((int64_t)il2cpp_codegen_add(((int64_t)((int32_t)48)), (int64_t)L_10)));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool __DTString_GetNextDigit_m078932668F40B02FE142720C8BB0C1A43F2B81A4_inline (__DTString_t732683AF9A8EEC82B66C136920240C4033EF0637* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Index_1;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
int32_t L_1 = V_0;
|
|
__this->___Index_1 = L_1;
|
|
int32_t L_2 = V_0;
|
|
int32_t L_3;
|
|
L_3 = __DTString_get_Length_m558FC036D103ABBEC417E7DDB0C6E303B6F30DA7(__this, NULL);
|
|
if ((((int32_t)L_2) >= ((int32_t)L_3)))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* L_4 = (&__this->___Value_0);
|
|
int32_t L_5 = __this->___Index_1;
|
|
Il2CppChar* L_6;
|
|
L_6 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&((L_4)->____pointer_0))->value, (L_5), (L_4)->____length_1);
|
|
int32_t L_7 = *((uint16_t*)L_6);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTimeParse_t4FB3E2A513F1775F6B2EC5C0762DC7CA2E647045_il2cpp_TypeInfo_var);
|
|
bool L_8;
|
|
L_8 = DateTimeParse_IsDigit_m6B5476FF200B01E7DFE11AEB34706EE1CC796AF1(L_7, NULL);
|
|
return L_8;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline (String_t* ___0_text, int32_t ___1_start, int32_t ___2_length, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
String_t* L_0 = ___0_text;
|
|
if (L_0)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___1_start;
|
|
if (L_1)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___2_length;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_m9B335696876184D17D1F8D7AF94C1B5B0869AA97(((int32_t)24), NULL);
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1));
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_4 = ___1_start;
|
|
String_t* L_5 = ___0_text;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL);
|
|
if ((!(((uint32_t)L_4) <= ((uint32_t)L_6))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = ___2_length;
|
|
String_t* L_8 = ___0_text;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL);
|
|
int32_t L_10 = ___1_start;
|
|
if ((!(((uint32_t)L_7) > ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_9, L_10))))))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_m9B335696876184D17D1F8D7AF94C1B5B0869AA97(((int32_t)24), NULL);
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
String_t* L_11 = ___0_text;
|
|
NullCheck(L_11);
|
|
Il2CppChar* L_12;
|
|
L_12 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_11, NULL);
|
|
int32_t L_13 = ___1_start;
|
|
Il2CppChar* L_14;
|
|
L_14 = il2cpp_unsafe_add<Il2CppChar,int32_t>(L_12, L_13);
|
|
int32_t L_15 = ___2_length;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_16;
|
|
memset((&L_16), 0, sizeof(L_16));
|
|
ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_16), L_14, L_15, /*hidden argument*/ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var);
|
|
return L_16;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void GuidResult_Init_mA6B695110665C265D17C97D0AB8AA25D25D874AB_inline (GuidResult_t5B70D46D3C631BD00631FF6D700371C1E9C7AC79* __this, int32_t ___0_canThrow, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_canThrow;
|
|
__this->____throwStyle_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar Guid_HexToChar_mBA9068B41C7375C0B48FAC9F543DF59ECE37C31F_inline (int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
___0_a = ((int32_t)(L_0&((int32_t)15)));
|
|
int32_t L_1 = ___0_a;
|
|
if ((((int32_t)L_1) > ((int32_t)((int32_t)9))))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___0_a;
|
|
G_B3_0 = ((int32_t)il2cpp_codegen_add(L_2, ((int32_t)48)));
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
int32_t L_3 = ___0_a;
|
|
G_B3_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_3, ((int32_t)10))), ((int32_t)97)));
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return ((int32_t)(uint16_t)G_B3_0);
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Func_2_Invoke_m2014423FB900F135C8FF994125604FF9E6AAE829_gshared_inline (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = (int32_t)__this->____length_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryMarshal_CreateReadOnlySpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m6AC28EB03E267661349B40C5A925602DAC3F1C11_gshared_inline (Il2CppChar* ___0_reference, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar* L_0 = ___0_reference;
|
|
int32_t L_1 = ___1_length;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_2), L_0, L_1, /*hidden argument*/il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
if (!false)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 4)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
ThrowHelper_ThrowInvalidTypeWithPointersNotSupported_m5707DE408588F6EAC3FC7D10F9520308CF8C8CCF(L_1, NULL);
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
int32_t L_2 = ___1_length;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
void* L_3 = ___0_pointer;
|
|
Il2CppChar* L_4;
|
|
L_4 = il2cpp_unsafe_as_ref<Il2CppChar>((uint8_t*)L_3);
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_5;
|
|
memset((&L_5), 0, sizeof(L_5));
|
|
il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_5), L_4);
|
|
__this->____pointer_0 = L_5;
|
|
int32_t L_6 = ___1_length;
|
|
__this->____length_1 = L_6;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, int32_t ___0_start, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
int32_t L_0 = ___0_start;
|
|
int32_t L_1 = (int32_t)__this->____length_1;
|
|
if ((!(((uint32_t)L_0) <= ((uint32_t)L_1))))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___1_length;
|
|
int32_t L_3 = (int32_t)__this->____length_1;
|
|
int32_t L_4 = ___0_start;
|
|
if ((!(((uint32_t)L_2) > ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_3, L_4))))))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_5 = (ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5)__this->____pointer_0;
|
|
V_0 = L_5;
|
|
Il2CppChar* L_6;
|
|
L_6 = IL2CPP_BY_REFERENCE_GET_VALUE(Il2CppChar, (Il2CppByReference*)(&V_0));
|
|
int32_t L_7 = ___0_start;
|
|
Il2CppChar* L_8;
|
|
L_8 = il2cpp_unsafe_add<Il2CppChar,int32_t>(L_6, L_7);
|
|
int32_t L_9 = ___1_length;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_10;
|
|
memset((&L_10), 0, sizeof(L_10));
|
|
Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_inline((&L_10), L_8, L_9, /*hidden argument*/il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 10));
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar* L_0 = ___0_ptr;
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_1), L_0);
|
|
__this->____pointer_0 = L_1;
|
|
int32_t L_2 = ___1_length;
|
|
__this->____length_1 = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = (int32_t)__this->____length_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, int32_t ___0_start, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
int32_t L_0 = ___0_start;
|
|
int32_t L_1 = (int32_t)__this->____length_1;
|
|
if ((!(((uint32_t)L_0) <= ((uint32_t)L_1))))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___1_length;
|
|
int32_t L_3 = (int32_t)__this->____length_1;
|
|
int32_t L_4 = ___0_start;
|
|
if ((!(((uint32_t)L_2) > ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_3, L_4))))))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_5 = (ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5)__this->____pointer_0;
|
|
V_0 = L_5;
|
|
Il2CppChar* L_6;
|
|
L_6 = IL2CPP_BY_REFERENCE_GET_VALUE(Il2CppChar, (Il2CppByReference*)(&V_0));
|
|
int32_t L_7 = ___0_start;
|
|
Il2CppChar* L_8;
|
|
L_8 = il2cpp_unsafe_add<Il2CppChar,int32_t>(L_6, L_7);
|
|
int32_t L_9 = ___1_length;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_10;
|
|
memset((&L_10), 0, sizeof(L_10));
|
|
ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_10), L_8, L_9, /*hidden argument*/il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 6));
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_array;
|
|
if (L_0)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj(__this, sizeof(ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D));
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_array;
|
|
NullCheck((RuntimeArray*)L_1);
|
|
uint8_t* L_2;
|
|
L_2 = Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline((RuntimeArray*)L_1, NULL);
|
|
uint8_t* L_3;
|
|
L_3 = il2cpp_unsafe_as_ref<uint8_t>(L_2);
|
|
ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_4), L_3);
|
|
__this->____pointer_0 = L_4;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = ___0_array;
|
|
NullCheck(L_5);
|
|
__this->____length_1 = ((int32_t)(((RuntimeArray*)L_5)->max_length));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = (int32_t)__this->____length_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t MemoryExtensions_IndexOf_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA39BDFF0515AAF2D5364E2F2EBEFB3A45DC065B_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_span, Il2CppChar ___1_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5 = ___0_span;
|
|
Il2CppChar* L_6;
|
|
L_6 = (( Il2CppChar* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_5, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
uint8_t* L_7;
|
|
L_7 = il2cpp_unsafe_as_ref<uint8_t>(L_6);
|
|
uint8_t* L_8;
|
|
L_8 = il2cpp_unsafe_as_ref<uint8_t>((&___1_value));
|
|
int32_t L_9 = *((uint8_t*)L_8);
|
|
int32_t L_10;
|
|
L_10 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_span), il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_11;
|
|
L_11 = SpanHelpers_IndexOf_mB37566B16F2F4C7D14E1CD6EA781AC67110E8C4C(L_7, (uint8_t)L_9, L_10, NULL);
|
|
return L_11;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_12 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_13;
|
|
L_13 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_12, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var) };
|
|
Type_t* L_15;
|
|
L_15 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_14, NULL);
|
|
bool L_16;
|
|
L_16 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_13, L_15, NULL);
|
|
if (!L_16)
|
|
{
|
|
goto IL_0076;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_17 = ___0_span;
|
|
Il2CppChar* L_18;
|
|
L_18 = (( Il2CppChar* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_17, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
Il2CppChar* L_19;
|
|
L_19 = il2cpp_unsafe_as_ref<Il2CppChar>(L_18);
|
|
Il2CppChar* L_20;
|
|
L_20 = il2cpp_unsafe_as_ref<Il2CppChar>((&___1_value));
|
|
int32_t L_21 = *((uint16_t*)L_20);
|
|
int32_t L_22;
|
|
L_22 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_span), il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_23;
|
|
L_23 = SpanHelpers_IndexOf_m1EBE4594F5288D2297A3A8E8E4F365BE4BD211DC(L_19, (Il2CppChar)L_21, L_22, NULL);
|
|
return L_23;
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_24 = ___0_span;
|
|
Il2CppChar* L_25;
|
|
L_25 = (( Il2CppChar* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_24, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
Il2CppChar L_26 = ___1_value;
|
|
int32_t L_27;
|
|
L_27 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_span), il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
int32_t L_28;
|
|
L_28 = (( int32_t (*) (Il2CppChar*, Il2CppChar, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_25, L_26, L_27, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
return L_28;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, int32_t ___0_start, const RuntimeMethod* method)
|
|
{
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
int32_t L_0 = ___0_start;
|
|
int32_t L_1 = (int32_t)__this->____length_1;
|
|
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_2 = (ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5)__this->____pointer_0;
|
|
V_0 = L_2;
|
|
Il2CppChar* L_3;
|
|
L_3 = IL2CPP_BY_REFERENCE_GET_VALUE(Il2CppChar, (Il2CppByReference*)(&V_0));
|
|
int32_t L_4 = ___0_start;
|
|
Il2CppChar* L_5;
|
|
L_5 = il2cpp_unsafe_add<Il2CppChar,int32_t>(L_3, L_4);
|
|
int32_t L_6 = (int32_t)__this->____length_1;
|
|
int32_t L_7 = ___0_start;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_8;
|
|
memset((&L_8), 0, sizeof(L_8));
|
|
ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_8), L_5, ((int32_t)il2cpp_codegen_subtract(L_6, L_7)), /*hidden argument*/il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 6));
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
if (!false)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 4)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
ThrowHelper_ThrowInvalidTypeWithPointersNotSupported_m5707DE408588F6EAC3FC7D10F9520308CF8C8CCF(L_1, NULL);
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
int32_t L_2 = ___1_length;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
void* L_3 = ___0_pointer;
|
|
uint8_t* L_4;
|
|
L_4 = il2cpp_unsafe_as_ref<uint8_t>((uint8_t*)L_3);
|
|
ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC L_5;
|
|
memset((&L_5), 0, sizeof(L_5));
|
|
il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_5), L_4);
|
|
__this->____pointer_0 = L_5;
|
|
int32_t L_6 = ___1_length;
|
|
__this->____length_1 = L_6;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = (int32_t)__this->____length_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_mDADE08E6B4594775C6675B389078E5FE98C745D5_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_array, int32_t ___1_start, int32_t ___2_length, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___0_array;
|
|
if (L_0)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___1_start;
|
|
if (L_1)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___2_length;
|
|
if (!L_2)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
il2cpp_codegen_initobj(__this, sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1));
|
|
return;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
int32_t L_3 = ___1_start;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = ___0_array;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) <= ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = ___2_length;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = ___0_array;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = ___1_start;
|
|
if ((!(((uint32_t)L_5) > ((uint32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_6)->max_length)), L_7))))))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL);
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8 = ___0_array;
|
|
NullCheck((RuntimeArray*)L_8);
|
|
uint8_t* L_9;
|
|
L_9 = Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline((RuntimeArray*)L_8, NULL);
|
|
Il2CppChar* L_10;
|
|
L_10 = il2cpp_unsafe_as_ref<Il2CppChar>(L_9);
|
|
int32_t L_11 = ___1_start;
|
|
Il2CppChar* L_12;
|
|
L_12 = il2cpp_unsafe_add<Il2CppChar,int32_t>(L_10, L_11);
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_13;
|
|
memset((&L_13), 0, sizeof(L_13));
|
|
il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_13), L_12);
|
|
__this->____pointer_0 = L_13;
|
|
int32_t L_14 = ___2_length;
|
|
__this->____length_1 = L_14;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t* Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline (RuntimeArray* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0* L_0;
|
|
L_0 = il2cpp_unsafe_as<RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0*>(__this);
|
|
NullCheck(L_0);
|
|
uint8_t* L_1 = (&L_0->___Data_2);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar* L_0 = ___0_ptr;
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_1), L_0);
|
|
__this->____pointer_0 = L_1;
|
|
int32_t L_2 = ___1_length;
|
|
__this->____length_1 = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MemoryExtensions_SequenceEqual_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m5C4C602E94DF85548E163F2D3FE9DDCA36C7E3E6_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_span, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_other, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
uint64_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_span), il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_0;
|
|
il2cpp_codegen_initobj((&V_2), sizeof(Il2CppChar));
|
|
}
|
|
{
|
|
bool L_2;
|
|
L_2 = (( bool (*) (uint64_t*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)))((&V_1), il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
if (!L_2)
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
int32_t L_4;
|
|
L_4 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___1_other), il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)L_4))))
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5 = ___0_span;
|
|
Il2CppChar* L_6;
|
|
L_6 = (( Il2CppChar* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_5, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_7;
|
|
L_7 = il2cpp_unsafe_as_ref<uint8_t>(L_6);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_8 = ___1_other;
|
|
Il2CppChar* L_9;
|
|
L_9 = (( Il2CppChar* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_8, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
uint8_t* L_10;
|
|
L_10 = il2cpp_unsafe_as_ref<uint8_t>(L_9);
|
|
int32_t L_11 = V_0;
|
|
uint64_t L_12 = V_1;
|
|
bool L_13;
|
|
L_13 = SpanHelpers_SequenceEqual_m69781B64721462BCA1ED200A1BB853E9B7026F2E(L_7, L_10, (uint64_t)((int64_t)il2cpp_codegen_multiply(((int64_t)L_11), (int64_t)L_12)), NULL);
|
|
return L_13;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
int32_t L_14 = V_0;
|
|
int32_t L_15;
|
|
L_15 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___1_other), il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
if ((!(((uint32_t)L_14) == ((uint32_t)L_15))))
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
}
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_16 = ___0_span;
|
|
Il2CppChar* L_17;
|
|
L_17 = (( Il2CppChar* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_16, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_18 = ___1_other;
|
|
Il2CppChar* L_19;
|
|
L_19 = (( Il2CppChar* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_18, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
int32_t L_20 = V_0;
|
|
bool L_21;
|
|
L_21 = (( bool (*) (Il2CppChar*, Il2CppChar*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(L_17, L_19, L_20, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
return L_21;
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|