1. 공격 스크립트를 만듬 - 플레이어 -> 적 공격 테스트 (성공) - 적 -> 플레이어 공격 테스트 (성공) Todo 1. 카메라 컨트롤러는 이거 방법 아예 따로 찾아야 할거 같음 2. 공격 스크립트 (시도) - 투사체 공격 (시작해야 함) - 공격 관련 무기 스테이터스 같은거 생각해야 함 - 몬스터 AI라던가 설정 또는 이동과 관련된것도 생각해야 함 - 공격 받았을 경우 처리는 어떻게 할건지 고민을 해야 함
26349 lines
1.2 MiB
26349 lines
1.2 MiB
#include "pch-cpp.hpp"
|
|
|
|
|
|
|
|
|
|
|
|
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);
|
|
}
|
|
};
|
|
struct InterfaceActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct InterfaceFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct InvokerActionInvoker1;
|
|
template <typename T1>
|
|
struct InvokerActionInvoker1<T1*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
|
|
{
|
|
void* params[1] = { p1 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[0]);
|
|
}
|
|
};
|
|
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, params[1]);
|
|
}
|
|
};
|
|
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, params[1]);
|
|
}
|
|
};
|
|
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, params[2]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
|
|
struct InvokerActionInvoker7;
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
|
|
struct InvokerActionInvoker7<T1, T2, T3, T4, T5*, T6*, T7>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5* p5, T6* p6, T7 p7)
|
|
{
|
|
void* params[7] = { &p1, &p2, &p3, &p4, p5, p6, &p7 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[6]);
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct InvokerFuncInvoker1;
|
|
template <typename R, typename T1>
|
|
struct InvokerFuncInvoker1<R, T1*>
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
|
|
{
|
|
R ret;
|
|
void* params[1] = { p1 };
|
|
method->invoker_method(methodPtr, method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2>
|
|
struct InvokerFuncInvoker2;
|
|
template <typename R, typename T1, typename T2>
|
|
struct InvokerFuncInvoker2<R, T1, T2*>
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2* p2)
|
|
{
|
|
R ret;
|
|
void* params[2] = { &p1, p2 };
|
|
method->invoker_method(methodPtr, method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2, typename T3, typename T4>
|
|
struct InvokerFuncInvoker4;
|
|
template <typename R, typename T1, typename T2, typename T3, typename T4>
|
|
struct InvokerFuncInvoker4<R, T1*, T2*, T3*, T4*>
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4)
|
|
{
|
|
R ret;
|
|
void* params[4] = { p1, p2, p3, p4 };
|
|
method->invoker_method(methodPtr, method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
|
|
struct InvokerFuncInvoker6;
|
|
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
|
|
struct InvokerFuncInvoker6<R, T1, T2*, T3*, T4*, T5*, T6*>
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6)
|
|
{
|
|
R ret;
|
|
void* params[6] = { &p1, p2, p3, p4, p5, p6 };
|
|
method->invoker_method(methodPtr, method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
struct ConstrainedActionInvoker0
|
|
{
|
|
static inline void Invoke (RuntimeClass* type, const RuntimeMethod* constrainedMethod, void* boxBuffer, void* obj)
|
|
{
|
|
il2cpp_codegen_runtime_constrained_call(type, constrainedMethod, boxBuffer, obj, NULL, NULL);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct ConstrainedActionInvoker1;
|
|
template <typename T1>
|
|
struct ConstrainedActionInvoker1<T1*>
|
|
{
|
|
static inline void Invoke (RuntimeClass* type, const RuntimeMethod* constrainedMethod, void* boxBuffer, void* obj, T1* p1)
|
|
{
|
|
void* params[1] = { p1 };
|
|
il2cpp_codegen_runtime_constrained_call(type, constrainedMethod, boxBuffer, obj, params, params[0]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct ConstrainedActionInvoker2;
|
|
template <typename T1, typename T2>
|
|
struct ConstrainedActionInvoker2<T1*, T2*>
|
|
{
|
|
static inline void Invoke (RuntimeClass* type, const RuntimeMethod* constrainedMethod, void* boxBuffer, void* obj, T1* p1, T2* p2)
|
|
{
|
|
void* params[2] = { p1, p2 };
|
|
il2cpp_codegen_runtime_constrained_call(type, constrainedMethod, boxBuffer, obj, params, params[1]);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct ConstrainedFuncInvoker0
|
|
{
|
|
static inline R Invoke (RuntimeClass* type, const RuntimeMethod* constrainedMethod, void* boxBuffer, void* obj)
|
|
{
|
|
R ret;
|
|
il2cpp_codegen_runtime_constrained_call(type, constrainedMethod, boxBuffer, obj, NULL, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct ConstrainedFuncInvoker1;
|
|
template <typename R, typename T1>
|
|
struct ConstrainedFuncInvoker1<R, T1*>
|
|
{
|
|
static inline R Invoke (RuntimeClass* type, const RuntimeMethod* constrainedMethod, void* boxBuffer, void* obj, T1* p1)
|
|
{
|
|
R ret;
|
|
void* params[1] = { p1 };
|
|
il2cpp_codegen_runtime_constrained_call(type, constrainedMethod, boxBuffer, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
|
|
struct Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53;
|
|
struct Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C;
|
|
struct Action_1_tE55F8AC1EEC45D0C976E56B2950D65EC814C06E6;
|
|
struct Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C;
|
|
struct Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B;
|
|
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87;
|
|
struct Action_1_tEFD4B3570567C07AE1CC4A2D290987F4347F2F01;
|
|
struct Action_1_t66B514BE877E216616DEDD40416127189FE16FA3;
|
|
struct Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99;
|
|
struct Action_1_tEB0353AA1A112B6F2D921B58DCC9D9D4C0498E6E;
|
|
struct Action_1_t21FD3C63C847CD92920291C92517DD3E3D04358C;
|
|
struct Action_2_tD987B97B18D27B9920365359C46BC12702AD4F7D;
|
|
struct Action_2_t51C134DC0CD7F5ED5E83EE70AD1FE0FDFF6DDCCF;
|
|
struct Action_2_t9C4E97D0565650F0AEF7C72077EB8A0F9326E40B;
|
|
struct Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88;
|
|
struct Action_2_t1D42C7D8DCD2DEB7C556FB3783F0EDAFF694E5E8;
|
|
struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA;
|
|
struct Dictionary_2_tBCCCFBCAC02A3C03E3C84D75696D4860D7444A35;
|
|
struct Dictionary_2_t4DF54DED090D74EA3A4143562494256C758AB504;
|
|
struct Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710;
|
|
struct Dictionary_2_t3B4D53CD8F19D3A38C1074A21661621001D8E725;
|
|
struct Dictionary_2_t645C7B1DAE2D839B52A5E387C165CE13D5465B00;
|
|
struct Dictionary_2_t4055F6540F36F21F9FEDAFB92D8E0089B38EBBC8;
|
|
struct Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E;
|
|
struct Dictionary_2_tA032486828C79558DA19404156CC68269F719C41;
|
|
struct Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457;
|
|
struct Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C;
|
|
struct Func_2_tEC8651D2749456D39806A8151756C8D4E376386F;
|
|
struct Func_2_t76D5132C86AC7B01299890F023D78FAE8F9D1A64;
|
|
struct Func_2_tE29FFE46D694921A593EEFB32E4877D75994CC75;
|
|
struct Func_2_t6F0DEE2A7ADE56265ED0100E7DF77076E5FDB85C;
|
|
struct Func_2_t2E586245AEB77072D7227BD6AF2907CB9524227A;
|
|
struct Func_2_t9E220F4AC78324D7D0D25DA747A006808EB3FCCD;
|
|
struct Func_2_tB5123A698CF2F0D326B1441BFFD2D1F46F29231D;
|
|
struct Func_2_tD7D2844A071B5C6280BB6380EFE3896CC538B77E;
|
|
struct Func_2_tAB47C3D2B1DBDEAB988B0994E8D6B702514D18F7;
|
|
struct Func_2_tC50964E0E1320D21A73671534F60C1C2013148E5;
|
|
struct Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F;
|
|
struct Func_2_tC33A67D9939EA70F5967CC0D7E5A50AF0E530302;
|
|
struct Func_2_tB8444326CD91502B291E0988F04448A82D0F6552;
|
|
struct Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00;
|
|
struct Func_2_t615C91B75B6D7B4E70D5080F4EE82DFCD6B6B069;
|
|
struct Func_2_tACBF5A1656250800CE861707354491F0611F6624;
|
|
struct Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E;
|
|
struct Func_2_tECC97CAACCC7CB873184FEF49E8343711EEF4768;
|
|
struct Func_2_t51E0796D1DBB8E902BF230CE88C097AAC81A799E;
|
|
struct Func_2_t387AD3722EB0E22243BF0C62E63A64376031C305;
|
|
struct Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0;
|
|
struct Func_3_t7ABD9F6EC6D72DB68F353D0F3C3FEC7322E5A853;
|
|
struct Func_3_t89E320FE1090235275D6DF55A8411FDA31CEFC7A;
|
|
struct Func_3_t257468D81256F67CCB3C6EC189AA86146F0E83BF;
|
|
struct Func_3_tBD0EC492040F50111EAF0A77127409C4E6670C2E;
|
|
struct Func_3_tF4070BC973E64BF78AE4C9340BFC70326C962EB5;
|
|
struct Func_3_t4C315B89143B58391639906E83ABDD25F0D7E596;
|
|
struct Func_3_t06ED4EB071C5BB0024319BE1F60C308E1DAA9CC5;
|
|
struct Func_3_tA9A0974E9EC292E11DAEA6B714FAE439FFE235F7;
|
|
struct Func_3_t799252D9458F2AB207641E15DE8B7454B75CEA8F;
|
|
struct Func_3_tA3DDAB5A72CEB154FB50A12CE39636838C9008FA;
|
|
struct Func_3_tE46795E42BBCE12AACFA5423D869FC080617614A;
|
|
struct Func_3_t8E1C99C1281A1FE16C6EC1708A9B501F03768680;
|
|
struct Func_3_t9926DBF6281A1654219C4F2EBA82ECA603217AB3;
|
|
struct Func_3_t3431757396CB42FB4FA1735910FD76FB77E568CF;
|
|
struct Func_3_tA9B5A88DCB3DB2DE61C94876A083D9588C92C1F4;
|
|
struct Func_3_t25A788C45878510857F0D5339F041D8B9FFB0DF7;
|
|
struct Func_3_tAFE936B287B527454DD2220949C128C7BDA3400E;
|
|
struct Func_3_tBD64F3C7DBE49CCECEC1DA85C48BC4C4E61F1CD0;
|
|
struct Func_3_tA93E7480FC9A114D507BE035FA9F69D9BB56F914;
|
|
struct Func_3_tA97A8AA5DD5E584A5ADBF2402322C22AE9F68D32;
|
|
struct Func_3_t8BC9FC348AB48122C5017A7102263AE1045C5819;
|
|
struct Func_3_t99E62D3154E1A6700E41EB034D8657E7F57A6572;
|
|
struct Func_4_t3B79C154D00A796C783C567CC587F09CD8926B19;
|
|
struct Func_4_t27E1E57CC45284A3365ADDD73218A4B7FBE8A41A;
|
|
struct Func_4_tC6554A9B6158B8E653539FD20E101E86ECAD14E5;
|
|
struct Func_4_t647B1DCE59688F2956CCB8CCE5AD15BE3188D601;
|
|
struct Func_4_t3BDE3CA92565203F02E9E075D380C15E3C5964EE;
|
|
struct Func_4_t46812CB64A120A31977C87BC4A822A947B5C44A5;
|
|
struct Func_4_t222F7B044E23AD55E5A23F7A86BA3CF128947094;
|
|
struct IEnumerable_1_tF5487DDC9BFE72D77C0A279762BD5851F02B4F03;
|
|
struct IEnumerable_1_t71A46277DBD73BD4009B2B20885D2B7057593A1A;
|
|
struct IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9;
|
|
struct IEnumerable_1_t6686595E4CB7AC210F0EF075F7B1DD4A21D3902B;
|
|
struct IEqualityComparer_1_t2CA7720C7ADCCDECD3B02E45878B4478619D5347;
|
|
struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
|
|
struct IEqualityComparer_1_t47CC0B235E693652D181B679FF6D61A469ECC122;
|
|
struct IList_1_t09217E1EDF7CCAED72B667F406AAC92AB64B8790;
|
|
struct IList_1_t1E95A05AFA88C09BA96A40B431F7D5867BD0D622;
|
|
struct KeyCollection_tB45A861D090B15129521119AE48ED3813820A974;
|
|
struct KeyCollection_tE66790F09E854C19C7F612BEAD203AE626E90A36;
|
|
struct KeyCollection_tB792ACBAE0B99278B0B7B0F7440B4788E98F0D55;
|
|
struct List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3;
|
|
struct List_1_t592DF2E59D6E244DA0041698383484A07C7E0480;
|
|
struct List_1_t96E9133B70FB6765E6B138E810D33E18901715DA;
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
|
|
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD;
|
|
struct List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F;
|
|
struct List_1_t74EC90C5F42E1A99F29BC6A7FF27FD27FCF98344;
|
|
struct List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95;
|
|
struct List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4;
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A;
|
|
struct List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66;
|
|
struct ObjectPool_1_tC06B45D8A0C7CBBDAE418090727D1DF1F2FCB9F6;
|
|
struct ObjectPool_1_tEA9E5136DCE87BF5FDC7E117132869969F52A700;
|
|
struct PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F;
|
|
struct PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496;
|
|
struct RefCounted_t6B975CD3D06E8D955346FC0D66E8F6E449D49A44;
|
|
struct RefCounted_t0E133AD36715877AE1CE72539A0199B4D3AA8CD1;
|
|
struct RefCounted_t81BCBAE57D930C934CF7A439452D65303AC6A8CD;
|
|
struct RefCounted_t78303B1CD3D08C664ABB15EBD7C882DA3E06CF7D;
|
|
struct RefCounted_tA9FB4D63A1064BD322AFDFCD70319CB384C057D9;
|
|
struct RefCounted_t812D790A2C787F18230F9234F6C9B84D4AC1A85A;
|
|
struct TypeConverter_2_t370B4F69ADC2867DC21BE14FA947E12DD9BD0462;
|
|
struct TypeConverter_2_tBB893836100D5BA5086C7F2638C9D63D6FC61559;
|
|
struct TypeConverter_2_tB736BA63BC9F9885972433F0B1D7232E2AAE0585;
|
|
struct TypeConverter_2_tA07ADAC5ACD7A76F41C95586D89B438C04D44409;
|
|
struct TypeConverter_2_t794BDD9B9C3A12BF490C7710C609706E72EDABCD;
|
|
struct ValueCollection_t038245E04B5D2A80048D9F8021A23E69A0C9DBAA;
|
|
struct ValueCollection_tC9D91E8A3198E40EA339059703AB10DFC9F5CC2E;
|
|
struct ValueCollection_tC492596681BD51AB34FC76FA76C15C9B3FFB7B40;
|
|
struct Action_1U5BU5D_tE4E06618063C3EF89781BEB4DF47D183654040E6;
|
|
struct Action_1U5BU5D_t9AF7A60AA589F7071315F3DA2F77CD32CB43FB5D;
|
|
struct Action_1U5BU5D_t0DC77ABC87566C75CD9F20B4F73420DC6A2CB5E3;
|
|
struct Action_1U5BU5D_tB846E6FE2326CCD34124D1E5D70117C9D33DEE76;
|
|
struct Action_2U5BU5D_tAE1C0BBF3A3375CE5ECA001D472AF5BCFA316938;
|
|
struct Action_2U5BU5D_t76318232107F3C32E9D6B055A413EBCBB02A30FA;
|
|
struct Action_2U5BU5D_t08DE08A7C6B16A0D8F39E2B23A45796CD1D1C4D1;
|
|
struct Action_2U5BU5D_t91BC0D22B5FBF80722DC31149915DB78F807DD05;
|
|
struct EntryU5BU5D_t1E85CBF91297C9D62A0FC2AD29FD24E33C8A5E54;
|
|
struct EntryU5BU5D_t233BB24ED01E2D8D65B0651D54B8E3AD125CAF96;
|
|
struct EntryU5BU5D_tF740C626B28CBB6757BD70F46E0AFB6A991253E3;
|
|
struct Func_2U5BU5D_tDB35E65A9494F01B98EB35389191829269F63BDA;
|
|
struct Func_2U5BU5D_t6BC505CD1D60C2E1E663F707760ED776AD9076D5;
|
|
struct BaseRuntimePanelU5BU5D_t5616E94AA01876C9DB770DB16A05F5BCA7FEA346;
|
|
struct BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47;
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
|
|
struct ComputedTransitionPropertyU5BU5D_t25B9E78F5276CDA297C8215C316452CAB8219E82;
|
|
struct CustomAttributeNamedArgumentU5BU5D_tC0A39D9401E28662213F5958EFF5D26D0681B440;
|
|
struct CustomAttributeTypedArgumentU5BU5D_t6CAA09EC6AACBED57FC8B02C587D50BF6B738C6B;
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct PropertyPathPartU5BU5D_t7994D542F14DDDDEABB1792C335C20149399AEBB;
|
|
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
|
struct Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C;
|
|
struct __Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1;
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC;
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07;
|
|
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
|
|
struct Assembly_t;
|
|
struct AtlasBase_t196C45243F41C19DC6258965057BBAA150D278BC;
|
|
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA;
|
|
struct BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4;
|
|
struct BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303;
|
|
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
|
|
struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184;
|
|
struct CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B;
|
|
struct ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB;
|
|
struct ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B;
|
|
struct ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A;
|
|
struct Cubemap_t4F2DFF70696A5CB5C1695DF8947CC60D718C4A1C;
|
|
struct CubemapArray_tB8C754E33D44BB40C9918D996AB2AD05D67DC666;
|
|
struct CullingAllocationInfo_tB260F5CD0B290F74E145EB16E54B901CC68D9D5A;
|
|
struct DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA;
|
|
struct DataBindingManager_tE7B33E64EBBDCAB0A89B6A8421529F9BA0D066E1;
|
|
struct DataManager_tE86238CF20D1A233E0ADDA21C619896E5F278275;
|
|
struct DebugUIHandlerWidget_tE597C749DDA3EBA7627F38F8A77EB5A171B9E6D1;
|
|
struct DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA;
|
|
struct DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98;
|
|
struct Delegate_t;
|
|
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
|
|
struct ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904;
|
|
struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB;
|
|
struct EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C;
|
|
struct EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85;
|
|
struct EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398;
|
|
struct Exception_t;
|
|
struct FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A;
|
|
struct Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0;
|
|
struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F;
|
|
struct GetViewDataDictionary_tF745E6CC7E18A67630A2B294F0BBFB27C6E57638;
|
|
struct GraphicsBuffer_t91FACD3CD78588C25C361C453D1A2FE055EC4AF1;
|
|
struct HierarchyEvent_tB23E4347BC47656A014CA104A5B1DDC172A2A705;
|
|
struct IBinding_t02FD99E9C9F2072B28E110F16C157666F5B2DBC7;
|
|
struct ICursorManager_t78B026DED2559C62810B21C54C5F882457073A8B;
|
|
struct IDebugPanelChangeReceiver_t8300985E86E68D6E973C22F5CF9104AA45C9E3F2;
|
|
struct IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F;
|
|
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
|
struct IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131;
|
|
struct IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3;
|
|
struct IFocusRing_t08BC753A7D9FFD5F88C58DF61E4FF056804CEC78;
|
|
struct IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26;
|
|
struct IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E;
|
|
struct IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5;
|
|
struct IPanelRenderer_tEB4A39BEC71B3B49302393D8DAFF7599E7F9ED9E;
|
|
struct IProperty_t9DAAF3D1ACD042DA2D622152506F58CE625EF697;
|
|
struct IScreenRaycaster_t1DAE2C91161287447E09A216E6CDBF0DFECAF902;
|
|
struct IStylePropertyAnimationSystem_t120D77C8BFB230CA7DBF45D3FB1F5AFBA0504DE2;
|
|
struct ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C;
|
|
struct InlineStyleAccess_t5CA7877999C9442491A220AE50D605C84D09A165;
|
|
struct InputActionState_t780948EA293BAA800AD8699518B58B59FFB8A700;
|
|
struct InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5;
|
|
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
|
|
struct Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70;
|
|
struct LoadResourceFunction_tA999A2DDCB9CDCF68E4274A58336A39ABB7AF850;
|
|
struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3;
|
|
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
|
|
struct MemberInfo_t;
|
|
struct MethodInfo_t;
|
|
struct PanelSettings_t0621207D5DD3BB89DB587440E8F9E07234283DEC;
|
|
struct PathRef_t76F7677792A14AF9D6A6EAB7F08C1A3DC2B27A55;
|
|
struct PhysicsDocumentPicker_t6B9D461697BAEF92BAE3141E17ED34637074159D;
|
|
struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772;
|
|
struct RenderData_t1ABE116B2B5E0409AC699E195922516606531DC2;
|
|
struct RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27;
|
|
struct RepaintData_t90534752135661579EC254884F550545D001B5EA;
|
|
struct ResolvedStyleAccess_t226CC840EBACEE31CE1139ED5F717532AFFAEB45;
|
|
struct ResourceManager_t3C786E6B9CB06BD30723E3099A98FEF2F853355E;
|
|
struct RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346;
|
|
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
|
struct SavePersistentViewData_tFE77B8450170D95B16B3017D62F81F2139D4F716;
|
|
struct ScreenOverlayPanelPicker_t6489FF53DCEEAF8160B7734B756D2A7D92999223;
|
|
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A;
|
|
struct String_t;
|
|
struct StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527;
|
|
struct TextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69;
|
|
struct TextEditingManipulator_t9AC543C81F3778888F421C8D93003EBC8902EB29;
|
|
struct TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0;
|
|
struct TextSelectingManipulator_t85DD873E0C5537C1F8468B6FE5E4C9995B193855;
|
|
struct Texture3D_tDC30A0F19B6055086859D1ABC098D6E6762000E1;
|
|
struct TimeMsFunction_t1893856976EB95CF5608ACC3642AD8B79994CA2B;
|
|
struct TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862;
|
|
struct TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A;
|
|
struct Type_t;
|
|
struct UIElementsBridge_tC28FCEDF493CD746D1973AB27BA2CBA393EB4BA8;
|
|
struct UITKTextHandle_t1FF3B4EC2367C05F42D61C660D6FE30DF91C06CE;
|
|
struct VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115;
|
|
struct VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB;
|
|
struct VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9;
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
|
struct CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD;
|
|
struct LazyCAttrData_t4F8036F83C070762609DB213B69F7FAA2D34ACA3;
|
|
struct IContainer_tBD9F21C42D4253E306C4EF7CFC72480E0C7C89B5;
|
|
struct Panel_t3A0D2006E8AEA607A6DF5188138E463A26085295;
|
|
struct Widget_tE8D6AF1D7525CC84E8F2C3B73162016736A6A2FF;
|
|
struct InputForUIProcessor_t8139092CF2457900F7AF6D46C74E79117AFA37D1;
|
|
struct LegacyInputProcessor_t6DFDEE45D836804903760339A5CC8BC1B93F4451;
|
|
struct Data_t43E3238277579E631EA4E8016E61966D79F5B62E;
|
|
struct ConverterKeyComparer_t4C6C81BD692F6EBB1BD4D6946B08DA25E11DBC16;
|
|
struct CustomStyleAccess_t170C852102B4D09FB478B620A75B14D096F9F2B1;
|
|
struct TypeData_t01D670B4E71B5571B38C7412B1E652A47D6AF66A;
|
|
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IProperty_t9DAAF3D1ACD042DA2D622152506F58CE625EF697_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0DE82CFA3F86492F358D234AF986449070189743;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral278942CDEE22E9328A00EB31BC7DEC0BB8D328F1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral29E9D8EEDD40E3ADE1579882DA345730D66B63B5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral77A73EBDA78185D665A8799738A9D6885E237CAD;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7FB0D9E4FACEEDAB18AAE0CBAD68E80441858BD9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8239DDE7DBC91495DACC42B52FAF15E9C617D4D7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral846EBD88927A0A5178044365E1F013B802F123DC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA4CA0091D7FA5EB653D78A68B103F9C68A8F9EF0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD1EA222166F21A927FA1BA3626A8EBDB404B9FCE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDD2BBF431A1C8E39DE062E142D158318F7F73332;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m5875DF2ACE933D734119C088B2E7C9C63F49B443_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mC14A0401676B34A68B06FC858BA801E7DF99B7D8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Where_TisType_t_mA4A7776893ADF4E3CAB6F7AEC94DF71DDF7931F8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ResourceManager_Load_TisTextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69_mD161AD0E701B97CF1D9C149ECB1917FBB202C3A4_RuntimeMethod_var;
|
|
struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_com;
|
|
struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_pinvoke;
|
|
struct Delegate_t_marshaled_com;
|
|
struct Delegate_t_marshaled_pinvoke;
|
|
struct Exception_t_marshaled_com;
|
|
struct Exception_t_marshaled_pinvoke;
|
|
struct PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com;
|
|
struct PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke;
|
|
|
|
struct BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47;
|
|
struct CustomAttributeNamedArgumentU5BU5D_tC0A39D9401E28662213F5958EFF5D26D0681B440;
|
|
struct CustomAttributeTypedArgumentU5BU5D_t6CAA09EC6AACBED57FC8B02C587D50BF6B738C6B;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
struct __Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1;
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC;
|
|
|
|
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
|
|
struct U3CU3Ec__101_1_tF191CD717F7D673900AB67BAAAA082AE006396EE : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec__101_1_t4C331D1DC0A362A71E091CD9F8AB494E7D184984 : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec__35_1_t15D400D9F5A9E198C56A1F03181D2FF7A82CBF55 : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec__35_1_t101BAC9E48FB1426DD37DF65BBF83A3C171D017C : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec__35_1_t55989DD67EA28397E9C95C168B2F48E23CE26726 : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec__35_1_t5C2A52595116ADB34929E11F0CFFD2777ABAF51C : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec__35_1_t3352CCC2A56A598B60BC6051E92F43565B29B9AD : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec__35_1_tA83A7CA3451D7FE8177747C4AE39456AD8DD9E1F : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec__35_1_t1DE6BF0C022461BB0CE70601BD71D4B9B92231C7 : public RuntimeObject
|
|
{
|
|
};
|
|
struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t1E85CBF91297C9D62A0FC2AD29FD24E33C8A5E54* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_tB45A861D090B15129521119AE48ED3813820A974* ____keys;
|
|
ValueCollection_t038245E04B5D2A80048D9F8021A23E69A0C9DBAA* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t233BB24ED01E2D8D65B0651D54B8E3AD125CAF96* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_tE66790F09E854C19C7F612BEAD203AE626E90A36* ____keys;
|
|
ValueCollection_tC9D91E8A3198E40EA339059703AB10DFC9F5CC2E* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_tF740C626B28CBB6757BD70F46E0AFB6A991253E3* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_tB792ACBAE0B99278B0B7B0F7440B4788E98F0D55* ____keys;
|
|
ValueCollection_tC492596681BD51AB34FC76FA76C15C9B3FFB7B40* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3 : public RuntimeObject
|
|
{
|
|
BaseRuntimePanelU5BU5D_t5616E94AA01876C9DB770DB16A05F5BCA7FEA346* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4 : public RuntimeObject
|
|
{
|
|
__Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A : public RuntimeObject
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct TypeTraits_1_t20DA141DBCABB7DD20C97D959B16E37210795E71 : public RuntimeObject
|
|
{
|
|
};
|
|
struct Assembly_t : public RuntimeObject
|
|
{
|
|
};
|
|
struct Assembly_t_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct Assembly_t_marshaled_com
|
|
{
|
|
};
|
|
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject
|
|
{
|
|
};
|
|
struct CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4 : public RuntimeObject
|
|
{
|
|
bool ___isIMGUIContainer;
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* ___m_CallbackRegistry;
|
|
};
|
|
struct ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E : public RuntimeObject
|
|
{
|
|
};
|
|
struct CoreUnsafeUtils_t6744A3DB550F6D451B1DBE22B45B951A633CC51F : public RuntimeObject
|
|
{
|
|
};
|
|
struct CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038 : public RuntimeObject
|
|
{
|
|
};
|
|
struct CustomAttributeData_tC851BE158358D5CFB283E630148B10B7685DDC95 : public RuntimeObject
|
|
{
|
|
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* ___ctorInfo;
|
|
RuntimeObject* ___ctorArgs;
|
|
RuntimeObject* ___namedArgs;
|
|
LazyCAttrData_t4F8036F83C070762609DB213B69F7FAA2D34ACA3* ___lazyData;
|
|
};
|
|
struct CustomAttributeExtensions_t8BE4B68F928B20AC1E02ABD129534DB9004FB0FA : public RuntimeObject
|
|
{
|
|
};
|
|
struct DataManager_tE86238CF20D1A233E0ADDA21C619896E5F278275 : public RuntimeObject
|
|
{
|
|
Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* ____cache;
|
|
};
|
|
struct DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98 : public RuntimeObject
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* ___m_FocusedPanel;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* ___m_PreviousFocusedPanel;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_PreviousFocusedElement;
|
|
int32_t ___m_UpdateFrameCount;
|
|
LegacyInputProcessor_t6DFDEE45D836804903760339A5CC8BC1B93F4451* ___m_LegacyInputProcessor;
|
|
InputForUIProcessor_t8139092CF2457900F7AF6D46C74E79117AFA37D1* ___m_InputForUIProcessor;
|
|
bool ___m_IsInputReady;
|
|
bool ___m_UseInputForUI;
|
|
bool ___m_IsInputForUIActive;
|
|
RuntimeObject* ___m_Raycaster;
|
|
PhysicsDocumentPicker_t6B9D461697BAEF92BAE3141E17ED34637074159D* ___m_WorldSpacePicker;
|
|
ScreenOverlayPanelPicker_t6489FF53DCEEAF8160B7734B756D2A7D92999223* ___m_ScreenOverlayPicker;
|
|
float ___worldSpaceMaxDistance;
|
|
int32_t ___worldSpaceLayers;
|
|
bool ___verbose;
|
|
bool ___logToGameScreen;
|
|
Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70* ___m_LogLabel;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___m_LogLines;
|
|
};
|
|
struct DelegateHelpers_t4FACB851FC2A983B0459251C5FB2088705DCEEF0 : public RuntimeObject
|
|
{
|
|
};
|
|
struct FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___U3CfocusRingU3Ek__BackingField;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* ___m_SelectedTextElement;
|
|
List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* ___m_FocusedElements;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_LastFocusedElement;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_LastPendingFocusedElement;
|
|
int32_t ___m_PendingFocusCount;
|
|
int32_t ___U3CimguiKeyboardControlU3Ek__BackingField;
|
|
};
|
|
struct MemberInfo_t : public RuntimeObject
|
|
{
|
|
};
|
|
struct ResourceManager_t3C786E6B9CB06BD30723E3099A98FEF2F853355E : public RuntimeObject
|
|
{
|
|
Dictionary_2_t3B4D53CD8F19D3A38C1074A21661621001D8E725* ____resources;
|
|
};
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
int32_t ____stringLength;
|
|
Il2CppChar ____firstChar;
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
|
{
|
|
};
|
|
struct DefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t DefaultKeyGetter_1_t950CA550A126A63B3A46F66B28CC7EF6EB6E3B9A__padding[1];
|
|
};
|
|
};
|
|
struct DefaultKeyGetter_1_tBB6F2B964D7D24105393917DE1AD62F2FD307C6E
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t DefaultKeyGetter_1_t950CA550A126A63B3A46F66B28CC7EF6EB6E3B9A__padding[1];
|
|
};
|
|
};
|
|
struct Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A
|
|
{
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
RuntimeObject* ____current;
|
|
};
|
|
typedef Il2CppFullySharedGenericStruct Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF;
|
|
struct InlinedArray_1_tC5A6273BF5A8642C3615223409DC9A7AE2856C8D
|
|
{
|
|
int32_t ___length;
|
|
Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* ___firstValue;
|
|
Action_1U5BU5D_tE4E06618063C3EF89781BEB4DF47D183654040E6* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_t90D679876AE3A52129F69F403ECC9AD16D60AD9F
|
|
{
|
|
int32_t ___length;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___firstValue;
|
|
Action_1U5BU5D_t9AF7A60AA589F7071315F3DA2F77CD32CB43FB5D* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_tDBC5F0DF958E1B039E704733260833948AED6995
|
|
{
|
|
int32_t ___length;
|
|
Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* ___firstValue;
|
|
Action_1U5BU5D_t0DC77ABC87566C75CD9F20B4F73420DC6A2CB5E3* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_tC208D319D19C2B3DF550BD9CDC11549F23D8F91B
|
|
{
|
|
int32_t ___length;
|
|
Action_1_tEB0353AA1A112B6F2D921B58DCC9D9D4C0498E6E* ___firstValue;
|
|
Action_1U5BU5D_tB846E6FE2326CCD34124D1E5D70117C9D33DEE76* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_t8DAE846007083ECA6BF13D4882896550F3632DB9
|
|
{
|
|
int32_t ___length;
|
|
Action_2_tD987B97B18D27B9920365359C46BC12702AD4F7D* ___firstValue;
|
|
Action_2U5BU5D_tAE1C0BBF3A3375CE5ECA001D472AF5BCFA316938* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_tD9FBC35CA4DF7F461E973BACD28939DCD9F95D84
|
|
{
|
|
int32_t ___length;
|
|
Action_2_t51C134DC0CD7F5ED5E83EE70AD1FE0FDFF6DDCCF* ___firstValue;
|
|
Action_2U5BU5D_t76318232107F3C32E9D6B055A413EBCBB02A30FA* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_t66B446915962ECC0D384842B4F4E81EC8296EC84
|
|
{
|
|
int32_t ___length;
|
|
Action_2_t9C4E97D0565650F0AEF7C72077EB8A0F9326E40B* ___firstValue;
|
|
Action_2U5BU5D_t08DE08A7C6B16A0D8F39E2B23A45796CD1D1C4D1* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_t02F98EA12C93F41D771B4B65613C8DDB5004019E
|
|
{
|
|
int32_t ___length;
|
|
Action_2_t1D42C7D8DCD2DEB7C556FB3783F0EDAFF694E5E8* ___firstValue;
|
|
Action_2U5BU5D_t91BC0D22B5FBF80722DC31149915DB78F807DD05* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_t94E83C92613F1D5D06A127062E35BBFCE254B192
|
|
{
|
|
int32_t ___length;
|
|
Func_2_t51E0796D1DBB8E902BF230CE88C097AAC81A799E* ___firstValue;
|
|
Func_2U5BU5D_tDB35E65A9494F01B98EB35389191829269F63BDA* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_tAA23DAFE19D55052647C09BB0770B8BE1E72A105
|
|
{
|
|
int32_t ___length;
|
|
Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0* ___firstValue;
|
|
Func_2U5BU5D_t6BC505CD1D60C2E1E663F707760ED776AD9076D5* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4
|
|
{
|
|
int32_t ___length;
|
|
RuntimeObject* ___firstValue;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___additionalValues;
|
|
};
|
|
struct Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28
|
|
{
|
|
bool ___hasValue;
|
|
int32_t ___value;
|
|
};
|
|
struct StyleDataRef_1_tBB9987581539847AE5CCA2EA2349E05CDC9127FA
|
|
{
|
|
RefCounted_t6B975CD3D06E8D955346FC0D66E8F6E449D49A44* ___m_Ref;
|
|
};
|
|
struct StyleDataRef_1_t5330A6F4EAC0EAB88E3B9849D866AA23BB6BE5F4
|
|
{
|
|
RefCounted_t0E133AD36715877AE1CE72539A0199B4D3AA8CD1* ___m_Ref;
|
|
};
|
|
struct StyleDataRef_1_tF773E9CBC6DC0FEB38DF95A6F3F47AC49AE045B3
|
|
{
|
|
RefCounted_t81BCBAE57D930C934CF7A439452D65303AC6A8CD* ___m_Ref;
|
|
};
|
|
struct StyleDataRef_1_t1D59CCAB740BE6B330D5B5FDA9F67391800200B3
|
|
{
|
|
RefCounted_t78303B1CD3D08C664ABB15EBD7C882DA3E06CF7D* ___m_Ref;
|
|
};
|
|
struct StyleDataRef_1_t6A7B146DD79EDF7F42CD8CCF3E411B40AA729B8E
|
|
{
|
|
RefCounted_tA9FB4D63A1064BD322AFDFCD70319CB384C057D9* ___m_Ref;
|
|
};
|
|
struct StyleDataRef_1_t9CB834B90E638D92A3BE5123B0D3989697AA87FC
|
|
{
|
|
RefCounted_t812D790A2C787F18230F9234F6C9B84D4AC1A85A* ___m_Ref;
|
|
};
|
|
typedef Il2CppFullySharedGenericStruct ValueTuple_3_t182F852EE39DD805E380FD93762C931C933ACE98;
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
|
|
{
|
|
bool ___m_value;
|
|
};
|
|
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
|
|
{
|
|
uint8_t ___m_value;
|
|
};
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
|
|
{
|
|
Il2CppChar ___m_value;
|
|
};
|
|
struct Color_tD001788D726C3A7F1379BEED0260B9591F440C1F
|
|
{
|
|
float ___r;
|
|
float ___g;
|
|
float ___b;
|
|
float ___a;
|
|
};
|
|
struct CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F
|
|
{
|
|
Type_t* ___U3CArgumentTypeU3Ek__BackingField;
|
|
RuntimeObject* ___U3CValueU3Ek__BackingField;
|
|
};
|
|
struct CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F_marshaled_pinvoke
|
|
{
|
|
Type_t* ___U3CArgumentTypeU3Ek__BackingField;
|
|
Il2CppIUnknown* ___U3CValueU3Ek__BackingField;
|
|
};
|
|
struct CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F_marshaled_com
|
|
{
|
|
Type_t* ___U3CArgumentTypeU3Ek__BackingField;
|
|
Il2CppIUnknown* ___U3CValueU3Ek__BackingField;
|
|
};
|
|
struct DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD
|
|
{
|
|
int32_t ___index;
|
|
int32_t ___version;
|
|
};
|
|
struct DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49
|
|
{
|
|
int32_t ___start;
|
|
int32_t ___end;
|
|
};
|
|
struct DiscreteTime_t0954C3B93A9A500A04D33E309649C1CD2780C41E
|
|
{
|
|
int64_t ___Value;
|
|
};
|
|
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
|
|
{
|
|
double ___m_value;
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
|
|
{
|
|
};
|
|
struct EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8
|
|
{
|
|
bool ___U3CwantsMouseMoveU3Ek__BackingField;
|
|
bool ___U3CwantsMouseEnterLeaveWindowU3Ek__BackingField;
|
|
bool ___U3CwantsLessLayoutEventsU3Ek__BackingField;
|
|
};
|
|
struct EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8_marshaled_pinvoke
|
|
{
|
|
int32_t ___U3CwantsMouseMoveU3Ek__BackingField;
|
|
int32_t ___U3CwantsMouseEnterLeaveWindowU3Ek__BackingField;
|
|
int32_t ___U3CwantsLessLayoutEventsU3Ek__BackingField;
|
|
};
|
|
struct EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8_marshaled_com
|
|
{
|
|
int32_t ___U3CwantsMouseMoveU3Ek__BackingField;
|
|
int32_t ___U3CwantsMouseEnterLeaveWindowU3Ek__BackingField;
|
|
int32_t ___U3CwantsLessLayoutEventsU3Ek__BackingField;
|
|
};
|
|
struct EventModifiers_t4B1B8EBE011383F2D6236E6B9F99AB156BCE35DD
|
|
{
|
|
uint32_t ____state;
|
|
};
|
|
struct Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0 : public CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4
|
|
{
|
|
bool ___m_Focusable;
|
|
int32_t ___m_TabIndex;
|
|
bool ___m_DelegatesFocus;
|
|
bool ___m_ExcludeFromFocusRing;
|
|
bool ___U3CisEligibleToReceiveFocusFromDisabledChildU3Ek__BackingField;
|
|
};
|
|
struct Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40
|
|
{
|
|
uint64_t ___u64_0;
|
|
uint64_t ___u64_1;
|
|
};
|
|
struct InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0
|
|
{
|
|
alignas(IL2CPP_SIZEOF_VOID_P) InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_EventPtr;
|
|
};
|
|
struct Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175
|
|
{
|
|
int16_t ___m_value;
|
|
};
|
|
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
|
|
{
|
|
int32_t ___m_value;
|
|
};
|
|
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
|
|
{
|
|
int64_t ___m_value;
|
|
};
|
|
struct IntPtr_t
|
|
{
|
|
void* ___m_value;
|
|
};
|
|
struct JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08
|
|
{
|
|
uint64_t ___jobGroup;
|
|
int32_t ___version;
|
|
};
|
|
struct LayoutHandle_tCFE060947B4EDC8F11BF5B480181493FB578BEB6
|
|
{
|
|
int32_t ___Index;
|
|
int32_t ___Version;
|
|
};
|
|
struct Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6
|
|
{
|
|
float ___m00;
|
|
float ___m10;
|
|
float ___m20;
|
|
float ___m30;
|
|
float ___m01;
|
|
float ___m11;
|
|
float ___m21;
|
|
float ___m31;
|
|
float ___m02;
|
|
float ___m12;
|
|
float ___m22;
|
|
float ___m32;
|
|
float ___m03;
|
|
float ___m13;
|
|
float ___m23;
|
|
float ___m33;
|
|
};
|
|
struct PropertyName_tE4B4AAA58AF3BF2C0CD95509EB7B786F096901C2
|
|
{
|
|
int32_t ___id;
|
|
};
|
|
struct Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
float ___w;
|
|
};
|
|
struct Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D
|
|
{
|
|
float ___m_XMin;
|
|
float ___m_YMin;
|
|
float ___m_Width;
|
|
float ___m_Height;
|
|
};
|
|
struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5
|
|
{
|
|
int8_t ___m_value;
|
|
};
|
|
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
|
|
{
|
|
float ___m_value;
|
|
};
|
|
struct TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D
|
|
{
|
|
Dictionary_2_tA032486828C79558DA19404156CC68269F719C41* ___m_Converters;
|
|
};
|
|
struct TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_marshaled_pinvoke
|
|
{
|
|
Dictionary_2_tA032486828C79558DA19404156CC68269F719C41* ___m_Converters;
|
|
};
|
|
struct TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_marshaled_com
|
|
{
|
|
Dictionary_2_tA032486828C79558DA19404156CC68269F719C41* ___m_Converters;
|
|
};
|
|
struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
|
|
{
|
|
uint16_t ___m_value;
|
|
};
|
|
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
|
|
{
|
|
uint32_t ___m_value;
|
|
};
|
|
struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
|
|
{
|
|
uint64_t ___m_value;
|
|
};
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
};
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
};
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
|
};
|
|
};
|
|
struct float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
};
|
|
struct float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
};
|
|
struct float4_t89D9A294E7A79BD81BFBDD18654508532958555E
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
float ___w;
|
|
};
|
|
struct UintKeyGetter_tA42A60857A313F21755ED561D57B21FAF9750DD8
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t UintKeyGetter_tA42A60857A313F21755ED561D57B21FAF9750DD8__padding[1];
|
|
};
|
|
};
|
|
struct UlongKeyGetter_t7A83E03588BDDB856F8A6AF8E2172EC7C3CF99D5
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t UlongKeyGetter_t7A83E03588BDDB856F8A6AF8E2172EC7C3CF99D5__padding[1];
|
|
};
|
|
};
|
|
struct CallbackContext_tB251EE41F509C6E8A6B05EC97C029A45DF4F5FA8
|
|
{
|
|
InputActionState_t780948EA293BAA800AD8699518B58B59FFB8A700* ___m_State;
|
|
int32_t ___m_ActionIndex;
|
|
};
|
|
struct CallbackContext_tB251EE41F509C6E8A6B05EC97C029A45DF4F5FA8_marshaled_pinvoke
|
|
{
|
|
InputActionState_t780948EA293BAA800AD8699518B58B59FFB8A700* ___m_State;
|
|
int32_t ___m_ActionIndex;
|
|
};
|
|
struct CallbackContext_tB251EE41F509C6E8A6B05EC97C029A45DF4F5FA8_marshaled_com
|
|
{
|
|
InputActionState_t780948EA293BAA800AD8699518B58B59FFB8A700* ___m_State;
|
|
int32_t ___m_ActionIndex;
|
|
};
|
|
struct ButtonsState_tC596C9B742AF4FDB4D32B05551EEDB23D243E996
|
|
{
|
|
uint32_t ____state;
|
|
};
|
|
struct Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Owner;
|
|
};
|
|
struct Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677_marshaled_pinvoke
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Owner;
|
|
};
|
|
struct Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677_marshaled_com
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Owner;
|
|
};
|
|
struct CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_tC5A6273BF5A8642C3615223409DC9A7AE2856C8D ___m_Callbacks;
|
|
InlinedArray_1_tC5A6273BF5A8642C3615223409DC9A7AE2856C8D ___m_CallbacksToAdd;
|
|
InlinedArray_1_tC5A6273BF5A8642C3615223409DC9A7AE2856C8D ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_t90D679876AE3A52129F69F403ECC9AD16D60AD9F ___m_Callbacks;
|
|
InlinedArray_1_t90D679876AE3A52129F69F403ECC9AD16D60AD9F ___m_CallbacksToAdd;
|
|
InlinedArray_1_t90D679876AE3A52129F69F403ECC9AD16D60AD9F ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_tBC884080A926B345EE8B5A52690527C349E487EB
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_tDBC5F0DF958E1B039E704733260833948AED6995 ___m_Callbacks;
|
|
InlinedArray_1_tDBC5F0DF958E1B039E704733260833948AED6995 ___m_CallbacksToAdd;
|
|
InlinedArray_1_tDBC5F0DF958E1B039E704733260833948AED6995 ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_tDFF8C4C6015023B6C2E70BAD26D8BC6BF00D8775
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_tC208D319D19C2B3DF550BD9CDC11549F23D8F91B ___m_Callbacks;
|
|
InlinedArray_1_tC208D319D19C2B3DF550BD9CDC11549F23D8F91B ___m_CallbacksToAdd;
|
|
InlinedArray_1_tC208D319D19C2B3DF550BD9CDC11549F23D8F91B ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_tCF297A9E4DEDF9CF4C396E9C986D418FDA53FB2A
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_t8DAE846007083ECA6BF13D4882896550F3632DB9 ___m_Callbacks;
|
|
InlinedArray_1_t8DAE846007083ECA6BF13D4882896550F3632DB9 ___m_CallbacksToAdd;
|
|
InlinedArray_1_t8DAE846007083ECA6BF13D4882896550F3632DB9 ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_t270AB3EEC7FF7B8E211305E1BC7311F2177FCBB2
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_tD9FBC35CA4DF7F461E973BACD28939DCD9F95D84 ___m_Callbacks;
|
|
InlinedArray_1_tD9FBC35CA4DF7F461E973BACD28939DCD9F95D84 ___m_CallbacksToAdd;
|
|
InlinedArray_1_tD9FBC35CA4DF7F461E973BACD28939DCD9F95D84 ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_t728037423B0E59AED45A54BD4669276E085A3A43
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_t66B446915962ECC0D384842B4F4E81EC8296EC84 ___m_Callbacks;
|
|
InlinedArray_1_t66B446915962ECC0D384842B4F4E81EC8296EC84 ___m_CallbacksToAdd;
|
|
InlinedArray_1_t66B446915962ECC0D384842B4F4E81EC8296EC84 ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_tD603F6092E40EF5866778E31C3A05B7F9BC49B62
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_t02F98EA12C93F41D771B4B65613C8DDB5004019E ___m_Callbacks;
|
|
InlinedArray_1_t02F98EA12C93F41D771B4B65613C8DDB5004019E ___m_CallbacksToAdd;
|
|
InlinedArray_1_t02F98EA12C93F41D771B4B65613C8DDB5004019E ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_t2E174CB79621C0FE4D9B251399BF80124E7FA05F
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_t94E83C92613F1D5D06A127062E35BBFCE254B192 ___m_Callbacks;
|
|
InlinedArray_1_t94E83C92613F1D5D06A127062E35BBFCE254B192 ___m_CallbacksToAdd;
|
|
InlinedArray_1_t94E83C92613F1D5D06A127062E35BBFCE254B192 ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_t1DE66A9CA012FC33E24057D6F82BD8DF1FD85D36
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_tAA23DAFE19D55052647C09BB0770B8BE1E72A105 ___m_Callbacks;
|
|
InlinedArray_1_tAA23DAFE19D55052647C09BB0770B8BE1E72A105 ___m_CallbacksToAdd;
|
|
InlinedArray_1_tAA23DAFE19D55052647C09BB0770B8BE1E72A105 ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_t70C9B62D06582BEAC403C9259B541A2D8D4B4A1F
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4 ___m_Callbacks;
|
|
InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4 ___m_CallbacksToAdd;
|
|
InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4 ___m_CallbacksToRemove;
|
|
};
|
|
struct ValueTuple_3_tAA71DEC7929DC7293495D596B729346091A4CC33
|
|
{
|
|
Func_4_t3BDE3CA92565203F02E9E075D380C15E3C5964EE* ___Item1;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___Item2;
|
|
RuntimeObject* ___Item3;
|
|
};
|
|
typedef Il2CppFullySharedGenericStruct ValueTuple_3_t281F811FD3C50D75BEECE4EE3B96B099CA209E69;
|
|
struct ValueTuple_3_tD815A2B59927FD0A0A8BC994BDDF93E1997053C4
|
|
{
|
|
RuntimeObject* ___Item1;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___Item2;
|
|
RuntimeObject* ___Item3;
|
|
};
|
|
struct Allocator_t996642592271AAD9EE688F142741D512C07B5824
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct BindingMode_t14EA605BB56B087ECA15C8BF7826E98F12D30E61
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct BindingStatus_t72E69C73FEA899A1FE65BCA04E6B79E30157EB43
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct BindingUpdateTrigger_t5237F1E29F5B5604BB57907C83EE6B1CFA261234
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___position;
|
|
float ___radius;
|
|
};
|
|
struct ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C
|
|
{
|
|
StyleDataRef_1_tBB9987581539847AE5CCA2EA2349E05CDC9127FA ___inheritedData;
|
|
StyleDataRef_1_t5330A6F4EAC0EAB88E3B9849D866AA23BB6BE5F4 ___layoutData;
|
|
StyleDataRef_1_tF773E9CBC6DC0FEB38DF95A6F3F47AC49AE045B3 ___rareData;
|
|
StyleDataRef_1_t1D59CCAB740BE6B330D5B5FDA9F67391800200B3 ___transformData;
|
|
StyleDataRef_1_t6A7B146DD79EDF7F42CD8CCF3E411B40AA729B8E ___transitionData;
|
|
StyleDataRef_1_t9CB834B90E638D92A3BE5123B0D3989697AA87FC ___visualData;
|
|
Dictionary_2_t645C7B1DAE2D839B52A5E387C165CE13D5465B00* ___customProperties;
|
|
int64_t ___matchingRulesHash;
|
|
float ___dpiScaling;
|
|
ComputedTransitionPropertyU5BU5D_t25B9E78F5276CDA297C8215C316452CAB8219E82* ___computedTransitions;
|
|
};
|
|
struct ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C_marshaled_pinvoke
|
|
{
|
|
StyleDataRef_1_tBB9987581539847AE5CCA2EA2349E05CDC9127FA ___inheritedData;
|
|
StyleDataRef_1_t5330A6F4EAC0EAB88E3B9849D866AA23BB6BE5F4 ___layoutData;
|
|
StyleDataRef_1_tF773E9CBC6DC0FEB38DF95A6F3F47AC49AE045B3 ___rareData;
|
|
StyleDataRef_1_t1D59CCAB740BE6B330D5B5FDA9F67391800200B3 ___transformData;
|
|
StyleDataRef_1_t6A7B146DD79EDF7F42CD8CCF3E411B40AA729B8E ___transitionData;
|
|
StyleDataRef_1_t9CB834B90E638D92A3BE5123B0D3989697AA87FC ___visualData;
|
|
Dictionary_2_t645C7B1DAE2D839B52A5E387C165CE13D5465B00* ___customProperties;
|
|
int64_t ___matchingRulesHash;
|
|
float ___dpiScaling;
|
|
ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_pinvoke* ___computedTransitions;
|
|
};
|
|
struct ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C_marshaled_com
|
|
{
|
|
StyleDataRef_1_tBB9987581539847AE5CCA2EA2349E05CDC9127FA ___inheritedData;
|
|
StyleDataRef_1_t5330A6F4EAC0EAB88E3B9849D866AA23BB6BE5F4 ___layoutData;
|
|
StyleDataRef_1_tF773E9CBC6DC0FEB38DF95A6F3F47AC49AE045B3 ___rareData;
|
|
StyleDataRef_1_t1D59CCAB740BE6B330D5B5FDA9F67391800200B3 ___transformData;
|
|
StyleDataRef_1_t6A7B146DD79EDF7F42CD8CCF3E411B40AA729B8E ___transitionData;
|
|
StyleDataRef_1_t9CB834B90E638D92A3BE5123B0D3989697AA87FC ___visualData;
|
|
Dictionary_2_t645C7B1DAE2D839B52A5E387C165CE13D5465B00* ___customProperties;
|
|
int64_t ___matchingRulesHash;
|
|
float ___dpiScaling;
|
|
ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_com* ___computedTransitions;
|
|
};
|
|
struct ContextType_t50FAC10DB1D4E29B37E532DED9CAA804FC4E59A0
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A : public RuntimeObject
|
|
{
|
|
String_t* ___U3CidU3Ek__BackingField;
|
|
String_t* ___U3CdisplayNameU3Ek__BackingField;
|
|
String_t* ___U3CdescriptionU3Ek__BackingField;
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D ___U3CregistryU3Ek__BackingField;
|
|
};
|
|
struct CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267
|
|
{
|
|
intptr_t ___ptr;
|
|
CullingAllocationInfo_tB260F5CD0B290F74E145EB16E54B901CC68D9D5A* ___m_AllocationInfo;
|
|
};
|
|
struct CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02
|
|
{
|
|
CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F ___U3CTypedValueU3Ek__BackingField;
|
|
bool ___U3CIsFieldU3Ek__BackingField;
|
|
String_t* ___U3CMemberNameU3Ek__BackingField;
|
|
Type_t* ____attributeType;
|
|
MemberInfo_t* ____lazyMemberInfo;
|
|
};
|
|
struct CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02_marshaled_pinvoke
|
|
{
|
|
CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F_marshaled_pinvoke ___U3CTypedValueU3Ek__BackingField;
|
|
int32_t ___U3CIsFieldU3Ek__BackingField;
|
|
char* ___U3CMemberNameU3Ek__BackingField;
|
|
Type_t* ____attributeType;
|
|
MemberInfo_t* ____lazyMemberInfo;
|
|
};
|
|
struct CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02_marshaled_com
|
|
{
|
|
CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F_marshaled_com ___U3CTypedValueU3Ek__BackingField;
|
|
int32_t ___U3CIsFieldU3Ek__BackingField;
|
|
Il2CppChar* ___U3CMemberNameU3Ek__BackingField;
|
|
Type_t* ____attributeType;
|
|
MemberInfo_t* ____lazyMemberInfo;
|
|
};
|
|
struct DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA : public RuntimeObject
|
|
{
|
|
int32_t ___U3CcountU3Ek__BackingField;
|
|
int32_t ___U3CcapacityU3Ek__BackingField;
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 ___U3CcurrentJobHandleU3Ek__BackingField;
|
|
};
|
|
struct Delegate_t : public RuntimeObject
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
RuntimeObject* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
bool ___method_is_virtual;
|
|
};
|
|
struct Delegate_t_marshaled_pinvoke
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
Il2CppIUnknown* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
int32_t ___method_is_virtual;
|
|
};
|
|
struct Delegate_t_marshaled_com
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
Il2CppIUnknown* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
int32_t ___method_is_virtual;
|
|
};
|
|
struct EventModifiers_t48244B043FBB42CDD555C6AC43279EC7158777AC
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct EventSource_t395F7AD9932CE73777C8DB122DE6638A61AAA07E
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Exception_t : public RuntimeObject
|
|
{
|
|
String_t* ____className;
|
|
String_t* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t* ____innerException;
|
|
String_t* ____helpURL;
|
|
RuntimeObject* ____stackTrace;
|
|
String_t* ____stackTraceString;
|
|
String_t* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
RuntimeObject* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
String_t* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct Exception_t_marshaled_pinvoke
|
|
{
|
|
char* ____className;
|
|
char* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t_marshaled_pinvoke* ____innerException;
|
|
char* ____helpURL;
|
|
Il2CppIUnknown* ____stackTrace;
|
|
char* ____stackTraceString;
|
|
char* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
Il2CppIUnknown* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
char* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
Il2CppSafeArray* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct Exception_t_marshaled_com
|
|
{
|
|
Il2CppChar* ____className;
|
|
Il2CppChar* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t_marshaled_com* ____innerException;
|
|
Il2CppChar* ____helpURL;
|
|
Il2CppIUnknown* ____stackTrace;
|
|
Il2CppChar* ____stackTraceString;
|
|
Il2CppChar* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
Il2CppIUnknown* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
Il2CppChar* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
Il2CppSafeArray* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct Int32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct LanguageDirection_t30A3B6BBCEE6A6F57641E4E008E0DCC40603558C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
|
|
{
|
|
intptr_t ___m_CachedPtr;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_CachedPtr;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
|
|
{
|
|
intptr_t ___m_CachedPtr;
|
|
};
|
|
struct PanelClearSettings_tA3D8EE9A4864781CE3E5FED5225C6FB37ED66EE7
|
|
{
|
|
bool ___clearDepthStencil;
|
|
bool ___clearColor;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color;
|
|
};
|
|
struct PanelClearSettings_tA3D8EE9A4864781CE3E5FED5225C6FB37ED66EE7_marshaled_pinvoke
|
|
{
|
|
int32_t ___clearDepthStencil;
|
|
int32_t ___clearColor;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color;
|
|
};
|
|
struct PanelClearSettings_tA3D8EE9A4864781CE3E5FED5225C6FB37ED66EE7_marshaled_com
|
|
{
|
|
int32_t ___clearDepthStencil;
|
|
int32_t ___clearColor;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color;
|
|
};
|
|
struct PenEventType_t74D209AD8F86E35F8B5B6030115FC21FE9A322F5
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct PenStatus_tCAD6543115EF443E17410B52D37EC67BCC88ABB8
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct PickingMode_t5699BF9E5F2587E0D297984D5BF5B63B768E66AC
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
};
|
|
struct PropagationPhase_tF3BE8BF5ED45FC52A828B7B6F078B64F01FAE6D6
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct PropertyPathPartKind_t82152825D88A0E450DDCE8503272A10595047F87
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct PseudoStates_tF4AB056E8743741BCE464A0983A060A53AAB7E4D
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Origin;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Direction;
|
|
};
|
|
struct RenderHints_t4032FC4AB3FD946FD2A484865B8861730D9035E7
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
|
|
{
|
|
intptr_t ___value;
|
|
};
|
|
struct TouchPhase_t54E0A1AF80465997849420A72317B733E1D49A9E
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A : public RuntimeObject
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
};
|
|
struct TouchScreenKeyboardType_t3F5A06315B263282460BE67DE01393B6FB3780C1
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct TouchType_t84F82C73BC1A6012141735AD84DA67AA7F7AB43F
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct VisitReturnCode_t795FEB928E847C526F470080AA94B33FAC60BC75
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct VisualElementFlags_t4D1066E11400967A1A2DA7331391ACDC4AA14409
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2
|
|
{
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___c0;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___c1;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___c2;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___c3;
|
|
};
|
|
struct quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4
|
|
{
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___value;
|
|
};
|
|
struct Flags_tBBD3C554E9057BB9AC0476F92D0328575F2C4193
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct EventPropagation_t024AF56F7A787C03AA21B065B624553EF52E7B83
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct LifeCycleStatus_tEE500629F5431B574B8047EB70864747D348D38C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Button_tA3E7AF5F245F630CB38476BAB013B509F53B35B8
|
|
{
|
|
uint32_t ___value__;
|
|
};
|
|
struct Type_tAD126B1DC1FD450FB4C782B18131374A55C28858
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t83F02282C33BAD818D67110F7760483208880311
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_tE0DCAF7ED58915BC160F767E310F0F0A55B6BC75
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t71485A1E60B31CCAD3E525C907CF172E8B804468
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t3CC4179AFF43449D3539816D3EE4D2D69B6022E8
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct ValueTuple_2_t00940F333D00C8F1D5D9E7B80A81F8DCCE9908FC
|
|
{
|
|
int32_t ___Item1;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___Item2;
|
|
};
|
|
struct ValueTuple_2_t84554798B99CE8D7914B5585AE53CEE950F43CE6
|
|
{
|
|
int32_t ___Item1;
|
|
Il2CppChar ___Item2;
|
|
};
|
|
struct ValueTuple_2_t9270F8474E554C7C106A7F7DE4F0D15C12802EAB
|
|
{
|
|
int32_t ___Item1;
|
|
int32_t ___Item2;
|
|
};
|
|
struct ValueTuple_2_t85FD60472857DFEA88086C45948C596619D3CA21
|
|
{
|
|
int32_t ___Item1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___Item2;
|
|
};
|
|
struct ValueTuple_3_t221FA8EA322AE1156326997DEA4F6D24BF1E5243
|
|
{
|
|
int32_t ___Item1;
|
|
int32_t ___Item2;
|
|
int32_t ___Item3;
|
|
};
|
|
struct ValueTuple_3_t90CF2FEF2703459E904C84694EEECB64D3F220C1
|
|
{
|
|
int32_t ___Item1;
|
|
int32_t ___Item2;
|
|
RuntimeObject* ___Item3;
|
|
};
|
|
struct ValueTuple_3_t1214F2A1CCE3F3DE3E2DA1E6EC57E2DFEE17E613
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___Item1;
|
|
int32_t ___Item2;
|
|
int32_t ___Item3;
|
|
};
|
|
struct ValueTuple_4_tEC98A0C80E3AD3740A1A365E6A6F25E9CC2FAAE7
|
|
{
|
|
int32_t ___Item1;
|
|
int32_t ___Item2;
|
|
int32_t ___Item3;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___Item4;
|
|
};
|
|
struct Binding_tA1358A155852138C1926082E4F3245B6F631CBED : public RuntimeObject
|
|
{
|
|
bool ___m_Dirty;
|
|
int32_t ___m_UpdateTrigger;
|
|
String_t* ___U3CpropertyU3Ek__BackingField;
|
|
};
|
|
struct BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB
|
|
{
|
|
int32_t ___U3CstatusU3Ek__BackingField;
|
|
String_t* ___U3CmessageU3Ek__BackingField;
|
|
};
|
|
struct BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB_marshaled_pinvoke
|
|
{
|
|
int32_t ___U3CstatusU3Ek__BackingField;
|
|
char* ___U3CmessageU3Ek__BackingField;
|
|
};
|
|
struct BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB_marshaled_com
|
|
{
|
|
int32_t ___U3CstatusU3Ek__BackingField;
|
|
Il2CppChar* ___U3CmessageU3Ek__BackingField;
|
|
};
|
|
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C : public RuntimeObject
|
|
{
|
|
int32_t ___U3CeventCategoriesU3Ek__BackingField;
|
|
int64_t ___U3CtimestampU3Ek__BackingField;
|
|
uint64_t ___U3CeventIdU3Ek__BackingField;
|
|
uint64_t ___U3CtriggerEventIdU3Ek__BackingField;
|
|
int32_t ___U3CpropagationU3Ek__BackingField;
|
|
int32_t ___U3ClifeCycleStatusU3Ek__BackingField;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___U3CelementTargetU3Ek__BackingField;
|
|
int32_t ___U3CpropagationPhaseU3Ek__BackingField;
|
|
RuntimeObject* ___m_CurrentTarget;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___m_ImguiEvent;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CoriginalMousePositionU3Ek__BackingField;
|
|
};
|
|
struct LayoutDataStore_tE59A593CD73517DDC7C117B293E7C2C6F17DC364
|
|
{
|
|
int32_t ___m_Allocator;
|
|
Data_t43E3238277579E631EA4E8016E61966D79F5B62E* ___m_Data;
|
|
};
|
|
struct MulticastDelegate_t : public Delegate_t
|
|
{
|
|
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates;
|
|
};
|
|
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
|
|
{
|
|
Delegate_t_marshaled_pinvoke** ___delegates;
|
|
};
|
|
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
|
|
{
|
|
Delegate_t_marshaled_com** ___delegates;
|
|
};
|
|
struct PenData_t2345B5FBD18D851528C5C18F8A667D4EF4690945
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___tilt;
|
|
int32_t ___penStatus;
|
|
float ___twist;
|
|
float ___pressure;
|
|
int32_t ___contactType;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___deltaPos;
|
|
};
|
|
struct PointerEvent_tC25A522EBDFCAF2CDEEE1D70428C281F78C1FA05
|
|
{
|
|
int32_t ___type;
|
|
int32_t ___pointerIndex;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___deltaPosition;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldPosition;
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___worldOrientation;
|
|
float ___maxDistance;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___scroll;
|
|
int32_t ___displayIndex;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___tilt;
|
|
float ___twist;
|
|
float ___pressure;
|
|
bool ___isInverted;
|
|
uint32_t ___button;
|
|
ButtonsState_tC596C9B742AF4FDB4D32B05551EEDB23D243E996 ___buttonsState;
|
|
int32_t ___clickCount;
|
|
DiscreteTime_t0954C3B93A9A500A04D33E309649C1CD2780C41E ___U3CtimestampU3Ek__BackingField;
|
|
int32_t ___U3CeventSourceU3Ek__BackingField;
|
|
uint32_t ___U3CplayerIdU3Ek__BackingField;
|
|
EventModifiers_t4B1B8EBE011383F2D6236E6B9F99AB156BCE35DD ___U3CeventModifiersU3Ek__BackingField;
|
|
};
|
|
struct PointerEvent_tC25A522EBDFCAF2CDEEE1D70428C281F78C1FA05_marshaled_pinvoke
|
|
{
|
|
int32_t ___type;
|
|
int32_t ___pointerIndex;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___deltaPosition;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldPosition;
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___worldOrientation;
|
|
float ___maxDistance;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___scroll;
|
|
int32_t ___displayIndex;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___tilt;
|
|
float ___twist;
|
|
float ___pressure;
|
|
int32_t ___isInverted;
|
|
uint32_t ___button;
|
|
ButtonsState_tC596C9B742AF4FDB4D32B05551EEDB23D243E996 ___buttonsState;
|
|
int32_t ___clickCount;
|
|
DiscreteTime_t0954C3B93A9A500A04D33E309649C1CD2780C41E ___U3CtimestampU3Ek__BackingField;
|
|
int32_t ___U3CeventSourceU3Ek__BackingField;
|
|
uint32_t ___U3CplayerIdU3Ek__BackingField;
|
|
EventModifiers_t4B1B8EBE011383F2D6236E6B9F99AB156BCE35DD ___U3CeventModifiersU3Ek__BackingField;
|
|
};
|
|
struct PointerEvent_tC25A522EBDFCAF2CDEEE1D70428C281F78C1FA05_marshaled_com
|
|
{
|
|
int32_t ___type;
|
|
int32_t ___pointerIndex;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___deltaPosition;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldPosition;
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___worldOrientation;
|
|
float ___maxDistance;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___scroll;
|
|
int32_t ___displayIndex;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___tilt;
|
|
float ___twist;
|
|
float ___pressure;
|
|
int32_t ___isInverted;
|
|
uint32_t ___button;
|
|
ButtonsState_tC596C9B742AF4FDB4D32B05551EEDB23D243E996 ___buttonsState;
|
|
int32_t ___clickCount;
|
|
DiscreteTime_t0954C3B93A9A500A04D33E309649C1CD2780C41E ___U3CtimestampU3Ek__BackingField;
|
|
int32_t ___U3CeventSourceU3Ek__BackingField;
|
|
uint32_t ___U3CplayerIdU3Ek__BackingField;
|
|
EventModifiers_t4B1B8EBE011383F2D6236E6B9F99AB156BCE35DD ___U3CeventModifiersU3Ek__BackingField;
|
|
};
|
|
struct PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF
|
|
{
|
|
int32_t ___m_Kind;
|
|
String_t* ___m_Name;
|
|
int32_t ___m_Index;
|
|
RuntimeObject* ___m_Key;
|
|
};
|
|
struct PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_Kind;
|
|
char* ___m_Name;
|
|
int32_t ___m_Index;
|
|
Il2CppIUnknown* ___m_Key;
|
|
};
|
|
struct PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com
|
|
{
|
|
int32_t ___m_Kind;
|
|
Il2CppChar* ___m_Name;
|
|
int32_t ___m_Index;
|
|
Il2CppIUnknown* ___m_Key;
|
|
};
|
|
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
|
{
|
|
};
|
|
struct TextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct Touch_t03E51455ED508492B3F278903A0114FA0E87B417
|
|
{
|
|
int32_t ___m_FingerId;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Position;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_RawPosition;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_PositionDelta;
|
|
float ___m_TimeDelta;
|
|
int32_t ___m_TapCount;
|
|
int32_t ___m_Phase;
|
|
int32_t ___m_Type;
|
|
float ___m_Pressure;
|
|
float ___m_maximumPossiblePressure;
|
|
float ___m_Radius;
|
|
float ___m_RadiusVariance;
|
|
float ___m_AltitudeAngle;
|
|
float ___m_AzimuthAngle;
|
|
};
|
|
struct Type_t : public MemberInfo_t
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl;
|
|
};
|
|
struct Widget_tE8D6AF1D7525CC84E8F2C3B73162016736A6A2FF : public RuntimeObject
|
|
{
|
|
int32_t ___U3CorderU3Ek__BackingField;
|
|
Panel_t3A0D2006E8AEA607A6DF5188138E463A26085295* ___m_Panel;
|
|
RuntimeObject* ___m_Parent;
|
|
int32_t ___U3CflagsU3Ek__BackingField;
|
|
String_t* ___U3CdisplayNameU3Ek__BackingField;
|
|
String_t* ___U3CtooltipU3Ek__BackingField;
|
|
String_t* ___U3CqueryPathU3Ek__BackingField;
|
|
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* ___isHiddenCallback;
|
|
};
|
|
struct Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_tEB0353AA1A112B6F2D921B58DCC9D9D4C0498E6E : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_tD987B97B18D27B9920365359C46BC12702AD4F7D : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_t51C134DC0CD7F5ED5E83EE70AD1FE0FDFF6DDCCF : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_t9C4E97D0565650F0AEF7C72077EB8A0F9326E40B : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_t1D42C7D8DCD2DEB7C556FB3783F0EDAFF694E5E8 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventBase_1_t2B9B970022841F58172C0C783B7E1040BEF85AC1 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
int32_t ___m_RefCount;
|
|
};
|
|
struct EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
int32_t ___m_RefCount;
|
|
};
|
|
struct Func_2_tEC8651D2749456D39806A8151756C8D4E376386F : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t76D5132C86AC7B01299890F023D78FAE8F9D1A64 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tE29FFE46D694921A593EEFB32E4877D75994CC75 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t6F0DEE2A7ADE56265ED0100E7DF77076E5FDB85C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t2E586245AEB77072D7227BD6AF2907CB9524227A : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t9E220F4AC78324D7D0D25DA747A006808EB3FCCD : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tB5123A698CF2F0D326B1441BFFD2D1F46F29231D : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tD7D2844A071B5C6280BB6380EFE3896CC538B77E : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tAB47C3D2B1DBDEAB988B0994E8D6B702514D18F7 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tC50964E0E1320D21A73671534F60C1C2013148E5 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tC33A67D9939EA70F5967CC0D7E5A50AF0E530302 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tB8444326CD91502B291E0988F04448A82D0F6552 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t615C91B75B6D7B4E70D5080F4EE82DFCD6B6B069 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tACBF5A1656250800CE861707354491F0611F6624 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t51E0796D1DBB8E902BF230CE88C097AAC81A799E : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t387AD3722EB0E22243BF0C62E63A64376031C305 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tF4070BC973E64BF78AE4C9340BFC70326C962EB5 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t06ED4EB071C5BB0024319BE1F60C308E1DAA9CC5 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t25A788C45878510857F0D5339F041D8B9FFB0DF7 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tAFE936B287B527454DD2220949C128C7BDA3400E : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t99E62D3154E1A6700E41EB034D8657E7F57A6572 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_4_t3B79C154D00A796C783C567CC587F09CD8926B19 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_4_t27E1E57CC45284A3365ADDD73218A4B7FBE8A41A : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_4_t647B1DCE59688F2956CCB8CCE5AD15BE3188D601 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_4_t3BDE3CA92565203F02E9E075D380C15E3C5964EE : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_4_t46812CB64A120A31977C87BC4A822A947B5C44A5 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_4_t222F7B044E23AD55E5A23F7A86BA3CF128947094 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct TypeConverter_2_t370B4F69ADC2867DC21BE14FA947E12DD9BD0462 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct TypeConverter_2_tBB893836100D5BA5086C7F2638C9D63D6FC61559 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct TypeConverter_2_tB736BA63BC9F9885972433F0B1D7232E2AAE0585 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct TypeConverter_2_tA07ADAC5ACD7A76F41C95586D89B438C04D44409 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct TypeConverter_2_t794BDD9B9C3A12BF490C7710C609706E72EDABCD : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct TypeConverter_2_tA6276E0BDB8DB9E3B10AF0C31301ACC071589845 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ValueTuple_3_tC96A183958B632D9F0A499D281BC205C751884EB
|
|
{
|
|
Func_4_t3B79C154D00A796C783C567CC587F09CD8926B19* ___Item1;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___Item2;
|
|
ValueTuple_2_t00940F333D00C8F1D5D9E7B80A81F8DCCE9908FC ___Item3;
|
|
};
|
|
struct ValueTuple_3_t38EEEA492A2177FB74F091CFF8611128B4254088
|
|
{
|
|
Func_4_t27E1E57CC45284A3365ADDD73218A4B7FBE8A41A* ___Item1;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___Item2;
|
|
ValueTuple_2_t85FD60472857DFEA88086C45948C596619D3CA21 ___Item3;
|
|
};
|
|
struct ValueTuple_3_t617DC2E57CFF0ED9D93D25C3DE1080924BAB5FD5
|
|
{
|
|
Func_4_t647B1DCE59688F2956CCB8CCE5AD15BE3188D601* ___Item1;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___Item2;
|
|
ValueTuple_4_tEC98A0C80E3AD3740A1A365E6A6F25E9CC2FAAE7 ___Item3;
|
|
};
|
|
struct ValueTuple_3_tFA1D0F0223CD390EF58965CD27B066DD658BB426
|
|
{
|
|
Func_4_t46812CB64A120A31977C87BC4A822A947B5C44A5* ___Item1;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___Item2;
|
|
PenData_t2345B5FBD18D851528C5C18F8A667D4EF4690945 ___Item3;
|
|
};
|
|
struct ValueTuple_3_t0830D9C281DA2A9A8B1564AB60C647F6DA504260
|
|
{
|
|
RuntimeObject* ___Item1;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___Item2;
|
|
ValueTuple_2_t00940F333D00C8F1D5D9E7B80A81F8DCCE9908FC ___Item3;
|
|
};
|
|
struct ValueTuple_3_t5955F42FF36506750DBDF6E15B988AC705ACCEC6
|
|
{
|
|
RuntimeObject* ___Item1;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___Item2;
|
|
ValueTuple_2_t85FD60472857DFEA88086C45948C596619D3CA21 ___Item3;
|
|
};
|
|
struct ValueTuple_3_tC8BBB30E9E4977D3D5D3D770C29BC7D26F8D7340
|
|
{
|
|
RuntimeObject* ___Item1;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___Item2;
|
|
ValueTuple_4_tEC98A0C80E3AD3740A1A365E6A6F25E9CC2FAAE7 ___Item3;
|
|
};
|
|
struct ValueTuple_3_t2C125774ADD00599458B6333E72F7533D3866597
|
|
{
|
|
RuntimeObject* ___Item1;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___Item2;
|
|
PenData_t2345B5FBD18D851528C5C18F8A667D4EF4690945 ___Item3;
|
|
};
|
|
struct ValueTuple_3_t7710F86A623C8F578E76B4EAC47B05AA6EFE7B64
|
|
{
|
|
PointerEvent_tC25A522EBDFCAF2CDEEE1D70428C281F78C1FA05 ___Item1;
|
|
int32_t ___Item2;
|
|
float ___Item3;
|
|
};
|
|
struct ValueTuple_3_t083FB9C32ED0C25542A5131205E7A8A0B87F1D15
|
|
{
|
|
Touch_t03E51455ED508492B3F278903A0114FA0E87B417 ___Item1;
|
|
int32_t ___Item2;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___Item3;
|
|
};
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
String_t* ____paramName;
|
|
};
|
|
struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
|
|
{
|
|
};
|
|
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct LayoutDataAccess_t99AA56349D0BC76F3742B927F4F0DDB21511FBBA
|
|
{
|
|
int32_t ___m_Manager;
|
|
LayoutDataStore_tE59A593CD73517DDC7C117B293E7C2C6F17DC364 ___m_Nodes;
|
|
LayoutDataStore_tE59A593CD73517DDC7C117B293E7C2C6F17DC364 ___m_Configs;
|
|
};
|
|
struct PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79
|
|
{
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF ___m_Part0;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF ___m_Part1;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF ___m_Part2;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF ___m_Part3;
|
|
PropertyPathPartU5BU5D_t7994D542F14DDDDEABB1792C335C20149399AEBB* ___m_AdditionalParts;
|
|
int32_t ___U3CLengthU3Ek__BackingField;
|
|
};
|
|
struct PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79_marshaled_pinvoke
|
|
{
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke ___m_Part0;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke ___m_Part1;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke ___m_Part2;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke ___m_Part3;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke* ___m_AdditionalParts;
|
|
int32_t ___U3CLengthU3Ek__BackingField;
|
|
};
|
|
struct PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79_marshaled_com
|
|
{
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com ___m_Part0;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com ___m_Part1;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com ___m_Part2;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com ___m_Part3;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com* ___m_AdditionalParts;
|
|
int32_t ___U3CLengthU3Ek__BackingField;
|
|
};
|
|
struct Func_3_t7ABD9F6EC6D72DB68F353D0F3C3FEC7322E5A853 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t89E320FE1090235275D6DF55A8411FDA31CEFC7A : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tBD0EC492040F50111EAF0A77127409C4E6670C2E : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t4C315B89143B58391639906E83ABDD25F0D7E596 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tA9A0974E9EC292E11DAEA6B714FAE439FFE235F7 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t799252D9458F2AB207641E15DE8B7454B75CEA8F : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tA3DDAB5A72CEB154FB50A12CE39636838C9008FA : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tE46795E42BBCE12AACFA5423D869FC080617614A : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t3431757396CB42FB4FA1735910FD76FB77E568CF : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tA9B5A88DCB3DB2DE61C94876A083D9588C92C1F4 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tBD64F3C7DBE49CCECEC1DA85C48BC4C4E61F1CD0 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tA93E7480FC9A114D507BE035FA9F69D9BB56F914 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tA97A8AA5DD5E584A5ADBF2402322C22AE9F68D32 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t8BC9FC348AB48122C5017A7102263AE1045C5819 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_4_tC6554A9B6158B8E653539FD20E101E86ECAD14E5 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F : public EventBase_1_t2B9B970022841F58172C0C783B7E1040BEF85AC1
|
|
{
|
|
bool ___m_AltitudeNeedsConversion;
|
|
bool ___m_AzimuthNeedsConversion;
|
|
float ___m_AltitudeAngle;
|
|
float ___m_AzimuthAngle;
|
|
bool ___m_TiltNeeded;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Tilt;
|
|
int32_t ___U3CpointerIdU3Ek__BackingField;
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField;
|
|
bool ___U3CisPrimaryU3Ek__BackingField;
|
|
int32_t ___U3CbuttonU3Ek__BackingField;
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField;
|
|
float ___U3CdeltaTimeU3Ek__BackingField;
|
|
int32_t ___U3CclickCountU3Ek__BackingField;
|
|
float ___U3CpressureU3Ek__BackingField;
|
|
float ___U3CtangentialPressureU3Ek__BackingField;
|
|
float ___U3CtwistU3Ek__BackingField;
|
|
int32_t ___U3CpenStatusU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField;
|
|
int32_t ___U3CmodifiersU3Ek__BackingField;
|
|
RuntimeObject* ___U3CcompatibilityMouseEventU3Ek__BackingField;
|
|
int32_t ___U3CdisplayIndexU3Ek__BackingField;
|
|
bool ___U3CrecomputeTopElementUnderPointerU3Ek__BackingField;
|
|
};
|
|
struct PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496 : public EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E
|
|
{
|
|
bool ___m_AltitudeNeedsConversion;
|
|
bool ___m_AzimuthNeedsConversion;
|
|
float ___m_AltitudeAngle;
|
|
float ___m_AzimuthAngle;
|
|
bool ___m_TiltNeeded;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Tilt;
|
|
int32_t ___U3CpointerIdU3Ek__BackingField;
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField;
|
|
bool ___U3CisPrimaryU3Ek__BackingField;
|
|
int32_t ___U3CbuttonU3Ek__BackingField;
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField;
|
|
float ___U3CdeltaTimeU3Ek__BackingField;
|
|
int32_t ___U3CclickCountU3Ek__BackingField;
|
|
float ___U3CpressureU3Ek__BackingField;
|
|
float ___U3CtangentialPressureU3Ek__BackingField;
|
|
float ___U3CtwistU3Ek__BackingField;
|
|
int32_t ___U3CpenStatusU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField;
|
|
int32_t ___U3CmodifiersU3Ek__BackingField;
|
|
RuntimeObject* ___U3CcompatibilityMouseEventU3Ek__BackingField;
|
|
int32_t ___U3CdisplayIndexU3Ek__BackingField;
|
|
bool ___U3CrecomputeTopElementUnderPointerU3Ek__BackingField;
|
|
};
|
|
struct ValueTuple_3_t10B3CDFA9EEBDCDFB1C25F6B3F6B5E468C8F9F50
|
|
{
|
|
Func_4_tC6554A9B6158B8E653539FD20E101E86ECAD14E5* ___Item1;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___Item2;
|
|
ValueTuple_3_t083FB9C32ED0C25542A5131205E7A8A0B87F1D15 ___Item3;
|
|
};
|
|
struct ValueTuple_3_tAF08A8B8A8BDFE5BD5BB3273D7077FC68E7DE439
|
|
{
|
|
RuntimeObject* ___Item1;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___Item2;
|
|
ValueTuple_3_t083FB9C32ED0C25542A5131205E7A8A0B87F1D15 ___Item3;
|
|
};
|
|
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
RuntimeObject* ____actualValue;
|
|
};
|
|
struct BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 ___m_PropertyPath;
|
|
String_t* ___m_Path;
|
|
};
|
|
struct BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_marshaled_pinvoke
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79_marshaled_pinvoke ___m_PropertyPath;
|
|
char* ___m_Path;
|
|
};
|
|
struct BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_marshaled_com
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79_marshaled_com ___m_PropertyPath;
|
|
Il2CppChar* ___m_Path;
|
|
};
|
|
struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
|
|
{
|
|
uint32_t ___m_NonSerializedVersion;
|
|
};
|
|
struct DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA : public Binding_tA1358A155852138C1926082E4F3245B6F631CBED
|
|
{
|
|
int32_t ___m_BindingMode;
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* ___m_SourceToUiConverters;
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* ___m_UiToSourceConverters;
|
|
RuntimeObject* ___U3CdataSourceU3Ek__BackingField;
|
|
Type_t* ___U3CdataSourceTypeU3Ek__BackingField;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 ___U3CdataSourcePathU3Ek__BackingField;
|
|
};
|
|
struct LayoutConfig_tD448909812F1AA8DE14EAC340688D6FF41B52C87
|
|
{
|
|
LayoutDataAccess_t99AA56349D0BC76F3742B927F4F0DDB21511FBBA ___m_Access;
|
|
LayoutHandle_tCFE060947B4EDC8F11BF5B480181493FB578BEB6 ___m_Handle;
|
|
};
|
|
struct LayoutNode_tADF081B0F16F76B66459DE38F3AD8EC098F22CBE
|
|
{
|
|
LayoutDataAccess_t99AA56349D0BC76F3742B927F4F0DDB21511FBBA ___m_Access;
|
|
LayoutHandle_tCFE060947B4EDC8F11BF5B480181493FB578BEB6 ___m_Handle;
|
|
};
|
|
struct MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
|
|
{
|
|
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ___m_CancellationTokenSource;
|
|
};
|
|
struct Func_3_t257468D81256F67CCB3C6EC189AA86146F0E83BF : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t8E1C99C1281A1FE16C6EC1708A9B501F03768680 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t9926DBF6281A1654219C4F2EBA82ECA603217AB3 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303 : public RuntimeObject
|
|
{
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* ___panelDisposed;
|
|
UIElementsBridge_tC28FCEDF493CD746D1973AB27BA2CBA393EB4BA8* ___m_UIElementsBridge;
|
|
float ___m_Scale;
|
|
LayoutConfig_tD448909812F1AA8DE14EAC340688D6FF41B52C87 ___layoutConfig;
|
|
float ___m_PixelsPerPoint;
|
|
float ___U3CreferenceSpritePixelsPerUnitU3Ek__BackingField;
|
|
PanelClearSettings_tA3D8EE9A4864781CE3E5FED5225C6FB37ED66EE7 ___U3CclearSettingsU3Ek__BackingField;
|
|
RuntimeObject* ___panelRenderer;
|
|
bool ___U3CduringLayoutPhaseU3Ek__BackingField;
|
|
RepaintData_t90534752135661579EC254884F550545D001B5EA* ___U3CrepaintDataU3Ek__BackingField;
|
|
RuntimeObject* ___U3CcursorManagerU3Ek__BackingField;
|
|
ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B* ___U3CcontextualMenuManagerU3Ek__BackingField;
|
|
DataBindingManager_tE7B33E64EBBDCAB0A89B6A8421529F9BA0D066E1* ___U3CdataBindingManagerU3Ek__BackingField;
|
|
bool ___U3CdisposedU3Ek__BackingField;
|
|
ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904* ___m_TopElementUnderPointers;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___isFlatChanged;
|
|
bool ___m_IsFlat;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___atlasChanged;
|
|
HierarchyEvent_tB23E4347BC47656A014CA104A5B1DDC172A2A705* ___hierarchyChanged;
|
|
Action_1_tE55F8AC1EEC45D0C976E56B2950D65EC814C06E6* ___beforeUpdate;
|
|
};
|
|
struct BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_TargetElement;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___m_BindingId;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 ___m_DataSourcePath;
|
|
RuntimeObject* ___m_DataSource;
|
|
};
|
|
struct BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2_marshaled_pinvoke
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_TargetElement;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_marshaled_pinvoke ___m_BindingId;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79_marshaled_pinvoke ___m_DataSourcePath;
|
|
Il2CppIUnknown* ___m_DataSource;
|
|
};
|
|
struct BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2_marshaled_com
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_TargetElement;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_marshaled_com ___m_BindingId;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79_marshaled_com ___m_DataSourcePath;
|
|
Il2CppIUnknown* ___m_DataSource;
|
|
};
|
|
struct DebugUIHandlerWidget_tE597C749DDA3EBA7627F38F8A77EB5A171B9E6D1 : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___colorDefault;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___colorSelected;
|
|
DebugUIHandlerWidget_tE597C749DDA3EBA7627F38F8A77EB5A171B9E6D1* ___U3CparentUIHandlerU3Ek__BackingField;
|
|
DebugUIHandlerWidget_tE597C749DDA3EBA7627F38F8A77EB5A171B9E6D1* ___U3CpreviousUIHandlerU3Ek__BackingField;
|
|
DebugUIHandlerWidget_tE597C749DDA3EBA7627F38F8A77EB5A171B9E6D1* ___U3CnextUIHandlerU3Ek__BackingField;
|
|
Widget_tE8D6AF1D7525CC84E8F2C3B73162016736A6A2FF* ___m_Widget;
|
|
};
|
|
struct PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9 : public PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496
|
|
{
|
|
};
|
|
struct VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115 : public Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0
|
|
{
|
|
int32_t ___U3CUnityEngine_UIElements_IStylePropertyAnimations_runningAnimationCountU3Ek__BackingField;
|
|
int32_t ___U3CUnityEngine_UIElements_IStylePropertyAnimations_completedAnimationCountU3Ek__BackingField;
|
|
String_t* ___m_Name;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___m_ClassList;
|
|
Dictionary_2_tBCCCFBCAC02A3C03E3C84D75696D4860D7444A35* ___m_PropertyBag;
|
|
int32_t ___m_Flags;
|
|
String_t* ___m_ViewDataKey;
|
|
int32_t ___m_RenderHints;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___lastLayout;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___lastPseudoPadding;
|
|
RenderData_t1ABE116B2B5E0409AC699E195922516606531DC2* ___renderData;
|
|
RenderData_t1ABE116B2B5E0409AC699E195922516606531DC2* ___nestedRenderData;
|
|
int32_t ___hierarchyDepth;
|
|
int32_t ___insertionIndex;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_Layout;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_BoundingBox;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_WorldBoundingBox;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_WorldTransformCache;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_WorldTransformInverseCache;
|
|
int32_t ___triggerPseudoMask;
|
|
int32_t ___dependencyPseudoMask;
|
|
int32_t ___m_PseudoStates;
|
|
int32_t ___U3CcontainedPointerIdsU3Ek__BackingField;
|
|
int32_t ___m_PickingMode;
|
|
LayoutNode_tADF081B0F16F76B66459DE38F3AD8EC098F22CBE ___m_LayoutNode;
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C ___m_Style;
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* ___variableContext;
|
|
int32_t ___inheritedStylesHash;
|
|
uint32_t ___controlid;
|
|
int32_t ___imguiContainerDescendantCount;
|
|
bool ___m_EnabledSelf;
|
|
int32_t ___m_LanguageDirection;
|
|
int32_t ___m_LocalLanguageDirection;
|
|
Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B* ___U3CgenerateVisualContentU3Ek__BackingField;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_defaultMaterial;
|
|
List_1_t96E9133B70FB6765E6B138E810D33E18901715DA* ___m_RunningAnimations;
|
|
RuntimeObject* ___m_DataSource;
|
|
PathRef_t76F7677792A14AF9D6A6EAB7F08C1A3DC2B27A55* ___m_DataSourcePath;
|
|
List_1_t592DF2E59D6E244DA0041698383484A07C7E0480* ___m_Bindings;
|
|
Type_t* ___U3CdataSourceTypeU3Ek__BackingField;
|
|
int32_t ___m_TrickleDownHandleEventCategories;
|
|
int32_t ___m_BubbleUpHandleEventCategories;
|
|
int32_t ___m_BubbleUpEventCallbackCategories;
|
|
int32_t ___m_TrickleDownEventCallbackCategories;
|
|
int32_t ___m_EventInterestSelfCategories;
|
|
int32_t ___m_CachedEventInterestParentCategories;
|
|
uint32_t ___m_NextParentCachedVersion;
|
|
uint32_t ___m_NextParentRequiredVersion;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_CachedNextParentWithEventInterests;
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 ___U3ChierarchyU3Ek__BackingField;
|
|
bool ___U3CisRootVisualContainerU3Ek__BackingField;
|
|
bool ___U3CcacheAsBitmapU3Ek__BackingField;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_PhysicalParent;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_LogicalParent;
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* ___elementAdded;
|
|
Action_1_t66B514BE877E216616DEDD40416127189FE16FA3* ___elementRemoved;
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___m_Children;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___U3CelementPanelU3Ek__BackingField;
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* ___m_VisualTreeAssetSource;
|
|
InlineStyleAccess_t5CA7877999C9442491A220AE50D605C84D09A165* ___inlineStyleAccess;
|
|
ResolvedStyleAccess_t226CC840EBACEE31CE1139ED5F717532AFFAEB45* ___resolvedStyleAccess;
|
|
List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* ___styleSheetList;
|
|
TypeData_t01D670B4E71B5571B38C7412B1E652A47D6AF66A* ___m_TypeData;
|
|
};
|
|
struct BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C : public VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115
|
|
{
|
|
RuntimeObject* ___U3CbindingU3Ek__BackingField;
|
|
String_t* ___U3CbindingPathU3Ek__BackingField;
|
|
};
|
|
struct Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9 : public BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_RootContainer;
|
|
VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9* ___m_VisualTreeUpdater;
|
|
RuntimeObject* ___m_StylePropertyAnimationSystem;
|
|
String_t* ___m_PanelName;
|
|
uint32_t ___m_Version;
|
|
uint32_t ___m_RepaintVersion;
|
|
uint32_t ___m_HierarchyVersion;
|
|
uint32_t ___m_LastTickedHierarchyVersion;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerPrepareRepaint;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerRender;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerValidateLayout;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerTickScheduledActions;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerTickScheduledActionsPreLayout;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerTickScheduledActionsPostLayout;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerPanelChangeReceiver;
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___U3CdispatcherU3Ek__BackingField;
|
|
TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862* ___m_Scheduler;
|
|
ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A* ___U3CownerObjectU3Ek__BackingField;
|
|
int32_t ___U3CcontextTypeU3Ek__BackingField;
|
|
SavePersistentViewData_tFE77B8450170D95B16B3017D62F81F2139D4F716* ___U3CsaveViewDataU3Ek__BackingField;
|
|
GetViewDataDictionary_tF745E6CC7E18A67630A2B294F0BBFB27C6E57638* ___U3CgetViewDataDictionaryU3Ek__BackingField;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___U3CfocusControllerU3Ek__BackingField;
|
|
EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8 ___U3CIMGUIEventInterestsU3Ek__BackingField;
|
|
bool ___m_JustReceivedFocus;
|
|
RuntimeObject* ___m_PanelChangeReceiver;
|
|
int32_t ___U3CIMGUIContainersCountU3Ek__BackingField;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* ___U3CrootIMGUIContainerU3Ek__BackingField;
|
|
AtlasBase_t196C45243F41C19DC6258965057BBAA150D278BC* ___m_Atlas;
|
|
bool ___m_ValidatingLayout;
|
|
};
|
|
struct BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4 : public Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_SelectableGameObject;
|
|
int32_t ___m_RuntimePanelCreationIndex;
|
|
float ___m_SortingPriority;
|
|
int32_t ___resolvedSortingIndex;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___destroyed;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___drawsInCamerasChanged;
|
|
bool ___m_DrawsInCameras;
|
|
float ___m_PixelsPerUnit;
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___targetTexture;
|
|
int32_t ___U3CtargetDisplayU3Ek__BackingField;
|
|
Func_2_tECC97CAACCC7CB873184FEF49E8343711EEF4768* ___m_ScreenToPanelSpace;
|
|
};
|
|
struct TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0 : public BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C
|
|
{
|
|
Action_1_t21FD3C63C847CD92920291C92517DD3E3D04358C* ___U3CPostProcessTextVerticesU3Ek__BackingField;
|
|
UITKTextHandle_t1FF3B4EC2367C05F42D61C660D6FE30DF91C06CE* ___U3CuitkTextHandleU3Ek__BackingField;
|
|
String_t* ___m_Text;
|
|
bool ___m_EnableRichText;
|
|
bool ___m_EmojiFallbackSupport;
|
|
bool ___m_ParseEscapeSequences;
|
|
bool ___m_DisplayTooltipWhenElided;
|
|
bool ___U3CisElidedU3Ek__BackingField;
|
|
String_t* ___elidedText;
|
|
bool ___m_WasElided;
|
|
TextEditingManipulator_t9AC543C81F3778888F421C8D93003EBC8902EB29* ___U3CeditingManipulatorU3Ek__BackingField;
|
|
bool ___isInputField;
|
|
bool ___m_Multiline;
|
|
TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* ___m_TouchScreenKeyboard;
|
|
Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* ___onIsReadOnlyChanged;
|
|
int32_t ___m_KeyboardType;
|
|
bool ___m_HideMobileInput;
|
|
bool ___m_IsReadOnly;
|
|
int32_t ___m_MaxLength;
|
|
String_t* ___m_PlaceholderText;
|
|
bool ___U3CUnityEngine_UIElements_ITextEdition_isDelayedU3Ek__BackingField;
|
|
Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___U3CUnityEngine_UIElements_ITextEdition_AcceptCharacterU3Ek__BackingField;
|
|
Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* ___U3CUnityEngine_UIElements_ITextEdition_UpdateScrollOffsetU3Ek__BackingField;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___U3CUnityEngine_UIElements_ITextEdition_UpdateValueFromTextU3Ek__BackingField;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___U3CUnityEngine_UIElements_ITextEdition_UpdateTextFromValueU3Ek__BackingField;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___U3CUnityEngine_UIElements_ITextEdition_MoveFocusToCompositeRootU3Ek__BackingField;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___U3COnPlaceholderChangedU3Ek__BackingField;
|
|
Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* ___U3CUnityEngine_UIElements_ITextEdition_GetDefaultValueTypeU3Ek__BackingField;
|
|
String_t* ___m_RenderedText;
|
|
String_t* ___m_OriginalText;
|
|
Il2CppChar ___m_MaskChar;
|
|
bool ___m_IsPassword;
|
|
bool ___m_HidePlaceholderTextOnFocus;
|
|
bool ___m_AutoCorrection;
|
|
TextSelectingManipulator_t85DD873E0C5537C1F8468B6FE5E4C9995B193855* ___m_SelectingManipulator;
|
|
bool ___m_IsSelectable;
|
|
bool ___m_DoubleClickSelectsWord;
|
|
bool ___m_TripleClickSelectsLine;
|
|
bool ___m_SelectAllOnFocus;
|
|
bool ___m_SelectAllOnMouseUp;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_SelectionColor;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_CursorColor;
|
|
float ___m_CursorWidth;
|
|
};
|
|
struct RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346 : public BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4
|
|
{
|
|
PanelSettings_t0621207D5DD3BB89DB587440E8F9E07234283DEC* ___m_PanelSettings;
|
|
};
|
|
struct U3CU3Ec__101_1_tF191CD717F7D673900AB67BAAAA082AE006396EE_StaticFields
|
|
{
|
|
U3CU3Ec__101_1_tF191CD717F7D673900AB67BAAAA082AE006396EE* ___U3CU3E9;
|
|
Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E* ___U3CU3E9__101_0;
|
|
};
|
|
struct U3CU3Ec__101_1_t4C331D1DC0A362A71E091CD9F8AB494E7D184984_StaticFields
|
|
{
|
|
U3CU3Ec__101_1_t4C331D1DC0A362A71E091CD9F8AB494E7D184984* ___U3CU3E9;
|
|
Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E* ___U3CU3E9__101_0;
|
|
};
|
|
struct U3CU3Ec__35_1_t15D400D9F5A9E198C56A1F03181D2FF7A82CBF55_StaticFields
|
|
{
|
|
U3CU3Ec__35_1_t15D400D9F5A9E198C56A1F03181D2FF7A82CBF55* ___U3CU3E9;
|
|
Func_3_t7ABD9F6EC6D72DB68F353D0F3C3FEC7322E5A853* ___U3CU3E9__35_0;
|
|
};
|
|
struct U3CU3Ec__35_1_t101BAC9E48FB1426DD37DF65BBF83A3C171D017C_StaticFields
|
|
{
|
|
U3CU3Ec__35_1_t101BAC9E48FB1426DD37DF65BBF83A3C171D017C* ___U3CU3E9;
|
|
Func_3_t89E320FE1090235275D6DF55A8411FDA31CEFC7A* ___U3CU3E9__35_0;
|
|
};
|
|
struct U3CU3Ec__35_1_t55989DD67EA28397E9C95C168B2F48E23CE26726_StaticFields
|
|
{
|
|
U3CU3Ec__35_1_t55989DD67EA28397E9C95C168B2F48E23CE26726* ___U3CU3E9;
|
|
Func_3_t257468D81256F67CCB3C6EC189AA86146F0E83BF* ___U3CU3E9__35_0;
|
|
};
|
|
struct U3CU3Ec__35_1_t5C2A52595116ADB34929E11F0CFFD2777ABAF51C_StaticFields
|
|
{
|
|
U3CU3Ec__35_1_t5C2A52595116ADB34929E11F0CFFD2777ABAF51C* ___U3CU3E9;
|
|
Func_3_tBD0EC492040F50111EAF0A77127409C4E6670C2E* ___U3CU3E9__35_0;
|
|
};
|
|
struct U3CU3Ec__35_1_t3352CCC2A56A598B60BC6051E92F43565B29B9AD_StaticFields
|
|
{
|
|
U3CU3Ec__35_1_t3352CCC2A56A598B60BC6051E92F43565B29B9AD* ___U3CU3E9;
|
|
Func_3_tF4070BC973E64BF78AE4C9340BFC70326C962EB5* ___U3CU3E9__35_0;
|
|
};
|
|
struct U3CU3Ec__35_1_tA83A7CA3451D7FE8177747C4AE39456AD8DD9E1F_StaticFields
|
|
{
|
|
U3CU3Ec__35_1_tA83A7CA3451D7FE8177747C4AE39456AD8DD9E1F* ___U3CU3E9;
|
|
Func_3_t4C315B89143B58391639906E83ABDD25F0D7E596* ___U3CU3E9__35_0;
|
|
};
|
|
struct U3CU3Ec__35_1_t1DE6BF0C022461BB0CE70601BD71D4B9B92231C7_StaticFields
|
|
{
|
|
U3CU3Ec__35_1_t1DE6BF0C022461BB0CE70601BD71D4B9B92231C7* ___U3CU3E9;
|
|
Func_3_t06ED4EB071C5BB0024319BE1F60C308E1DAA9CC5* ___U3CU3E9__35_0;
|
|
};
|
|
struct List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3_StaticFields
|
|
{
|
|
BaseRuntimePanelU5BU5D_t5616E94AA01876C9DB770DB16A05F5BCA7FEA346* ___s_emptyArray;
|
|
};
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray;
|
|
};
|
|
struct List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4_StaticFields
|
|
{
|
|
__Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1* ___s_emptyArray;
|
|
};
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A_StaticFields
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___s_emptyArray;
|
|
};
|
|
struct TypeTraits_1_t20DA141DBCABB7DD20C97D959B16E37210795E71_StaticFields
|
|
{
|
|
bool ___U3CIsValueTypeU3Ek__BackingField;
|
|
bool ___U3CIsPrimitiveU3Ek__BackingField;
|
|
bool ___U3CIsInterfaceU3Ek__BackingField;
|
|
bool ___U3CIsAbstractU3Ek__BackingField;
|
|
bool ___U3CIsArrayU3Ek__BackingField;
|
|
bool ___U3CIsMultidimensionalArrayU3Ek__BackingField;
|
|
bool ___U3CIsEnumU3Ek__BackingField;
|
|
bool ___U3CIsEnumFlagsU3Ek__BackingField;
|
|
bool ___U3CIsNullableU3Ek__BackingField;
|
|
bool ___U3CIsObjectU3Ek__BackingField;
|
|
bool ___U3CIsStringU3Ek__BackingField;
|
|
bool ___U3CIsContainerU3Ek__BackingField;
|
|
bool ___U3CCanBeNullU3Ek__BackingField;
|
|
bool ___U3CIsPrimitiveOrStringU3Ek__BackingField;
|
|
bool ___U3CIsAbstractOrInterfaceU3Ek__BackingField;
|
|
bool ___U3CIsUnityObjectU3Ek__BackingField;
|
|
bool ___U3CIsLazyLoadReferenceU3Ek__BackingField;
|
|
};
|
|
struct ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_StaticFields
|
|
{
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* ___s_GlobalConverters;
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* ___s_PrimitivesConverters;
|
|
Dictionary_2_t4DF54DED090D74EA3A4143562494256C758AB504* ___s_BindingConverterGroups;
|
|
};
|
|
struct CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_StaticFields
|
|
{
|
|
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* ___lookAtList;
|
|
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* ___upVectorList;
|
|
Cubemap_t4F2DFF70696A5CB5C1695DF8947CC60D718C4A1C* ___m_BlackCubeTexture;
|
|
Cubemap_t4F2DFF70696A5CB5C1695DF8947CC60D718C4A1C* ___m_MagentaCubeTexture;
|
|
CubemapArray_tB8C754E33D44BB40C9918D996AB2AD05D67DC666* ___m_MagentaCubeTextureArray;
|
|
Cubemap_t4F2DFF70696A5CB5C1695DF8947CC60D718C4A1C* ___m_WhiteCubeTexture;
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___m_EmptyUAV;
|
|
GraphicsBuffer_t91FACD3CD78588C25C361C453D1A2FE055EC4AF1* ___m_EmptyBuffer;
|
|
Texture3D_tDC30A0F19B6055086859D1ABC098D6E6762000E1* ___m_BlackVolumeTexture;
|
|
Texture3D_tDC30A0F19B6055086859D1ABC098D6E6762000E1* ___m_WhiteVolumeTexture;
|
|
RuntimeObject* ___m_AssemblyTypes;
|
|
};
|
|
struct DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98_StaticFields
|
|
{
|
|
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* ___IsEditorRemoteConnected;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___s_InvalidPanelCoordinates;
|
|
};
|
|
struct String_t_StaticFields
|
|
{
|
|
String_t* ___Empty;
|
|
};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
|
|
{
|
|
String_t* ___TrueString;
|
|
String_t* ___FalseString;
|
|
};
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1;
|
|
};
|
|
struct Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0_StaticFields
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___focusableProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___tabIndexProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___delegatesFocusProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___canGrabFocusProperty;
|
|
};
|
|
struct IntPtr_t_StaticFields
|
|
{
|
|
intptr_t ___Zero;
|
|
};
|
|
struct TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_StaticFields
|
|
{
|
|
ConverterKeyComparer_t4C6C81BD692F6EBB1BD4D6946B08DA25E11DBC16* ___k_Comparer;
|
|
};
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___zeroVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___oneVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___upVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___downVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___positiveInfinityVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___negativeInfinityVector;
|
|
};
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector;
|
|
};
|
|
struct float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_StaticFields
|
|
{
|
|
float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA ___zero;
|
|
};
|
|
struct float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_StaticFields
|
|
{
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___zero;
|
|
};
|
|
struct float4_t89D9A294E7A79BD81BFBDD18654508532958555E_StaticFields
|
|
{
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___zero;
|
|
};
|
|
struct Exception_t_StaticFields
|
|
{
|
|
RuntimeObject* ___s_EDILock;
|
|
};
|
|
struct TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A_StaticFields
|
|
{
|
|
bool ___U3CdisableInPlaceEditingU3Ek__BackingField;
|
|
};
|
|
struct float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_StaticFields
|
|
{
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 ___identity;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 ___zero;
|
|
};
|
|
struct quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4_StaticFields
|
|
{
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___identity;
|
|
};
|
|
struct EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_StaticFields
|
|
{
|
|
int64_t ___s_LastTypeId;
|
|
uint64_t ___s_NextEventId;
|
|
};
|
|
struct Type_t_StaticFields
|
|
{
|
|
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder;
|
|
Il2CppChar ___Delimiter;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes;
|
|
RuntimeObject* ___Missing;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase;
|
|
};
|
|
struct BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_StaticFields
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___Invalid;
|
|
};
|
|
struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_StaticFields
|
|
{
|
|
CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD* ___onPreCull;
|
|
CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD* ___onPreRender;
|
|
CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD* ___onPostRender;
|
|
};
|
|
struct DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA_StaticFields
|
|
{
|
|
MethodInfo_t* ___s_UpdateUIMethodInfo;
|
|
};
|
|
struct BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_StaticFields
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___s_OutsidePanelCoordinates;
|
|
};
|
|
struct VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_StaticFields
|
|
{
|
|
uint32_t ___s_NextId;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___s_EmptyClassList;
|
|
PropertyName_tE4B4AAA58AF3BF2C0CD95509EB7B786F096901C2 ___userDataPropertyKey;
|
|
String_t* ___disabledUssClassName;
|
|
int32_t ___s_FinalizerCount;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_GenerateVisualContentMarker;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___s_runtimeMaterial;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___childCountProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___contentRectProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___dataSourcePathProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___dataSourceProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___disablePlayModeTintProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___enabledInHierarchyProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___enabledSelfProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___layoutProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___languageDirectionProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___localBoundProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___nameProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___panelProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___pickingModeProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___styleSheetsProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___tooltipProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___usageHintsProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___userDataProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___viewDataKeyProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___visibleProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___visualTreeAssetSourceProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___worldBoundProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___worldTransformProperty;
|
|
uint32_t ___s_NextParentVersion;
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___s_EmptyList;
|
|
CustomStyleAccess_t170C852102B4D09FB478B620A75B14D096F9F2B1* ___s_CustomStyleAccess;
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___s_InternalStyleSheetPath;
|
|
PropertyName_tE4B4AAA58AF3BF2C0CD95509EB7B786F096901C2 ___tooltipPropertyKey;
|
|
Dictionary_2_t4055F6540F36F21F9FEDAFB92D8E0089B38EBBC8* ___s_TypeData;
|
|
};
|
|
struct BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4_StaticFields
|
|
{
|
|
int32_t ___s_CurrentRuntimePanelCounter;
|
|
Func_2_tECC97CAACCC7CB873184FEF49E8343711EEF4768* ___DefaultScreenToPanelSpace;
|
|
};
|
|
struct TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_StaticFields
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___displayTooltipWhenElidedProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___emojiFallbackSupportProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___enableRichTextProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___isElidedProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___parseEscapeSequencesProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___textProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___valueProperty;
|
|
String_t* ___ussClassName;
|
|
String_t* ___selectableUssClassName;
|
|
String_t* ___k_EllipsisText;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___autoCorrectionProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___hideMobileInputProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___keyboardTypeProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___isReadOnlyProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___isPasswordProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___maxLengthProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___maskCharProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___isSelectableProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___cursorIndexProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___selectIndexProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___doubleClickSelectsWordProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___tripleClickSelectsLineProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___cursorPositionProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___selectAllOnFocusProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___selectAllOnMouseUpProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___selectionProperty;
|
|
};
|
|
struct RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_StaticFields
|
|
{
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___s_EventDispatcher;
|
|
List_1_t74EC90C5F42E1A99F29BC6A7FF27FD27FCF98344* ___s_EmptyDocumentList;
|
|
};
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C : 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;
|
|
}
|
|
};
|
|
struct __Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) uint8_t m_Items[1];
|
|
|
|
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + il2cpp_array_calc_byte_offset(this, index);
|
|
}
|
|
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + il2cpp_array_calc_byte_offset(this, index);
|
|
}
|
|
};
|
|
struct CustomAttributeNamedArgumentU5BU5D_tC0A39D9401E28662213F5958EFF5D26D0681B440 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02 m_Items[1];
|
|
|
|
inline CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02* 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, CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___U3CTypedValueU3Ek__BackingField))->___U3CArgumentTypeU3Ek__BackingField), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___U3CTypedValueU3Ek__BackingField))->___U3CValueU3Ek__BackingField), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___U3CMemberNameU3Ek__BackingField), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____attributeType), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____lazyMemberInfo), (void*)NULL);
|
|
#endif
|
|
}
|
|
inline CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___U3CTypedValueU3Ek__BackingField))->___U3CArgumentTypeU3Ek__BackingField), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___U3CTypedValueU3Ek__BackingField))->___U3CValueU3Ek__BackingField), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___U3CMemberNameU3Ek__BackingField), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____attributeType), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____lazyMemberInfo), (void*)NULL);
|
|
#endif
|
|
}
|
|
};
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
|
|
|
|
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** 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, RuntimeObject* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct CustomAttributeTypedArgumentU5BU5D_t6CAA09EC6AACBED57FC8B02C587D50BF6B738C6B : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F m_Items[1];
|
|
|
|
inline CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F* 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, CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___U3CArgumentTypeU3Ek__BackingField), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___U3CValueU3Ek__BackingField), (void*)NULL);
|
|
#endif
|
|
}
|
|
inline CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___U3CArgumentTypeU3Ek__BackingField), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___U3CValueU3Ek__BackingField), (void*)NULL);
|
|
#endif
|
|
}
|
|
};
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) uint8_t m_Items[1];
|
|
|
|
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + il2cpp_array_calc_byte_offset(this, index);
|
|
}
|
|
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + il2cpp_array_calc_byte_offset(this, index);
|
|
}
|
|
};
|
|
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);
|
|
}
|
|
};
|
|
struct BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 m_Items[1];
|
|
|
|
inline BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010* 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, BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
|
|
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int8_t TypeConverter_2_Invoke_m4DBD0B58BB7C3846B3A32B07F1771511AD3EB6FD_gshared_inline (TypeConverter_2_t370B4F69ADC2867DC21BE14FA947E12DD9BD0462* __this, double* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int8_t* UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_mA9E079DFD763D84B8FA5593BDEAD16AAFC8BD546_gshared_inline (double* ___0_from, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TypeTraits_1_get_IsValueType_mA4EC7C62F3D525F3046A4FECDE46919367925E98_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float TypeConverter_2_Invoke_m24961A5FF38B2207EC3DED8E909E7F595C619E71_gshared_inline (TypeConverter_2_tBB893836100D5BA5086C7F2638C9D63D6FC61559* __this, double* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float* UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m78C79739929AAB266580F0DD602A59D776CE3467_gshared_inline (double* ___0_from, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint16_t TypeConverter_2_Invoke_mA6D015A5E76471F6A2D58F4E0C8AEC5058DCE134_gshared_inline (TypeConverter_2_tB736BA63BC9F9885972433F0B1D7232E2AAE0585* __this, double* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint16_t* UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m1222A63B0F5D73BB7A0572CEE1D84313296D428C_gshared_inline (double* ___0_from, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t TypeConverter_2_Invoke_m20ADC0EA3465CE5CF733DD4244D30F2461F6BB2F_gshared_inline (TypeConverter_2_tA07ADAC5ACD7A76F41C95586D89B438C04D44409* __this, double* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t* UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mCB835683A3E41B945C251D37F399CC838E245030_gshared_inline (double* ___0_from, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t TypeConverter_2_Invoke_mBF92648B15FEA94F0572738B7E0E2A849216DE4A_gshared_inline (TypeConverter_2_t794BDD9B9C3A12BF490C7710C609706E72EDABCD* __this, double* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t* UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mF1C1F5513615654E580D9CAE0338257FD7BC609F_gshared_inline (double* ___0_from, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR DefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A Activator_CreateInstance_TisDefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A_m67168082B56486E52ACE1428D1D092E51E978A2B_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 UnsafeUtility_ReadArrayElement_TisHash128_t93367F504B687578F893CDBCD13FB95AC8A87A40_m58AF406949C6230522BA3871914D69034FED4CFD_gshared_inline (void* ___0_source, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 DefaultKeyGetter_1_Get_m6699590F94D8E768EE4CF487A7447AE87FDC2B9B_gshared (DefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A* __this, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40* ___0_v, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUnsafeUtils_CombineHashes_TisHash128_t93367F504B687578F893CDBCD13FB95AC8A87A40_TisDefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A_mEA26DB028FEEB21C80F51B51CC2C4B2B2C178B47_gshared (int32_t ___0_count, void* ___1_hashes, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40* ___2_outHash, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnsafeUtility_WriteArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m0DD1CC90B2F1EF5041F2F4E1DABB58224229F0D7_gshared_inline (void* ___0_destination, int32_t ___1_index, int32_t ___2_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_ReadArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFBA66C06ECEB0A2BC1AAE634B6E6BB436F957084_gshared_inline (void* ___0_source, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DefaultKeyGetter_1_Get_m8B4B941EA0C8006F2B7DA22EBF15AC62D8392A2F_gshared (DefaultKeyGetter_1_tBB6F2B964D7D24105393917DE1AD62F2FD307C6E* __this, int32_t* ___0_v, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t UnsafeUtility_ReadArrayElement_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mDA80BAFF55EA77496672B3B5B3804B55274B7E95_gshared_inline (void* ___0_source, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnsafeUtility_WriteArrayElement_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m839FEB3192BEC0090FBA73A11E371E1A01C13ADF_gshared_inline (void* ___0_destination, int32_t ___1_index, uint32_t ___2_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t UnsafeUtility_ReadArrayElement_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m8F5B829A65BCE22A8B2364D1C303A1E2876A3898_gshared_inline (void* ___0_source, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnsafeUtility_WriteArrayElement_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mC1C144C4AC4D9B3B2C30F06F88CB6E6AB475125E_gshared_inline (void* ___0_destination, int32_t ___1_index, uint64_t ___2_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUnsafeUtils_QuickSort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisDefaultKeyGetter_1_tBB6F2B964D7D24105393917DE1AD62F2FD307C6E_m6AF2CFD9286A6ED43C3DF31769B1D0340C3ACC06_gshared (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CoreUnsafeUtils_Partition_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisDefaultKeyGetter_1_tBB6F2B964D7D24105393917DE1AD62F2FD307C6E_mAC5F5E9E51408AD4EEA602903ABE28B277403372_gshared (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CoreUnsafeUtils_Partition_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUintKeyGetter_tA42A60857A313F21755ED561D57B21FAF9750DD8_m8D31651B9A18E49E59DDA2DBAAAD6FC92CFF6A56_gshared (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUnsafeUtils_QuickSort_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUintKeyGetter_tA42A60857A313F21755ED561D57B21FAF9750DD8_mA04BB389454EC77314C0485B0E45EDA54F421347_gshared (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CoreUnsafeUtils_Partition_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUlongKeyGetter_t7A83E03588BDDB856F8A6AF8E2172EC7C3CF99D5_mCD87D2374166349A7E3ECC8E37652CF66932BE4D_gshared (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUnsafeUtils_QuickSort_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUlongKeyGetter_t7A83E03588BDDB856F8A6AF8E2172EC7C3CF99D5_mBDC4803735141628F7BC6D8EFDBA0313227CA989_gshared (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m13C0A7F33154D861E2A041B52E88461832DA1697_gshared (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Where_TisRuntimeObject_m5DAF16724887B42DDBBF391C7F375749E8AA4AD7_gshared (RuntimeObject* ___0_source, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___1_predicate, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Cast_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_mD7DF983428BF05DC218A798F599F830973BF8FFC_gshared (RuntimeObject* ___0_source, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerable_Last_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m4152A55863ECF1B46E7D359EE96B7B88C0634AD9_gshared (RuntimeObject* ___0_source, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t71485A1E60B31CCAD3E525C907CF172E8B804468 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisVisibleLight_t0A4DF5B22865A00F618A0352B805277FA0132805_m212572101685FD8A1B11AE6CB89F859D04721B05_gshared (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t71485A1E60B31CCAD3E525C907CF172E8B804468 CullingResults_GetNativeArray_TisVisibleLight_t0A4DF5B22865A00F618A0352B805277FA0132805_mB9817677C042A4D184CE33B7C16AEE37E5A6E2CE_gshared (CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267* __this, void* ___0_dataPointer, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3CC4179AFF43449D3539816D3EE4D2D69B6022E8 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisVisibleReflectionProbe_t8AF1FAD09A36E33F5101B683DB8E99582815EF0B_mA1B9B486611AB443D9F931830D9481B1E9D6FAF1_gshared (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3CC4179AFF43449D3539816D3EE4D2D69B6022E8 CullingResults_GetNativeArray_TisVisibleReflectionProbe_t8AF1FAD09A36E33F5101B683DB8E99582815EF0B_m64623DE34C36FFB68DFE5A894F3B0A4D5E4DE018_gshared (CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267* __this, void* ___0_dataPointer, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 CullingResults_GetNativeArray_TisIl2CppFullySharedGenericStruct_mAD95E79FFE908C81E8C8514A3F2E8E583998A7C0_gshared (CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267* __this, void* ___0_dataPointer, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_gshared (RuntimeObject** ___0_container, String_t* ___1_name, RuntimeObject** ___2_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_gshared (RuntimeObject** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, RuntimeObject** ___2_property, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroup_TrySetValue_TisRuntimeObject_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m83683F2CE4616120DEA066623930906DC2DE159C_gshared (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, RuntimeObject** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, bool ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m9E7E4DCE5828E839CBEB9C6ACFC507852ED0CEC6_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, bool ___5_extractedValueFromSource, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroup_TrySetValue_TisRuntimeObject_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m91A27414E0E3FF3B4384EA59809C86C3AD36778B_gshared (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, RuntimeObject** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, uint8_t ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m2BB4E686E362E0B72CFE055ECC55E3F07D9DA26A_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, uint8_t ___5_extractedValueFromSource, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroup_TrySetValue_TisRuntimeObject_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m69AFE716F2742B6576C117041C2F63BF81FFFB4E_gshared (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, RuntimeObject** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, Il2CppChar ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD538741205AF482803DA3A02E0A67C9B8209F810_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, Il2CppChar ___5_extractedValueFromSource, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroup_TrySetValue_TisRuntimeObject_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m35BAB14CF8DE498E2DEBC8427AA1CAE2106C7474_gshared (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, RuntimeObject** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, double ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_mEABCBB742A7CAE1D09910287456EE605D8CE4AEB_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, double ___5_extractedValueFromSource, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroup_TrySetValue_TisRuntimeObject_TisInt16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_m486D4E61865B143368793E9904E71D0F9B410EB8_gshared (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, RuntimeObject** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, int16_t ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisInt16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_mD352A5FD1DE2B0820D7BFB91DA2ACC240A372C0A_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, int16_t ___5_extractedValueFromSource, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroup_TrySetValue_TisRuntimeObject_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m34387BEE9C02DFCC4E0BA3925CE8F31ADAF1CABA_gshared (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, RuntimeObject** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, int32_t ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mEB66817134A95892AC98FEB5E6177BDEE90DA11E_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, int32_t ___5_extractedValueFromSource, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroup_TrySetValue_TisRuntimeObject_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_mFA97251F9CAEA663BCDB8023632AC6F6D405B720_gshared (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, RuntimeObject** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, int64_t ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m5F50CBF79D617F92D22DD503F44A3B76E6CBD944_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, int64_t ___5_extractedValueFromSource, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroup_TrySetValue_TisRuntimeObject_TisRuntimeObject_mB76C107B6F85C9B32FBC7396305953A4F59F1E60_gshared (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, RuntimeObject** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, RuntimeObject* ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisRuntimeObject_mF3A7F00209C07E2578250228DF1849108CE77911_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, RuntimeObject* ___5_extractedValueFromSource, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroup_TrySetValue_TisRuntimeObject_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_mBF3129705593561BB60C8D721FCF8365B48B253F_gshared (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, RuntimeObject** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, int8_t ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_mEEF2ED6254BBD880C65795276EA87FF59E11CE44_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, int8_t ___5_extractedValueFromSource, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroup_TrySetValue_TisRuntimeObject_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mC0D3357D6DC472177A8B10BD335EF505DCF4D5A5_gshared (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, RuntimeObject** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, float ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mA3D9DEFBC828EAAFAAB3C515C59EED3187228B70_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, float ___5_extractedValueFromSource, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroup_TrySetValue_TisRuntimeObject_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m403AD6F4ADB18E31A6030FFDEBAFB4E5A36273E1_gshared (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, RuntimeObject** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, uint16_t ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m091FE7BDAA857B98E917C5504C053BCB57B146DB_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, uint16_t ___5_extractedValueFromSource, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroup_TrySetValue_TisRuntimeObject_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mB9D8354830F18F568E21D98A59F8B6C821DF11BB_gshared (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, RuntimeObject** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, uint32_t ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m0884F2D81F8AFE20C37E26C96DD3F4A856ACA029_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, uint32_t ___5_extractedValueFromSource, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroup_TrySetValue_TisRuntimeObject_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m4CE84A720DD6AE96E3B704309A89EE5531A0EFAB_gshared (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, RuntimeObject** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, uint64_t ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m58DE243AAC43A3D991E8CD7D9D93BC5A0455369A_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, uint64_t ___5_extractedValueFromSource, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ResourceManager_Load_TisRuntimeObject_mF789B7CC35BD6D5EA3FDF38B662C5E17388813CC_gshared (ResourceManager_t3C786E6B9CB06BD30723E3099A98FEF2F853355E* __this, String_t* ___0_path, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonUtility_FromJson_TisRuntimeObject_m0CCF0FE109BF4C85AECC9C5D0DBB43422A24FB40_gshared (String_t* ___0_json, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DataManager_LoadJson_TisRuntimeObject_TisRuntimeObject_m6991F3B0E6D5AA5878021884FAA795ABFB8DAEC6_gshared (DataManager_tE86238CF20D1A233E0ADDA21C619896E5F278275* __this, String_t* ___0_path, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_m17C1551BBE6C31FD367700C8DFA6A388374E7340_gshared_inline (Func_2_t76D5132C86AC7B01299890F023D78FAE8F9D1A64* __this, ValueTuple_2_t84554798B99CE8D7914B5585AE53CEE950F43CE6 ___0_arg, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_mF9EF57C31660DC2A8E9B80FE393EEA410E60B360_gshared_inline (Func_2_t6F0DEE2A7ADE56265ED0100E7DF77076E5FDB85C* __this, ValueTuple_2_t9270F8474E554C7C106A7F7DE4F0D15C12802EAB ___0_arg, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_m6F04759879DC781CA2B13942272986564257719F_gshared_inline (Func_2_t9E220F4AC78324D7D0D25DA747A006808EB3FCCD* __this, ValueTuple_3_t221FA8EA322AE1156326997DEA4F6D24BF1E5243 ___0_arg, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_m2F064BFB9502B2762574DC05F9D41A46C1FB90C8_gshared_inline (Func_2_tD7D2844A071B5C6280BB6380EFE3896CC538B77E* __this, ValueTuple_3_t90CF2FEF2703459E904C84694EEECB64D3F220C1 ___0_arg, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_mE1A0781D1853CA8540B156BE1F43769FCCFD5318_gshared_inline (Func_2_tC50964E0E1320D21A73671534F60C1C2013148E5* __this, ValueTuple_3_t1214F2A1CCE3F3DE3E2DA1E6EC57E2DFEE17E613 ___0_arg, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_m6953F3816EE803F64B21977608FFA48D59AB9272_gshared_inline (Func_2_tB8444326CD91502B291E0988F04448A82D0F6552* __this, int32_t ___0_arg, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_3__ctor_m7168CEEADEFC06CB66A741873881028695533EA2_gshared (Func_3_t799252D9458F2AB207641E15DE8B7454B75CEA8F* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_3__ctor_m3DFF6E512FF44D3000D24444DA79FE2F102F8299_gshared (ValueTuple_3_t0830D9C281DA2A9A8B1564AB60C647F6DA504260* __this, RuntimeObject* ___0_item1, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_item2, ValueTuple_2_t00940F333D00C8F1D5D9E7B80A81F8DCCE9908FC ___2_item3, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_t0830D9C281DA2A9A8B1564AB60C647F6DA504260_mA5B008F799247B6405A0AE739F71E83E19B835AD_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_tA9A0974E9EC292E11DAEA6B714FAE439FFE235F7* ___4_evtFactory, ValueTuple_3_t0830D9C281DA2A9A8B1564AB60C647F6DA504260 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_3__ctor_m87559564AF2D998C77B3A32071401EB5F61609C7_gshared (Func_3_tE46795E42BBCE12AACFA5423D869FC080617614A* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_3__ctor_m22396F973EE6CE297FA2EBA15850B3EA46698C04_gshared (ValueTuple_3_t5955F42FF36506750DBDF6E15B988AC705ACCEC6* __this, RuntimeObject* ___0_item1, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_item2, ValueTuple_2_t85FD60472857DFEA88086C45948C596619D3CA21 ___2_item3, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_t5955F42FF36506750DBDF6E15B988AC705ACCEC6_mE5D31181E5E5AC1B0FC055077D05EE36A9F7AA39_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_tA3DDAB5A72CEB154FB50A12CE39636838C9008FA* ___4_evtFactory, ValueTuple_3_t5955F42FF36506750DBDF6E15B988AC705ACCEC6 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_3_Invoke_m36A4590C67B181D92E947D2ACB6735DCB0CD6674_gshared_inline (Func_3_t799252D9458F2AB207641E15DE8B7454B75CEA8F* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_t0830D9C281DA2A9A8B1564AB60C647F6DA504260 ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventBase_1_get_pressedButtons_mD44593EB9F5A5992961586234A01D44B871A1F64_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_3_Invoke_mD09FD3F0808212D95417C357CC46040755C85E57_gshared_inline (Func_3_tE46795E42BBCE12AACFA5423D869FC080617614A* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_t5955F42FF36506750DBDF6E15B988AC705ACCEC6 ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_3_Invoke_m2BF5DCF45D3EF48839CD557A9FF7D650F1071E07_gshared_inline (Func_3_t9926DBF6281A1654219C4F2EBA82ECA603217AB3* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_tAF08A8B8A8BDFE5BD5BB3273D7077FC68E7DE439 ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_3_Invoke_m271D202F8C2B215CAFA07750D2DF9D16122C7CF7_gshared_inline (Func_3_tA9B5A88DCB3DB2DE61C94876A083D9588C92C1F4* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_tC8BBB30E9E4977D3D5D3D770C29BC7D26F8D7340 ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_3_Invoke_mA041125511038BB3284216ADC8F3E4893EB259AF_gshared_inline (Func_3_tAFE936B287B527454DD2220949C128C7BDA3400E* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_tD815A2B59927FD0A0A8BC994BDDF93E1997053C4 ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_3_Invoke_m722F564B38C81B33BC14F03C32E693EBBE2457C4_gshared_inline (Func_3_tA93E7480FC9A114D507BE035FA9F69D9BB56F914* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_t2C125774ADD00599458B6333E72F7533D3866597 ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_3_Invoke_mF89F78BAB778FDA16A1DD3C8DF8C35343E0ACB96_gshared_inline (Func_3_t8BC9FC348AB48122C5017A7102263AE1045C5819* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_t7710F86A623C8F578E76B4EAC47B05AA6EFE7B64 ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_3__ctor_mFD55B04889D5B569F781B49E3EAA3A88093A0CCA_gshared (Func_3_t9926DBF6281A1654219C4F2EBA82ECA603217AB3* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_3__ctor_mB2C018AE93C2CCB22857290E2D5F9FCF96DB8E6E_gshared (ValueTuple_3_tAF08A8B8A8BDFE5BD5BB3273D7077FC68E7DE439* __this, RuntimeObject* ___0_item1, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_item2, ValueTuple_3_t083FB9C32ED0C25542A5131205E7A8A0B87F1D15 ___2_item3, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_tAF08A8B8A8BDFE5BD5BB3273D7077FC68E7DE439_m301B1D383A6FD8823AC5FB57967832F576259A0F_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_t8E1C99C1281A1FE16C6EC1708A9B501F03768680* ___4_evtFactory, ValueTuple_3_tAF08A8B8A8BDFE5BD5BB3273D7077FC68E7DE439 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_3__ctor_m30D3E76B0CC7E4B41D705F28CCFB16E15084E302_gshared (Func_3_tA9B5A88DCB3DB2DE61C94876A083D9588C92C1F4* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_3__ctor_mBA850B9EBE10526C8AA5A7B00E00E1A16D5C074D_gshared (ValueTuple_3_tC8BBB30E9E4977D3D5D3D770C29BC7D26F8D7340* __this, RuntimeObject* ___0_item1, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_item2, ValueTuple_4_tEC98A0C80E3AD3740A1A365E6A6F25E9CC2FAAE7 ___2_item3, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_tC8BBB30E9E4977D3D5D3D770C29BC7D26F8D7340_m1B17141BA48CA9A0522154FDDC7AD640B3563F76_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_t3431757396CB42FB4FA1735910FD76FB77E568CF* ___4_evtFactory, ValueTuple_3_tC8BBB30E9E4977D3D5D3D770C29BC7D26F8D7340 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_3__ctor_m3EC2124B4A61A166D655923301E1638C9A1DB850_gshared (Func_3_tAFE936B287B527454DD2220949C128C7BDA3400E* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_3__ctor_mA5776C43A1302B00391119CA94E26038C9C93EBD_gshared (ValueTuple_3_tD815A2B59927FD0A0A8BC994BDDF93E1997053C4* __this, RuntimeObject* ___0_item1, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_item2, RuntimeObject* ___2_item3, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_tD815A2B59927FD0A0A8BC994BDDF93E1997053C4_m6A22A0165E7C0873C485E600CF30B0085C7E2FF5_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_t25A788C45878510857F0D5339F041D8B9FFB0DF7* ___4_evtFactory, ValueTuple_3_tD815A2B59927FD0A0A8BC994BDDF93E1997053C4 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_3__ctor_m1E21C7FFC2063F9FECB94E843EC45A2D0FF4FD4E_gshared (Func_3_tA93E7480FC9A114D507BE035FA9F69D9BB56F914* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_3__ctor_m7DDAC95BD2E10BEA268099CAB722FA4E08982B60_gshared (ValueTuple_3_t2C125774ADD00599458B6333E72F7533D3866597* __this, RuntimeObject* ___0_item1, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_item2, PenData_t2345B5FBD18D851528C5C18F8A667D4EF4690945 ___2_item3, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_t2C125774ADD00599458B6333E72F7533D3866597_mCD8CA3DFF30F0654C475AC703F76A4316D30499B_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_tBD64F3C7DBE49CCECEC1DA85C48BC4C4E61F1CD0* ___4_evtFactory, ValueTuple_3_t2C125774ADD00599458B6333E72F7533D3866597 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_3__ctor_mAB800E7134D8E52646FD55A8B2979AC908028759_gshared (ValueTuple_3_t182F852EE39DD805E380FD93762C931C933ACE98* __this, Il2CppFullySharedGenericAny ___0_item1, Il2CppFullySharedGenericAny ___1_item2, Il2CppFullySharedGenericAny ___2_item3, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CallbackArray_1_get_length_m81CB1E446FBEF126C2096B08E643D63ACDDBD0F1_gshared (CallbackArray_1_t70C9B62D06582BEAC403C9259B541A2D8D4B4A1F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackArray_1_LockForChanges_mB15D8203ADAEA8AEF523BE53D79B7CF828301CB6_gshared (CallbackArray_1_t70C9B62D06582BEAC403C9259B541A2D8D4B4A1F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CallbackArray_1_get_Item_m567E182F190B5CEBFBA0D02E0E33AD7A5E46F7E1_gshared (CallbackArray_1_t70C9B62D06582BEAC403C9259B541A2D8D4B4A1F* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m30D56EDF2807EF309EEF182BA63A3F0EF0B08A15_gshared_inline (Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackArray_1_UnlockForChanges_mA6BDFF9ECCA7A79D6017AFB24BF5932CC3B30197_gshared (CallbackArray_1_t70C9B62D06582BEAC403C9259B541A2D8D4B4A1F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mC9D2864A52CF07F93C51935D9DCDF73E96FED543_gshared_inline (Action_1_tEB0353AA1A112B6F2D921B58DCC9D9D4C0498E6E* __this, CallbackContext_tB251EE41F509C6E8A6B05EC97C029A45DF4F5FA8 ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m5CA7C522C42D2A1120BA23ED9913909EF92762C5_gshared_inline (Action_2_tD987B97B18D27B9920365359C46BC12702AD4F7D* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m3AE16EB1F624AEBB87FA2FC37FC6D58694C23434_gshared_inline (Action_2_t51C134DC0CD7F5ED5E83EE70AD1FE0FDFF6DDCCF* __this, RuntimeObject* ___0_arg1, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m3BFB5987F7235AEF25980B76D635DBD5B56B0F7A_gshared_inline (Action_2_t9C4E97D0565650F0AEF7C72077EB8A0F9326E40B* __this, RuntimeObject* ___0_arg1, int32_t ___1_arg2, const RuntimeMethod* method) ;
|
|
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___0_handle, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D ConverterGroup_get_registry_m8995D579AD2B9B3F4C9668FDEAB0969422F5A754_inline (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverterRegistry_TryGetConverter_mAAF94362D6662DC408E95C3ACADD5FF4310A80C6 (TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D* __this, Type_t* ___0_source, Type_t* ___1_destination, Delegate_t** ___2_converter, const RuntimeMethod* method) ;
|
|
inline int8_t TypeConverter_2_Invoke_m4DBD0B58BB7C3846B3A32B07F1771511AD3EB6FD_inline (TypeConverter_2_t370B4F69ADC2867DC21BE14FA947E12DD9BD0462* __this, double* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
return (( int8_t (*) (TypeConverter_2_t370B4F69ADC2867DC21BE14FA947E12DD9BD0462*, double*, const RuntimeMethod*))TypeConverter_2_Invoke_m4DBD0B58BB7C3846B3A32B07F1771511AD3EB6FD_gshared_inline)(__this, ___0_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318 (Type_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC (Type_t* ___0_left, Type_t* ___1_right, const RuntimeMethod* method) ;
|
|
inline int8_t* UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_mA9E079DFD763D84B8FA5593BDEAD16AAFC8BD546_inline (double* ___0_from, const RuntimeMethod* method)
|
|
{
|
|
return (( int8_t* (*) (double*, const RuntimeMethod*))UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_mA9E079DFD763D84B8FA5593BDEAD16AAFC8BD546_gshared_inline)(___0_from, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m7499A5D792419537DCB9470A3675CEF5117DE339 (double* __this, const RuntimeMethod* method) ;
|
|
inline bool TypeTraits_1_get_IsValueType_mA4EC7C62F3D525F3046A4FECDE46919367925E98_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (const RuntimeMethod*))TypeTraits_1_get_IsValueType_mA4EC7C62F3D525F3046A4FECDE46919367925E98_gshared_inline)(method);
|
|
}
|
|
inline float TypeConverter_2_Invoke_m24961A5FF38B2207EC3DED8E909E7F595C619E71_inline (TypeConverter_2_tBB893836100D5BA5086C7F2638C9D63D6FC61559* __this, double* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
return (( float (*) (TypeConverter_2_tBB893836100D5BA5086C7F2638C9D63D6FC61559*, double*, const RuntimeMethod*))TypeConverter_2_Invoke_m24961A5FF38B2207EC3DED8E909E7F595C619E71_gshared_inline)(__this, ___0_value, method);
|
|
}
|
|
inline float* UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m78C79739929AAB266580F0DD602A59D776CE3467_inline (double* ___0_from, const RuntimeMethod* method)
|
|
{
|
|
return (( float* (*) (double*, const RuntimeMethod*))UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m78C79739929AAB266580F0DD602A59D776CE3467_gshared_inline)(___0_from, method);
|
|
}
|
|
inline uint16_t TypeConverter_2_Invoke_mA6D015A5E76471F6A2D58F4E0C8AEC5058DCE134_inline (TypeConverter_2_tB736BA63BC9F9885972433F0B1D7232E2AAE0585* __this, double* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
return (( uint16_t (*) (TypeConverter_2_tB736BA63BC9F9885972433F0B1D7232E2AAE0585*, double*, const RuntimeMethod*))TypeConverter_2_Invoke_mA6D015A5E76471F6A2D58F4E0C8AEC5058DCE134_gshared_inline)(__this, ___0_value, method);
|
|
}
|
|
inline uint16_t* UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m1222A63B0F5D73BB7A0572CEE1D84313296D428C_inline (double* ___0_from, const RuntimeMethod* method)
|
|
{
|
|
return (( uint16_t* (*) (double*, const RuntimeMethod*))UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m1222A63B0F5D73BB7A0572CEE1D84313296D428C_gshared_inline)(___0_from, method);
|
|
}
|
|
inline uint32_t TypeConverter_2_Invoke_m20ADC0EA3465CE5CF733DD4244D30F2461F6BB2F_inline (TypeConverter_2_tA07ADAC5ACD7A76F41C95586D89B438C04D44409* __this, double* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
return (( uint32_t (*) (TypeConverter_2_tA07ADAC5ACD7A76F41C95586D89B438C04D44409*, double*, const RuntimeMethod*))TypeConverter_2_Invoke_m20ADC0EA3465CE5CF733DD4244D30F2461F6BB2F_gshared_inline)(__this, ___0_value, method);
|
|
}
|
|
inline uint32_t* UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mCB835683A3E41B945C251D37F399CC838E245030_inline (double* ___0_from, const RuntimeMethod* method)
|
|
{
|
|
return (( uint32_t* (*) (double*, const RuntimeMethod*))UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mCB835683A3E41B945C251D37F399CC838E245030_gshared_inline)(___0_from, method);
|
|
}
|
|
inline uint64_t TypeConverter_2_Invoke_mBF92648B15FEA94F0572738B7E0E2A849216DE4A_inline (TypeConverter_2_t794BDD9B9C3A12BF490C7710C609706E72EDABCD* __this, double* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
return (( uint64_t (*) (TypeConverter_2_t794BDD9B9C3A12BF490C7710C609706E72EDABCD*, double*, const RuntimeMethod*))TypeConverter_2_Invoke_mBF92648B15FEA94F0572738B7E0E2A849216DE4A_gshared_inline)(__this, ___0_value, method);
|
|
}
|
|
inline uint64_t* UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mF1C1F5513615654E580D9CAE0338257FD7BC609F_inline (double* ___0_from, const RuntimeMethod* method)
|
|
{
|
|
return (( uint64_t* (*) (double*, const RuntimeMethod*))UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mF1C1F5513615654E580D9CAE0338257FD7BC609F_gshared_inline)(___0_from, method);
|
|
}
|
|
inline DefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A Activator_CreateInstance_TisDefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A_m67168082B56486E52ACE1428D1D092E51E978A2B (const RuntimeMethod* method)
|
|
{
|
|
return (( DefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A (*) (const RuntimeMethod*))Activator_CreateInstance_TisDefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A_m67168082B56486E52ACE1428D1D092E51E978A2B_gshared)(method);
|
|
}
|
|
inline Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 UnsafeUtility_ReadArrayElement_TisHash128_t93367F504B687578F893CDBCD13FB95AC8A87A40_m58AF406949C6230522BA3871914D69034FED4CFD_inline (void* ___0_source, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
return (( Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 (*) (void*, int32_t, const RuntimeMethod*))UnsafeUtility_ReadArrayElement_TisHash128_t93367F504B687578F893CDBCD13FB95AC8A87A40_m58AF406949C6230522BA3871914D69034FED4CFD_gshared_inline)(___0_source, ___1_index, method);
|
|
}
|
|
inline Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 DefaultKeyGetter_1_Get_m6699590F94D8E768EE4CF487A7447AE87FDC2B9B (DefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A* __this, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40* ___0_v, const RuntimeMethod* method)
|
|
{
|
|
return (( Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 (*) (DefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A*, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40*, const RuntimeMethod*))DefaultKeyGetter_1_Get_m6699590F94D8E768EE4CF487A7447AE87FDC2B9B_gshared)(__this, ___0_v, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashUtilities_AppendHash_m08A1CDC54D065F3F4FB2D9D158659FBB79A8D30F (Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40* ___0_inHash, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40* ___1_outHash, const RuntimeMethod* method) ;
|
|
inline void CoreUnsafeUtils_CombineHashes_TisHash128_t93367F504B687578F893CDBCD13FB95AC8A87A40_TisDefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A_mEA26DB028FEEB21C80F51B51CC2C4B2B2C178B47 (int32_t ___0_count, void* ___1_hashes, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40* ___2_outHash, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (int32_t, void*, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40*, const RuntimeMethod*))CoreUnsafeUtils_CombineHashes_TisHash128_t93367F504B687578F893CDBCD13FB95AC8A87A40_TisDefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A_mEA26DB028FEEB21C80F51B51CC2C4B2B2C178B47_gshared)(___0_count, ___1_hashes, ___2_outHash, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Hash128_op_Equality_m870F4E857699627E5235BBD0698022E023C8C8F5 (Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ___0_hash1, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ___1_hash2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Hash128_op_LessThan_mD2B90720E6C871528BB20F19FED34883A5BC8A43 (Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ___0_x, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_inline (int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
inline void UnsafeUtility_WriteArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m0DD1CC90B2F1EF5041F2F4E1DABB58224229F0D7_inline (void* ___0_destination, int32_t ___1_index, int32_t ___2_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (void*, int32_t, int32_t, const RuntimeMethod*))UnsafeUtility_WriteArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m0DD1CC90B2F1EF5041F2F4E1DABB58224229F0D7_gshared_inline)(___0_destination, ___1_index, ___2_value, method);
|
|
}
|
|
inline int32_t UnsafeUtility_ReadArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFBA66C06ECEB0A2BC1AAE634B6E6BB436F957084_inline (void* ___0_source, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (void*, int32_t, const RuntimeMethod*))UnsafeUtility_ReadArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFBA66C06ECEB0A2BC1AAE634B6E6BB436F957084_gshared_inline)(___0_source, ___1_index, method);
|
|
}
|
|
inline int32_t DefaultKeyGetter_1_Get_m8B4B941EA0C8006F2B7DA22EBF15AC62D8392A2F (DefaultKeyGetter_1_tBB6F2B964D7D24105393917DE1AD62F2FD307C6E* __this, int32_t* ___0_v, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (DefaultKeyGetter_1_tBB6F2B964D7D24105393917DE1AD62F2FD307C6E*, int32_t*, const RuntimeMethod*))DefaultKeyGetter_1_Get_m8B4B941EA0C8006F2B7DA22EBF15AC62D8392A2F_gshared)(__this, ___0_v, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586 (int32_t* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
inline uint32_t UnsafeUtility_ReadArrayElement_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mDA80BAFF55EA77496672B3B5B3804B55274B7E95_inline (void* ___0_source, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
return (( uint32_t (*) (void*, int32_t, const RuntimeMethod*))UnsafeUtility_ReadArrayElement_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mDA80BAFF55EA77496672B3B5B3804B55274B7E95_gshared_inline)(___0_source, ___1_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UintKeyGetter_Get_m76C2635B8A8D4EFDFCF2157D5A691B9C0D7F6141 (UintKeyGetter_tA42A60857A313F21755ED561D57B21FAF9750DD8* __this, uint32_t* ___0_v, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UInt32_CompareTo_mC96F15BE2B06C0268AD1D110D3251CE4DBA43907 (uint32_t* __this, uint32_t ___0_value, const RuntimeMethod* method) ;
|
|
inline void UnsafeUtility_WriteArrayElement_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m839FEB3192BEC0090FBA73A11E371E1A01C13ADF_inline (void* ___0_destination, int32_t ___1_index, uint32_t ___2_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (void*, int32_t, uint32_t, const RuntimeMethod*))UnsafeUtility_WriteArrayElement_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m839FEB3192BEC0090FBA73A11E371E1A01C13ADF_gshared_inline)(___0_destination, ___1_index, ___2_value, method);
|
|
}
|
|
inline uint64_t UnsafeUtility_ReadArrayElement_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m8F5B829A65BCE22A8B2364D1C303A1E2876A3898_inline (void* ___0_source, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
return (( uint64_t (*) (void*, int32_t, const RuntimeMethod*))UnsafeUtility_ReadArrayElement_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m8F5B829A65BCE22A8B2364D1C303A1E2876A3898_gshared_inline)(___0_source, ___1_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t UlongKeyGetter_Get_m57FA0FA5BEE63D52893276B28478786DCB72380F (UlongKeyGetter_t7A83E03588BDDB856F8A6AF8E2172EC7C3CF99D5* __this, uint64_t* ___0_v, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UInt64_CompareTo_m1292E47C1FE2A1FC5BC5E6E2EB9C1FCDCEFE7745 (uint64_t* __this, uint64_t ___0_value, const RuntimeMethod* method) ;
|
|
inline void UnsafeUtility_WriteArrayElement_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mC1C144C4AC4D9B3B2C30F06F88CB6E6AB475125E_inline (void* ___0_destination, int32_t ___1_index, uint64_t ___2_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (void*, int32_t, uint64_t, const RuntimeMethod*))UnsafeUtility_WriteArrayElement_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mC1C144C4AC4D9B3B2C30F06F88CB6E6AB475125E_gshared_inline)(___0_destination, ___1_index, ___2_value, method);
|
|
}
|
|
inline void CoreUnsafeUtils_QuickSort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisDefaultKeyGetter_1_tBB6F2B964D7D24105393917DE1AD62F2FD307C6E_m6AF2CFD9286A6ED43C3DF31769B1D0340C3ACC06 (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (void*, int32_t, int32_t, const RuntimeMethod*))CoreUnsafeUtils_QuickSort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisDefaultKeyGetter_1_tBB6F2B964D7D24105393917DE1AD62F2FD307C6E_m6AF2CFD9286A6ED43C3DF31769B1D0340C3ACC06_gshared)(___0_data, ___1_left, ___2_right, method);
|
|
}
|
|
inline int32_t CoreUnsafeUtils_Partition_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisDefaultKeyGetter_1_tBB6F2B964D7D24105393917DE1AD62F2FD307C6E_mAC5F5E9E51408AD4EEA602903ABE28B277403372 (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (void*, int32_t, int32_t, const RuntimeMethod*))CoreUnsafeUtils_Partition_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisDefaultKeyGetter_1_tBB6F2B964D7D24105393917DE1AD62F2FD307C6E_mAC5F5E9E51408AD4EEA602903ABE28B277403372_gshared)(___0_data, ___1_left, ___2_right, method);
|
|
}
|
|
inline int32_t CoreUnsafeUtils_Partition_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUintKeyGetter_tA42A60857A313F21755ED561D57B21FAF9750DD8_m8D31651B9A18E49E59DDA2DBAAAD6FC92CFF6A56 (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (void*, int32_t, int32_t, const RuntimeMethod*))CoreUnsafeUtils_Partition_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUintKeyGetter_tA42A60857A313F21755ED561D57B21FAF9750DD8_m8D31651B9A18E49E59DDA2DBAAAD6FC92CFF6A56_gshared)(___0_data, ___1_left, ___2_right, method);
|
|
}
|
|
inline void CoreUnsafeUtils_QuickSort_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUintKeyGetter_tA42A60857A313F21755ED561D57B21FAF9750DD8_mA04BB389454EC77314C0485B0E45EDA54F421347 (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (void*, int32_t, int32_t, const RuntimeMethod*))CoreUnsafeUtils_QuickSort_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUintKeyGetter_tA42A60857A313F21755ED561D57B21FAF9750DD8_mA04BB389454EC77314C0485B0E45EDA54F421347_gshared)(___0_data, ___1_left, ___2_right, method);
|
|
}
|
|
inline int32_t CoreUnsafeUtils_Partition_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUlongKeyGetter_t7A83E03588BDDB856F8A6AF8E2172EC7C3CF99D5_mCD87D2374166349A7E3ECC8E37652CF66932BE4D (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (void*, int32_t, int32_t, const RuntimeMethod*))CoreUnsafeUtils_Partition_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUlongKeyGetter_t7A83E03588BDDB856F8A6AF8E2172EC7C3CF99D5_mCD87D2374166349A7E3ECC8E37652CF66932BE4D_gshared)(___0_data, ___1_left, ___2_right, method);
|
|
}
|
|
inline void CoreUnsafeUtils_QuickSort_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUlongKeyGetter_t7A83E03588BDDB856F8A6AF8E2172EC7C3CF99D5_mBDC4803735141628F7BC6D8EFDBA0313227CA989 (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (void*, int32_t, int32_t, const RuntimeMethod*))CoreUnsafeUtils_QuickSort_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUlongKeyGetter_t7A83E03588BDDB856F8A6AF8E2172EC7C3CF99D5_mBDC4803735141628F7BC6D8EFDBA0313227CA989_gshared)(___0_data, ___1_left, ___2_right, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CoreUtils_GetAllAssemblyTypes_m3E680308BC021DD4E3887C5557690CDDB49F5702 (const RuntimeMethod* method) ;
|
|
inline void Func_2__ctor_mAFDFA2B152082BBF5E0626BF143EDACD61DE9D74 (Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m13C0A7F33154D861E2A041B52E88461832DA1697_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline RuntimeObject* Enumerable_Where_TisType_t_mA4A7776893ADF4E3CAB6F7AEC94DF71DDF7931F8 (RuntimeObject* ___0_source, Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E* ___1_predicate, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (RuntimeObject*, Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E*, const RuntimeMethod*))Enumerable_Where_TisRuntimeObject_m5DAF16724887B42DDBBF391C7F375749E8AA4AD7_gshared)(___0_source, ___1_predicate, method);
|
|
}
|
|
inline RuntimeObject* Enumerable_Cast_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_mD7DF983428BF05DC218A798F599F830973BF8FFC (RuntimeObject* ___0_source, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_Cast_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_mD7DF983428BF05DC218A798F599F830973BF8FFC_gshared)(___0_source, method);
|
|
}
|
|
inline int32_t Enumerable_Last_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m4152A55863ECF1B46E7D359EE96B7B88C0634AD9 (RuntimeObject* ___0_source, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_Last_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m4152A55863ECF1B46E7D359EE96B7B88C0634AD9_gshared)(___0_source, method);
|
|
}
|
|
inline NativeArray_1_t71485A1E60B31CCAD3E525C907CF172E8B804468 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisVisibleLight_t0A4DF5B22865A00F618A0352B805277FA0132805_m212572101685FD8A1B11AE6CB89F859D04721B05 (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t71485A1E60B31CCAD3E525C907CF172E8B804468 (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisVisibleLight_t0A4DF5B22865A00F618A0352B805277FA0132805_m212572101685FD8A1B11AE6CB89F859D04721B05_gshared)(___0_dataPointer, ___1_length, ___2_allocator, method);
|
|
}
|
|
inline NativeArray_1_t71485A1E60B31CCAD3E525C907CF172E8B804468 CullingResults_GetNativeArray_TisVisibleLight_t0A4DF5B22865A00F618A0352B805277FA0132805_mB9817677C042A4D184CE33B7C16AEE37E5A6E2CE (CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267* __this, void* ___0_dataPointer, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t71485A1E60B31CCAD3E525C907CF172E8B804468 (*) (CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267*, void*, int32_t, const RuntimeMethod*))CullingResults_GetNativeArray_TisVisibleLight_t0A4DF5B22865A00F618A0352B805277FA0132805_mB9817677C042A4D184CE33B7C16AEE37E5A6E2CE_gshared)(__this, ___0_dataPointer, ___1_length, method);
|
|
}
|
|
inline NativeArray_1_t3CC4179AFF43449D3539816D3EE4D2D69B6022E8 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisVisibleReflectionProbe_t8AF1FAD09A36E33F5101B683DB8E99582815EF0B_mA1B9B486611AB443D9F931830D9481B1E9D6FAF1 (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t3CC4179AFF43449D3539816D3EE4D2D69B6022E8 (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisVisibleReflectionProbe_t8AF1FAD09A36E33F5101B683DB8E99582815EF0B_mA1B9B486611AB443D9F931830D9481B1E9D6FAF1_gshared)(___0_dataPointer, ___1_length, ___2_allocator, method);
|
|
}
|
|
inline NativeArray_1_t3CC4179AFF43449D3539816D3EE4D2D69B6022E8 CullingResults_GetNativeArray_TisVisibleReflectionProbe_t8AF1FAD09A36E33F5101B683DB8E99582815EF0B_m64623DE34C36FFB68DFE5A894F3B0A4D5E4DE018 (CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267* __this, void* ___0_dataPointer, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t3CC4179AFF43449D3539816D3EE4D2D69B6022E8 (*) (CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267*, void*, int32_t, const RuntimeMethod*))CullingResults_GetNativeArray_TisVisibleReflectionProbe_t8AF1FAD09A36E33F5101B683DB8E99582815EF0B_m64623DE34C36FFB68DFE5A894F3B0A4D5E4DE018_gshared)(__this, ___0_dataPointer, ___1_length, method);
|
|
}
|
|
inline NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 CullingResults_GetNativeArray_TisIl2CppFullySharedGenericStruct_mAD95E79FFE908C81E8C8514A3F2E8E583998A7C0 (CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267* __this, void* ___0_dataPointer, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 (*) (CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267*, void*, int32_t, const RuntimeMethod*))CullingResults_GetNativeArray_TisIl2CppFullySharedGenericStruct_mAD95E79FFE908C81E8C8514A3F2E8E583998A7C0_gshared)(__this, ___0_dataPointer, ___1_length, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* CustomAttributeExtensions_GetCustomAttribute_m5BEDBB46CF1A8378A386E144E4591C9BEDAF1A9B (Assembly_t* ___0_element, Type_t* ___1_attributeType, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* CustomAttributeExtensions_GetCustomAttribute_m7241E02800DB70BF4B7FE0DD35A57C32196B4030 (MemberInfo_t* ___0_element, Type_t* ___1_attributeType, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* CustomAttributeExtensions_GetCustomAttribute_m8451F6949BEA92A69AE673CD95D6AD767B66880A (MemberInfo_t* ___0_element, Type_t* ___1_attributeType, bool ___2_inherit, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CustomAttributeExtensions_GetCustomAttributes_mA663A241432473A89C830284F82A775F47A76FDC (MemberInfo_t* ___0_element, Type_t* ___1_attributeType, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CustomAttributeExtensions_GetCustomAttributes_m19F5D9C3B60FA00E4692C21EC0D59328FAF631AE (MemberInfo_t* ___0_element, Type_t* ___1_attributeType, bool ___2_inherit, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987 (String_t* ___0_format, RuntimeObject* ___1_arg0, RuntimeObject* ___2_arg1, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m093934F71A9B351911EE46311674ED463B180006 (String_t* ___0_str0, String_t* ___1_str1, String_t* ___2_str2, String_t* ___3_str3, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9E3155FB84015C823606188F53B47CB44C444991 (String_t* ___0_str0, String_t* ___1_str1, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyPath_get_IsEmpty_m5923CD28AB201F75C64F40AED27C7E42FC5DBF50 (PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28 (BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___0_vep, const RuntimeMethod* method) ;
|
|
inline bool PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059 (RuntimeObject** ___0_container, String_t* ___1_name, RuntimeObject** ___2_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (RuntimeObject**, String_t*, RuntimeObject**, const RuntimeMethod*))PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_gshared)(___0_container, ___1_name, ___2_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___0_values, const RuntimeMethod* method) ;
|
|
inline bool PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20 (RuntimeObject** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, RuntimeObject** ___2_property, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (RuntimeObject**, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, RuntimeObject**, const RuntimeMethod*))PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_gshared)(___0_container, ___1_path, ___2_property, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* BindingContext_get_dataSource_mF6CA0E5AED1F7DCA5619AEBA09F9F8F05D1CF504_inline (BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* DataBinding_get_uiToSourceConverters_m4454C568EA66F782C5F894F3FB4DBC4D3F922867 (DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 BindingContext_get_dataSourcePath_m10A8B994ADD410BE92EAD7E0143C64C3A60B36BA_inline (BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* BindingContext_get_targetElement_m3E4F5FD912C4659E09308288F4F054457FB48691_inline (BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline (BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 BindingId_op_Implicit_m59B81D19F3282655F5E65A49E7E1BBE666313528 (BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___0_vep, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E BindingId_op_Implicit_m576A873786EE4F8CE01DDAFE952500CA8372927E (PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___0_path, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4 (BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB* __this, int32_t ___0_status, String_t* ___1_message, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_f, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualElement_ClassListContains_m202159CA74B09E919CBF4497AA5FAD6AD9B1666F (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, String_t* ___0_cls, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TextElement_get_edition_m29D5704DD0B49EA8AC63B5CEBA9A69AC075327CC (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* DataBinding_get_sourceToUiConverters_m2888B514C8EB942094376F57EFB6218E678F9409 (DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA* __this, const RuntimeMethod* method) ;
|
|
inline bool ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m58CDBC0B28C4B65BCCB3844FDD0A810733CFD891 (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, bool ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115**, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, bool, int32_t*, const RuntimeMethod*))ConverterGroup_TrySetValue_TisRuntimeObject_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m83683F2CE4616120DEA066623930906DC2DE159C_gshared)(__this, ___0_container, ___1_path, ___2_value, ___3_returnCode, method);
|
|
}
|
|
inline String_t* DataBinding_GetSetValueErrorString_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m9E7E4DCE5828E839CBEB9C6ACFC507852ED0CEC6 (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, bool ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (int32_t, RuntimeObject*, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, RuntimeObject*, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*, bool, const RuntimeMethod*))DataBinding_GetSetValueErrorString_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m9E7E4DCE5828E839CBEB9C6ACFC507852ED0CEC6_gshared)(___0_returnCode, ___1_source, ___2_sourcePath, ___3_target, ___4_targetPath, ___5_extractedValueFromSource, method);
|
|
}
|
|
inline bool ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m86ADEFC45B74BBE3BD67E4942F5F07C7D16D5AB7 (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, uint8_t ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115**, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, uint8_t, int32_t*, const RuntimeMethod*))ConverterGroup_TrySetValue_TisRuntimeObject_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m91A27414E0E3FF3B4384EA59809C86C3AD36778B_gshared)(__this, ___0_container, ___1_path, ___2_value, ___3_returnCode, method);
|
|
}
|
|
inline String_t* DataBinding_GetSetValueErrorString_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m2BB4E686E362E0B72CFE055ECC55E3F07D9DA26A (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, uint8_t ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (int32_t, RuntimeObject*, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, RuntimeObject*, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*, uint8_t, const RuntimeMethod*))DataBinding_GetSetValueErrorString_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m2BB4E686E362E0B72CFE055ECC55E3F07D9DA26A_gshared)(___0_returnCode, ___1_source, ___2_sourcePath, ___3_target, ___4_targetPath, ___5_extractedValueFromSource, method);
|
|
}
|
|
inline bool ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mAC991187426224419029A5DCD132DDE6FDFFEA6C (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, Il2CppChar ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115**, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, Il2CppChar, int32_t*, const RuntimeMethod*))ConverterGroup_TrySetValue_TisRuntimeObject_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m69AFE716F2742B6576C117041C2F63BF81FFFB4E_gshared)(__this, ___0_container, ___1_path, ___2_value, ___3_returnCode, method);
|
|
}
|
|
inline String_t* DataBinding_GetSetValueErrorString_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD538741205AF482803DA3A02E0A67C9B8209F810 (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, Il2CppChar ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (int32_t, RuntimeObject*, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, RuntimeObject*, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*, Il2CppChar, const RuntimeMethod*))DataBinding_GetSetValueErrorString_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD538741205AF482803DA3A02E0A67C9B8209F810_gshared)(___0_returnCode, ___1_source, ___2_sourcePath, ___3_target, ___4_targetPath, ___5_extractedValueFromSource, method);
|
|
}
|
|
inline bool ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m232A1C32F9C13B7B4A160441740BD4B85FB9590A (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, double ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115**, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, double, int32_t*, const RuntimeMethod*))ConverterGroup_TrySetValue_TisRuntimeObject_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m35BAB14CF8DE498E2DEBC8427AA1CAE2106C7474_gshared)(__this, ___0_container, ___1_path, ___2_value, ___3_returnCode, method);
|
|
}
|
|
inline String_t* DataBinding_GetSetValueErrorString_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_mEABCBB742A7CAE1D09910287456EE605D8CE4AEB (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, double ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (int32_t, RuntimeObject*, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, RuntimeObject*, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*, double, const RuntimeMethod*))DataBinding_GetSetValueErrorString_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_mEABCBB742A7CAE1D09910287456EE605D8CE4AEB_gshared)(___0_returnCode, ___1_source, ___2_sourcePath, ___3_target, ___4_targetPath, ___5_extractedValueFromSource, method);
|
|
}
|
|
inline bool ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisInt16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_m42DA3202F30155CB932260F258D37CE3DF4ABA0E (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, int16_t ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115**, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, int16_t, int32_t*, const RuntimeMethod*))ConverterGroup_TrySetValue_TisRuntimeObject_TisInt16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_m486D4E61865B143368793E9904E71D0F9B410EB8_gshared)(__this, ___0_container, ___1_path, ___2_value, ___3_returnCode, method);
|
|
}
|
|
inline String_t* DataBinding_GetSetValueErrorString_TisInt16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_mD352A5FD1DE2B0820D7BFB91DA2ACC240A372C0A (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, int16_t ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (int32_t, RuntimeObject*, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, RuntimeObject*, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*, int16_t, const RuntimeMethod*))DataBinding_GetSetValueErrorString_TisInt16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_mD352A5FD1DE2B0820D7BFB91DA2ACC240A372C0A_gshared)(___0_returnCode, ___1_source, ___2_sourcePath, ___3_target, ___4_targetPath, ___5_extractedValueFromSource, method);
|
|
}
|
|
inline bool ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m395AA0123C949B05D064A20073C2DE09C63AE0B8 (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, int32_t ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115**, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, int32_t, int32_t*, const RuntimeMethod*))ConverterGroup_TrySetValue_TisRuntimeObject_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m34387BEE9C02DFCC4E0BA3925CE8F31ADAF1CABA_gshared)(__this, ___0_container, ___1_path, ___2_value, ___3_returnCode, method);
|
|
}
|
|
inline String_t* DataBinding_GetSetValueErrorString_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mEB66817134A95892AC98FEB5E6177BDEE90DA11E (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, int32_t ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (int32_t, RuntimeObject*, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, RuntimeObject*, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*, int32_t, const RuntimeMethod*))DataBinding_GetSetValueErrorString_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mEB66817134A95892AC98FEB5E6177BDEE90DA11E_gshared)(___0_returnCode, ___1_source, ___2_sourcePath, ___3_target, ___4_targetPath, ___5_extractedValueFromSource, method);
|
|
}
|
|
inline bool ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_mF87C748B1D6CDFD399F6AEC5BBC439E9D112FA0F (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, int64_t ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115**, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, int64_t, int32_t*, const RuntimeMethod*))ConverterGroup_TrySetValue_TisRuntimeObject_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_mFA97251F9CAEA663BCDB8023632AC6F6D405B720_gshared)(__this, ___0_container, ___1_path, ___2_value, ___3_returnCode, method);
|
|
}
|
|
inline String_t* DataBinding_GetSetValueErrorString_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m5F50CBF79D617F92D22DD503F44A3B76E6CBD944 (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, int64_t ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (int32_t, RuntimeObject*, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, RuntimeObject*, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*, int64_t, const RuntimeMethod*))DataBinding_GetSetValueErrorString_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m5F50CBF79D617F92D22DD503F44A3B76E6CBD944_gshared)(___0_returnCode, ___1_source, ___2_sourcePath, ___3_target, ___4_targetPath, ___5_extractedValueFromSource, method);
|
|
}
|
|
inline bool ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisRuntimeObject_m95BC645D236503EE9930754C108375FA81ACB2BE (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, RuntimeObject* ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115**, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, RuntimeObject*, int32_t*, const RuntimeMethod*))ConverterGroup_TrySetValue_TisRuntimeObject_TisRuntimeObject_mB76C107B6F85C9B32FBC7396305953A4F59F1E60_gshared)(__this, ___0_container, ___1_path, ___2_value, ___3_returnCode, method);
|
|
}
|
|
inline String_t* DataBinding_GetSetValueErrorString_TisRuntimeObject_mF3A7F00209C07E2578250228DF1849108CE77911 (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, RuntimeObject* ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (int32_t, RuntimeObject*, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, RuntimeObject*, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*, RuntimeObject*, const RuntimeMethod*))DataBinding_GetSetValueErrorString_TisRuntimeObject_mF3A7F00209C07E2578250228DF1849108CE77911_gshared)(___0_returnCode, ___1_source, ___2_sourcePath, ___3_target, ___4_targetPath, ___5_extractedValueFromSource, method);
|
|
}
|
|
inline bool ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_m16E7BBD3A6747F996D4B887911D51535C062A677 (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, int8_t ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115**, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, int8_t, int32_t*, const RuntimeMethod*))ConverterGroup_TrySetValue_TisRuntimeObject_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_mBF3129705593561BB60C8D721FCF8365B48B253F_gshared)(__this, ___0_container, ___1_path, ___2_value, ___3_returnCode, method);
|
|
}
|
|
inline String_t* DataBinding_GetSetValueErrorString_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_mEEF2ED6254BBD880C65795276EA87FF59E11CE44 (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, int8_t ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (int32_t, RuntimeObject*, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, RuntimeObject*, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*, int8_t, const RuntimeMethod*))DataBinding_GetSetValueErrorString_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_mEEF2ED6254BBD880C65795276EA87FF59E11CE44_gshared)(___0_returnCode, ___1_source, ___2_sourcePath, ___3_target, ___4_targetPath, ___5_extractedValueFromSource, method);
|
|
}
|
|
inline bool ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m87A305C5E7BA08C400D911D619F3E1F82361399D (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, float ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115**, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, float, int32_t*, const RuntimeMethod*))ConverterGroup_TrySetValue_TisRuntimeObject_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mC0D3357D6DC472177A8B10BD335EF505DCF4D5A5_gshared)(__this, ___0_container, ___1_path, ___2_value, ___3_returnCode, method);
|
|
}
|
|
inline String_t* DataBinding_GetSetValueErrorString_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mA3D9DEFBC828EAAFAAB3C515C59EED3187228B70 (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, float ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (int32_t, RuntimeObject*, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, RuntimeObject*, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*, float, const RuntimeMethod*))DataBinding_GetSetValueErrorString_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mA3D9DEFBC828EAAFAAB3C515C59EED3187228B70_gshared)(___0_returnCode, ___1_source, ___2_sourcePath, ___3_target, ___4_targetPath, ___5_extractedValueFromSource, method);
|
|
}
|
|
inline bool ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_mBC0438CFFBB91DC54055DEC5D7FD852FA2D70732 (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, uint16_t ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115**, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, uint16_t, int32_t*, const RuntimeMethod*))ConverterGroup_TrySetValue_TisRuntimeObject_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m403AD6F4ADB18E31A6030FFDEBAFB4E5A36273E1_gshared)(__this, ___0_container, ___1_path, ___2_value, ___3_returnCode, method);
|
|
}
|
|
inline String_t* DataBinding_GetSetValueErrorString_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m091FE7BDAA857B98E917C5504C053BCB57B146DB (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, uint16_t ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (int32_t, RuntimeObject*, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, RuntimeObject*, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*, uint16_t, const RuntimeMethod*))DataBinding_GetSetValueErrorString_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m091FE7BDAA857B98E917C5504C053BCB57B146DB_gshared)(___0_returnCode, ___1_source, ___2_sourcePath, ___3_target, ___4_targetPath, ___5_extractedValueFromSource, method);
|
|
}
|
|
inline bool ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mC7FEE1D9D218EBE98AB87BA70AFA54CF5403A31F (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, uint32_t ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115**, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, uint32_t, int32_t*, const RuntimeMethod*))ConverterGroup_TrySetValue_TisRuntimeObject_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mB9D8354830F18F568E21D98A59F8B6C821DF11BB_gshared)(__this, ___0_container, ___1_path, ___2_value, ___3_returnCode, method);
|
|
}
|
|
inline String_t* DataBinding_GetSetValueErrorString_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m0884F2D81F8AFE20C37E26C96DD3F4A856ACA029 (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, uint32_t ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (int32_t, RuntimeObject*, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, RuntimeObject*, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*, uint32_t, const RuntimeMethod*))DataBinding_GetSetValueErrorString_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m0884F2D81F8AFE20C37E26C96DD3F4A856ACA029_gshared)(___0_returnCode, ___1_source, ___2_sourcePath, ___3_target, ___4_targetPath, ___5_extractedValueFromSource, method);
|
|
}
|
|
inline bool ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mF12D8925A4F5C6DB99F25CDC4EF50B941B71E124 (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___0_container, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___1_path, uint64_t ___2_value, int32_t* ___3_returnCode, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115**, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, uint64_t, int32_t*, const RuntimeMethod*))ConverterGroup_TrySetValue_TisRuntimeObject_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m4CE84A720DD6AE96E3B704309A89EE5531A0EFAB_gshared)(__this, ___0_container, ___1_path, ___2_value, ___3_returnCode, method);
|
|
}
|
|
inline String_t* DataBinding_GetSetValueErrorString_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m58DE243AAC43A3D991E8CD7D9D93BC5A0455369A (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, uint64_t ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (int32_t, RuntimeObject*, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, RuntimeObject*, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*, uint64_t, const RuntimeMethod*))DataBinding_GetSetValueErrorString_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m58DE243AAC43A3D991E8CD7D9D93BC5A0455369A_gshared)(___0_returnCode, ___1_source, ___2_sourcePath, ___3_target, ___4_targetPath, ___5_extractedValueFromSource, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResourceManager_t3C786E6B9CB06BD30723E3099A98FEF2F853355E* Manager_get_Resource_m20789BB3A6CEA4F5D99667BDF2AC9F7E063FE178 (const RuntimeMethod* method) ;
|
|
inline TextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69* ResourceManager_Load_TisTextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69_mD161AD0E701B97CF1D9C149ECB1917FBB202C3A4 (ResourceManager_t3C786E6B9CB06BD30723E3099A98FEF2F853355E* __this, String_t* ___0_path, const RuntimeMethod* method)
|
|
{
|
|
return (( TextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69* (*) (ResourceManager_t3C786E6B9CB06BD30723E3099A98FEF2F853355E*, String_t*, const RuntimeMethod*))ResourceManager_Load_TisRuntimeObject_mF789B7CC35BD6D5EA3FDF38B662C5E17388813CC_gshared)(__this, ___0_path, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TextAsset_get_text_m36846042E3CF3D9DD337BF3F8B2B1902D10C8FD9 (TextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69* __this, const RuntimeMethod* method) ;
|
|
inline RuntimeObject* JsonUtility_FromJson_TisRuntimeObject_m0CCF0FE109BF4C85AECC9C5D0DBB43422A24FB40 (String_t* ___0_json, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (String_t*, const RuntimeMethod*))JsonUtility_FromJson_TisRuntimeObject_m0CCF0FE109BF4C85AECC9C5D0DBB43422A24FB40_gshared)(___0_json, method);
|
|
}
|
|
inline bool Dictionary_2_TryGetValue_mC14A0401676B34A68B06FC858BA801E7DF99B7D8 (Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* __this, String_t* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710*, String_t*, RuntimeObject**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline RuntimeObject* DataManager_LoadJson_TisRuntimeObject_TisRuntimeObject_m6991F3B0E6D5AA5878021884FAA795ABFB8DAEC6 (DataManager_tE86238CF20D1A233E0ADDA21C619896E5F278275* __this, String_t* ___0_path, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (DataManager_tE86238CF20D1A233E0ADDA21C619896E5F278275*, String_t*, const RuntimeMethod*))DataManager_LoadJson_TisRuntimeObject_TisRuntimeObject_m6991F3B0E6D5AA5878021884FAA795ABFB8DAEC6_gshared)(__this, ___0_path, method);
|
|
}
|
|
inline void Dictionary_2_Add_m5875DF2ACE933D734119C088B2E7C9C63F49B443 (Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* __this, String_t* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710*, String_t*, RuntimeObject*, const RuntimeMethod*))Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329 (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
inline Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419 (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
|
|
}
|
|
inline RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
|
|
}
|
|
inline RuntimeObject* Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_inline (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (Func_2_tACBF5A1656250800CE861707354491F0611F6624*, RuntimeObject*, const RuntimeMethod*))Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline void Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1 (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline bool Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
|
|
}
|
|
inline EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* Func_2_Invoke_m068376B984355E45695A1A842C1C3F316FE29AD9_inline (Func_2_tEC8651D2749456D39806A8151756C8D4E376386F* __this, ValueTuple_2_t84554798B99CE8D7914B5585AE53CEE950F43CE6 ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* (*) (Func_2_tEC8651D2749456D39806A8151756C8D4E376386F*, ValueTuple_2_t84554798B99CE8D7914B5585AE53CEE950F43CE6, const RuntimeMethod*))Func_2_Invoke_m17C1551BBE6C31FD367700C8DFA6A388374E7340_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4 (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* ___0_runtimePanel, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* UIElementsRuntimeUtility_GetSortedPlayerPanels_m670C8594565AABB890C94CDBA06DBD5C259CF466 (const RuntimeMethod* method) ;
|
|
inline int32_t List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_inline (List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
inline BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6 (List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* (*) (List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseRuntimePanel_get_drawsInCameras_m8248DBEB03449B761535333F8816A17FB9498307 (BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* FocusController_get_focusedElement_mC8B530DA2FE09394ADA0A4D25A85DBF5C66853D8 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
inline EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* Func_2_Invoke_m7E62B4971BEB10447ADE08369FD94C0B0C001C2B_inline (Func_2_tE29FFE46D694921A593EEFB32E4877D75994CC75* __this, ValueTuple_2_t9270F8474E554C7C106A7F7DE4F0D15C12802EAB ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* (*) (Func_2_tE29FFE46D694921A593EEFB32E4877D75994CC75*, ValueTuple_2_t9270F8474E554C7C106A7F7DE4F0D15C12802EAB, const RuntimeMethod*))Func_2_Invoke_mF9EF57C31660DC2A8E9B80FE393EEA410E60B360_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* Func_2_Invoke_m160364E07EED591FACCA11D1138E57FB3B25A97B_inline (Func_2_t2E586245AEB77072D7227BD6AF2907CB9524227A* __this, ValueTuple_3_t221FA8EA322AE1156326997DEA4F6D24BF1E5243 ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* (*) (Func_2_t2E586245AEB77072D7227BD6AF2907CB9524227A*, ValueTuple_3_t221FA8EA322AE1156326997DEA4F6D24BF1E5243, const RuntimeMethod*))Func_2_Invoke_m6F04759879DC781CA2B13942272986564257719F_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* Func_2_Invoke_mCBFE0E2E6675707131F5E1B8E4DFBE9E7BC62BD4_inline (Func_2_tB5123A698CF2F0D326B1441BFFD2D1F46F29231D* __this, ValueTuple_3_t90CF2FEF2703459E904C84694EEECB64D3F220C1 ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* (*) (Func_2_tB5123A698CF2F0D326B1441BFFD2D1F46F29231D*, ValueTuple_3_t90CF2FEF2703459E904C84694EEECB64D3F220C1, const RuntimeMethod*))Func_2_Invoke_m2F064BFB9502B2762574DC05F9D41A46C1FB90C8_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* Func_2_Invoke_m33E2D72B1AD7B06B56091E8F75FED7AD243B50AF_inline (Func_2_tAB47C3D2B1DBDEAB988B0994E8D6B702514D18F7* __this, ValueTuple_3_t1214F2A1CCE3F3DE3E2DA1E6EC57E2DFEE17E613 ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* (*) (Func_2_tAB47C3D2B1DBDEAB988B0994E8D6B702514D18F7*, ValueTuple_3_t1214F2A1CCE3F3DE3E2DA1E6EC57E2DFEE17E613, const RuntimeMethod*))Func_2_Invoke_mE1A0781D1853CA8540B156BE1F43769FCCFD5318_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* Func_2_Invoke_m70FEFE96737AC9DC0FC1203825527104E3D6BED2_inline (Func_2_tC33A67D9939EA70F5967CC0D7E5A50AF0E530302* __this, int32_t ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* (*) (Func_2_tC33A67D9939EA70F5967CC0D7E5A50AF0E530302*, int32_t, const RuntimeMethod*))Func_2_Invoke_m6953F3816EE803F64B21977608FFA48D59AB9272_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* Func_2_Invoke_mB8388FF63F77C4BC0C51A8A66369FC6503A68E7A_inline (Func_2_t615C91B75B6D7B4E70D5080F4EE82DFCD6B6B069* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* (*) (Func_2_t615C91B75B6D7B4E70D5080F4EE82DFCD6B6B069*, RuntimeObject*, const RuntimeMethod*))Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline void Func_3__ctor_mECAED1E5A705EE98B4E7D9EF87E8F55A45974A08 (Func_3_t7ABD9F6EC6D72DB68F353D0F3C3FEC7322E5A853* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_3_t7ABD9F6EC6D72DB68F353D0F3C3FEC7322E5A853*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_3__ctor_m7168CEEADEFC06CB66A741873881028695533EA2_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void ValueTuple_3__ctor_m2200D670B147C0C61E3B8283572943071C6D4A6B (ValueTuple_3_tC96A183958B632D9F0A499D281BC205C751884EB* __this, Func_4_t3B79C154D00A796C783C567CC587F09CD8926B19* ___0_item1, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_item2, ValueTuple_2_t00940F333D00C8F1D5D9E7B80A81F8DCCE9908FC ___2_item3, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ValueTuple_3_tC96A183958B632D9F0A499D281BC205C751884EB*, Func_4_t3B79C154D00A796C783C567CC587F09CD8926B19*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, ValueTuple_2_t00940F333D00C8F1D5D9E7B80A81F8DCCE9908FC, const RuntimeMethod*))ValueTuple_3__ctor_m3DFF6E512FF44D3000D24444DA79FE2F102F8299_gshared)(__this, ___0_item1, ___1_item2, ___2_item3, method);
|
|
}
|
|
inline void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_tC96A183958B632D9F0A499D281BC205C751884EB_mA8BB7C2F62B499ADAA18B42D915006FB3917B950 (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_t7ABD9F6EC6D72DB68F353D0F3C3FEC7322E5A853* ___4_evtFactory, ValueTuple_3_tC96A183958B632D9F0A499D281BC205C751884EB ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, int32_t, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28, Func_3_t7ABD9F6EC6D72DB68F353D0F3C3FEC7322E5A853*, ValueTuple_3_tC96A183958B632D9F0A499D281BC205C751884EB, bool, const RuntimeMethod*))DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_t0830D9C281DA2A9A8B1564AB60C647F6DA504260_mA5B008F799247B6405A0AE739F71E83E19B835AD_gshared)(__this, ___0_mousePosition, ___1_delta, ___2_pointerId, ___3_targetDisplay, ___4_evtFactory, ___5_arg, ___6_deselectIfNoTarget, method);
|
|
}
|
|
inline void Func_3__ctor_m6E4726E0975349D96791A97621F72F61358433E9 (Func_3_t89E320FE1090235275D6DF55A8411FDA31CEFC7A* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_3_t89E320FE1090235275D6DF55A8411FDA31CEFC7A*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_3__ctor_m87559564AF2D998C77B3A32071401EB5F61609C7_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void ValueTuple_3__ctor_m19472BF1A722300B725585C9BC08809345F70368 (ValueTuple_3_t38EEEA492A2177FB74F091CFF8611128B4254088* __this, Func_4_t27E1E57CC45284A3365ADDD73218A4B7FBE8A41A* ___0_item1, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_item2, ValueTuple_2_t85FD60472857DFEA88086C45948C596619D3CA21 ___2_item3, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ValueTuple_3_t38EEEA492A2177FB74F091CFF8611128B4254088*, Func_4_t27E1E57CC45284A3365ADDD73218A4B7FBE8A41A*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, ValueTuple_2_t85FD60472857DFEA88086C45948C596619D3CA21, const RuntimeMethod*))ValueTuple_3__ctor_m22396F973EE6CE297FA2EBA15850B3EA46698C04_gshared)(__this, ___0_item1, ___1_item2, ___2_item3, method);
|
|
}
|
|
inline void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_t38EEEA492A2177FB74F091CFF8611128B4254088_mD0D36C25F80665492AD43D7E22009307EB694466 (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_t89E320FE1090235275D6DF55A8411FDA31CEFC7A* ___4_evtFactory, ValueTuple_3_t38EEEA492A2177FB74F091CFF8611128B4254088 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, int32_t, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28, Func_3_t89E320FE1090235275D6DF55A8411FDA31CEFC7A*, ValueTuple_3_t38EEEA492A2177FB74F091CFF8611128B4254088, bool, const RuntimeMethod*))DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_t5955F42FF36506750DBDF6E15B988AC705ACCEC6_mE5D31181E5E5AC1B0FC055077D05EE36A9F7AA39_gshared)(__this, ___0_mousePosition, ___1_delta, ___2_pointerId, ___3_targetDisplay, ___4_evtFactory, ___5_arg, ___6_deselectIfNoTarget, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_v, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_FindTargetAtPosition_m27DADBA203D33C4BBA848A244E48BF9B83E7AC61 (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_mousePosition, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___4_target, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346** ___5_targetPanel, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* ___6_targetPanelPosition, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___7_elementUnderPointer, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184** ___8_camera, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PointerDeviceState_GetPanel_mF1ABAF676F34A5F603E66044D2F5BAB057AC140E (int32_t ___0_pointerId, int32_t ___1_contextType, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRuntimePanel_PointerLeavesPanel_mD7BC4DC877F6E4980EFEFD7CF5036E2F359AAF6E (BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* __this, int32_t ___0_pointerId, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRuntimePanel_PointerEntersPanel_m2826AA8588CBC87F1C39FB2FFA4A4B44E255843E (BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* __this, int32_t ___0_pointerId, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_position, const RuntimeMethod* method) ;
|
|
inline EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* Func_3_Invoke_mB48BDC9D79DE753FCA0471F284FAC748CB43E586_inline (Func_3_tA9A0974E9EC292E11DAEA6B714FAE439FFE235F7* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_t0830D9C281DA2A9A8B1564AB60C647F6DA504260 ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* (*) (Func_3_tA9A0974E9EC292E11DAEA6B714FAE439FFE235F7*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, ValueTuple_3_t0830D9C281DA2A9A8B1564AB60C647F6DA504260, const RuntimeMethod*))Func_3_Invoke_m36A4590C67B181D92E947D2ACB6735DCB0CD6674_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVisualElementPanel_SetTopElementUnderPointer_m9936A82FE14DDB5471576A5CE410F0686CA8E586 (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* __this, int32_t ___0_pointerId, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___1_element, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___2_triggerEvent, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_processedByFocusController_mB2BCAFE58D45919AC9F5AC0AAEF059D8A640AE53 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
inline int64_t EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C (int32_t ___0_pointerId, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___1_element, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___2_camera, const RuntimeMethod* method) ;
|
|
inline int64_t EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
inline int32_t PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_inline (PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*, const RuntimeMethod*))PointerEventBase_1_get_pressedButtons_mD44593EB9F5A5992961586234A01D44B871A1F64_gshared_inline)(__this, method);
|
|
}
|
|
inline EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* Func_3_Invoke_mCC2F332F82DC3CB02A59C5355C15A536351ABD25_inline (Func_3_tA3DDAB5A72CEB154FB50A12CE39636838C9008FA* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_t5955F42FF36506750DBDF6E15B988AC705ACCEC6 ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* (*) (Func_3_tA3DDAB5A72CEB154FB50A12CE39636838C9008FA*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, ValueTuple_3_t5955F42FF36506750DBDF6E15B988AC705ACCEC6, const RuntimeMethod*))Func_3_Invoke_mD09FD3F0808212D95417C357CC46040755C85E57_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* Func_3_Invoke_mA39204D91565C23978A44F2FD2431240913A7C3B_inline (Func_3_t8E1C99C1281A1FE16C6EC1708A9B501F03768680* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_tAF08A8B8A8BDFE5BD5BB3273D7077FC68E7DE439 ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* (*) (Func_3_t8E1C99C1281A1FE16C6EC1708A9B501F03768680*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, ValueTuple_3_tAF08A8B8A8BDFE5BD5BB3273D7077FC68E7DE439, const RuntimeMethod*))Func_3_Invoke_m2BF5DCF45D3EF48839CD557A9FF7D650F1071E07_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* Func_3_Invoke_m81E48DA2F7F6F5A77AA52B3011B1A0576B7EEA5E_inline (Func_3_t3431757396CB42FB4FA1735910FD76FB77E568CF* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_tC8BBB30E9E4977D3D5D3D770C29BC7D26F8D7340 ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* (*) (Func_3_t3431757396CB42FB4FA1735910FD76FB77E568CF*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, ValueTuple_3_tC8BBB30E9E4977D3D5D3D770C29BC7D26F8D7340, const RuntimeMethod*))Func_3_Invoke_m271D202F8C2B215CAFA07750D2DF9D16122C7CF7_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* Func_3_Invoke_mE29CADF60E4C35BDC747CBE00E06CCF217267A50_inline (Func_3_t25A788C45878510857F0D5339F041D8B9FFB0DF7* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_tD815A2B59927FD0A0A8BC994BDDF93E1997053C4 ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* (*) (Func_3_t25A788C45878510857F0D5339F041D8B9FFB0DF7*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, ValueTuple_3_tD815A2B59927FD0A0A8BC994BDDF93E1997053C4, const RuntimeMethod*))Func_3_Invoke_mA041125511038BB3284216ADC8F3E4893EB259AF_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* Func_3_Invoke_mF1B46D5EF958C1DC6F2666E3464DA40D2ED0D1DD_inline (Func_3_tBD64F3C7DBE49CCECEC1DA85C48BC4C4E61F1CD0* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_t2C125774ADD00599458B6333E72F7533D3866597 ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* (*) (Func_3_tBD64F3C7DBE49CCECEC1DA85C48BC4C4E61F1CD0*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, ValueTuple_3_t2C125774ADD00599458B6333E72F7533D3866597, const RuntimeMethod*))Func_3_Invoke_m722F564B38C81B33BC14F03C32E693EBBE2457C4_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* Func_3_Invoke_m54505B402FEB7A5917AEE0BCF1F4BD2B5BFC418B_inline (Func_3_tA97A8AA5DD5E584A5ADBF2402322C22AE9F68D32* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_t7710F86A623C8F578E76B4EAC47B05AA6EFE7B64 ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* (*) (Func_3_tA97A8AA5DD5E584A5ADBF2402322C22AE9F68D32*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, ValueTuple_3_t7710F86A623C8F578E76B4EAC47B05AA6EFE7B64, const RuntimeMethod*))Func_3_Invoke_mF89F78BAB778FDA16A1DD3C8DF8C35343E0ACB96_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Func_3__ctor_m31E14C20C3D69DF4C26C8892A1AB7947EC25F5D1 (Func_3_t257468D81256F67CCB3C6EC189AA86146F0E83BF* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_3_t257468D81256F67CCB3C6EC189AA86146F0E83BF*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_3__ctor_mFD55B04889D5B569F781B49E3EAA3A88093A0CCA_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void ValueTuple_3__ctor_m19B992A595F13298A2C3A6910F14D408D4416F27 (ValueTuple_3_t10B3CDFA9EEBDCDFB1C25F6B3F6B5E468C8F9F50* __this, Func_4_tC6554A9B6158B8E653539FD20E101E86ECAD14E5* ___0_item1, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_item2, ValueTuple_3_t083FB9C32ED0C25542A5131205E7A8A0B87F1D15 ___2_item3, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ValueTuple_3_t10B3CDFA9EEBDCDFB1C25F6B3F6B5E468C8F9F50*, Func_4_tC6554A9B6158B8E653539FD20E101E86ECAD14E5*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, ValueTuple_3_t083FB9C32ED0C25542A5131205E7A8A0B87F1D15, const RuntimeMethod*))ValueTuple_3__ctor_mB2C018AE93C2CCB22857290E2D5F9FCF96DB8E6E_gshared)(__this, ___0_item1, ___1_item2, ___2_item3, method);
|
|
}
|
|
inline void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_t10B3CDFA9EEBDCDFB1C25F6B3F6B5E468C8F9F50_mCC57E15DB566EE35FB13504C307638BF947EA220 (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_t257468D81256F67CCB3C6EC189AA86146F0E83BF* ___4_evtFactory, ValueTuple_3_t10B3CDFA9EEBDCDFB1C25F6B3F6B5E468C8F9F50 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, int32_t, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28, Func_3_t257468D81256F67CCB3C6EC189AA86146F0E83BF*, ValueTuple_3_t10B3CDFA9EEBDCDFB1C25F6B3F6B5E468C8F9F50, bool, const RuntimeMethod*))DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_tAF08A8B8A8BDFE5BD5BB3273D7077FC68E7DE439_m301B1D383A6FD8823AC5FB57967832F576259A0F_gshared)(__this, ___0_mousePosition, ___1_delta, ___2_pointerId, ___3_targetDisplay, ___4_evtFactory, ___5_arg, ___6_deselectIfNoTarget, method);
|
|
}
|
|
inline void Func_3__ctor_m1EFA3BA4626166D4CE2B26B7D970A4D7E916C4F2 (Func_3_tBD0EC492040F50111EAF0A77127409C4E6670C2E* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_3_tBD0EC492040F50111EAF0A77127409C4E6670C2E*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_3__ctor_m30D3E76B0CC7E4B41D705F28CCFB16E15084E302_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void ValueTuple_3__ctor_m63FD2DB0BF53E337421F4F66D3021B224631EF3E (ValueTuple_3_t617DC2E57CFF0ED9D93D25C3DE1080924BAB5FD5* __this, Func_4_t647B1DCE59688F2956CCB8CCE5AD15BE3188D601* ___0_item1, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_item2, ValueTuple_4_tEC98A0C80E3AD3740A1A365E6A6F25E9CC2FAAE7 ___2_item3, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ValueTuple_3_t617DC2E57CFF0ED9D93D25C3DE1080924BAB5FD5*, Func_4_t647B1DCE59688F2956CCB8CCE5AD15BE3188D601*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, ValueTuple_4_tEC98A0C80E3AD3740A1A365E6A6F25E9CC2FAAE7, const RuntimeMethod*))ValueTuple_3__ctor_mBA850B9EBE10526C8AA5A7B00E00E1A16D5C074D_gshared)(__this, ___0_item1, ___1_item2, ___2_item3, method);
|
|
}
|
|
inline void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_t617DC2E57CFF0ED9D93D25C3DE1080924BAB5FD5_m7380A3517AA5BB6840054CF28EF3EAEEDE5056C5 (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_tBD0EC492040F50111EAF0A77127409C4E6670C2E* ___4_evtFactory, ValueTuple_3_t617DC2E57CFF0ED9D93D25C3DE1080924BAB5FD5 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, int32_t, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28, Func_3_tBD0EC492040F50111EAF0A77127409C4E6670C2E*, ValueTuple_3_t617DC2E57CFF0ED9D93D25C3DE1080924BAB5FD5, bool, const RuntimeMethod*))DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_tC8BBB30E9E4977D3D5D3D770C29BC7D26F8D7340_m1B17141BA48CA9A0522154FDDC7AD640B3563F76_gshared)(__this, ___0_mousePosition, ___1_delta, ___2_pointerId, ___3_targetDisplay, ___4_evtFactory, ___5_arg, ___6_deselectIfNoTarget, method);
|
|
}
|
|
inline void Func_3__ctor_m2A3DF8A7284736A2E8ACA23DA892E4C1369ED750 (Func_3_tF4070BC973E64BF78AE4C9340BFC70326C962EB5* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_3_tF4070BC973E64BF78AE4C9340BFC70326C962EB5*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_3__ctor_m3EC2124B4A61A166D655923301E1638C9A1DB850_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void ValueTuple_3__ctor_mF2F375F60B7E2C65668DA866C561BC0D92D01517 (ValueTuple_3_tAA71DEC7929DC7293495D596B729346091A4CC33* __this, Func_4_t3BDE3CA92565203F02E9E075D380C15E3C5964EE* ___0_item1, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_item2, RuntimeObject* ___2_item3, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ValueTuple_3_tAA71DEC7929DC7293495D596B729346091A4CC33*, Func_4_t3BDE3CA92565203F02E9E075D380C15E3C5964EE*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, RuntimeObject*, const RuntimeMethod*))ValueTuple_3__ctor_mA5776C43A1302B00391119CA94E26038C9C93EBD_gshared)(__this, ___0_item1, ___1_item2, ___2_item3, method);
|
|
}
|
|
inline void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_tAA71DEC7929DC7293495D596B729346091A4CC33_mE32AFBEF0D0A1F390607D3F19B0DAC54FAFC1154 (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_tF4070BC973E64BF78AE4C9340BFC70326C962EB5* ___4_evtFactory, ValueTuple_3_tAA71DEC7929DC7293495D596B729346091A4CC33 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, int32_t, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28, Func_3_tF4070BC973E64BF78AE4C9340BFC70326C962EB5*, ValueTuple_3_tAA71DEC7929DC7293495D596B729346091A4CC33, bool, const RuntimeMethod*))DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_tD815A2B59927FD0A0A8BC994BDDF93E1997053C4_m6A22A0165E7C0873C485E600CF30B0085C7E2FF5_gshared)(__this, ___0_mousePosition, ___1_delta, ___2_pointerId, ___3_targetDisplay, ___4_evtFactory, ___5_arg, ___6_deselectIfNoTarget, method);
|
|
}
|
|
inline void Func_3__ctor_m3C31E463355C072448F5066656B1C80AF7CAB4EA (Func_3_t4C315B89143B58391639906E83ABDD25F0D7E596* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_3_t4C315B89143B58391639906E83ABDD25F0D7E596*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_3__ctor_m1E21C7FFC2063F9FECB94E843EC45A2D0FF4FD4E_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void ValueTuple_3__ctor_m2F395802A349F0B44E4E8F5EFC723BEC7D32E39C (ValueTuple_3_tFA1D0F0223CD390EF58965CD27B066DD658BB426* __this, Func_4_t46812CB64A120A31977C87BC4A822A947B5C44A5* ___0_item1, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_item2, PenData_t2345B5FBD18D851528C5C18F8A667D4EF4690945 ___2_item3, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ValueTuple_3_tFA1D0F0223CD390EF58965CD27B066DD658BB426*, Func_4_t46812CB64A120A31977C87BC4A822A947B5C44A5*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, PenData_t2345B5FBD18D851528C5C18F8A667D4EF4690945, const RuntimeMethod*))ValueTuple_3__ctor_m7DDAC95BD2E10BEA268099CAB722FA4E08982B60_gshared)(__this, ___0_item1, ___1_item2, ___2_item3, method);
|
|
}
|
|
inline void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_tFA1D0F0223CD390EF58965CD27B066DD658BB426_mAC4297C0E716632BEC05A1633944D9602EB08BC7 (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_t4C315B89143B58391639906E83ABDD25F0D7E596* ___4_evtFactory, ValueTuple_3_tFA1D0F0223CD390EF58965CD27B066DD658BB426 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, int32_t, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28, Func_3_t4C315B89143B58391639906E83ABDD25F0D7E596*, ValueTuple_3_tFA1D0F0223CD390EF58965CD27B066DD658BB426, bool, const RuntimeMethod*))DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_t2C125774ADD00599458B6333E72F7533D3866597_mCD8CA3DFF30F0654C475AC703F76A4316D30499B_gshared)(__this, ___0_mousePosition, ___1_delta, ___2_pointerId, ___3_targetDisplay, ___4_evtFactory, ___5_arg, ___6_deselectIfNoTarget, method);
|
|
}
|
|
inline void ValueTuple_3__ctor_m0127DA82AC2AB4216F59E755683CEC1F116DACB1 (ValueTuple_3_t281F811FD3C50D75BEECE4EE3B96B099CA209E69* __this, Func_4_t222F7B044E23AD55E5A23F7A86BA3CF128947094* ___0_item1, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_item2, Il2CppFullySharedGenericAny ___2_item3, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ValueTuple_3_t182F852EE39DD805E380FD93762C931C933ACE98*, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, const RuntimeMethod*))ValueTuple_3__ctor_mAB800E7134D8E52646FD55A8B2979AC908028759_gshared)((ValueTuple_3_t182F852EE39DD805E380FD93762C931C933ACE98*)__this, (Il2CppFullySharedGenericAny)___0_item1, (Il2CppFullySharedGenericAny)&___1_item2, ___2_item3, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_FindTargetAtRay_mFDDCAD1CCB503D6CBBC4BDA22C68B617F6521E87 (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___0_worldRay, float ___1_maxDistance, int32_t ___2_pointerId, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___3_target, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346** ___4_targetPanel, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* ___5_targetPanelPosition, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___6_elementUnderPointer, const RuntimeMethod* method) ;
|
|
inline int32_t CallbackArray_1_get_length_m096E657BAB53406356BABE16CE03C92212CF5A52 (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477*, const RuntimeMethod*))CallbackArray_1_get_length_m81CB1E446FBEF126C2096B08E643D63ACDDBD0F1_gshared)(__this, method);
|
|
}
|
|
inline void CallbackArray_1_LockForChanges_mA74AA879F43D4FE35D07CA0FF4CADC8224149E09 (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477*, const RuntimeMethod*))CallbackArray_1_LockForChanges_mB15D8203ADAEA8AEF523BE53D79B7CF828301CB6_gshared)(__this, method);
|
|
}
|
|
inline Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* CallbackArray_1_get_Item_mD75A66CA41114514F6664B0201F1BE0B77507643 (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* (*) (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477*, int32_t, const RuntimeMethod*))CallbackArray_1_get_Item_m567E182F190B5CEBFBA0D02E0E33AD7A5E46F7E1_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void Action_1_Invoke_m30D56EDF2807EF309EEF182BA63A3F0EF0B08A15_inline (Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C*, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0, const RuntimeMethod*))Action_1_Invoke_m30D56EDF2807EF309EEF182BA63A3F0EF0B08A15_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogException_mAB3F4DC7297ED8FBB49DAA718B70E59A6B0171B0 (Exception_t* ___0_exception, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09 (Exception_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C (String_t* ___0_format, RuntimeObject* ___1_arg0, RuntimeObject* ___2_arg1, RuntimeObject* ___3_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2 (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
|
|
inline void CallbackArray_1_UnlockForChanges_m36F89B841AF6C7B84793862F111411EA0A506313 (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477*, const RuntimeMethod*))CallbackArray_1_UnlockForChanges_mA6BDFF9ECCA7A79D6017AFB24BF5932CC3B30197_gshared)(__this, method);
|
|
}
|
|
inline int32_t CallbackArray_1_get_length_mD50339ABE7C0095D09433B0F9B65F8B63B89B37D (CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411*, const RuntimeMethod*))CallbackArray_1_get_length_m81CB1E446FBEF126C2096B08E643D63ACDDBD0F1_gshared)(__this, method);
|
|
}
|
|
inline void CallbackArray_1_LockForChanges_mAA314B37A06190733CFE7941947F4B4F1C024F7D (CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411*, const RuntimeMethod*))CallbackArray_1_LockForChanges_mB15D8203ADAEA8AEF523BE53D79B7CF828301CB6_gshared)(__this, method);
|
|
}
|
|
inline Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* CallbackArray_1_get_Item_m917B62A3FCD2F6A5A445659E461F2E5A8035B646 (CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* (*) (CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411*, int32_t, const RuntimeMethod*))CallbackArray_1_get_Item_m567E182F190B5CEBFBA0D02E0E33AD7A5E46F7E1_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*, RuntimeObject*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void CallbackArray_1_UnlockForChanges_m1E04FCA5160307853106274C9C496D77CB8F61AF (CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411*, const RuntimeMethod*))CallbackArray_1_UnlockForChanges_mA6BDFF9ECCA7A79D6017AFB24BF5932CC3B30197_gshared)(__this, method);
|
|
}
|
|
inline int32_t CallbackArray_1_get_length_m3C50042E1C2A1DA8489E324AF7137CFABFB617FA (CallbackArray_1_tDFF8C4C6015023B6C2E70BAD26D8BC6BF00D8775* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (CallbackArray_1_tDFF8C4C6015023B6C2E70BAD26D8BC6BF00D8775*, const RuntimeMethod*))CallbackArray_1_get_length_m81CB1E446FBEF126C2096B08E643D63ACDDBD0F1_gshared)(__this, method);
|
|
}
|
|
inline void CallbackArray_1_LockForChanges_mBF281A2D6F751F95BCBE59AB0C68F9CD6AE4C4E2 (CallbackArray_1_tDFF8C4C6015023B6C2E70BAD26D8BC6BF00D8775* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackArray_1_tDFF8C4C6015023B6C2E70BAD26D8BC6BF00D8775*, const RuntimeMethod*))CallbackArray_1_LockForChanges_mB15D8203ADAEA8AEF523BE53D79B7CF828301CB6_gshared)(__this, method);
|
|
}
|
|
inline Action_1_tEB0353AA1A112B6F2D921B58DCC9D9D4C0498E6E* CallbackArray_1_get_Item_m1F18565FAEB58506B8BE9336BC52ECAC9FE88ECB (CallbackArray_1_tDFF8C4C6015023B6C2E70BAD26D8BC6BF00D8775* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( Action_1_tEB0353AA1A112B6F2D921B58DCC9D9D4C0498E6E* (*) (CallbackArray_1_tDFF8C4C6015023B6C2E70BAD26D8BC6BF00D8775*, int32_t, const RuntimeMethod*))CallbackArray_1_get_Item_m567E182F190B5CEBFBA0D02E0E33AD7A5E46F7E1_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void Action_1_Invoke_mC9D2864A52CF07F93C51935D9DCDF73E96FED543_inline (Action_1_tEB0353AA1A112B6F2D921B58DCC9D9D4C0498E6E* __this, CallbackContext_tB251EE41F509C6E8A6B05EC97C029A45DF4F5FA8 ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_tEB0353AA1A112B6F2D921B58DCC9D9D4C0498E6E*, CallbackContext_tB251EE41F509C6E8A6B05EC97C029A45DF4F5FA8, const RuntimeMethod*))Action_1_Invoke_mC9D2864A52CF07F93C51935D9DCDF73E96FED543_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void CallbackArray_1_UnlockForChanges_m765CE8C02F49FCC086F4F5995EC74AC2E47B1243 (CallbackArray_1_tDFF8C4C6015023B6C2E70BAD26D8BC6BF00D8775* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackArray_1_tDFF8C4C6015023B6C2E70BAD26D8BC6BF00D8775*, const RuntimeMethod*))CallbackArray_1_UnlockForChanges_mA6BDFF9ECCA7A79D6017AFB24BF5932CC3B30197_gshared)(__this, method);
|
|
}
|
|
inline int32_t CallbackArray_1_get_length_mE153EF4D1DD34AA10974E898AE9F794D66C0E8D3 (CallbackArray_1_tCF297A9E4DEDF9CF4C396E9C986D418FDA53FB2A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (CallbackArray_1_tCF297A9E4DEDF9CF4C396E9C986D418FDA53FB2A*, const RuntimeMethod*))CallbackArray_1_get_length_m81CB1E446FBEF126C2096B08E643D63ACDDBD0F1_gshared)(__this, method);
|
|
}
|
|
inline void CallbackArray_1_LockForChanges_m695C43B2B5AE62D94563950262DAF0A584B6C75E (CallbackArray_1_tCF297A9E4DEDF9CF4C396E9C986D418FDA53FB2A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackArray_1_tCF297A9E4DEDF9CF4C396E9C986D418FDA53FB2A*, const RuntimeMethod*))CallbackArray_1_LockForChanges_mB15D8203ADAEA8AEF523BE53D79B7CF828301CB6_gshared)(__this, method);
|
|
}
|
|
inline Action_2_tD987B97B18D27B9920365359C46BC12702AD4F7D* CallbackArray_1_get_Item_m81DC21C93BD1A00E0FC5B10D0FC7D7E6814F8CFF (CallbackArray_1_tCF297A9E4DEDF9CF4C396E9C986D418FDA53FB2A* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( Action_2_tD987B97B18D27B9920365359C46BC12702AD4F7D* (*) (CallbackArray_1_tCF297A9E4DEDF9CF4C396E9C986D418FDA53FB2A*, int32_t, const RuntimeMethod*))CallbackArray_1_get_Item_m567E182F190B5CEBFBA0D02E0E33AD7A5E46F7E1_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void Action_2_Invoke_m5CA7C522C42D2A1120BA23ED9913909EF92762C5_inline (Action_2_tD987B97B18D27B9920365359C46BC12702AD4F7D* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_tD987B97B18D27B9920365359C46BC12702AD4F7D*, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0, RuntimeObject*, const RuntimeMethod*))Action_2_Invoke_m5CA7C522C42D2A1120BA23ED9913909EF92762C5_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void CallbackArray_1_UnlockForChanges_m4777B526404B8F56C82D66301536F9E1B1ACAEFD (CallbackArray_1_tCF297A9E4DEDF9CF4C396E9C986D418FDA53FB2A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackArray_1_tCF297A9E4DEDF9CF4C396E9C986D418FDA53FB2A*, const RuntimeMethod*))CallbackArray_1_UnlockForChanges_mA6BDFF9ECCA7A79D6017AFB24BF5932CC3B30197_gshared)(__this, method);
|
|
}
|
|
inline int32_t CallbackArray_1_get_length_mA3D0E74479E572345C743A4EA6228025F2F11D59 (CallbackArray_1_t270AB3EEC7FF7B8E211305E1BC7311F2177FCBB2* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (CallbackArray_1_t270AB3EEC7FF7B8E211305E1BC7311F2177FCBB2*, const RuntimeMethod*))CallbackArray_1_get_length_m81CB1E446FBEF126C2096B08E643D63ACDDBD0F1_gshared)(__this, method);
|
|
}
|
|
inline void CallbackArray_1_LockForChanges_mC3DEC4D5FF386FBA3DD8134E57BF1457D7A40121 (CallbackArray_1_t270AB3EEC7FF7B8E211305E1BC7311F2177FCBB2* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackArray_1_t270AB3EEC7FF7B8E211305E1BC7311F2177FCBB2*, const RuntimeMethod*))CallbackArray_1_LockForChanges_mB15D8203ADAEA8AEF523BE53D79B7CF828301CB6_gshared)(__this, method);
|
|
}
|
|
inline Action_2_t51C134DC0CD7F5ED5E83EE70AD1FE0FDFF6DDCCF* CallbackArray_1_get_Item_m31F355A5912C6A635576547A0C75F22A3771CE6D (CallbackArray_1_t270AB3EEC7FF7B8E211305E1BC7311F2177FCBB2* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( Action_2_t51C134DC0CD7F5ED5E83EE70AD1FE0FDFF6DDCCF* (*) (CallbackArray_1_t270AB3EEC7FF7B8E211305E1BC7311F2177FCBB2*, int32_t, const RuntimeMethod*))CallbackArray_1_get_Item_m567E182F190B5CEBFBA0D02E0E33AD7A5E46F7E1_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void Action_2_Invoke_m3AE16EB1F624AEBB87FA2FC37FC6D58694C23434_inline (Action_2_t51C134DC0CD7F5ED5E83EE70AD1FE0FDFF6DDCCF* __this, RuntimeObject* ___0_arg1, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_t51C134DC0CD7F5ED5E83EE70AD1FE0FDFF6DDCCF*, RuntimeObject*, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0, const RuntimeMethod*))Action_2_Invoke_m3AE16EB1F624AEBB87FA2FC37FC6D58694C23434_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void CallbackArray_1_UnlockForChanges_m4AEBD5F8C255437F3023C3F9B5A3FA52EDC100C2 (CallbackArray_1_t270AB3EEC7FF7B8E211305E1BC7311F2177FCBB2* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackArray_1_t270AB3EEC7FF7B8E211305E1BC7311F2177FCBB2*, const RuntimeMethod*))CallbackArray_1_UnlockForChanges_mA6BDFF9ECCA7A79D6017AFB24BF5932CC3B30197_gshared)(__this, method);
|
|
}
|
|
inline int32_t CallbackArray_1_get_length_m0C22FF58F04966DC2857F29B2D84FBB733D1CE3A (CallbackArray_1_t728037423B0E59AED45A54BD4669276E085A3A43* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (CallbackArray_1_t728037423B0E59AED45A54BD4669276E085A3A43*, const RuntimeMethod*))CallbackArray_1_get_length_m81CB1E446FBEF126C2096B08E643D63ACDDBD0F1_gshared)(__this, method);
|
|
}
|
|
inline void CallbackArray_1_LockForChanges_m6D61BA7651AFC0C633B57D76077F241D020EED86 (CallbackArray_1_t728037423B0E59AED45A54BD4669276E085A3A43* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackArray_1_t728037423B0E59AED45A54BD4669276E085A3A43*, const RuntimeMethod*))CallbackArray_1_LockForChanges_mB15D8203ADAEA8AEF523BE53D79B7CF828301CB6_gshared)(__this, method);
|
|
}
|
|
inline Action_2_t9C4E97D0565650F0AEF7C72077EB8A0F9326E40B* CallbackArray_1_get_Item_mB7124FA022E39C7EEB5D2D063CB07D921D7CB482 (CallbackArray_1_t728037423B0E59AED45A54BD4669276E085A3A43* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( Action_2_t9C4E97D0565650F0AEF7C72077EB8A0F9326E40B* (*) (CallbackArray_1_t728037423B0E59AED45A54BD4669276E085A3A43*, int32_t, const RuntimeMethod*))CallbackArray_1_get_Item_m567E182F190B5CEBFBA0D02E0E33AD7A5E46F7E1_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void Action_2_Invoke_m3BFB5987F7235AEF25980B76D635DBD5B56B0F7A_inline (Action_2_t9C4E97D0565650F0AEF7C72077EB8A0F9326E40B* __this, RuntimeObject* ___0_arg1, int32_t ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_t9C4E97D0565650F0AEF7C72077EB8A0F9326E40B*, RuntimeObject*, int32_t, const RuntimeMethod*))Action_2_Invoke_m3BFB5987F7235AEF25980B76D635DBD5B56B0F7A_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void CallbackArray_1_UnlockForChanges_m4CE1FC885A99B0ECD337D1B2FD252838444E6C55 (CallbackArray_1_t728037423B0E59AED45A54BD4669276E085A3A43* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackArray_1_t728037423B0E59AED45A54BD4669276E085A3A43*, const RuntimeMethod*))CallbackArray_1_UnlockForChanges_mA6BDFF9ECCA7A79D6017AFB24BF5932CC3B30197_gshared)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___0_x, float ___1_y, const RuntimeMethod* method) ;
|
|
// Method Definition Index: 10329
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroups_TryConvert_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_m195AEA4177B0E5179318D4314D8CE51D39A952F6_gshared (double* ___0_source, int8_t* ___1_destination, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
Type_t* V_1 = NULL;
|
|
Delegate_t* V_2 = NULL;
|
|
int8_t V_3 = 0x0;
|
|
bool V_4 = false;
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
double V_11 = 0.0;
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
bool V_15 = false;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B14_0 = 0;
|
|
int32_t G_B19_0 = 0;
|
|
double* G_B25_0 = NULL;
|
|
int8_t* G_B25_1 = NULL;
|
|
double* G_B23_0 = NULL;
|
|
int8_t* G_B23_1 = NULL;
|
|
double* G_B24_0 = NULL;
|
|
int8_t* G_B24_1 = NULL;
|
|
String_t* G_B26_0 = NULL;
|
|
int8_t* G_B26_1 = NULL;
|
|
int32_t G_B33_0 = 0;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
V_0 = L_1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 1)) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
V_1 = L_3;
|
|
il2cpp_codegen_runtime_class_init_inline(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_4 = ((ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_StaticFields*)il2cpp_codegen_static_fields_for(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var))->___s_GlobalConverters;
|
|
NullCheck(L_4);
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D L_5;
|
|
L_5 = ConverterGroup_get_registry_m8995D579AD2B9B3F4C9668FDEAB0969422F5A754_inline(L_4, NULL);
|
|
V_5 = L_5;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_6 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
Type_t* L_7;
|
|
L_7 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_6, NULL);
|
|
Type_t* L_8 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var);
|
|
bool L_9;
|
|
L_9 = TypeConverterRegistry_TryGetConverter_mAAF94362D6662DC408E95C3ACADD5FF4310A80C6((&V_5), L_7, L_8, (&V_2), NULL);
|
|
V_4 = L_9;
|
|
bool L_10 = V_4;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
int8_t* L_11 = ___1_destination;
|
|
Delegate_t* L_12 = V_2;
|
|
double* L_13 = ___0_source;
|
|
NullCheck(((TypeConverter_2_t370B4F69ADC2867DC21BE14FA947E12DD9BD0462*)Castclass((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 3))));
|
|
int8_t L_14;
|
|
L_14 = TypeConverter_2_Invoke_m4DBD0B58BB7C3846B3A32B07F1771511AD3EB6FD_inline(((TypeConverter_2_t370B4F69ADC2867DC21BE14FA947E12DD9BD0462*)Castclass((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 3))), L_13, il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
*(int8_t*)L_11 = L_14;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
Type_t* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
bool L_16;
|
|
L_16 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_15, NULL);
|
|
if (!L_16)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_17 = V_1;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_17, NULL);
|
|
G_B5_0 = ((int32_t)(L_18));
|
|
goto IL_0069;
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
V_7 = (bool)G_B5_0;
|
|
bool L_19 = V_7;
|
|
if (!L_19)
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_20 = V_0;
|
|
Type_t* L_21 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
bool L_22;
|
|
L_22 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_20, L_21, NULL);
|
|
V_8 = L_22;
|
|
bool L_23 = V_8;
|
|
if (!L_23)
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
int8_t* L_24 = ___1_destination;
|
|
double* L_25 = ___0_source;
|
|
int8_t* L_26;
|
|
L_26 = UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_mA9E079DFD763D84B8FA5593BDEAD16AAFC8BD546_inline(L_25, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
int8_t L_27 = (*(int8_t*)L_26);
|
|
*(int8_t*)L_24 = L_27;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_28 = ((ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_StaticFields*)il2cpp_codegen_static_fields_for(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var))->___s_PrimitivesConverters;
|
|
NullCheck(L_28);
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D L_29;
|
|
L_29 = ConverterGroup_get_registry_m8995D579AD2B9B3F4C9668FDEAB0969422F5A754_inline(L_28, NULL);
|
|
V_5 = L_29;
|
|
Type_t* L_30 = V_0;
|
|
Type_t* L_31 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var);
|
|
bool L_32;
|
|
L_32 = TypeConverterRegistry_TryGetConverter_mAAF94362D6662DC408E95C3ACADD5FF4310A80C6((&V_5), L_30, L_31, (&V_2), NULL);
|
|
V_9 = L_32;
|
|
bool L_33 = V_9;
|
|
if (!L_33)
|
|
{
|
|
goto IL_00cf;
|
|
}
|
|
}
|
|
{
|
|
int8_t* L_34 = ___1_destination;
|
|
Delegate_t* L_35 = V_2;
|
|
double* L_36 = ___0_source;
|
|
NullCheck(((TypeConverter_2_t370B4F69ADC2867DC21BE14FA947E12DD9BD0462*)Castclass((RuntimeObject*)L_35, il2cpp_rgctx_data(method->rgctx_data, 3))));
|
|
int8_t L_37;
|
|
L_37 = TypeConverter_2_Invoke_m4DBD0B58BB7C3846B3A32B07F1771511AD3EB6FD_inline(((TypeConverter_2_t370B4F69ADC2867DC21BE14FA947E12DD9BD0462*)Castclass((RuntimeObject*)L_35, il2cpp_rgctx_data(method->rgctx_data, 3))), L_36, il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
*(int8_t*)L_34 = L_37;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_00cf:
|
|
{
|
|
int8_t* L_38 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_38, sizeof(int8_t));
|
|
V_6 = (bool)0;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
double* L_39 = ___0_source;
|
|
double L_40 = (*(double*)L_39);
|
|
V_11 = L_40;
|
|
double L_41 = V_11;
|
|
double L_42 = L_41;
|
|
RuntimeObject* L_43 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), &L_42);
|
|
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_43, il2cpp_rgctx_data(method->rgctx_data, 6))))
|
|
{
|
|
goto IL_0109;
|
|
}
|
|
}
|
|
{
|
|
double L_44 = V_11;
|
|
double L_45 = L_44;
|
|
RuntimeObject* L_46 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), &L_45);
|
|
V_3 = ((*(int8_t*)UnBox(((RuntimeObject*)IsInst((RuntimeObject*)L_46, il2cpp_rgctx_data(method->rgctx_data, 6))), il2cpp_rgctx_data(method->rgctx_data, 6))));
|
|
G_B14_0 = 1;
|
|
goto IL_010a;
|
|
}
|
|
|
|
IL_0109:
|
|
{
|
|
G_B14_0 = 0;
|
|
}
|
|
|
|
IL_010a:
|
|
{
|
|
V_10 = (bool)G_B14_0;
|
|
bool L_47 = V_10;
|
|
if (!L_47)
|
|
{
|
|
goto IL_0120;
|
|
}
|
|
}
|
|
{
|
|
int8_t* L_48 = ___1_destination;
|
|
int8_t L_49 = V_3;
|
|
*(int8_t*)L_48 = L_49;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0120:
|
|
{
|
|
Type_t* L_50 = V_1;
|
|
Type_t* L_51 = V_0;
|
|
NullCheck(L_50);
|
|
bool L_52;
|
|
L_52 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(21, L_50, L_51);
|
|
if (!L_52)
|
|
{
|
|
goto IL_0139;
|
|
}
|
|
}
|
|
{
|
|
double* L_53 = ___0_source;
|
|
double L_54 = (*(double*)L_53);
|
|
G_B19_0 = ((int32_t)(false));
|
|
goto IL_013a;
|
|
}
|
|
|
|
IL_0139:
|
|
{
|
|
G_B19_0 = 0;
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
V_12 = (bool)G_B19_0;
|
|
bool L_55 = V_12;
|
|
if (!L_55)
|
|
{
|
|
goto IL_0150;
|
|
}
|
|
}
|
|
{
|
|
int8_t* L_56 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_56, sizeof(int8_t));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0150:
|
|
{
|
|
Type_t* L_57 = V_1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_58 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_59;
|
|
L_59 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_58, NULL);
|
|
bool L_60;
|
|
L_60 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_57, L_59, NULL);
|
|
V_13 = L_60;
|
|
bool L_61 = V_13;
|
|
if (!L_61)
|
|
{
|
|
goto IL_01ad;
|
|
}
|
|
}
|
|
{
|
|
int8_t* L_62 = ___1_destination;
|
|
double* L_63 = ___0_source;
|
|
il2cpp_codegen_initobj((&V_11), sizeof(double));
|
|
G_B25_0 = L_63;
|
|
G_B25_1 = L_62;
|
|
goto IL_0190;
|
|
}
|
|
|
|
IL_0190:
|
|
{
|
|
String_t* L_65;
|
|
L_65 = Double_ToString_m7499A5D792419537DCB9470A3675CEF5117DE339(G_B25_0, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
G_B26_0 = L_65;
|
|
G_B26_1 = G_B25_1;
|
|
}
|
|
|
|
IL_019b:
|
|
{
|
|
*(int8_t*)G_B26_1 = ((*(int8_t*)UnBox((RuntimeObject*)G_B26_0, il2cpp_rgctx_data(method->rgctx_data, 6))));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_01ad:
|
|
{
|
|
Type_t* L_66 = V_1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_67 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.object_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_68;
|
|
L_68 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_67, NULL);
|
|
bool L_69;
|
|
L_69 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_66, L_68, NULL);
|
|
V_14 = L_69;
|
|
bool L_70 = V_14;
|
|
if (!L_70)
|
|
{
|
|
goto IL_01df;
|
|
}
|
|
}
|
|
{
|
|
int8_t* L_71 = ___1_destination;
|
|
double* L_72 = ___0_source;
|
|
double L_73 = (*(double*)L_72);
|
|
double L_74 = L_73;
|
|
RuntimeObject* L_75 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), &L_74);
|
|
*(int8_t*)L_71 = ((*(int8_t*)UnBox(L_75, il2cpp_rgctx_data(method->rgctx_data, 6))));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_01df:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 11));
|
|
bool L_76;
|
|
L_76 = TypeTraits_1_get_IsValueType_mA4EC7C62F3D525F3046A4FECDE46919367925E98_inline(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
if (L_76)
|
|
{
|
|
goto IL_020e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_020e;
|
|
}
|
|
|
|
IL_020e:
|
|
{
|
|
G_B33_0 = 0;
|
|
}
|
|
|
|
IL_020f:
|
|
{
|
|
V_15 = (bool)G_B33_0;
|
|
bool L_78 = V_15;
|
|
if (!L_78)
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
}
|
|
{
|
|
int8_t* L_79 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_79, sizeof(int8_t));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
int8_t* L_80 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_80, sizeof(int8_t));
|
|
V_6 = (bool)0;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_022e:
|
|
{
|
|
bool L_81 = V_6;
|
|
return L_81;
|
|
}
|
|
}
|
|
// Method Definition Index: 10329
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroups_TryConvert_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m4067631C865B9F0B8C8E13938A5327BD0028356B_gshared (double* ___0_source, float* ___1_destination, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
Type_t* V_1 = NULL;
|
|
Delegate_t* V_2 = NULL;
|
|
float V_3 = 0.0f;
|
|
bool V_4 = false;
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
double V_11 = 0.0;
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
bool V_15 = false;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B14_0 = 0;
|
|
int32_t G_B19_0 = 0;
|
|
double* G_B25_0 = NULL;
|
|
float* G_B25_1 = NULL;
|
|
double* G_B23_0 = NULL;
|
|
float* G_B23_1 = NULL;
|
|
double* G_B24_0 = NULL;
|
|
float* G_B24_1 = NULL;
|
|
String_t* G_B26_0 = NULL;
|
|
float* G_B26_1 = NULL;
|
|
int32_t G_B33_0 = 0;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
V_0 = L_1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 1)) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
V_1 = L_3;
|
|
il2cpp_codegen_runtime_class_init_inline(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_4 = ((ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_StaticFields*)il2cpp_codegen_static_fields_for(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var))->___s_GlobalConverters;
|
|
NullCheck(L_4);
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D L_5;
|
|
L_5 = ConverterGroup_get_registry_m8995D579AD2B9B3F4C9668FDEAB0969422F5A754_inline(L_4, NULL);
|
|
V_5 = L_5;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_6 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
Type_t* L_7;
|
|
L_7 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_6, NULL);
|
|
Type_t* L_8 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var);
|
|
bool L_9;
|
|
L_9 = TypeConverterRegistry_TryGetConverter_mAAF94362D6662DC408E95C3ACADD5FF4310A80C6((&V_5), L_7, L_8, (&V_2), NULL);
|
|
V_4 = L_9;
|
|
bool L_10 = V_4;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
float* L_11 = ___1_destination;
|
|
Delegate_t* L_12 = V_2;
|
|
double* L_13 = ___0_source;
|
|
NullCheck(((TypeConverter_2_tBB893836100D5BA5086C7F2638C9D63D6FC61559*)Castclass((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 3))));
|
|
float L_14;
|
|
L_14 = TypeConverter_2_Invoke_m24961A5FF38B2207EC3DED8E909E7F595C619E71_inline(((TypeConverter_2_tBB893836100D5BA5086C7F2638C9D63D6FC61559*)Castclass((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 3))), L_13, il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
*(float*)L_11 = L_14;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
Type_t* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
bool L_16;
|
|
L_16 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_15, NULL);
|
|
if (!L_16)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_17 = V_1;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_17, NULL);
|
|
G_B5_0 = ((int32_t)(L_18));
|
|
goto IL_0069;
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
V_7 = (bool)G_B5_0;
|
|
bool L_19 = V_7;
|
|
if (!L_19)
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_20 = V_0;
|
|
Type_t* L_21 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
bool L_22;
|
|
L_22 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_20, L_21, NULL);
|
|
V_8 = L_22;
|
|
bool L_23 = V_8;
|
|
if (!L_23)
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
float* L_24 = ___1_destination;
|
|
double* L_25 = ___0_source;
|
|
float* L_26;
|
|
L_26 = UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m78C79739929AAB266580F0DD602A59D776CE3467_inline(L_25, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
float L_27 = (*(float*)L_26);
|
|
*(float*)L_24 = L_27;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_28 = ((ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_StaticFields*)il2cpp_codegen_static_fields_for(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var))->___s_PrimitivesConverters;
|
|
NullCheck(L_28);
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D L_29;
|
|
L_29 = ConverterGroup_get_registry_m8995D579AD2B9B3F4C9668FDEAB0969422F5A754_inline(L_28, NULL);
|
|
V_5 = L_29;
|
|
Type_t* L_30 = V_0;
|
|
Type_t* L_31 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var);
|
|
bool L_32;
|
|
L_32 = TypeConverterRegistry_TryGetConverter_mAAF94362D6662DC408E95C3ACADD5FF4310A80C6((&V_5), L_30, L_31, (&V_2), NULL);
|
|
V_9 = L_32;
|
|
bool L_33 = V_9;
|
|
if (!L_33)
|
|
{
|
|
goto IL_00cf;
|
|
}
|
|
}
|
|
{
|
|
float* L_34 = ___1_destination;
|
|
Delegate_t* L_35 = V_2;
|
|
double* L_36 = ___0_source;
|
|
NullCheck(((TypeConverter_2_tBB893836100D5BA5086C7F2638C9D63D6FC61559*)Castclass((RuntimeObject*)L_35, il2cpp_rgctx_data(method->rgctx_data, 3))));
|
|
float L_37;
|
|
L_37 = TypeConverter_2_Invoke_m24961A5FF38B2207EC3DED8E909E7F595C619E71_inline(((TypeConverter_2_tBB893836100D5BA5086C7F2638C9D63D6FC61559*)Castclass((RuntimeObject*)L_35, il2cpp_rgctx_data(method->rgctx_data, 3))), L_36, il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
*(float*)L_34 = L_37;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_00cf:
|
|
{
|
|
float* L_38 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_38, sizeof(float));
|
|
V_6 = (bool)0;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
double* L_39 = ___0_source;
|
|
double L_40 = (*(double*)L_39);
|
|
V_11 = L_40;
|
|
double L_41 = V_11;
|
|
double L_42 = L_41;
|
|
RuntimeObject* L_43 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), &L_42);
|
|
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_43, il2cpp_rgctx_data(method->rgctx_data, 6))))
|
|
{
|
|
goto IL_0109;
|
|
}
|
|
}
|
|
{
|
|
double L_44 = V_11;
|
|
double L_45 = L_44;
|
|
RuntimeObject* L_46 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), &L_45);
|
|
V_3 = ((*(float*)UnBox(((RuntimeObject*)IsInst((RuntimeObject*)L_46, il2cpp_rgctx_data(method->rgctx_data, 6))), il2cpp_rgctx_data(method->rgctx_data, 6))));
|
|
G_B14_0 = 1;
|
|
goto IL_010a;
|
|
}
|
|
|
|
IL_0109:
|
|
{
|
|
G_B14_0 = 0;
|
|
}
|
|
|
|
IL_010a:
|
|
{
|
|
V_10 = (bool)G_B14_0;
|
|
bool L_47 = V_10;
|
|
if (!L_47)
|
|
{
|
|
goto IL_0120;
|
|
}
|
|
}
|
|
{
|
|
float* L_48 = ___1_destination;
|
|
float L_49 = V_3;
|
|
*(float*)L_48 = L_49;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0120:
|
|
{
|
|
Type_t* L_50 = V_1;
|
|
Type_t* L_51 = V_0;
|
|
NullCheck(L_50);
|
|
bool L_52;
|
|
L_52 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(21, L_50, L_51);
|
|
if (!L_52)
|
|
{
|
|
goto IL_0139;
|
|
}
|
|
}
|
|
{
|
|
double* L_53 = ___0_source;
|
|
double L_54 = (*(double*)L_53);
|
|
G_B19_0 = ((int32_t)(false));
|
|
goto IL_013a;
|
|
}
|
|
|
|
IL_0139:
|
|
{
|
|
G_B19_0 = 0;
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
V_12 = (bool)G_B19_0;
|
|
bool L_55 = V_12;
|
|
if (!L_55)
|
|
{
|
|
goto IL_0150;
|
|
}
|
|
}
|
|
{
|
|
float* L_56 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_56, sizeof(float));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0150:
|
|
{
|
|
Type_t* L_57 = V_1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_58 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_59;
|
|
L_59 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_58, NULL);
|
|
bool L_60;
|
|
L_60 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_57, L_59, NULL);
|
|
V_13 = L_60;
|
|
bool L_61 = V_13;
|
|
if (!L_61)
|
|
{
|
|
goto IL_01ad;
|
|
}
|
|
}
|
|
{
|
|
float* L_62 = ___1_destination;
|
|
double* L_63 = ___0_source;
|
|
il2cpp_codegen_initobj((&V_11), sizeof(double));
|
|
G_B25_0 = L_63;
|
|
G_B25_1 = L_62;
|
|
goto IL_0190;
|
|
}
|
|
|
|
IL_0190:
|
|
{
|
|
String_t* L_65;
|
|
L_65 = Double_ToString_m7499A5D792419537DCB9470A3675CEF5117DE339(G_B25_0, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
G_B26_0 = L_65;
|
|
G_B26_1 = G_B25_1;
|
|
}
|
|
|
|
IL_019b:
|
|
{
|
|
*(float*)G_B26_1 = ((*(float*)UnBox((RuntimeObject*)G_B26_0, il2cpp_rgctx_data(method->rgctx_data, 6))));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_01ad:
|
|
{
|
|
Type_t* L_66 = V_1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_67 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.object_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_68;
|
|
L_68 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_67, NULL);
|
|
bool L_69;
|
|
L_69 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_66, L_68, NULL);
|
|
V_14 = L_69;
|
|
bool L_70 = V_14;
|
|
if (!L_70)
|
|
{
|
|
goto IL_01df;
|
|
}
|
|
}
|
|
{
|
|
float* L_71 = ___1_destination;
|
|
double* L_72 = ___0_source;
|
|
double L_73 = (*(double*)L_72);
|
|
double L_74 = L_73;
|
|
RuntimeObject* L_75 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), &L_74);
|
|
*(float*)L_71 = ((*(float*)UnBox(L_75, il2cpp_rgctx_data(method->rgctx_data, 6))));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_01df:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 11));
|
|
bool L_76;
|
|
L_76 = TypeTraits_1_get_IsValueType_mA4EC7C62F3D525F3046A4FECDE46919367925E98_inline(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
if (L_76)
|
|
{
|
|
goto IL_020e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_020e;
|
|
}
|
|
|
|
IL_020e:
|
|
{
|
|
G_B33_0 = 0;
|
|
}
|
|
|
|
IL_020f:
|
|
{
|
|
V_15 = (bool)G_B33_0;
|
|
bool L_78 = V_15;
|
|
if (!L_78)
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
}
|
|
{
|
|
float* L_79 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_79, sizeof(float));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
float* L_80 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_80, sizeof(float));
|
|
V_6 = (bool)0;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_022e:
|
|
{
|
|
bool L_81 = V_6;
|
|
return L_81;
|
|
}
|
|
}
|
|
// Method Definition Index: 10329
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroups_TryConvert_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m0158357A1BF542AAF3DAA2C07DAF6E08BBADCF2D_gshared (double* ___0_source, uint16_t* ___1_destination, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
Type_t* V_1 = NULL;
|
|
Delegate_t* V_2 = NULL;
|
|
uint16_t V_3 = 0;
|
|
bool V_4 = false;
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
double V_11 = 0.0;
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
bool V_15 = false;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B14_0 = 0;
|
|
int32_t G_B19_0 = 0;
|
|
double* G_B25_0 = NULL;
|
|
uint16_t* G_B25_1 = NULL;
|
|
double* G_B23_0 = NULL;
|
|
uint16_t* G_B23_1 = NULL;
|
|
double* G_B24_0 = NULL;
|
|
uint16_t* G_B24_1 = NULL;
|
|
String_t* G_B26_0 = NULL;
|
|
uint16_t* G_B26_1 = NULL;
|
|
int32_t G_B33_0 = 0;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
V_0 = L_1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 1)) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
V_1 = L_3;
|
|
il2cpp_codegen_runtime_class_init_inline(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_4 = ((ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_StaticFields*)il2cpp_codegen_static_fields_for(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var))->___s_GlobalConverters;
|
|
NullCheck(L_4);
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D L_5;
|
|
L_5 = ConverterGroup_get_registry_m8995D579AD2B9B3F4C9668FDEAB0969422F5A754_inline(L_4, NULL);
|
|
V_5 = L_5;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_6 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
Type_t* L_7;
|
|
L_7 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_6, NULL);
|
|
Type_t* L_8 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var);
|
|
bool L_9;
|
|
L_9 = TypeConverterRegistry_TryGetConverter_mAAF94362D6662DC408E95C3ACADD5FF4310A80C6((&V_5), L_7, L_8, (&V_2), NULL);
|
|
V_4 = L_9;
|
|
bool L_10 = V_4;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
uint16_t* L_11 = ___1_destination;
|
|
Delegate_t* L_12 = V_2;
|
|
double* L_13 = ___0_source;
|
|
NullCheck(((TypeConverter_2_tB736BA63BC9F9885972433F0B1D7232E2AAE0585*)Castclass((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 3))));
|
|
uint16_t L_14;
|
|
L_14 = TypeConverter_2_Invoke_mA6D015A5E76471F6A2D58F4E0C8AEC5058DCE134_inline(((TypeConverter_2_tB736BA63BC9F9885972433F0B1D7232E2AAE0585*)Castclass((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 3))), L_13, il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
*(uint16_t*)L_11 = L_14;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
Type_t* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
bool L_16;
|
|
L_16 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_15, NULL);
|
|
if (!L_16)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_17 = V_1;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_17, NULL);
|
|
G_B5_0 = ((int32_t)(L_18));
|
|
goto IL_0069;
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
V_7 = (bool)G_B5_0;
|
|
bool L_19 = V_7;
|
|
if (!L_19)
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_20 = V_0;
|
|
Type_t* L_21 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
bool L_22;
|
|
L_22 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_20, L_21, NULL);
|
|
V_8 = L_22;
|
|
bool L_23 = V_8;
|
|
if (!L_23)
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
uint16_t* L_24 = ___1_destination;
|
|
double* L_25 = ___0_source;
|
|
uint16_t* L_26;
|
|
L_26 = UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m1222A63B0F5D73BB7A0572CEE1D84313296D428C_inline(L_25, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint16_t L_27 = (*(uint16_t*)L_26);
|
|
*(uint16_t*)L_24 = L_27;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_28 = ((ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_StaticFields*)il2cpp_codegen_static_fields_for(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var))->___s_PrimitivesConverters;
|
|
NullCheck(L_28);
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D L_29;
|
|
L_29 = ConverterGroup_get_registry_m8995D579AD2B9B3F4C9668FDEAB0969422F5A754_inline(L_28, NULL);
|
|
V_5 = L_29;
|
|
Type_t* L_30 = V_0;
|
|
Type_t* L_31 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var);
|
|
bool L_32;
|
|
L_32 = TypeConverterRegistry_TryGetConverter_mAAF94362D6662DC408E95C3ACADD5FF4310A80C6((&V_5), L_30, L_31, (&V_2), NULL);
|
|
V_9 = L_32;
|
|
bool L_33 = V_9;
|
|
if (!L_33)
|
|
{
|
|
goto IL_00cf;
|
|
}
|
|
}
|
|
{
|
|
uint16_t* L_34 = ___1_destination;
|
|
Delegate_t* L_35 = V_2;
|
|
double* L_36 = ___0_source;
|
|
NullCheck(((TypeConverter_2_tB736BA63BC9F9885972433F0B1D7232E2AAE0585*)Castclass((RuntimeObject*)L_35, il2cpp_rgctx_data(method->rgctx_data, 3))));
|
|
uint16_t L_37;
|
|
L_37 = TypeConverter_2_Invoke_mA6D015A5E76471F6A2D58F4E0C8AEC5058DCE134_inline(((TypeConverter_2_tB736BA63BC9F9885972433F0B1D7232E2AAE0585*)Castclass((RuntimeObject*)L_35, il2cpp_rgctx_data(method->rgctx_data, 3))), L_36, il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
*(uint16_t*)L_34 = L_37;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_00cf:
|
|
{
|
|
uint16_t* L_38 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_38, sizeof(uint16_t));
|
|
V_6 = (bool)0;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
double* L_39 = ___0_source;
|
|
double L_40 = (*(double*)L_39);
|
|
V_11 = L_40;
|
|
double L_41 = V_11;
|
|
double L_42 = L_41;
|
|
RuntimeObject* L_43 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), &L_42);
|
|
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_43, il2cpp_rgctx_data(method->rgctx_data, 6))))
|
|
{
|
|
goto IL_0109;
|
|
}
|
|
}
|
|
{
|
|
double L_44 = V_11;
|
|
double L_45 = L_44;
|
|
RuntimeObject* L_46 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), &L_45);
|
|
V_3 = ((*(uint16_t*)UnBox(((RuntimeObject*)IsInst((RuntimeObject*)L_46, il2cpp_rgctx_data(method->rgctx_data, 6))), il2cpp_rgctx_data(method->rgctx_data, 6))));
|
|
G_B14_0 = 1;
|
|
goto IL_010a;
|
|
}
|
|
|
|
IL_0109:
|
|
{
|
|
G_B14_0 = 0;
|
|
}
|
|
|
|
IL_010a:
|
|
{
|
|
V_10 = (bool)G_B14_0;
|
|
bool L_47 = V_10;
|
|
if (!L_47)
|
|
{
|
|
goto IL_0120;
|
|
}
|
|
}
|
|
{
|
|
uint16_t* L_48 = ___1_destination;
|
|
uint16_t L_49 = V_3;
|
|
*(uint16_t*)L_48 = L_49;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0120:
|
|
{
|
|
Type_t* L_50 = V_1;
|
|
Type_t* L_51 = V_0;
|
|
NullCheck(L_50);
|
|
bool L_52;
|
|
L_52 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(21, L_50, L_51);
|
|
if (!L_52)
|
|
{
|
|
goto IL_0139;
|
|
}
|
|
}
|
|
{
|
|
double* L_53 = ___0_source;
|
|
double L_54 = (*(double*)L_53);
|
|
G_B19_0 = ((int32_t)(false));
|
|
goto IL_013a;
|
|
}
|
|
|
|
IL_0139:
|
|
{
|
|
G_B19_0 = 0;
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
V_12 = (bool)G_B19_0;
|
|
bool L_55 = V_12;
|
|
if (!L_55)
|
|
{
|
|
goto IL_0150;
|
|
}
|
|
}
|
|
{
|
|
uint16_t* L_56 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_56, sizeof(uint16_t));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0150:
|
|
{
|
|
Type_t* L_57 = V_1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_58 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_59;
|
|
L_59 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_58, NULL);
|
|
bool L_60;
|
|
L_60 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_57, L_59, NULL);
|
|
V_13 = L_60;
|
|
bool L_61 = V_13;
|
|
if (!L_61)
|
|
{
|
|
goto IL_01ad;
|
|
}
|
|
}
|
|
{
|
|
uint16_t* L_62 = ___1_destination;
|
|
double* L_63 = ___0_source;
|
|
il2cpp_codegen_initobj((&V_11), sizeof(double));
|
|
G_B25_0 = L_63;
|
|
G_B25_1 = L_62;
|
|
goto IL_0190;
|
|
}
|
|
|
|
IL_0190:
|
|
{
|
|
String_t* L_65;
|
|
L_65 = Double_ToString_m7499A5D792419537DCB9470A3675CEF5117DE339(G_B25_0, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
G_B26_0 = L_65;
|
|
G_B26_1 = G_B25_1;
|
|
}
|
|
|
|
IL_019b:
|
|
{
|
|
*(uint16_t*)G_B26_1 = ((*(uint16_t*)UnBox((RuntimeObject*)G_B26_0, il2cpp_rgctx_data(method->rgctx_data, 6))));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_01ad:
|
|
{
|
|
Type_t* L_66 = V_1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_67 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.object_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_68;
|
|
L_68 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_67, NULL);
|
|
bool L_69;
|
|
L_69 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_66, L_68, NULL);
|
|
V_14 = L_69;
|
|
bool L_70 = V_14;
|
|
if (!L_70)
|
|
{
|
|
goto IL_01df;
|
|
}
|
|
}
|
|
{
|
|
uint16_t* L_71 = ___1_destination;
|
|
double* L_72 = ___0_source;
|
|
double L_73 = (*(double*)L_72);
|
|
double L_74 = L_73;
|
|
RuntimeObject* L_75 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), &L_74);
|
|
*(uint16_t*)L_71 = ((*(uint16_t*)UnBox(L_75, il2cpp_rgctx_data(method->rgctx_data, 6))));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_01df:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 11));
|
|
bool L_76;
|
|
L_76 = TypeTraits_1_get_IsValueType_mA4EC7C62F3D525F3046A4FECDE46919367925E98_inline(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
if (L_76)
|
|
{
|
|
goto IL_020e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_020e;
|
|
}
|
|
|
|
IL_020e:
|
|
{
|
|
G_B33_0 = 0;
|
|
}
|
|
|
|
IL_020f:
|
|
{
|
|
V_15 = (bool)G_B33_0;
|
|
bool L_78 = V_15;
|
|
if (!L_78)
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
}
|
|
{
|
|
uint16_t* L_79 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_79, sizeof(uint16_t));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
uint16_t* L_80 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_80, sizeof(uint16_t));
|
|
V_6 = (bool)0;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_022e:
|
|
{
|
|
bool L_81 = V_6;
|
|
return L_81;
|
|
}
|
|
}
|
|
// Method Definition Index: 10329
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroups_TryConvert_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m925D192689DF013DCE5EABBDFC1FE32BF21624B8_gshared (double* ___0_source, uint32_t* ___1_destination, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
Type_t* V_1 = NULL;
|
|
Delegate_t* V_2 = NULL;
|
|
uint32_t V_3 = 0;
|
|
bool V_4 = false;
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
double V_11 = 0.0;
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
bool V_15 = false;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B14_0 = 0;
|
|
int32_t G_B19_0 = 0;
|
|
double* G_B25_0 = NULL;
|
|
uint32_t* G_B25_1 = NULL;
|
|
double* G_B23_0 = NULL;
|
|
uint32_t* G_B23_1 = NULL;
|
|
double* G_B24_0 = NULL;
|
|
uint32_t* G_B24_1 = NULL;
|
|
String_t* G_B26_0 = NULL;
|
|
uint32_t* G_B26_1 = NULL;
|
|
int32_t G_B33_0 = 0;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
V_0 = L_1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 1)) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
V_1 = L_3;
|
|
il2cpp_codegen_runtime_class_init_inline(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_4 = ((ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_StaticFields*)il2cpp_codegen_static_fields_for(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var))->___s_GlobalConverters;
|
|
NullCheck(L_4);
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D L_5;
|
|
L_5 = ConverterGroup_get_registry_m8995D579AD2B9B3F4C9668FDEAB0969422F5A754_inline(L_4, NULL);
|
|
V_5 = L_5;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_6 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
Type_t* L_7;
|
|
L_7 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_6, NULL);
|
|
Type_t* L_8 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var);
|
|
bool L_9;
|
|
L_9 = TypeConverterRegistry_TryGetConverter_mAAF94362D6662DC408E95C3ACADD5FF4310A80C6((&V_5), L_7, L_8, (&V_2), NULL);
|
|
V_4 = L_9;
|
|
bool L_10 = V_4;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
uint32_t* L_11 = ___1_destination;
|
|
Delegate_t* L_12 = V_2;
|
|
double* L_13 = ___0_source;
|
|
NullCheck(((TypeConverter_2_tA07ADAC5ACD7A76F41C95586D89B438C04D44409*)Castclass((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 3))));
|
|
uint32_t L_14;
|
|
L_14 = TypeConverter_2_Invoke_m20ADC0EA3465CE5CF733DD4244D30F2461F6BB2F_inline(((TypeConverter_2_tA07ADAC5ACD7A76F41C95586D89B438C04D44409*)Castclass((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 3))), L_13, il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
*(uint32_t*)L_11 = L_14;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
Type_t* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
bool L_16;
|
|
L_16 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_15, NULL);
|
|
if (!L_16)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_17 = V_1;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_17, NULL);
|
|
G_B5_0 = ((int32_t)(L_18));
|
|
goto IL_0069;
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
V_7 = (bool)G_B5_0;
|
|
bool L_19 = V_7;
|
|
if (!L_19)
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_20 = V_0;
|
|
Type_t* L_21 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
bool L_22;
|
|
L_22 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_20, L_21, NULL);
|
|
V_8 = L_22;
|
|
bool L_23 = V_8;
|
|
if (!L_23)
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
uint32_t* L_24 = ___1_destination;
|
|
double* L_25 = ___0_source;
|
|
uint32_t* L_26;
|
|
L_26 = UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mCB835683A3E41B945C251D37F399CC838E245030_inline(L_25, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint32_t L_27 = (*(uint32_t*)L_26);
|
|
*(uint32_t*)L_24 = L_27;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_28 = ((ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_StaticFields*)il2cpp_codegen_static_fields_for(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var))->___s_PrimitivesConverters;
|
|
NullCheck(L_28);
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D L_29;
|
|
L_29 = ConverterGroup_get_registry_m8995D579AD2B9B3F4C9668FDEAB0969422F5A754_inline(L_28, NULL);
|
|
V_5 = L_29;
|
|
Type_t* L_30 = V_0;
|
|
Type_t* L_31 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var);
|
|
bool L_32;
|
|
L_32 = TypeConverterRegistry_TryGetConverter_mAAF94362D6662DC408E95C3ACADD5FF4310A80C6((&V_5), L_30, L_31, (&V_2), NULL);
|
|
V_9 = L_32;
|
|
bool L_33 = V_9;
|
|
if (!L_33)
|
|
{
|
|
goto IL_00cf;
|
|
}
|
|
}
|
|
{
|
|
uint32_t* L_34 = ___1_destination;
|
|
Delegate_t* L_35 = V_2;
|
|
double* L_36 = ___0_source;
|
|
NullCheck(((TypeConverter_2_tA07ADAC5ACD7A76F41C95586D89B438C04D44409*)Castclass((RuntimeObject*)L_35, il2cpp_rgctx_data(method->rgctx_data, 3))));
|
|
uint32_t L_37;
|
|
L_37 = TypeConverter_2_Invoke_m20ADC0EA3465CE5CF733DD4244D30F2461F6BB2F_inline(((TypeConverter_2_tA07ADAC5ACD7A76F41C95586D89B438C04D44409*)Castclass((RuntimeObject*)L_35, il2cpp_rgctx_data(method->rgctx_data, 3))), L_36, il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
*(uint32_t*)L_34 = L_37;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_00cf:
|
|
{
|
|
uint32_t* L_38 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_38, sizeof(uint32_t));
|
|
V_6 = (bool)0;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
double* L_39 = ___0_source;
|
|
double L_40 = (*(double*)L_39);
|
|
V_11 = L_40;
|
|
double L_41 = V_11;
|
|
double L_42 = L_41;
|
|
RuntimeObject* L_43 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), &L_42);
|
|
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_43, il2cpp_rgctx_data(method->rgctx_data, 6))))
|
|
{
|
|
goto IL_0109;
|
|
}
|
|
}
|
|
{
|
|
double L_44 = V_11;
|
|
double L_45 = L_44;
|
|
RuntimeObject* L_46 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), &L_45);
|
|
V_3 = ((*(uint32_t*)UnBox(((RuntimeObject*)IsInst((RuntimeObject*)L_46, il2cpp_rgctx_data(method->rgctx_data, 6))), il2cpp_rgctx_data(method->rgctx_data, 6))));
|
|
G_B14_0 = 1;
|
|
goto IL_010a;
|
|
}
|
|
|
|
IL_0109:
|
|
{
|
|
G_B14_0 = 0;
|
|
}
|
|
|
|
IL_010a:
|
|
{
|
|
V_10 = (bool)G_B14_0;
|
|
bool L_47 = V_10;
|
|
if (!L_47)
|
|
{
|
|
goto IL_0120;
|
|
}
|
|
}
|
|
{
|
|
uint32_t* L_48 = ___1_destination;
|
|
uint32_t L_49 = V_3;
|
|
*(uint32_t*)L_48 = L_49;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0120:
|
|
{
|
|
Type_t* L_50 = V_1;
|
|
Type_t* L_51 = V_0;
|
|
NullCheck(L_50);
|
|
bool L_52;
|
|
L_52 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(21, L_50, L_51);
|
|
if (!L_52)
|
|
{
|
|
goto IL_0139;
|
|
}
|
|
}
|
|
{
|
|
double* L_53 = ___0_source;
|
|
double L_54 = (*(double*)L_53);
|
|
G_B19_0 = ((int32_t)(false));
|
|
goto IL_013a;
|
|
}
|
|
|
|
IL_0139:
|
|
{
|
|
G_B19_0 = 0;
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
V_12 = (bool)G_B19_0;
|
|
bool L_55 = V_12;
|
|
if (!L_55)
|
|
{
|
|
goto IL_0150;
|
|
}
|
|
}
|
|
{
|
|
uint32_t* L_56 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_56, sizeof(uint32_t));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0150:
|
|
{
|
|
Type_t* L_57 = V_1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_58 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_59;
|
|
L_59 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_58, NULL);
|
|
bool L_60;
|
|
L_60 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_57, L_59, NULL);
|
|
V_13 = L_60;
|
|
bool L_61 = V_13;
|
|
if (!L_61)
|
|
{
|
|
goto IL_01ad;
|
|
}
|
|
}
|
|
{
|
|
uint32_t* L_62 = ___1_destination;
|
|
double* L_63 = ___0_source;
|
|
il2cpp_codegen_initobj((&V_11), sizeof(double));
|
|
G_B25_0 = L_63;
|
|
G_B25_1 = L_62;
|
|
goto IL_0190;
|
|
}
|
|
|
|
IL_0190:
|
|
{
|
|
String_t* L_65;
|
|
L_65 = Double_ToString_m7499A5D792419537DCB9470A3675CEF5117DE339(G_B25_0, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
G_B26_0 = L_65;
|
|
G_B26_1 = G_B25_1;
|
|
}
|
|
|
|
IL_019b:
|
|
{
|
|
*(uint32_t*)G_B26_1 = ((*(uint32_t*)UnBox((RuntimeObject*)G_B26_0, il2cpp_rgctx_data(method->rgctx_data, 6))));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_01ad:
|
|
{
|
|
Type_t* L_66 = V_1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_67 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.object_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_68;
|
|
L_68 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_67, NULL);
|
|
bool L_69;
|
|
L_69 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_66, L_68, NULL);
|
|
V_14 = L_69;
|
|
bool L_70 = V_14;
|
|
if (!L_70)
|
|
{
|
|
goto IL_01df;
|
|
}
|
|
}
|
|
{
|
|
uint32_t* L_71 = ___1_destination;
|
|
double* L_72 = ___0_source;
|
|
double L_73 = (*(double*)L_72);
|
|
double L_74 = L_73;
|
|
RuntimeObject* L_75 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), &L_74);
|
|
*(uint32_t*)L_71 = ((*(uint32_t*)UnBox(L_75, il2cpp_rgctx_data(method->rgctx_data, 6))));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_01df:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 11));
|
|
bool L_76;
|
|
L_76 = TypeTraits_1_get_IsValueType_mA4EC7C62F3D525F3046A4FECDE46919367925E98_inline(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
if (L_76)
|
|
{
|
|
goto IL_020e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_020e;
|
|
}
|
|
|
|
IL_020e:
|
|
{
|
|
G_B33_0 = 0;
|
|
}
|
|
|
|
IL_020f:
|
|
{
|
|
V_15 = (bool)G_B33_0;
|
|
bool L_78 = V_15;
|
|
if (!L_78)
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
}
|
|
{
|
|
uint32_t* L_79 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_79, sizeof(uint32_t));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
uint32_t* L_80 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_80, sizeof(uint32_t));
|
|
V_6 = (bool)0;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_022e:
|
|
{
|
|
bool L_81 = V_6;
|
|
return L_81;
|
|
}
|
|
}
|
|
// Method Definition Index: 10329
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroups_TryConvert_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m8CACD3FF743F12643082C200E8DF47307A178133_gshared (double* ___0_source, uint64_t* ___1_destination, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
Type_t* V_1 = NULL;
|
|
Delegate_t* V_2 = NULL;
|
|
uint64_t V_3 = 0;
|
|
bool V_4 = false;
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
double V_11 = 0.0;
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
bool V_15 = false;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B14_0 = 0;
|
|
int32_t G_B19_0 = 0;
|
|
double* G_B25_0 = NULL;
|
|
uint64_t* G_B25_1 = NULL;
|
|
double* G_B23_0 = NULL;
|
|
uint64_t* G_B23_1 = NULL;
|
|
double* G_B24_0 = NULL;
|
|
uint64_t* G_B24_1 = NULL;
|
|
String_t* G_B26_0 = NULL;
|
|
uint64_t* G_B26_1 = NULL;
|
|
int32_t G_B33_0 = 0;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
V_0 = L_1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 1)) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
V_1 = L_3;
|
|
il2cpp_codegen_runtime_class_init_inline(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_4 = ((ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_StaticFields*)il2cpp_codegen_static_fields_for(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var))->___s_GlobalConverters;
|
|
NullCheck(L_4);
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D L_5;
|
|
L_5 = ConverterGroup_get_registry_m8995D579AD2B9B3F4C9668FDEAB0969422F5A754_inline(L_4, NULL);
|
|
V_5 = L_5;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_6 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
Type_t* L_7;
|
|
L_7 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_6, NULL);
|
|
Type_t* L_8 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var);
|
|
bool L_9;
|
|
L_9 = TypeConverterRegistry_TryGetConverter_mAAF94362D6662DC408E95C3ACADD5FF4310A80C6((&V_5), L_7, L_8, (&V_2), NULL);
|
|
V_4 = L_9;
|
|
bool L_10 = V_4;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
uint64_t* L_11 = ___1_destination;
|
|
Delegate_t* L_12 = V_2;
|
|
double* L_13 = ___0_source;
|
|
NullCheck(((TypeConverter_2_t794BDD9B9C3A12BF490C7710C609706E72EDABCD*)Castclass((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 3))));
|
|
uint64_t L_14;
|
|
L_14 = TypeConverter_2_Invoke_mBF92648B15FEA94F0572738B7E0E2A849216DE4A_inline(((TypeConverter_2_t794BDD9B9C3A12BF490C7710C609706E72EDABCD*)Castclass((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 3))), L_13, il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
*(uint64_t*)L_11 = L_14;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
Type_t* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
bool L_16;
|
|
L_16 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_15, NULL);
|
|
if (!L_16)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_17 = V_1;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_17, NULL);
|
|
G_B5_0 = ((int32_t)(L_18));
|
|
goto IL_0069;
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
V_7 = (bool)G_B5_0;
|
|
bool L_19 = V_7;
|
|
if (!L_19)
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_20 = V_0;
|
|
Type_t* L_21 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
bool L_22;
|
|
L_22 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_20, L_21, NULL);
|
|
V_8 = L_22;
|
|
bool L_23 = V_8;
|
|
if (!L_23)
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
uint64_t* L_24 = ___1_destination;
|
|
double* L_25 = ___0_source;
|
|
uint64_t* L_26;
|
|
L_26 = UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mF1C1F5513615654E580D9CAE0338257FD7BC609F_inline(L_25, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
uint64_t L_27 = (*(uint64_t*)L_26);
|
|
*(uint64_t*)L_24 = L_27;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_28 = ((ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_StaticFields*)il2cpp_codegen_static_fields_for(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var))->___s_PrimitivesConverters;
|
|
NullCheck(L_28);
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D L_29;
|
|
L_29 = ConverterGroup_get_registry_m8995D579AD2B9B3F4C9668FDEAB0969422F5A754_inline(L_28, NULL);
|
|
V_5 = L_29;
|
|
Type_t* L_30 = V_0;
|
|
Type_t* L_31 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var);
|
|
bool L_32;
|
|
L_32 = TypeConverterRegistry_TryGetConverter_mAAF94362D6662DC408E95C3ACADD5FF4310A80C6((&V_5), L_30, L_31, (&V_2), NULL);
|
|
V_9 = L_32;
|
|
bool L_33 = V_9;
|
|
if (!L_33)
|
|
{
|
|
goto IL_00cf;
|
|
}
|
|
}
|
|
{
|
|
uint64_t* L_34 = ___1_destination;
|
|
Delegate_t* L_35 = V_2;
|
|
double* L_36 = ___0_source;
|
|
NullCheck(((TypeConverter_2_t794BDD9B9C3A12BF490C7710C609706E72EDABCD*)Castclass((RuntimeObject*)L_35, il2cpp_rgctx_data(method->rgctx_data, 3))));
|
|
uint64_t L_37;
|
|
L_37 = TypeConverter_2_Invoke_mBF92648B15FEA94F0572738B7E0E2A849216DE4A_inline(((TypeConverter_2_t794BDD9B9C3A12BF490C7710C609706E72EDABCD*)Castclass((RuntimeObject*)L_35, il2cpp_rgctx_data(method->rgctx_data, 3))), L_36, il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
*(uint64_t*)L_34 = L_37;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_00cf:
|
|
{
|
|
uint64_t* L_38 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_38, sizeof(uint64_t));
|
|
V_6 = (bool)0;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
double* L_39 = ___0_source;
|
|
double L_40 = (*(double*)L_39);
|
|
V_11 = L_40;
|
|
double L_41 = V_11;
|
|
double L_42 = L_41;
|
|
RuntimeObject* L_43 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), &L_42);
|
|
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_43, il2cpp_rgctx_data(method->rgctx_data, 6))))
|
|
{
|
|
goto IL_0109;
|
|
}
|
|
}
|
|
{
|
|
double L_44 = V_11;
|
|
double L_45 = L_44;
|
|
RuntimeObject* L_46 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), &L_45);
|
|
V_3 = ((*(uint64_t*)UnBox(((RuntimeObject*)IsInst((RuntimeObject*)L_46, il2cpp_rgctx_data(method->rgctx_data, 6))), il2cpp_rgctx_data(method->rgctx_data, 6))));
|
|
G_B14_0 = 1;
|
|
goto IL_010a;
|
|
}
|
|
|
|
IL_0109:
|
|
{
|
|
G_B14_0 = 0;
|
|
}
|
|
|
|
IL_010a:
|
|
{
|
|
V_10 = (bool)G_B14_0;
|
|
bool L_47 = V_10;
|
|
if (!L_47)
|
|
{
|
|
goto IL_0120;
|
|
}
|
|
}
|
|
{
|
|
uint64_t* L_48 = ___1_destination;
|
|
uint64_t L_49 = V_3;
|
|
*(uint64_t*)L_48 = L_49;
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0120:
|
|
{
|
|
Type_t* L_50 = V_1;
|
|
Type_t* L_51 = V_0;
|
|
NullCheck(L_50);
|
|
bool L_52;
|
|
L_52 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(21, L_50, L_51);
|
|
if (!L_52)
|
|
{
|
|
goto IL_0139;
|
|
}
|
|
}
|
|
{
|
|
double* L_53 = ___0_source;
|
|
double L_54 = (*(double*)L_53);
|
|
G_B19_0 = ((int32_t)(false));
|
|
goto IL_013a;
|
|
}
|
|
|
|
IL_0139:
|
|
{
|
|
G_B19_0 = 0;
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
V_12 = (bool)G_B19_0;
|
|
bool L_55 = V_12;
|
|
if (!L_55)
|
|
{
|
|
goto IL_0150;
|
|
}
|
|
}
|
|
{
|
|
uint64_t* L_56 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_56, sizeof(uint64_t));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0150:
|
|
{
|
|
Type_t* L_57 = V_1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_58 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_59;
|
|
L_59 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_58, NULL);
|
|
bool L_60;
|
|
L_60 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_57, L_59, NULL);
|
|
V_13 = L_60;
|
|
bool L_61 = V_13;
|
|
if (!L_61)
|
|
{
|
|
goto IL_01ad;
|
|
}
|
|
}
|
|
{
|
|
uint64_t* L_62 = ___1_destination;
|
|
double* L_63 = ___0_source;
|
|
il2cpp_codegen_initobj((&V_11), sizeof(double));
|
|
G_B25_0 = L_63;
|
|
G_B25_1 = L_62;
|
|
goto IL_0190;
|
|
}
|
|
|
|
IL_0190:
|
|
{
|
|
String_t* L_65;
|
|
L_65 = Double_ToString_m7499A5D792419537DCB9470A3675CEF5117DE339(G_B25_0, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
G_B26_0 = L_65;
|
|
G_B26_1 = G_B25_1;
|
|
}
|
|
|
|
IL_019b:
|
|
{
|
|
*(uint64_t*)G_B26_1 = ((*(uint64_t*)UnBox((RuntimeObject*)G_B26_0, il2cpp_rgctx_data(method->rgctx_data, 6))));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_01ad:
|
|
{
|
|
Type_t* L_66 = V_1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_67 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.object_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_68;
|
|
L_68 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_67, NULL);
|
|
bool L_69;
|
|
L_69 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_66, L_68, NULL);
|
|
V_14 = L_69;
|
|
bool L_70 = V_14;
|
|
if (!L_70)
|
|
{
|
|
goto IL_01df;
|
|
}
|
|
}
|
|
{
|
|
uint64_t* L_71 = ___1_destination;
|
|
double* L_72 = ___0_source;
|
|
double L_73 = (*(double*)L_72);
|
|
double L_74 = L_73;
|
|
RuntimeObject* L_75 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), &L_74);
|
|
*(uint64_t*)L_71 = ((*(uint64_t*)UnBox(L_75, il2cpp_rgctx_data(method->rgctx_data, 6))));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_01df:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 11));
|
|
bool L_76;
|
|
L_76 = TypeTraits_1_get_IsValueType_mA4EC7C62F3D525F3046A4FECDE46919367925E98_inline(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
if (L_76)
|
|
{
|
|
goto IL_020e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_020e;
|
|
}
|
|
|
|
IL_020e:
|
|
{
|
|
G_B33_0 = 0;
|
|
}
|
|
|
|
IL_020f:
|
|
{
|
|
V_15 = (bool)G_B33_0;
|
|
bool L_78 = V_15;
|
|
if (!L_78)
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
}
|
|
{
|
|
uint64_t* L_79 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_79, sizeof(uint64_t));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
uint64_t* L_80 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_80, sizeof(uint64_t));
|
|
V_6 = (bool)0;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_022e:
|
|
{
|
|
bool L_81 = V_6;
|
|
return L_81;
|
|
}
|
|
}
|
|
// Method Definition Index: 10329
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConverterGroups_TryConvert_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m29FA8B3E6CF2433C559347E366AE9A2607D8016D_gshared (Il2CppFullySharedGenericAny* ___0_source, Il2CppFullySharedGenericAny* ___1_destination, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_TDestination_tCCC421DC6065C0312398615E606E0270C2D34DCF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
void* L_71 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 8)));
|
|
const Il2CppFullySharedGenericAny L_40 = alloca(SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
const Il2CppFullySharedGenericAny L_43 = L_40;
|
|
const Il2CppFullySharedGenericAny L_54 = L_40;
|
|
const Il2CppFullySharedGenericAny L_66 = L_40;
|
|
const Il2CppFullySharedGenericAny L_68 = L_40;
|
|
const Il2CppFullySharedGenericAny L_82 = L_40;
|
|
const Il2CppFullySharedGenericAny L_88 = L_40;
|
|
const Il2CppFullySharedGenericAny L_41 = alloca(SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
const Il2CppFullySharedGenericAny L_69 = L_41;
|
|
const Il2CppFullySharedGenericAny L_14 = alloca(SizeOf_TDestination_tCCC421DC6065C0312398615E606E0270C2D34DCF);
|
|
const Il2CppFullySharedGenericAny L_27 = L_14;
|
|
const Il2CppFullySharedGenericAny L_37 = L_14;
|
|
const Il2CppFullySharedGenericAny L_45 = L_14;
|
|
const Il2CppFullySharedGenericAny L_49 = L_14;
|
|
const Il2CppFullySharedGenericAny L_73 = L_14;
|
|
const Il2CppFullySharedGenericAny L_84 = L_14;
|
|
Type_t* V_0 = NULL;
|
|
Type_t* V_1 = NULL;
|
|
Delegate_t* V_2 = NULL;
|
|
Il2CppFullySharedGenericAny V_3 = alloca(SizeOf_TDestination_tCCC421DC6065C0312398615E606E0270C2D34DCF);
|
|
memset(V_3, 0, SizeOf_TDestination_tCCC421DC6065C0312398615E606E0270C2D34DCF);
|
|
bool V_4 = false;
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
Il2CppFullySharedGenericAny V_11 = alloca(SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
memset(V_11, 0, SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
bool V_15 = false;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B14_0 = 0;
|
|
int32_t G_B19_0 = 0;
|
|
Il2CppFullySharedGenericAny* G_B25_0 = NULL;
|
|
Il2CppFullySharedGenericAny* G_B25_1 = NULL;
|
|
Il2CppFullySharedGenericAny* G_B23_0 = NULL;
|
|
Il2CppFullySharedGenericAny* G_B23_1 = NULL;
|
|
Il2CppFullySharedGenericAny G_B24_0 = alloca(SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
memset(G_B24_0, 0, SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
Il2CppFullySharedGenericAny* G_B24_1 = NULL;
|
|
String_t* G_B26_0 = NULL;
|
|
Il2CppFullySharedGenericAny* G_B26_1 = NULL;
|
|
int32_t G_B33_0 = 0;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
V_0 = L_1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 1)) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
V_1 = L_3;
|
|
il2cpp_codegen_runtime_class_init_inline(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_4 = ((ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_StaticFields*)il2cpp_codegen_static_fields_for(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var))->___s_GlobalConverters;
|
|
NullCheck(L_4);
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D L_5;
|
|
L_5 = ConverterGroup_get_registry_m8995D579AD2B9B3F4C9668FDEAB0969422F5A754_inline(L_4, NULL);
|
|
V_5 = L_5;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_6 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
Type_t* L_7;
|
|
L_7 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_6, NULL);
|
|
Type_t* L_8 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var);
|
|
bool L_9;
|
|
L_9 = TypeConverterRegistry_TryGetConverter_mAAF94362D6662DC408E95C3ACADD5FF4310A80C6((&V_5), L_7, L_8, (&V_2), NULL);
|
|
V_4 = L_9;
|
|
bool L_10 = V_4;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericAny* L_11 = ___1_destination;
|
|
Delegate_t* L_12 = V_2;
|
|
Il2CppFullySharedGenericAny* L_13 = ___0_source;
|
|
NullCheck(((TypeConverter_2_tA6276E0BDB8DB9E3B10AF0C31301ACC071589845*)Castclass((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 3))));
|
|
InvokerActionInvoker2< Il2CppFullySharedGenericAny*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), ((TypeConverter_2_tA6276E0BDB8DB9E3B10AF0C31301ACC071589845*)Castclass((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 3))), L_13, (Il2CppFullySharedGenericAny*)L_14);
|
|
il2cpp_codegen_memcpy((Il2CppFullySharedGenericAny*)L_11, L_14, SizeOf_TDestination_tCCC421DC6065C0312398615E606E0270C2D34DCF);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->rgctx_data, 6), (void**)(Il2CppFullySharedGenericAny*)L_11, (void*)L_14);
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
Type_t* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
bool L_16;
|
|
L_16 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_15, NULL);
|
|
if (!L_16)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_17 = V_1;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_17, NULL);
|
|
G_B5_0 = ((int32_t)(L_18));
|
|
goto IL_0069;
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
V_7 = (bool)G_B5_0;
|
|
bool L_19 = V_7;
|
|
if (!L_19)
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_20 = V_0;
|
|
Type_t* L_21 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
bool L_22;
|
|
L_22 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_20, L_21, NULL);
|
|
V_8 = L_22;
|
|
bool L_23 = V_8;
|
|
if (!L_23)
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericAny* L_24 = ___1_destination;
|
|
Il2CppFullySharedGenericAny* L_25 = ___0_source;
|
|
Il2CppFullySharedGenericAny* L_26;
|
|
L_26 = (( Il2CppFullySharedGenericAny* (*) (Il2CppFullySharedGenericAny*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))(L_25, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
il2cpp_codegen_memcpy(L_27, L_26, SizeOf_TDestination_tCCC421DC6065C0312398615E606E0270C2D34DCF);
|
|
il2cpp_codegen_memcpy((Il2CppFullySharedGenericAny*)L_24, L_27, SizeOf_TDestination_tCCC421DC6065C0312398615E606E0270C2D34DCF);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->rgctx_data, 6), (void**)(Il2CppFullySharedGenericAny*)L_24, (void*)L_27);
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var);
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_28 = ((ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_StaticFields*)il2cpp_codegen_static_fields_for(ConverterGroups_tA746073C90C188444FFC6A55278138FEE2BBDF0E_il2cpp_TypeInfo_var))->___s_PrimitivesConverters;
|
|
NullCheck(L_28);
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D L_29;
|
|
L_29 = ConverterGroup_get_registry_m8995D579AD2B9B3F4C9668FDEAB0969422F5A754_inline(L_28, NULL);
|
|
V_5 = L_29;
|
|
Type_t* L_30 = V_0;
|
|
Type_t* L_31 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D_il2cpp_TypeInfo_var);
|
|
bool L_32;
|
|
L_32 = TypeConverterRegistry_TryGetConverter_mAAF94362D6662DC408E95C3ACADD5FF4310A80C6((&V_5), L_30, L_31, (&V_2), NULL);
|
|
V_9 = L_32;
|
|
bool L_33 = V_9;
|
|
if (!L_33)
|
|
{
|
|
goto IL_00cf;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericAny* L_34 = ___1_destination;
|
|
Delegate_t* L_35 = V_2;
|
|
Il2CppFullySharedGenericAny* L_36 = ___0_source;
|
|
NullCheck(((TypeConverter_2_tA6276E0BDB8DB9E3B10AF0C31301ACC071589845*)Castclass((RuntimeObject*)L_35, il2cpp_rgctx_data(method->rgctx_data, 3))));
|
|
InvokerActionInvoker2< Il2CppFullySharedGenericAny*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), ((TypeConverter_2_tA6276E0BDB8DB9E3B10AF0C31301ACC071589845*)Castclass((RuntimeObject*)L_35, il2cpp_rgctx_data(method->rgctx_data, 3))), L_36, (Il2CppFullySharedGenericAny*)L_37);
|
|
il2cpp_codegen_memcpy((Il2CppFullySharedGenericAny*)L_34, L_37, SizeOf_TDestination_tCCC421DC6065C0312398615E606E0270C2D34DCF);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->rgctx_data, 6), (void**)(Il2CppFullySharedGenericAny*)L_34, (void*)L_37);
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_00cf:
|
|
{
|
|
Il2CppFullySharedGenericAny* L_38 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_38, SizeOf_TDestination_tCCC421DC6065C0312398615E606E0270C2D34DCF);
|
|
V_6 = (bool)0;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
Il2CppFullySharedGenericAny* L_39 = ___0_source;
|
|
il2cpp_codegen_memcpy(L_40, L_39, SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
il2cpp_codegen_memcpy(V_11, L_40, SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
il2cpp_codegen_memcpy(L_41, V_11, SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
RuntimeObject* L_42 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), L_41);
|
|
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_42, il2cpp_rgctx_data(method->rgctx_data, 6))))
|
|
{
|
|
goto IL_0109;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_43, V_11, SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
RuntimeObject* L_44 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), L_43);
|
|
void* L_46 = UnBox_Any(((RuntimeObject*)IsInst((RuntimeObject*)L_44, il2cpp_rgctx_data(method->rgctx_data, 6))), il2cpp_rgctx_data(method->rgctx_data, 6), L_45);
|
|
il2cpp_codegen_memcpy(V_3, (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_46)), SizeOf_TDestination_tCCC421DC6065C0312398615E606E0270C2D34DCF);
|
|
G_B14_0 = 1;
|
|
goto IL_010a;
|
|
}
|
|
|
|
IL_0109:
|
|
{
|
|
G_B14_0 = 0;
|
|
}
|
|
|
|
IL_010a:
|
|
{
|
|
V_10 = (bool)G_B14_0;
|
|
bool L_47 = V_10;
|
|
if (!L_47)
|
|
{
|
|
goto IL_0120;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericAny* L_48 = ___1_destination;
|
|
il2cpp_codegen_memcpy(L_49, V_3, SizeOf_TDestination_tCCC421DC6065C0312398615E606E0270C2D34DCF);
|
|
il2cpp_codegen_memcpy((Il2CppFullySharedGenericAny*)L_48, L_49, SizeOf_TDestination_tCCC421DC6065C0312398615E606E0270C2D34DCF);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->rgctx_data, 6), (void**)(Il2CppFullySharedGenericAny*)L_48, (void*)L_49);
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0120:
|
|
{
|
|
Type_t* L_50 = V_1;
|
|
Type_t* L_51 = V_0;
|
|
NullCheck(L_50);
|
|
bool L_52;
|
|
L_52 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(21, L_50, L_51);
|
|
if (!L_52)
|
|
{
|
|
goto IL_0139;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericAny* L_53 = ___0_source;
|
|
il2cpp_codegen_memcpy(L_54, L_53, SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
bool L_55 = !il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), L_54);
|
|
bool L_56 = L_55;
|
|
G_B19_0 = ((int32_t)(L_56));
|
|
goto IL_013a;
|
|
}
|
|
|
|
IL_0139:
|
|
{
|
|
G_B19_0 = 0;
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
V_12 = (bool)G_B19_0;
|
|
bool L_57 = V_12;
|
|
if (!L_57)
|
|
{
|
|
goto IL_0150;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericAny* L_58 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_58, SizeOf_TDestination_tCCC421DC6065C0312398615E606E0270C2D34DCF);
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0150:
|
|
{
|
|
Type_t* L_59 = V_1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_60 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_61;
|
|
L_61 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_60, NULL);
|
|
bool L_62;
|
|
L_62 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_59, L_61, NULL);
|
|
V_13 = L_62;
|
|
bool L_63 = V_13;
|
|
if (!L_63)
|
|
{
|
|
goto IL_01ad;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericAny* L_64 = ___1_destination;
|
|
Il2CppFullySharedGenericAny* L_65 = ___0_source;
|
|
il2cpp_codegen_initobj((Il2CppFullySharedGenericAny*)V_11, SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
il2cpp_codegen_memcpy(L_66, V_11, SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
bool L_67 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), L_66);
|
|
if (L_67)
|
|
{
|
|
G_B25_0 = ((Il2CppFullySharedGenericAny*)L_65);
|
|
G_B25_1 = ((Il2CppFullySharedGenericAny*)L_64);
|
|
goto IL_0190;
|
|
}
|
|
G_B23_0 = ((Il2CppFullySharedGenericAny*)L_65);
|
|
G_B23_1 = ((Il2CppFullySharedGenericAny*)L_64);
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_68, G_B23_0, SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
il2cpp_codegen_memcpy(V_11, L_68, SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
il2cpp_codegen_memcpy(L_69, V_11, SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
bool L_70 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), L_69);
|
|
if (L_70)
|
|
{
|
|
G_B25_0 = ((Il2CppFullySharedGenericAny*)(Il2CppFullySharedGenericAny*)V_11);
|
|
G_B25_1 = ((Il2CppFullySharedGenericAny*)G_B23_1);
|
|
goto IL_0190;
|
|
}
|
|
il2cpp_codegen_memcpy(G_B24_0, (Il2CppFullySharedGenericAny*)V_11, SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
G_B24_1 = ((Il2CppFullySharedGenericAny*)G_B23_1);
|
|
}
|
|
{
|
|
G_B26_0 = ((String_t*)(NULL));
|
|
G_B26_1 = ((Il2CppFullySharedGenericAny*)G_B24_1);
|
|
goto IL_019b;
|
|
}
|
|
|
|
IL_0190:
|
|
{
|
|
String_t* L_72;
|
|
L_72 = ConstrainedFuncInvoker0< String_t* >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 8), il2cpp_rgctx_method(method->rgctx_data, 9), L_71, (void*)G_B25_0);
|
|
G_B26_0 = L_72;
|
|
G_B26_1 = ((Il2CppFullySharedGenericAny*)G_B25_1);
|
|
}
|
|
|
|
IL_019b:
|
|
{
|
|
void* L_74 = UnBox_Any((RuntimeObject*)G_B26_0, il2cpp_rgctx_data(method->rgctx_data, 6), L_73);
|
|
il2cpp_codegen_memcpy((Il2CppFullySharedGenericAny*)G_B26_1, (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_74)), SizeOf_TDestination_tCCC421DC6065C0312398615E606E0270C2D34DCF);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->rgctx_data, 6), (void**)(Il2CppFullySharedGenericAny*)G_B26_1, (void*)(((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_74)));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_01ad:
|
|
{
|
|
Type_t* L_75 = V_1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_76 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.object_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_77;
|
|
L_77 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_76, NULL);
|
|
bool L_78;
|
|
L_78 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_75, L_77, NULL);
|
|
V_14 = L_78;
|
|
bool L_79 = V_14;
|
|
if (!L_79)
|
|
{
|
|
goto IL_01df;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericAny* L_80 = ___1_destination;
|
|
Il2CppFullySharedGenericAny* L_81 = ___0_source;
|
|
il2cpp_codegen_memcpy(L_82, L_81, SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
RuntimeObject* L_83 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), L_82);
|
|
void* L_85 = UnBox_Any(L_83, il2cpp_rgctx_data(method->rgctx_data, 6), L_84);
|
|
il2cpp_codegen_memcpy((Il2CppFullySharedGenericAny*)L_80, (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_85)), SizeOf_TDestination_tCCC421DC6065C0312398615E606E0270C2D34DCF);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->rgctx_data, 6), (void**)(Il2CppFullySharedGenericAny*)L_80, (void*)(((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_85)));
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_01df:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 11));
|
|
bool L_86;
|
|
L_86 = (( bool (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)))(il2cpp_rgctx_method(method->rgctx_data, 10));
|
|
if (L_86)
|
|
{
|
|
goto IL_020e;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericAny* L_87 = ___0_source;
|
|
il2cpp_codegen_memcpy(L_88, L_87, SizeOf_TSource_t7A2CB2233C2ED9ECEAD9D6FB80BEDC12F242DF84);
|
|
bool L_89 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), L_88);
|
|
if (L_89)
|
|
{
|
|
goto IL_020e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_90 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_91;
|
|
L_91 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_90, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_92 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.object_class->byval_arg) };
|
|
Type_t* L_93;
|
|
L_93 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_92, NULL);
|
|
bool L_94;
|
|
L_94 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_91, L_93, NULL);
|
|
G_B33_0 = ((int32_t)(L_94));
|
|
goto IL_020f;
|
|
}
|
|
|
|
IL_020e:
|
|
{
|
|
G_B33_0 = 0;
|
|
}
|
|
|
|
IL_020f:
|
|
{
|
|
V_15 = (bool)G_B33_0;
|
|
bool L_95 = V_15;
|
|
if (!L_95)
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericAny* L_96 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_96, SizeOf_TDestination_tCCC421DC6065C0312398615E606E0270C2D34DCF);
|
|
V_6 = (bool)1;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
Il2CppFullySharedGenericAny* L_97 = ___1_destination;
|
|
il2cpp_codegen_initobj(L_97, SizeOf_TDestination_tCCC421DC6065C0312398615E606E0270C2D34DCF);
|
|
V_6 = (bool)0;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_022e:
|
|
{
|
|
bool L_98 = V_6;
|
|
return L_98;
|
|
}
|
|
}
|
|
// Method Definition Index: 28295
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUnsafeUtils_CombineHashes_TisHash128_t93367F504B687578F893CDBCD13FB95AC8A87A40_TisDefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A_mEA26DB028FEEB21C80F51B51CC2C4B2B2C178B47_gshared (int32_t ___0_count, void* ___1_hashes, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40* ___2_outHash, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
DefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:646>
|
|
DefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A L_0;
|
|
L_0 = Activator_CreateInstance_TisDefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A_m67168082B56486E52ACE1428D1D092E51E978A2B(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:647>
|
|
V_1 = 0;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:649>
|
|
void* L_1 = ___1_hashes;
|
|
int32_t L_2 = V_1;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_3;
|
|
L_3 = UnsafeUtility_ReadArrayElement_TisHash128_t93367F504B687578F893CDBCD13FB95AC8A87A40_m58AF406949C6230522BA3871914D69034FED4CFD_inline(L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:650>
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_4;
|
|
L_4 = DefaultKeyGetter_1_Get_m6699590F94D8E768EE4CF487A7447AE87FDC2B9B((&V_0), (&V_2), il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
V_3 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:651>
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40* L_5 = ___2_outHash;
|
|
HashUtilities_AppendHash_m08A1CDC54D065F3F4FB2D9D158659FBB79A8D30F((&V_3), (Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40*)L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:647>
|
|
int32_t L_6 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:647>
|
|
int32_t L_7 = V_1;
|
|
int32_t L_8 = ___0_count;
|
|
if ((((int32_t)L_7) < ((int32_t)L_8)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:653>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 28295
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUnsafeUtils_CombineHashes_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_mBA9C172B12E2DFF1530771E8B66FE104C68AE743_gshared (int32_t ___0_count, void* ___1_hashes, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40* ___2_outHash, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_TGetter_t2F6B2C6736C8C1E724BB5A23D8D8EE648A2A25ED = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_TValue_tBF6EBF18ADAAF75B7984E779FA553B3CDDFEC618 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
void* L_4 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
const Il2CppFullySharedGenericStruct L_3 = alloca(SizeOf_TValue_tBF6EBF18ADAAF75B7984E779FA553B3CDDFEC618);
|
|
const Il2CppFullySharedGenericStruct L_0 = alloca(SizeOf_TGetter_t2F6B2C6736C8C1E724BB5A23D8D8EE648A2A25ED);
|
|
Il2CppFullySharedGenericStruct V_0 = alloca(SizeOf_TGetter_t2F6B2C6736C8C1E724BB5A23D8D8EE648A2A25ED);
|
|
memset(V_0, 0, SizeOf_TGetter_t2F6B2C6736C8C1E724BB5A23D8D8EE648A2A25ED);
|
|
int32_t V_1 = 0;
|
|
Il2CppFullySharedGenericStruct V_2 = alloca(SizeOf_TValue_tBF6EBF18ADAAF75B7984E779FA553B3CDDFEC618);
|
|
memset(V_2, 0, SizeOf_TValue_tBF6EBF18ADAAF75B7984E779FA553B3CDDFEC618);
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:646>
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)), il2cpp_rgctx_method(method->rgctx_data, 0), NULL, (Il2CppFullySharedGenericStruct*)L_0);
|
|
il2cpp_codegen_memcpy(V_0, L_0, SizeOf_TGetter_t2F6B2C6736C8C1E724BB5A23D8D8EE648A2A25ED);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:647>
|
|
V_1 = 0;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:649>
|
|
void* L_1 = ___1_hashes;
|
|
int32_t L_2 = V_1;
|
|
InvokerActionInvoker3< void*, int32_t, Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)), il2cpp_rgctx_method(method->rgctx_data, 2), NULL, L_1, L_2, (Il2CppFullySharedGenericStruct*)L_3);
|
|
il2cpp_codegen_memcpy(V_2, L_3, SizeOf_TValue_tBF6EBF18ADAAF75B7984E779FA553B3CDDFEC618);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:650>
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_5;
|
|
L_5 = ConstrainedFuncInvoker1< Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40, Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 1), il2cpp_rgctx_method(method->rgctx_data, 5), L_4, (void*)(Il2CppFullySharedGenericStruct*)V_0, (Il2CppFullySharedGenericStruct*)V_2);
|
|
V_3 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:651>
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40* L_6 = ___2_outHash;
|
|
HashUtilities_AppendHash_m08A1CDC54D065F3F4FB2D9D158659FBB79A8D30F((&V_3), (Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40*)L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:647>
|
|
int32_t L_7 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:647>
|
|
int32_t L_8 = V_1;
|
|
int32_t L_9 = ___0_count;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:653>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 28293
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CoreUnsafeUtils_CompareHashes_TisHash128_t93367F504B687578F893CDBCD13FB95AC8A87A40_TisDefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A_TisHash128_t93367F504B687578F893CDBCD13FB95AC8A87A40_TisDefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A_m3D77112BD8ED1C983D735D41CC0DBA924426E637_gshared (int32_t ___0_oldHashCount, void* ___1_oldHashes, int32_t ___2_newHashCount, void* ___3_newHashes, int32_t* ___4_addIndices, int32_t* ___5_removeIndices, int32_t* ___6_addCount, int32_t* ___7_remCount, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
DefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
DefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_8;
|
|
memset((&V_8), 0, sizeof(V_8));
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
int32_t V_11 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:520>
|
|
DefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A L_0;
|
|
L_0 = Activator_CreateInstance_TisDefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A_m67168082B56486E52ACE1428D1D092E51E978A2B(il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:521>
|
|
DefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A L_1;
|
|
L_1 = Activator_CreateInstance_TisDefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A_m67168082B56486E52ACE1428D1D092E51E978A2B(il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_1 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:523>
|
|
int32_t* L_2 = ___6_addCount;
|
|
*((int32_t*)L_2) = (int32_t)0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:524>
|
|
int32_t* L_3 = ___7_remCount;
|
|
*((int32_t*)L_3) = (int32_t)0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:526>
|
|
int32_t L_4 = ___0_oldHashCount;
|
|
int32_t L_5 = ___2_newHashCount;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)L_5))))
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:528>
|
|
il2cpp_codegen_initobj((&V_5), sizeof(Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:529>
|
|
il2cpp_codegen_initobj((&V_6), sizeof(Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:530>
|
|
int32_t L_6 = ___0_oldHashCount;
|
|
void* L_7 = ___1_oldHashes;
|
|
CoreUnsafeUtils_CombineHashes_TisHash128_t93367F504B687578F893CDBCD13FB95AC8A87A40_TisDefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A_mEA26DB028FEEB21C80F51B51CC2C4B2B2C178B47(L_6, L_7, (Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40*)((uintptr_t)(&V_5)), il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:531>
|
|
int32_t L_8 = ___2_newHashCount;
|
|
void* L_9 = ___3_newHashes;
|
|
CoreUnsafeUtils_CombineHashes_TisHash128_t93367F504B687578F893CDBCD13FB95AC8A87A40_TisDefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A_mEA26DB028FEEB21C80F51B51CC2C4B2B2C178B47(L_8, L_9, (Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40*)((uintptr_t)(&V_6)), il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:532>
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_10 = V_5;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_11 = V_6;
|
|
bool L_12;
|
|
L_12 = Hash128_op_Equality_m870F4E857699627E5235BBD0698022E023C8C8F5(L_10, L_11, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:533>
|
|
return 0;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:536>
|
|
V_2 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:538>
|
|
V_3 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:539>
|
|
V_4 = 0;
|
|
goto IL_018b;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:544>
|
|
int32_t L_13 = V_3;
|
|
int32_t L_14 = ___0_oldHashCount;
|
|
if ((!(((uint32_t)L_13) == ((uint32_t)L_14))))
|
|
{
|
|
goto IL_0086;
|
|
}
|
|
}
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:549>
|
|
int32_t* L_15 = ___4_addIndices;
|
|
int32_t* L_16 = ___6_addCount;
|
|
int32_t* L_17 = ___6_addCount;
|
|
int32_t L_18 = *((int32_t*)L_17);
|
|
V_11 = L_18;
|
|
int32_t L_19 = V_11;
|
|
*((int32_t*)L_16) = (int32_t)((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
int32_t L_20 = V_11;
|
|
int32_t L_21 = V_4;
|
|
*((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_15, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_20), 4))))) = (int32_t)L_21;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:550>
|
|
int32_t L_22 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:547>
|
|
int32_t L_23 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_23, 1));
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:547>
|
|
int32_t L_24 = V_4;
|
|
int32_t L_25 = ___2_newHashCount;
|
|
if ((((int32_t)L_24) < ((int32_t)L_25)))
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:552>
|
|
goto IL_018b;
|
|
}
|
|
|
|
IL_0086:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:556>
|
|
int32_t L_26 = V_4;
|
|
int32_t L_27 = ___2_newHashCount;
|
|
if ((!(((uint32_t)L_26) == ((uint32_t)L_27))))
|
|
{
|
|
goto IL_00b4;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:561>
|
|
int32_t* L_28 = ___5_removeIndices;
|
|
int32_t* L_29 = ___7_remCount;
|
|
int32_t* L_30 = ___7_remCount;
|
|
int32_t L_31 = *((int32_t*)L_30);
|
|
V_11 = L_31;
|
|
int32_t L_32 = V_11;
|
|
*((int32_t*)L_29) = (int32_t)((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
int32_t L_33 = V_11;
|
|
int32_t L_34 = V_3;
|
|
*((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_28, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_33), 4))))) = (int32_t)L_34;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:562>
|
|
int32_t L_35 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_35, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:559>
|
|
int32_t L_36 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_36, 1));
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:559>
|
|
int32_t L_37 = V_3;
|
|
int32_t L_38 = ___0_oldHashCount;
|
|
if ((((int32_t)L_37) < ((int32_t)L_38)))
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:564>
|
|
goto IL_018b;
|
|
}
|
|
|
|
IL_00b4:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:568>
|
|
void* L_39 = ___3_newHashes;
|
|
int32_t L_40 = V_4;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_41;
|
|
L_41 = UnsafeUtility_ReadArrayElement_TisHash128_t93367F504B687578F893CDBCD13FB95AC8A87A40_m58AF406949C6230522BA3871914D69034FED4CFD_inline(L_39, L_40, il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
V_7 = L_41;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:569>
|
|
void* L_42 = ___1_oldHashes;
|
|
int32_t L_43 = V_3;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_44;
|
|
L_44 = UnsafeUtility_ReadArrayElement_TisHash128_t93367F504B687578F893CDBCD13FB95AC8A87A40_m58AF406949C6230522BA3871914D69034FED4CFD_inline(L_42, L_43, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
V_8 = L_44;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:570>
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_45;
|
|
L_45 = DefaultKeyGetter_1_Get_m6699590F94D8E768EE4CF487A7447AE87FDC2B9B((&V_1), (&V_7), il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
V_9 = L_45;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:571>
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_46;
|
|
L_46 = DefaultKeyGetter_1_Get_m6699590F94D8E768EE4CF487A7447AE87FDC2B9B((&V_0), (&V_8), il2cpp_rgctx_method(method->rgctx_data, 14));
|
|
V_10 = L_46;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:572>
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_47 = V_9;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_48 = V_10;
|
|
bool L_49;
|
|
L_49 = Hash128_op_Equality_m870F4E857699627E5235BBD0698022E023C8C8F5(L_47, L_48, NULL);
|
|
if (!L_49)
|
|
{
|
|
goto IL_0103;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:575>
|
|
int32_t L_50 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_50, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:576>
|
|
int32_t L_51 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_51, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:577>
|
|
goto IL_018b;
|
|
}
|
|
|
|
IL_0103:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:581>
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_52 = V_9;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_53 = V_10;
|
|
bool L_54;
|
|
L_54 = Hash128_op_LessThan_mD2B90720E6C871528BB20F19FED34883A5BC8A43(L_52, L_53, NULL);
|
|
if (!L_54)
|
|
{
|
|
goto IL_017c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_014c;
|
|
}
|
|
|
|
IL_0110:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:586>
|
|
int32_t* L_55 = ___4_addIndices;
|
|
int32_t* L_56 = ___6_addCount;
|
|
int32_t* L_57 = ___6_addCount;
|
|
int32_t L_58 = *((int32_t*)L_57);
|
|
V_11 = L_58;
|
|
int32_t L_59 = V_11;
|
|
*((int32_t*)L_56) = (int32_t)((int32_t)il2cpp_codegen_add(L_59, 1));
|
|
int32_t L_60 = V_11;
|
|
int32_t L_61 = V_4;
|
|
*((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_55, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_60), 4))))) = (int32_t)L_61;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:587>
|
|
int32_t L_62 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_62, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:588>
|
|
int32_t L_63 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_63, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:589>
|
|
void* L_64 = ___3_newHashes;
|
|
int32_t L_65 = V_4;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_66;
|
|
L_66 = UnsafeUtility_ReadArrayElement_TisHash128_t93367F504B687578F893CDBCD13FB95AC8A87A40_m58AF406949C6230522BA3871914D69034FED4CFD_inline(L_64, L_65, il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
V_7 = L_66;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:590>
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_67;
|
|
L_67 = DefaultKeyGetter_1_Get_m6699590F94D8E768EE4CF487A7447AE87FDC2B9B((&V_1), (&V_7), il2cpp_rgctx_method(method->rgctx_data, 11));
|
|
V_9 = L_67;
|
|
}
|
|
|
|
IL_014c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:584>
|
|
int32_t L_68 = V_4;
|
|
int32_t L_69 = ___2_newHashCount;
|
|
if ((((int32_t)L_68) >= ((int32_t)L_69)))
|
|
{
|
|
goto IL_018b;
|
|
}
|
|
}
|
|
{
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_70 = V_9;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_71 = V_10;
|
|
bool L_72;
|
|
L_72 = Hash128_op_LessThan_mD2B90720E6C871528BB20F19FED34883A5BC8A43(L_70, L_71, NULL);
|
|
if (L_72)
|
|
{
|
|
goto IL_0110;
|
|
}
|
|
}
|
|
{
|
|
goto IL_018b;
|
|
}
|
|
|
|
IL_015e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:598>
|
|
int32_t* L_73 = ___5_removeIndices;
|
|
int32_t* L_74 = ___7_remCount;
|
|
int32_t* L_75 = ___7_remCount;
|
|
int32_t L_76 = *((int32_t*)L_75);
|
|
V_11 = L_76;
|
|
int32_t L_77 = V_11;
|
|
*((int32_t*)L_74) = (int32_t)((int32_t)il2cpp_codegen_add(L_77, 1));
|
|
int32_t L_78 = V_11;
|
|
int32_t L_79 = V_3;
|
|
*((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_73, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_78), 4))))) = (int32_t)L_79;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:599>
|
|
int32_t L_80 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_80, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:600>
|
|
int32_t L_81 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_81, 1));
|
|
}
|
|
|
|
IL_017c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:596>
|
|
int32_t L_82 = V_3;
|
|
int32_t L_83 = ___0_oldHashCount;
|
|
if ((((int32_t)L_82) >= ((int32_t)L_83)))
|
|
{
|
|
goto IL_018b;
|
|
}
|
|
}
|
|
{
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_84 = V_10;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_85 = V_9;
|
|
bool L_86;
|
|
L_86 = Hash128_op_LessThan_mD2B90720E6C871528BB20F19FED34883A5BC8A43(L_84, L_85, NULL);
|
|
if (L_86)
|
|
{
|
|
goto IL_015e;
|
|
}
|
|
}
|
|
|
|
IL_018b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:541>
|
|
int32_t L_87 = V_3;
|
|
int32_t L_88 = ___0_oldHashCount;
|
|
if ((((int32_t)L_87) < ((int32_t)L_88)))
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_89 = V_4;
|
|
int32_t L_90 = ___2_newHashCount;
|
|
if ((((int32_t)L_89) < ((int32_t)L_90)))
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:605>
|
|
int32_t L_91 = V_2;
|
|
return L_91;
|
|
}
|
|
}
|
|
// Method Definition Index: 28293
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CoreUnsafeUtils_CompareHashes_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m3DC863ADBD958495AAF4A18AE7DEE49892FE1FCD_gshared (int32_t ___0_oldHashCount, void* ___1_oldHashes, int32_t ___2_newHashCount, void* ___3_newHashes, int32_t* ___4_addIndices, int32_t* ___5_removeIndices, int32_t* ___6_addCount, int32_t* ___7_remCount, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_TOldGetter_t59D8202191F88C9C7A1115343F048341351CE363 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_TNewGetter_tB595FE1E4F7D14410B049BB9178C276C10A322B6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_TNewValue_t3C04DEEA4146F99AD6B4B12A51371EFC33352727 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_TOldValue_tF1035D23A6C7E7D5AAFEFE1A145BC3312C2FDB65 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
void* L_45 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 3)));
|
|
void* L_47 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
void* L_69 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 3)));
|
|
const Il2CppFullySharedGenericStruct L_44 = alloca(SizeOf_TOldValue_tF1035D23A6C7E7D5AAFEFE1A145BC3312C2FDB65);
|
|
const Il2CppFullySharedGenericStruct L_0 = alloca(SizeOf_TOldGetter_t59D8202191F88C9C7A1115343F048341351CE363);
|
|
const Il2CppFullySharedGenericStruct L_41 = alloca(SizeOf_TNewValue_t3C04DEEA4146F99AD6B4B12A51371EFC33352727);
|
|
const Il2CppFullySharedGenericStruct L_68 = L_41;
|
|
const Il2CppFullySharedGenericStruct L_1 = alloca(SizeOf_TNewGetter_tB595FE1E4F7D14410B049BB9178C276C10A322B6);
|
|
Il2CppFullySharedGenericStruct V_0 = alloca(SizeOf_TOldGetter_t59D8202191F88C9C7A1115343F048341351CE363);
|
|
memset(V_0, 0, SizeOf_TOldGetter_t59D8202191F88C9C7A1115343F048341351CE363);
|
|
Il2CppFullySharedGenericStruct V_1 = alloca(SizeOf_TNewGetter_tB595FE1E4F7D14410B049BB9178C276C10A322B6);
|
|
memset(V_1, 0, SizeOf_TNewGetter_tB595FE1E4F7D14410B049BB9178C276C10A322B6);
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
Il2CppFullySharedGenericStruct V_7 = alloca(SizeOf_TNewValue_t3C04DEEA4146F99AD6B4B12A51371EFC33352727);
|
|
memset(V_7, 0, SizeOf_TNewValue_t3C04DEEA4146F99AD6B4B12A51371EFC33352727);
|
|
Il2CppFullySharedGenericStruct V_8 = alloca(SizeOf_TOldValue_tF1035D23A6C7E7D5AAFEFE1A145BC3312C2FDB65);
|
|
memset(V_8, 0, SizeOf_TOldValue_tF1035D23A6C7E7D5AAFEFE1A145BC3312C2FDB65);
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
int32_t V_11 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:520>
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)), il2cpp_rgctx_method(method->rgctx_data, 0), NULL, (Il2CppFullySharedGenericStruct*)L_0);
|
|
il2cpp_codegen_memcpy(V_0, L_0, SizeOf_TOldGetter_t59D8202191F88C9C7A1115343F048341351CE363);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:521>
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)), il2cpp_rgctx_method(method->rgctx_data, 2), NULL, (Il2CppFullySharedGenericStruct*)L_1);
|
|
il2cpp_codegen_memcpy(V_1, L_1, SizeOf_TNewGetter_tB595FE1E4F7D14410B049BB9178C276C10A322B6);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:523>
|
|
int32_t* L_2 = ___6_addCount;
|
|
*((int32_t*)L_2) = (int32_t)0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:524>
|
|
int32_t* L_3 = ___7_remCount;
|
|
*((int32_t*)L_3) = (int32_t)0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:526>
|
|
int32_t L_4 = ___0_oldHashCount;
|
|
int32_t L_5 = ___2_newHashCount;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)L_5))))
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:528>
|
|
il2cpp_codegen_initobj((&V_5), sizeof(Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:529>
|
|
il2cpp_codegen_initobj((&V_6), sizeof(Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:530>
|
|
int32_t L_6 = ___0_oldHashCount;
|
|
void* L_7 = ___1_oldHashes;
|
|
(( void (*) (int32_t, void*, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(L_6, L_7, (Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40*)((uintptr_t)(&V_5)), il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:531>
|
|
int32_t L_8 = ___2_newHashCount;
|
|
void* L_9 = ___3_newHashes;
|
|
(( void (*) (int32_t, void*, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)))(L_8, L_9, (Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40*)((uintptr_t)(&V_6)), il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:532>
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_10 = V_5;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_11 = V_6;
|
|
bool L_12;
|
|
L_12 = Hash128_op_Equality_m870F4E857699627E5235BBD0698022E023C8C8F5(L_10, L_11, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:533>
|
|
return 0;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:536>
|
|
V_2 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:538>
|
|
V_3 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:539>
|
|
V_4 = 0;
|
|
goto IL_018b;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:544>
|
|
int32_t L_13 = V_3;
|
|
int32_t L_14 = ___0_oldHashCount;
|
|
if ((!(((uint32_t)L_13) == ((uint32_t)L_14))))
|
|
{
|
|
goto IL_0086;
|
|
}
|
|
}
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:549>
|
|
int32_t* L_15 = ___4_addIndices;
|
|
int32_t* L_16 = ___6_addCount;
|
|
int32_t* L_17 = ___6_addCount;
|
|
int32_t L_18 = *((int32_t*)L_17);
|
|
V_11 = L_18;
|
|
int32_t L_19 = V_11;
|
|
*((int32_t*)L_16) = (int32_t)((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
int32_t L_20 = V_11;
|
|
int32_t L_21 = V_4;
|
|
*((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_15, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_20), 4))))) = (int32_t)L_21;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:550>
|
|
int32_t L_22 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:547>
|
|
int32_t L_23 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_23, 1));
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:547>
|
|
int32_t L_24 = V_4;
|
|
int32_t L_25 = ___2_newHashCount;
|
|
if ((((int32_t)L_24) < ((int32_t)L_25)))
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:552>
|
|
goto IL_018b;
|
|
}
|
|
|
|
IL_0086:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:556>
|
|
int32_t L_26 = V_4;
|
|
int32_t L_27 = ___2_newHashCount;
|
|
if ((!(((uint32_t)L_26) == ((uint32_t)L_27))))
|
|
{
|
|
goto IL_00b4;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:561>
|
|
int32_t* L_28 = ___5_removeIndices;
|
|
int32_t* L_29 = ___7_remCount;
|
|
int32_t* L_30 = ___7_remCount;
|
|
int32_t L_31 = *((int32_t*)L_30);
|
|
V_11 = L_31;
|
|
int32_t L_32 = V_11;
|
|
*((int32_t*)L_29) = (int32_t)((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
int32_t L_33 = V_11;
|
|
int32_t L_34 = V_3;
|
|
*((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_28, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_33), 4))))) = (int32_t)L_34;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:562>
|
|
int32_t L_35 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_35, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:559>
|
|
int32_t L_36 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_36, 1));
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:559>
|
|
int32_t L_37 = V_3;
|
|
int32_t L_38 = ___0_oldHashCount;
|
|
if ((((int32_t)L_37) < ((int32_t)L_38)))
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:564>
|
|
goto IL_018b;
|
|
}
|
|
|
|
IL_00b4:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:568>
|
|
void* L_39 = ___3_newHashes;
|
|
int32_t L_40 = V_4;
|
|
InvokerActionInvoker3< void*, int32_t, Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)), il2cpp_rgctx_method(method->rgctx_data, 6), NULL, L_39, L_40, (Il2CppFullySharedGenericStruct*)L_41);
|
|
il2cpp_codegen_memcpy(V_7, L_41, SizeOf_TNewValue_t3C04DEEA4146F99AD6B4B12A51371EFC33352727);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:569>
|
|
void* L_42 = ___1_oldHashes;
|
|
int32_t L_43 = V_3;
|
|
InvokerActionInvoker3< void*, int32_t, Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)), il2cpp_rgctx_method(method->rgctx_data, 8), NULL, L_42, L_43, (Il2CppFullySharedGenericStruct*)L_44);
|
|
il2cpp_codegen_memcpy(V_8, L_44, SizeOf_TOldValue_tF1035D23A6C7E7D5AAFEFE1A145BC3312C2FDB65);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:570>
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_46;
|
|
L_46 = ConstrainedFuncInvoker1< Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40, Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 3), il2cpp_rgctx_method(method->rgctx_data, 11), L_45, (void*)(Il2CppFullySharedGenericStruct*)V_1, (Il2CppFullySharedGenericStruct*)V_7);
|
|
V_9 = L_46;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:571>
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_48;
|
|
L_48 = ConstrainedFuncInvoker1< Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40, Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 1), il2cpp_rgctx_method(method->rgctx_data, 14), L_47, (void*)(Il2CppFullySharedGenericStruct*)V_0, (Il2CppFullySharedGenericStruct*)V_8);
|
|
V_10 = L_48;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:572>
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_49 = V_9;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_50 = V_10;
|
|
bool L_51;
|
|
L_51 = Hash128_op_Equality_m870F4E857699627E5235BBD0698022E023C8C8F5(L_49, L_50, NULL);
|
|
if (!L_51)
|
|
{
|
|
goto IL_0103;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:575>
|
|
int32_t L_52 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_52, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:576>
|
|
int32_t L_53 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_53, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:577>
|
|
goto IL_018b;
|
|
}
|
|
|
|
IL_0103:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:581>
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_54 = V_9;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_55 = V_10;
|
|
bool L_56;
|
|
L_56 = Hash128_op_LessThan_mD2B90720E6C871528BB20F19FED34883A5BC8A43(L_54, L_55, NULL);
|
|
if (!L_56)
|
|
{
|
|
goto IL_017c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_014c;
|
|
}
|
|
|
|
IL_0110:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:586>
|
|
int32_t* L_57 = ___4_addIndices;
|
|
int32_t* L_58 = ___6_addCount;
|
|
int32_t* L_59 = ___6_addCount;
|
|
int32_t L_60 = *((int32_t*)L_59);
|
|
V_11 = L_60;
|
|
int32_t L_61 = V_11;
|
|
*((int32_t*)L_58) = (int32_t)((int32_t)il2cpp_codegen_add(L_61, 1));
|
|
int32_t L_62 = V_11;
|
|
int32_t L_63 = V_4;
|
|
*((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_57, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_62), 4))))) = (int32_t)L_63;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:587>
|
|
int32_t L_64 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_64, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:588>
|
|
int32_t L_65 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_65, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:589>
|
|
void* L_66 = ___3_newHashes;
|
|
int32_t L_67 = V_4;
|
|
InvokerActionInvoker3< void*, int32_t, Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)), il2cpp_rgctx_method(method->rgctx_data, 6), NULL, L_66, L_67, (Il2CppFullySharedGenericStruct*)L_68);
|
|
il2cpp_codegen_memcpy(V_7, L_68, SizeOf_TNewValue_t3C04DEEA4146F99AD6B4B12A51371EFC33352727);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:590>
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_70;
|
|
L_70 = ConstrainedFuncInvoker1< Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40, Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 3), il2cpp_rgctx_method(method->rgctx_data, 11), L_69, (void*)(Il2CppFullySharedGenericStruct*)V_1, (Il2CppFullySharedGenericStruct*)V_7);
|
|
V_9 = L_70;
|
|
}
|
|
|
|
IL_014c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:584>
|
|
int32_t L_71 = V_4;
|
|
int32_t L_72 = ___2_newHashCount;
|
|
if ((((int32_t)L_71) >= ((int32_t)L_72)))
|
|
{
|
|
goto IL_018b;
|
|
}
|
|
}
|
|
{
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_73 = V_9;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_74 = V_10;
|
|
bool L_75;
|
|
L_75 = Hash128_op_LessThan_mD2B90720E6C871528BB20F19FED34883A5BC8A43(L_73, L_74, NULL);
|
|
if (L_75)
|
|
{
|
|
goto IL_0110;
|
|
}
|
|
}
|
|
{
|
|
goto IL_018b;
|
|
}
|
|
|
|
IL_015e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:598>
|
|
int32_t* L_76 = ___5_removeIndices;
|
|
int32_t* L_77 = ___7_remCount;
|
|
int32_t* L_78 = ___7_remCount;
|
|
int32_t L_79 = *((int32_t*)L_78);
|
|
V_11 = L_79;
|
|
int32_t L_80 = V_11;
|
|
*((int32_t*)L_77) = (int32_t)((int32_t)il2cpp_codegen_add(L_80, 1));
|
|
int32_t L_81 = V_11;
|
|
int32_t L_82 = V_3;
|
|
*((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_76, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_81), 4))))) = (int32_t)L_82;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:599>
|
|
int32_t L_83 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_83, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:600>
|
|
int32_t L_84 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_84, 1));
|
|
}
|
|
|
|
IL_017c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:596>
|
|
int32_t L_85 = V_3;
|
|
int32_t L_86 = ___0_oldHashCount;
|
|
if ((((int32_t)L_85) >= ((int32_t)L_86)))
|
|
{
|
|
goto IL_018b;
|
|
}
|
|
}
|
|
{
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_87 = V_10;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_88 = V_9;
|
|
bool L_89;
|
|
L_89 = Hash128_op_LessThan_mD2B90720E6C871528BB20F19FED34883A5BC8A43(L_87, L_88, NULL);
|
|
if (L_89)
|
|
{
|
|
goto IL_015e;
|
|
}
|
|
}
|
|
|
|
IL_018b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:541>
|
|
int32_t L_90 = V_3;
|
|
int32_t L_91 = ___0_oldHashCount;
|
|
if ((((int32_t)L_90) < ((int32_t)L_91)))
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_92 = V_4;
|
|
int32_t L_93 = ___2_newHashCount;
|
|
if ((((int32_t)L_92) < ((int32_t)L_93)))
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:605>
|
|
int32_t L_94 = V_2;
|
|
return L_94;
|
|
}
|
|
}
|
|
// Method Definition Index: 28274
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUnsafeUtils_CopyTo_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m07A467AD9197D3E836F9C0C317863A414D6B748F_gshared (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_list, void* ___1_dest, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:157>
|
|
int32_t L_0 = ___2_count;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = ___0_list;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_inline(L_0, ((int32_t)(((RuntimeArray*)L_1)->max_length)), NULL);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:158>
|
|
V_1 = 0;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:159>
|
|
void* L_3 = ___1_dest;
|
|
int32_t L_4 = V_1;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = ___0_list;
|
|
int32_t L_6 = V_1;
|
|
NullCheck(L_5);
|
|
int32_t L_7 = L_6;
|
|
int32_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
|
|
UnsafeUtility_WriteArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m0DD1CC90B2F1EF5041F2F4E1DABB58224229F0D7_inline(L_3, L_4, L_8, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:158>
|
|
int32_t L_9 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:158>
|
|
int32_t L_10 = V_1;
|
|
int32_t L_11 = V_0;
|
|
if ((((int32_t)L_10) < ((int32_t)L_11)))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:160>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 28273
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUnsafeUtils_CopyTo_TisIl2CppFullySharedGenericStruct_mD825B62A4B41012540CE12C82853349357A9C57F_gshared (List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4* ___0_list, void* ___1_dest, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T_tC7F891D07181E43EBFCC15F2ADCA3FC8C8D3B15B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const Il2CppFullySharedGenericStruct L_8 = alloca(SizeOf_T_tC7F891D07181E43EBFCC15F2ADCA3FC8C8D3B15B);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:142>
|
|
int32_t L_0 = ___2_count;
|
|
List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4* L_1 = ___0_list;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = (( int32_t (*) (List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_3;
|
|
L_3 = Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_inline(L_0, L_2, NULL);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:143>
|
|
V_1 = 0;
|
|
goto IL_0023;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:144>
|
|
void* L_4 = ___1_dest;
|
|
int32_t L_5 = V_1;
|
|
List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4* L_6 = ___0_list;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
InvokerActionInvoker2< int32_t, Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)), il2cpp_rgctx_method(method->rgctx_data, 2), L_6, L_7, (Il2CppFullySharedGenericStruct*)L_8);
|
|
InvokerActionInvoker3< void*, int32_t, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)), il2cpp_rgctx_method(method->rgctx_data, 4), NULL, L_4, L_5, L_8);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:143>
|
|
int32_t L_9 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:143>
|
|
int32_t L_10 = V_1;
|
|
int32_t L_11 = V_0;
|
|
if ((((int32_t)L_10) < ((int32_t)L_11)))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:145>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 28274
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUnsafeUtils_CopyTo_TisIl2CppFullySharedGenericStruct_mFF117A6E51F03DA723A9637FB3D1C8CC61E9E572_gshared (__Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1* ___0_list, void* ___1_dest, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T_t9B965BB119FB530D17494C779EC612358AE5142B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const Il2CppFullySharedGenericStruct L_8 = alloca(SizeOf_T_t9B965BB119FB530D17494C779EC612358AE5142B);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:157>
|
|
int32_t L_0 = ___2_count;
|
|
__Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1* L_1 = ___0_list;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_inline(L_0, ((int32_t)(((RuntimeArray*)L_1)->max_length)), NULL);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:158>
|
|
V_1 = 0;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:159>
|
|
void* L_3 = ___1_dest;
|
|
int32_t L_4 = V_1;
|
|
__Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1* L_5 = ___0_list;
|
|
int32_t L_6 = V_1;
|
|
NullCheck(L_5);
|
|
int32_t L_7 = L_6;
|
|
il2cpp_codegen_memcpy(L_8, (L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)), SizeOf_T_t9B965BB119FB530D17494C779EC612358AE5142B);
|
|
InvokerActionInvoker3< void*, int32_t, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)), il2cpp_rgctx_method(method->rgctx_data, 2), NULL, L_3, L_4, L_8);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:158>
|
|
int32_t L_9 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:158>
|
|
int32_t L_10 = V_1;
|
|
int32_t L_11 = V_0;
|
|
if ((((int32_t)L_10) < ((int32_t)L_11)))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:160>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 28292
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CoreUnsafeUtils_IndexOf_TisIl2CppFullySharedGenericStruct_m80E720A7E16683F200746B6C2B571D876926CCEB_gshared (void* ___0_data, int32_t ___1_count, Il2CppFullySharedGenericStruct ___2_v, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T_tAC74C26CBC33ABD3FC7A5F4FCF403B6A329A2699 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
void* L_4 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
const Il2CppFullySharedGenericStruct L_2 = alloca(SizeOf_T_tAC74C26CBC33ABD3FC7A5F4FCF403B6A329A2699);
|
|
const Il2CppFullySharedGenericStruct L_3 = alloca(SizeOf_T_tAC74C26CBC33ABD3FC7A5F4FCF403B6A329A2699);
|
|
int32_t V_0 = 0;
|
|
Il2CppFullySharedGenericStruct V_1 = alloca(SizeOf_T_tAC74C26CBC33ABD3FC7A5F4FCF403B6A329A2699);
|
|
memset(V_1, 0, SizeOf_T_tAC74C26CBC33ABD3FC7A5F4FCF403B6A329A2699);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:479>
|
|
V_0 = 0;
|
|
goto IL_0022;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:481>
|
|
void* L_0 = ___0_data;
|
|
int32_t L_1 = V_0;
|
|
InvokerActionInvoker3< void*, int32_t, Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)), il2cpp_rgctx_method(method->rgctx_data, 0), NULL, L_0, L_1, (Il2CppFullySharedGenericStruct*)L_2);
|
|
il2cpp_codegen_memcpy(V_1, L_2, SizeOf_T_tAC74C26CBC33ABD3FC7A5F4FCF403B6A329A2699);
|
|
il2cpp_codegen_memcpy(L_3, ___2_v, SizeOf_T_tAC74C26CBC33ABD3FC7A5F4FCF403B6A329A2699);
|
|
bool L_5;
|
|
L_5 = ConstrainedFuncInvoker1< bool, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 1), il2cpp_rgctx_method(method->rgctx_data, 3), L_4, (void*)(Il2CppFullySharedGenericStruct*)V_1, L_3);
|
|
if (!L_5)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:482>
|
|
int32_t L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:479>
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:479>
|
|
int32_t L_8 = V_0;
|
|
int32_t L_9 = ___1_count;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:484>
|
|
return (-1);
|
|
}
|
|
}
|
|
// Method Definition Index: 28297
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CoreUnsafeUtils_Partition_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisDefaultKeyGetter_1_tBB6F2B964D7D24105393917DE1AD62F2FD307C6E_mAC5F5E9E51408AD4EEA602903ABE28B277403372_gshared (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
DefaultKeyGetter_1_tBB6F2B964D7D24105393917DE1AD62F2FD307C6E V_0;
|
|
memset((&V_0), 0, sizeof(V_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;
|
|
int32_t V_7 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:673>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(DefaultKeyGetter_1_tBB6F2B964D7D24105393917DE1AD62F2FD307C6E));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:674>
|
|
void* L_0 = ___0_data;
|
|
int32_t L_1 = ___1_left;
|
|
int32_t L_2;
|
|
L_2 = UnsafeUtility_ReadArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFBA66C06ECEB0A2BC1AAE634B6E6BB436F957084_inline(L_0, L_1, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_1 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:675>
|
|
int32_t L_3;
|
|
L_3 = DefaultKeyGetter_1_Get_m8B4B941EA0C8006F2B7DA22EBF15AC62D8392A2F((&V_0), (&V_1), il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
V_2 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:677>
|
|
int32_t L_4 = ___1_left;
|
|
___1_left = ((int32_t)il2cpp_codegen_subtract(L_4, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:678>
|
|
int32_t L_5 = ___2_right;
|
|
___2_right = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:681>
|
|
V_3 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:682>
|
|
il2cpp_codegen_initobj((&V_4), sizeof(int32_t));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:683>
|
|
il2cpp_codegen_initobj((&V_5), sizeof(int32_t));
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:686>
|
|
int32_t L_6 = ___1_left;
|
|
___1_left = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:687>
|
|
void* L_7 = ___0_data;
|
|
int32_t L_8 = ___1_left;
|
|
int32_t L_9;
|
|
L_9 = UnsafeUtility_ReadArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFBA66C06ECEB0A2BC1AAE634B6E6BB436F957084_inline(L_7, L_8, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_4 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:688>
|
|
int32_t L_10;
|
|
L_10 = DefaultKeyGetter_1_Get_m8B4B941EA0C8006F2B7DA22EBF15AC62D8392A2F((&V_0), (&V_4), il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
V_5 = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:689>
|
|
int32_t L_11 = V_2;
|
|
int32_t L_12;
|
|
L_12 = Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586((&V_5), L_11, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
V_3 = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:691>
|
|
int32_t L_13 = V_3;
|
|
if ((((int32_t)L_13) < ((int32_t)0)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:693>
|
|
il2cpp_codegen_initobj((&V_6), sizeof(int32_t));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:694>
|
|
il2cpp_codegen_initobj((&V_7), sizeof(int32_t));
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:697>
|
|
int32_t L_14 = ___2_right;
|
|
___2_right = ((int32_t)il2cpp_codegen_subtract(L_14, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:698>
|
|
void* L_15 = ___0_data;
|
|
int32_t L_16 = ___2_right;
|
|
int32_t L_17;
|
|
L_17 = UnsafeUtility_ReadArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFBA66C06ECEB0A2BC1AAE634B6E6BB436F957084_inline(L_15, L_16, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_6 = L_17;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:699>
|
|
int32_t L_18;
|
|
L_18 = DefaultKeyGetter_1_Get_m8B4B941EA0C8006F2B7DA22EBF15AC62D8392A2F((&V_0), (&V_6), il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
V_7 = L_18;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:700>
|
|
int32_t L_19 = V_2;
|
|
int32_t L_20;
|
|
L_20 = Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586((&V_7), L_19, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
V_3 = L_20;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:702>
|
|
int32_t L_21 = V_3;
|
|
if ((((int32_t)L_21) > ((int32_t)0)))
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:704>
|
|
int32_t L_22 = ___1_left;
|
|
int32_t L_23 = ___2_right;
|
|
if ((((int32_t)L_22) >= ((int32_t)L_23)))
|
|
{
|
|
goto IL_00cb;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:706>
|
|
void* L_24 = ___0_data;
|
|
int32_t L_25 = ___2_right;
|
|
int32_t L_26 = V_4;
|
|
UnsafeUtility_WriteArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m0DD1CC90B2F1EF5041F2F4E1DABB58224229F0D7_inline(L_24, L_25, L_26, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:707>
|
|
void* L_27 = ___0_data;
|
|
int32_t L_28 = ___1_left;
|
|
int32_t L_29 = V_6;
|
|
UnsafeUtility_WriteArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m0DD1CC90B2F1EF5041F2F4E1DABB58224229F0D7_inline(L_27, L_28, L_29, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
goto IL_002a;
|
|
}
|
|
|
|
IL_00cb:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:711>
|
|
int32_t L_30 = ___2_right;
|
|
return L_30;
|
|
}
|
|
}
|
|
// Method Definition Index: 28297
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CoreUnsafeUtils_Partition_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUintKeyGetter_tA42A60857A313F21755ED561D57B21FAF9750DD8_m8D31651B9A18E49E59DDA2DBAAAD6FC92CFF6A56_gshared (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
UintKeyGetter_tA42A60857A313F21755ED561D57B21FAF9750DD8 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
uint32_t V_1 = 0;
|
|
uint32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
uint32_t V_4 = 0;
|
|
uint32_t V_5 = 0;
|
|
uint32_t V_6 = 0;
|
|
uint32_t V_7 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:673>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(UintKeyGetter_tA42A60857A313F21755ED561D57B21FAF9750DD8));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:674>
|
|
void* L_0 = ___0_data;
|
|
int32_t L_1 = ___1_left;
|
|
uint32_t L_2;
|
|
L_2 = UnsafeUtility_ReadArrayElement_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mDA80BAFF55EA77496672B3B5B3804B55274B7E95_inline(L_0, L_1, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_1 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:675>
|
|
uint32_t L_3;
|
|
L_3 = UintKeyGetter_Get_m76C2635B8A8D4EFDFCF2157D5A691B9C0D7F6141((&V_0), (&V_1), il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
V_2 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:677>
|
|
int32_t L_4 = ___1_left;
|
|
___1_left = ((int32_t)il2cpp_codegen_subtract(L_4, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:678>
|
|
int32_t L_5 = ___2_right;
|
|
___2_right = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:681>
|
|
V_3 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:682>
|
|
il2cpp_codegen_initobj((&V_4), sizeof(uint32_t));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:683>
|
|
il2cpp_codegen_initobj((&V_5), sizeof(uint32_t));
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:686>
|
|
int32_t L_6 = ___1_left;
|
|
___1_left = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:687>
|
|
void* L_7 = ___0_data;
|
|
int32_t L_8 = ___1_left;
|
|
uint32_t L_9;
|
|
L_9 = UnsafeUtility_ReadArrayElement_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mDA80BAFF55EA77496672B3B5B3804B55274B7E95_inline(L_7, L_8, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_4 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:688>
|
|
uint32_t L_10;
|
|
L_10 = UintKeyGetter_Get_m76C2635B8A8D4EFDFCF2157D5A691B9C0D7F6141((&V_0), (&V_4), il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
V_5 = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:689>
|
|
uint32_t L_11 = V_2;
|
|
int32_t L_12;
|
|
L_12 = UInt32_CompareTo_mC96F15BE2B06C0268AD1D110D3251CE4DBA43907((&V_5), L_11, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
V_3 = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:691>
|
|
int32_t L_13 = V_3;
|
|
if ((((int32_t)L_13) < ((int32_t)0)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:693>
|
|
il2cpp_codegen_initobj((&V_6), sizeof(uint32_t));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:694>
|
|
il2cpp_codegen_initobj((&V_7), sizeof(uint32_t));
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:697>
|
|
int32_t L_14 = ___2_right;
|
|
___2_right = ((int32_t)il2cpp_codegen_subtract(L_14, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:698>
|
|
void* L_15 = ___0_data;
|
|
int32_t L_16 = ___2_right;
|
|
uint32_t L_17;
|
|
L_17 = UnsafeUtility_ReadArrayElement_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mDA80BAFF55EA77496672B3B5B3804B55274B7E95_inline(L_15, L_16, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_6 = L_17;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:699>
|
|
uint32_t L_18;
|
|
L_18 = UintKeyGetter_Get_m76C2635B8A8D4EFDFCF2157D5A691B9C0D7F6141((&V_0), (&V_6), il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
V_7 = L_18;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:700>
|
|
uint32_t L_19 = V_2;
|
|
int32_t L_20;
|
|
L_20 = UInt32_CompareTo_mC96F15BE2B06C0268AD1D110D3251CE4DBA43907((&V_7), L_19, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
V_3 = L_20;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:702>
|
|
int32_t L_21 = V_3;
|
|
if ((((int32_t)L_21) > ((int32_t)0)))
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:704>
|
|
int32_t L_22 = ___1_left;
|
|
int32_t L_23 = ___2_right;
|
|
if ((((int32_t)L_22) >= ((int32_t)L_23)))
|
|
{
|
|
goto IL_00cb;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:706>
|
|
void* L_24 = ___0_data;
|
|
int32_t L_25 = ___2_right;
|
|
uint32_t L_26 = V_4;
|
|
UnsafeUtility_WriteArrayElement_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m839FEB3192BEC0090FBA73A11E371E1A01C13ADF_inline(L_24, L_25, L_26, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:707>
|
|
void* L_27 = ___0_data;
|
|
int32_t L_28 = ___1_left;
|
|
uint32_t L_29 = V_6;
|
|
UnsafeUtility_WriteArrayElement_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m839FEB3192BEC0090FBA73A11E371E1A01C13ADF_inline(L_27, L_28, L_29, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
goto IL_002a;
|
|
}
|
|
|
|
IL_00cb:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:711>
|
|
int32_t L_30 = ___2_right;
|
|
return L_30;
|
|
}
|
|
}
|
|
// Method Definition Index: 28297
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CoreUnsafeUtils_Partition_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUlongKeyGetter_t7A83E03588BDDB856F8A6AF8E2172EC7C3CF99D5_mCD87D2374166349A7E3ECC8E37652CF66932BE4D_gshared (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
UlongKeyGetter_t7A83E03588BDDB856F8A6AF8E2172EC7C3CF99D5 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
uint64_t V_1 = 0;
|
|
uint64_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
uint64_t V_4 = 0;
|
|
uint64_t V_5 = 0;
|
|
uint64_t V_6 = 0;
|
|
uint64_t V_7 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:673>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(UlongKeyGetter_t7A83E03588BDDB856F8A6AF8E2172EC7C3CF99D5));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:674>
|
|
void* L_0 = ___0_data;
|
|
int32_t L_1 = ___1_left;
|
|
uint64_t L_2;
|
|
L_2 = UnsafeUtility_ReadArrayElement_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m8F5B829A65BCE22A8B2364D1C303A1E2876A3898_inline(L_0, L_1, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_1 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:675>
|
|
uint64_t L_3;
|
|
L_3 = UlongKeyGetter_Get_m57FA0FA5BEE63D52893276B28478786DCB72380F((&V_0), (&V_1), il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
V_2 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:677>
|
|
int32_t L_4 = ___1_left;
|
|
___1_left = ((int32_t)il2cpp_codegen_subtract(L_4, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:678>
|
|
int32_t L_5 = ___2_right;
|
|
___2_right = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:681>
|
|
V_3 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:682>
|
|
il2cpp_codegen_initobj((&V_4), sizeof(uint64_t));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:683>
|
|
il2cpp_codegen_initobj((&V_5), sizeof(uint64_t));
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:686>
|
|
int32_t L_6 = ___1_left;
|
|
___1_left = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:687>
|
|
void* L_7 = ___0_data;
|
|
int32_t L_8 = ___1_left;
|
|
uint64_t L_9;
|
|
L_9 = UnsafeUtility_ReadArrayElement_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m8F5B829A65BCE22A8B2364D1C303A1E2876A3898_inline(L_7, L_8, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_4 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:688>
|
|
uint64_t L_10;
|
|
L_10 = UlongKeyGetter_Get_m57FA0FA5BEE63D52893276B28478786DCB72380F((&V_0), (&V_4), il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
V_5 = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:689>
|
|
uint64_t L_11 = V_2;
|
|
int32_t L_12;
|
|
L_12 = UInt64_CompareTo_m1292E47C1FE2A1FC5BC5E6E2EB9C1FCDCEFE7745((&V_5), L_11, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
V_3 = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:691>
|
|
int32_t L_13 = V_3;
|
|
if ((((int32_t)L_13) < ((int32_t)0)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:693>
|
|
il2cpp_codegen_initobj((&V_6), sizeof(uint64_t));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:694>
|
|
il2cpp_codegen_initobj((&V_7), sizeof(uint64_t));
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:697>
|
|
int32_t L_14 = ___2_right;
|
|
___2_right = ((int32_t)il2cpp_codegen_subtract(L_14, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:698>
|
|
void* L_15 = ___0_data;
|
|
int32_t L_16 = ___2_right;
|
|
uint64_t L_17;
|
|
L_17 = UnsafeUtility_ReadArrayElement_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m8F5B829A65BCE22A8B2364D1C303A1E2876A3898_inline(L_15, L_16, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_6 = L_17;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:699>
|
|
uint64_t L_18;
|
|
L_18 = UlongKeyGetter_Get_m57FA0FA5BEE63D52893276B28478786DCB72380F((&V_0), (&V_6), il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
V_7 = L_18;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:700>
|
|
uint64_t L_19 = V_2;
|
|
int32_t L_20;
|
|
L_20 = UInt64_CompareTo_m1292E47C1FE2A1FC5BC5E6E2EB9C1FCDCEFE7745((&V_7), L_19, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
V_3 = L_20;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:702>
|
|
int32_t L_21 = V_3;
|
|
if ((((int32_t)L_21) > ((int32_t)0)))
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:704>
|
|
int32_t L_22 = ___1_left;
|
|
int32_t L_23 = ___2_right;
|
|
if ((((int32_t)L_22) >= ((int32_t)L_23)))
|
|
{
|
|
goto IL_00cb;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:706>
|
|
void* L_24 = ___0_data;
|
|
int32_t L_25 = ___2_right;
|
|
uint64_t L_26 = V_4;
|
|
UnsafeUtility_WriteArrayElement_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mC1C144C4AC4D9B3B2C30F06F88CB6E6AB475125E_inline(L_24, L_25, L_26, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:707>
|
|
void* L_27 = ___0_data;
|
|
int32_t L_28 = ___1_left;
|
|
uint64_t L_29 = V_6;
|
|
UnsafeUtility_WriteArrayElement_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mC1C144C4AC4D9B3B2C30F06F88CB6E6AB475125E_inline(L_27, L_28, L_29, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
goto IL_002a;
|
|
}
|
|
|
|
IL_00cb:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:711>
|
|
int32_t L_30 = ___2_right;
|
|
return L_30;
|
|
}
|
|
}
|
|
// Method Definition Index: 28297
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CoreUnsafeUtils_Partition_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m76931AC4C7C534EEA4F41F01306BBBA4D6424CC7_gshared (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_TGetter_t932F80F7EE760F974F58B90C5BBEB1195C5A2C00 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_TValue_tF28603F55111F57C7727420133030374119CBA1A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_TKey_t4D813E780DC8CF17A50C969CCA89C412A0F621DD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
void* L_3 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 0)));
|
|
void* L_11 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 0)));
|
|
void* L_14 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 6)));
|
|
void* L_21 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 0)));
|
|
void* L_24 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 6)));
|
|
const Il2CppFullySharedGenericStruct L_2 = alloca(SizeOf_TValue_tF28603F55111F57C7727420133030374119CBA1A);
|
|
const Il2CppFullySharedGenericStruct L_10 = L_2;
|
|
const Il2CppFullySharedGenericStruct L_20 = L_2;
|
|
const Il2CppFullySharedGenericStruct L_31 = L_2;
|
|
const Il2CppFullySharedGenericStruct L_34 = alloca(SizeOf_TValue_tF28603F55111F57C7727420133030374119CBA1A);
|
|
const Il2CppFullySharedGenericStruct L_4 = alloca(SizeOf_TKey_t4D813E780DC8CF17A50C969CCA89C412A0F621DD);
|
|
const Il2CppFullySharedGenericStruct L_12 = L_4;
|
|
const Il2CppFullySharedGenericStruct L_22 = L_4;
|
|
const Il2CppFullySharedGenericStruct L_13 = alloca(SizeOf_TKey_t4D813E780DC8CF17A50C969CCA89C412A0F621DD);
|
|
const Il2CppFullySharedGenericStruct L_23 = L_13;
|
|
Il2CppFullySharedGenericStruct V_0 = alloca(SizeOf_TGetter_t932F80F7EE760F974F58B90C5BBEB1195C5A2C00);
|
|
memset(V_0, 0, SizeOf_TGetter_t932F80F7EE760F974F58B90C5BBEB1195C5A2C00);
|
|
Il2CppFullySharedGenericStruct V_1 = alloca(SizeOf_TValue_tF28603F55111F57C7727420133030374119CBA1A);
|
|
memset(V_1, 0, SizeOf_TValue_tF28603F55111F57C7727420133030374119CBA1A);
|
|
Il2CppFullySharedGenericStruct V_2 = alloca(SizeOf_TKey_t4D813E780DC8CF17A50C969CCA89C412A0F621DD);
|
|
memset(V_2, 0, SizeOf_TKey_t4D813E780DC8CF17A50C969CCA89C412A0F621DD);
|
|
int32_t V_3 = 0;
|
|
Il2CppFullySharedGenericStruct V_4 = alloca(SizeOf_TValue_tF28603F55111F57C7727420133030374119CBA1A);
|
|
memset(V_4, 0, SizeOf_TValue_tF28603F55111F57C7727420133030374119CBA1A);
|
|
Il2CppFullySharedGenericStruct V_5 = alloca(SizeOf_TKey_t4D813E780DC8CF17A50C969CCA89C412A0F621DD);
|
|
memset(V_5, 0, SizeOf_TKey_t4D813E780DC8CF17A50C969CCA89C412A0F621DD);
|
|
Il2CppFullySharedGenericStruct V_6 = alloca(SizeOf_TValue_tF28603F55111F57C7727420133030374119CBA1A);
|
|
memset(V_6, 0, SizeOf_TValue_tF28603F55111F57C7727420133030374119CBA1A);
|
|
Il2CppFullySharedGenericStruct V_7 = alloca(SizeOf_TKey_t4D813E780DC8CF17A50C969CCA89C412A0F621DD);
|
|
memset(V_7, 0, SizeOf_TKey_t4D813E780DC8CF17A50C969CCA89C412A0F621DD);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:673>
|
|
il2cpp_codegen_initobj((Il2CppFullySharedGenericStruct*)V_0, SizeOf_TGetter_t932F80F7EE760F974F58B90C5BBEB1195C5A2C00);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:674>
|
|
void* L_0 = ___0_data;
|
|
int32_t L_1 = ___1_left;
|
|
InvokerActionInvoker3< void*, int32_t, Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, L_0, L_1, (Il2CppFullySharedGenericStruct*)L_2);
|
|
il2cpp_codegen_memcpy(V_1, L_2, SizeOf_TValue_tF28603F55111F57C7727420133030374119CBA1A);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:675>
|
|
ConstrainedActionInvoker2< Il2CppFullySharedGenericStruct*, Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 0), il2cpp_rgctx_method(method->rgctx_data, 4), L_3, (void*)(Il2CppFullySharedGenericStruct*)V_0, (Il2CppFullySharedGenericStruct*)V_1, (Il2CppFullySharedGenericStruct*)L_4);
|
|
il2cpp_codegen_memcpy(V_2, L_4, SizeOf_TKey_t4D813E780DC8CF17A50C969CCA89C412A0F621DD);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:677>
|
|
int32_t L_5 = ___1_left;
|
|
___1_left = ((int32_t)il2cpp_codegen_subtract(L_5, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:678>
|
|
int32_t L_6 = ___2_right;
|
|
___2_right = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:681>
|
|
V_3 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:682>
|
|
il2cpp_codegen_initobj((Il2CppFullySharedGenericStruct*)V_4, SizeOf_TValue_tF28603F55111F57C7727420133030374119CBA1A);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:683>
|
|
il2cpp_codegen_initobj((Il2CppFullySharedGenericStruct*)V_5, SizeOf_TKey_t4D813E780DC8CF17A50C969CCA89C412A0F621DD);
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:686>
|
|
int32_t L_7 = ___1_left;
|
|
___1_left = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:687>
|
|
void* L_8 = ___0_data;
|
|
int32_t L_9 = ___1_left;
|
|
InvokerActionInvoker3< void*, int32_t, Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, L_8, L_9, (Il2CppFullySharedGenericStruct*)L_10);
|
|
il2cpp_codegen_memcpy(V_4, L_10, SizeOf_TValue_tF28603F55111F57C7727420133030374119CBA1A);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:688>
|
|
ConstrainedActionInvoker2< Il2CppFullySharedGenericStruct*, Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 0), il2cpp_rgctx_method(method->rgctx_data, 4), L_11, (void*)(Il2CppFullySharedGenericStruct*)V_0, (Il2CppFullySharedGenericStruct*)V_4, (Il2CppFullySharedGenericStruct*)L_12);
|
|
il2cpp_codegen_memcpy(V_5, L_12, SizeOf_TKey_t4D813E780DC8CF17A50C969CCA89C412A0F621DD);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:689>
|
|
il2cpp_codegen_memcpy(L_13, V_2, SizeOf_TKey_t4D813E780DC8CF17A50C969CCA89C412A0F621DD);
|
|
int32_t L_15;
|
|
L_15 = ConstrainedFuncInvoker1< int32_t, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 6), il2cpp_rgctx_method(method->rgctx_data, 8), L_14, (void*)(Il2CppFullySharedGenericStruct*)V_5, L_13);
|
|
V_3 = L_15;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:691>
|
|
int32_t L_16 = V_3;
|
|
if ((((int32_t)L_16) < ((int32_t)0)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:693>
|
|
il2cpp_codegen_initobj((Il2CppFullySharedGenericStruct*)V_6, SizeOf_TValue_tF28603F55111F57C7727420133030374119CBA1A);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:694>
|
|
il2cpp_codegen_initobj((Il2CppFullySharedGenericStruct*)V_7, SizeOf_TKey_t4D813E780DC8CF17A50C969CCA89C412A0F621DD);
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:697>
|
|
int32_t L_17 = ___2_right;
|
|
___2_right = ((int32_t)il2cpp_codegen_subtract(L_17, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:698>
|
|
void* L_18 = ___0_data;
|
|
int32_t L_19 = ___2_right;
|
|
InvokerActionInvoker3< void*, int32_t, Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, L_18, L_19, (Il2CppFullySharedGenericStruct*)L_20);
|
|
il2cpp_codegen_memcpy(V_6, L_20, SizeOf_TValue_tF28603F55111F57C7727420133030374119CBA1A);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:699>
|
|
ConstrainedActionInvoker2< Il2CppFullySharedGenericStruct*, Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 0), il2cpp_rgctx_method(method->rgctx_data, 4), L_21, (void*)(Il2CppFullySharedGenericStruct*)V_0, (Il2CppFullySharedGenericStruct*)V_6, (Il2CppFullySharedGenericStruct*)L_22);
|
|
il2cpp_codegen_memcpy(V_7, L_22, SizeOf_TKey_t4D813E780DC8CF17A50C969CCA89C412A0F621DD);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:700>
|
|
il2cpp_codegen_memcpy(L_23, V_2, SizeOf_TKey_t4D813E780DC8CF17A50C969CCA89C412A0F621DD);
|
|
int32_t L_25;
|
|
L_25 = ConstrainedFuncInvoker1< int32_t, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 6), il2cpp_rgctx_method(method->rgctx_data, 8), L_24, (void*)(Il2CppFullySharedGenericStruct*)V_7, L_23);
|
|
V_3 = L_25;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:702>
|
|
int32_t L_26 = V_3;
|
|
if ((((int32_t)L_26) > ((int32_t)0)))
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:704>
|
|
int32_t L_27 = ___1_left;
|
|
int32_t L_28 = ___2_right;
|
|
if ((((int32_t)L_27) >= ((int32_t)L_28)))
|
|
{
|
|
goto IL_00cb;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:706>
|
|
void* L_29 = ___0_data;
|
|
int32_t L_30 = ___2_right;
|
|
il2cpp_codegen_memcpy(L_31, V_4, SizeOf_TValue_tF28603F55111F57C7727420133030374119CBA1A);
|
|
InvokerActionInvoker3< void*, int32_t, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), NULL, L_29, L_30, L_31);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:707>
|
|
void* L_32 = ___0_data;
|
|
int32_t L_33 = ___1_left;
|
|
il2cpp_codegen_memcpy(L_34, V_6, SizeOf_TValue_tF28603F55111F57C7727420133030374119CBA1A);
|
|
InvokerActionInvoker3< void*, int32_t, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), NULL, L_32, L_33, L_34);
|
|
goto IL_002a;
|
|
}
|
|
|
|
IL_00cb:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:711>
|
|
int32_t L_35 = ___2_right;
|
|
return L_35;
|
|
}
|
|
}
|
|
// Method Definition Index: 28289
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUnsafeUtils_QuickSort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mCFDBA1196282164ED2F455FC297BAD4FA282E42A_gshared (int32_t ___0_count, void* ___1_data, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:422>
|
|
void* L_0 = ___1_data;
|
|
int32_t L_1 = ___0_count;
|
|
CoreUnsafeUtils_QuickSort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisDefaultKeyGetter_1_tBB6F2B964D7D24105393917DE1AD62F2FD307C6E_m6AF2CFD9286A6ED43C3DF31769B1D0340C3ACC06(L_0, 0, ((int32_t)il2cpp_codegen_subtract(L_1, 1)), il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:423>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 28289
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUnsafeUtils_QuickSort_TisIl2CppFullySharedGenericStruct_mD686A84BCDF903140F3425BC0054AADF3479E06E_gshared (int32_t ___0_count, void* ___1_data, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:422>
|
|
void* L_0 = ___1_data;
|
|
int32_t L_1 = ___0_count;
|
|
(( void (*) (void*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(L_0, 0, ((int32_t)il2cpp_codegen_subtract(L_1, 1)), il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:423>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 28290
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUnsafeUtils_QuickSort_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m4969B0444401EE3518A33E5BD16712FF1B8938CC_gshared (int32_t ___0_count, void* ___1_data, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:438>
|
|
void* L_0 = ___1_data;
|
|
int32_t L_1 = ___0_count;
|
|
(( void (*) (void*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(L_0, 0, ((int32_t)il2cpp_codegen_subtract(L_1, 1)), il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:439>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 28291
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUnsafeUtils_QuickSort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisDefaultKeyGetter_1_tBB6F2B964D7D24105393917DE1AD62F2FD307C6E_m6AF2CFD9286A6ED43C3DF31769B1D0340C3ACC06_gshared (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:456>
|
|
int32_t L_0 = ___1_left;
|
|
int32_t L_1 = ___2_right;
|
|
if ((((int32_t)L_0) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:458>
|
|
void* L_2 = ___0_data;
|
|
int32_t L_3 = ___1_left;
|
|
int32_t L_4 = ___2_right;
|
|
int32_t L_5;
|
|
L_5 = CoreUnsafeUtils_Partition_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisDefaultKeyGetter_1_tBB6F2B964D7D24105393917DE1AD62F2FD307C6E_mAC5F5E9E51408AD4EEA602903ABE28B277403372(L_2, L_3, L_4, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:460>
|
|
int32_t L_6 = V_0;
|
|
if ((((int32_t)L_6) < ((int32_t)1)))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:461>
|
|
void* L_7 = ___0_data;
|
|
int32_t L_8 = ___1_left;
|
|
int32_t L_9 = V_0;
|
|
CoreUnsafeUtils_QuickSort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisDefaultKeyGetter_1_tBB6F2B964D7D24105393917DE1AD62F2FD307C6E_m6AF2CFD9286A6ED43C3DF31769B1D0340C3ACC06(L_7, L_8, L_9, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:463>
|
|
int32_t L_10 = V_0;
|
|
int32_t L_11 = ___2_right;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_10, 1))) >= ((int32_t)L_11)))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:464>
|
|
void* L_12 = ___0_data;
|
|
int32_t L_13 = V_0;
|
|
int32_t L_14 = ___2_right;
|
|
CoreUnsafeUtils_QuickSort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisDefaultKeyGetter_1_tBB6F2B964D7D24105393917DE1AD62F2FD307C6E_m6AF2CFD9286A6ED43C3DF31769B1D0340C3ACC06(L_12, ((int32_t)il2cpp_codegen_add(L_13, 1)), L_14, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:466>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 28291
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUnsafeUtils_QuickSort_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUintKeyGetter_tA42A60857A313F21755ED561D57B21FAF9750DD8_mA04BB389454EC77314C0485B0E45EDA54F421347_gshared (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:456>
|
|
int32_t L_0 = ___1_left;
|
|
int32_t L_1 = ___2_right;
|
|
if ((((int32_t)L_0) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:458>
|
|
void* L_2 = ___0_data;
|
|
int32_t L_3 = ___1_left;
|
|
int32_t L_4 = ___2_right;
|
|
int32_t L_5;
|
|
L_5 = CoreUnsafeUtils_Partition_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUintKeyGetter_tA42A60857A313F21755ED561D57B21FAF9750DD8_m8D31651B9A18E49E59DDA2DBAAAD6FC92CFF6A56(L_2, L_3, L_4, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:460>
|
|
int32_t L_6 = V_0;
|
|
if ((((int32_t)L_6) < ((int32_t)1)))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:461>
|
|
void* L_7 = ___0_data;
|
|
int32_t L_8 = ___1_left;
|
|
int32_t L_9 = V_0;
|
|
CoreUnsafeUtils_QuickSort_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUintKeyGetter_tA42A60857A313F21755ED561D57B21FAF9750DD8_mA04BB389454EC77314C0485B0E45EDA54F421347(L_7, L_8, L_9, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:463>
|
|
int32_t L_10 = V_0;
|
|
int32_t L_11 = ___2_right;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_10, 1))) >= ((int32_t)L_11)))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:464>
|
|
void* L_12 = ___0_data;
|
|
int32_t L_13 = V_0;
|
|
int32_t L_14 = ___2_right;
|
|
CoreUnsafeUtils_QuickSort_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_TisUintKeyGetter_tA42A60857A313F21755ED561D57B21FAF9750DD8_mA04BB389454EC77314C0485B0E45EDA54F421347(L_12, ((int32_t)il2cpp_codegen_add(L_13, 1)), L_14, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:466>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 28291
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUnsafeUtils_QuickSort_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUlongKeyGetter_t7A83E03588BDDB856F8A6AF8E2172EC7C3CF99D5_mBDC4803735141628F7BC6D8EFDBA0313227CA989_gshared (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:456>
|
|
int32_t L_0 = ___1_left;
|
|
int32_t L_1 = ___2_right;
|
|
if ((((int32_t)L_0) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:458>
|
|
void* L_2 = ___0_data;
|
|
int32_t L_3 = ___1_left;
|
|
int32_t L_4 = ___2_right;
|
|
int32_t L_5;
|
|
L_5 = CoreUnsafeUtils_Partition_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUlongKeyGetter_t7A83E03588BDDB856F8A6AF8E2172EC7C3CF99D5_mCD87D2374166349A7E3ECC8E37652CF66932BE4D(L_2, L_3, L_4, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:460>
|
|
int32_t L_6 = V_0;
|
|
if ((((int32_t)L_6) < ((int32_t)1)))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:461>
|
|
void* L_7 = ___0_data;
|
|
int32_t L_8 = ___1_left;
|
|
int32_t L_9 = V_0;
|
|
CoreUnsafeUtils_QuickSort_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUlongKeyGetter_t7A83E03588BDDB856F8A6AF8E2172EC7C3CF99D5_mBDC4803735141628F7BC6D8EFDBA0313227CA989(L_7, L_8, L_9, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:463>
|
|
int32_t L_10 = V_0;
|
|
int32_t L_11 = ___2_right;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_10, 1))) >= ((int32_t)L_11)))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:464>
|
|
void* L_12 = ___0_data;
|
|
int32_t L_13 = V_0;
|
|
int32_t L_14 = ___2_right;
|
|
CoreUnsafeUtils_QuickSort_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_TisUlongKeyGetter_t7A83E03588BDDB856F8A6AF8E2172EC7C3CF99D5_mBDC4803735141628F7BC6D8EFDBA0313227CA989(L_12, ((int32_t)il2cpp_codegen_add(L_13, 1)), L_14, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:466>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 28291
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUnsafeUtils_QuickSort_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_m67CCB149867A906B8AB61A122382E81F8D51FC44_gshared (void* ___0_data, int32_t ___1_left, int32_t ___2_right, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:456>
|
|
int32_t L_0 = ___1_left;
|
|
int32_t L_1 = ___2_right;
|
|
if ((((int32_t)L_0) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:458>
|
|
void* L_2 = ___0_data;
|
|
int32_t L_3 = ___1_left;
|
|
int32_t L_4 = ___2_right;
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (void*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(L_2, L_3, L_4, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:460>
|
|
int32_t L_6 = V_0;
|
|
if ((((int32_t)L_6) < ((int32_t)1)))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:461>
|
|
void* L_7 = ___0_data;
|
|
int32_t L_8 = ___1_left;
|
|
int32_t L_9 = V_0;
|
|
(( void (*) (void*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_7, L_8, L_9, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:463>
|
|
int32_t L_10 = V_0;
|
|
int32_t L_11 = ___2_right;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_10, 1))) >= ((int32_t)L_11)))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:464>
|
|
void* L_12 = ___0_data;
|
|
int32_t L_13 = V_0;
|
|
int32_t L_14 = ___2_right;
|
|
(( void (*) (void*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_12, ((int32_t)il2cpp_codegen_add(L_13, 1)), L_14, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/CoreUnsafeUtils.cs:466>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 30667
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CoreUtils_GetAllTypesDerivedFrom_TisRuntimeObject_m15CDF6D45E40945D13046F32CE70B639A6725566_gshared (const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Where_TisType_t_mA4A7776893ADF4E3CAB6F7AEC94DF71DDF7931F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E* G_B2_0 = NULL;
|
|
RuntimeObject* G_B2_1 = NULL;
|
|
Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E* G_B1_0 = NULL;
|
|
RuntimeObject* G_B1_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Utilities/CoreUtils.cs:1357>
|
|
il2cpp_codegen_runtime_class_init_inline(CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_0;
|
|
L_0 = CoreUtils_GetAllAssemblyTypes_m3E680308BC021DD4E3887C5557690CDDB49F5702(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E* L_1 = ((U3CU3Ec__101_1_tF191CD717F7D673900AB67BAAAA082AE006396EE_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___U3CU3E9__101_0;
|
|
Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E* L_2 = L_1;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_2;
|
|
G_B2_1 = L_0;
|
|
goto IL_0024;
|
|
}
|
|
G_B1_0 = L_2;
|
|
G_B1_1 = L_0;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
U3CU3Ec__101_1_tF191CD717F7D673900AB67BAAAA082AE006396EE* L_3 = ((U3CU3Ec__101_1_tF191CD717F7D673900AB67BAAAA082AE006396EE_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___U3CU3E9;
|
|
Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E* L_4 = (Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E*)il2cpp_codegen_object_new(Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E_il2cpp_TypeInfo_var);
|
|
Func_2__ctor_mAFDFA2B152082BBF5E0626BF143EDACD61DE9D74(L_4, (RuntimeObject*)L_3, (intptr_t)((void*)il2cpp_rgctx_method(method->rgctx_data, 2)), NULL);
|
|
Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E* L_5 = L_4;
|
|
((U3CU3Ec__101_1_tF191CD717F7D673900AB67BAAAA082AE006396EE_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___U3CU3E9__101_0 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec__101_1_tF191CD717F7D673900AB67BAAAA082AE006396EE_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___U3CU3E9__101_0), (void*)L_5);
|
|
G_B2_0 = L_5;
|
|
G_B2_1 = G_B1_1;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
RuntimeObject* L_6;
|
|
L_6 = Enumerable_Where_TisType_t_mA4A7776893ADF4E3CAB6F7AEC94DF71DDF7931F8(G_B2_1, G_B2_0, Enumerable_Where_TisType_t_mA4A7776893ADF4E3CAB6F7AEC94DF71DDF7931F8_RuntimeMethod_var);
|
|
return L_6;
|
|
}
|
|
}
|
|
// Method Definition Index: 30667
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CoreUtils_GetAllTypesDerivedFrom_TisIl2CppFullySharedGenericAny_mF6ECE2B4D3E83F1997B055A77AB6AA44BB0E612B_gshared (const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Where_TisType_t_mA4A7776893ADF4E3CAB6F7AEC94DF71DDF7931F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E* G_B2_0 = NULL;
|
|
RuntimeObject* G_B2_1 = NULL;
|
|
Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E* G_B1_0 = NULL;
|
|
RuntimeObject* G_B1_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Utilities/CoreUtils.cs:1357>
|
|
il2cpp_codegen_runtime_class_init_inline(CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_0;
|
|
L_0 = CoreUtils_GetAllAssemblyTypes_m3E680308BC021DD4E3887C5557690CDDB49F5702(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E* L_1 = ((U3CU3Ec__101_1_t4C331D1DC0A362A71E091CD9F8AB494E7D184984_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___U3CU3E9__101_0;
|
|
Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E* L_2 = L_1;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_2;
|
|
G_B2_1 = L_0;
|
|
goto IL_0024;
|
|
}
|
|
G_B1_0 = L_2;
|
|
G_B1_1 = L_0;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
U3CU3Ec__101_1_t4C331D1DC0A362A71E091CD9F8AB494E7D184984* L_3 = ((U3CU3Ec__101_1_t4C331D1DC0A362A71E091CD9F8AB494E7D184984_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___U3CU3E9;
|
|
Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E* L_4 = (Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E*)il2cpp_codegen_object_new(Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E_il2cpp_TypeInfo_var);
|
|
Func_2__ctor_mAFDFA2B152082BBF5E0626BF143EDACD61DE9D74(L_4, (RuntimeObject*)L_3, (intptr_t)((void*)il2cpp_rgctx_method(method->rgctx_data, 2)), NULL);
|
|
Func_2_t7AF8146EC94DFCBB0F1B3E70111C1FB21D39F00E* L_5 = L_4;
|
|
((U3CU3Ec__101_1_t4C331D1DC0A362A71E091CD9F8AB494E7D184984_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___U3CU3E9__101_0 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec__101_1_t4C331D1DC0A362A71E091CD9F8AB494E7D184984_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___U3CU3E9__101_0), (void*)L_5);
|
|
G_B2_0 = L_5;
|
|
G_B2_1 = G_B1_1;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
RuntimeObject* L_6;
|
|
L_6 = Enumerable_Where_TisType_t_mA4A7776893ADF4E3CAB6F7AEC94DF71DDF7931F8(G_B2_1, G_B2_0, Enumerable_Where_TisType_t_mA4A7776893ADF4E3CAB6F7AEC94DF71DDF7931F8_RuntimeMethod_var);
|
|
return L_6;
|
|
}
|
|
}
|
|
// Method Definition Index: 30684
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CoreUtils_GetLastEnumValue_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_mF32182048A82E8D5F457BC828C73CB98A2E850AE_gshared (const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Utilities/CoreUtils.cs:1746>
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
NullCheck(L_1);
|
|
RuntimeArray* L_2;
|
|
L_2 = VirtualFuncInvoker0< RuntimeArray* >::Invoke(118, L_1);
|
|
RuntimeObject* L_3;
|
|
L_3 = Enumerable_Cast_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_mD7DF983428BF05DC218A798F599F830973BF8FFC((RuntimeObject*)L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
int32_t L_4;
|
|
L_4 = Enumerable_Last_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m4152A55863ECF1B46E7D359EE96B7B88C0634AD9(L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 30684
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUtils_GetLastEnumValue_TisIl2CppFullySharedGenericStruct_m3490C90D457E7416799B447B84350B33C897702F_gshared (Il2CppFullySharedGenericStruct* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T_t0E6189C577D62F8AC6CFF856A805C7B07F84E48D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const Il2CppFullySharedGenericStruct L_4 = alloca(SizeOf_T_t0E6189C577D62F8AC6CFF856A805C7B07F84E48D);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Utilities/CoreUtils.cs:1746>
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
NullCheck(L_1);
|
|
RuntimeArray* L_2;
|
|
L_2 = VirtualFuncInvoker0< RuntimeArray* >::Invoke(118, L_1);
|
|
RuntimeObject* L_3;
|
|
L_3 = (( RuntimeObject* (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))((RuntimeObject*)L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
InvokerActionInvoker2< RuntimeObject*, Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, L_3, (Il2CppFullySharedGenericStruct*)L_4);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_4, SizeOf_T_t0E6189C577D62F8AC6CFF856A805C7B07F84E48D);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 30657
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CoreUtils_HasFlag_TisIl2CppFullySharedGenericAny_mD36AE44F61E663323A414DE232E369C98AB52EBF_gshared (Il2CppFullySharedGenericAny ___0_mask, Il2CppFullySharedGenericAny ___1_flag, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
void* L_0 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 0)));
|
|
void* L_2 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 0)));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Utilities/CoreUtils.cs:1196>
|
|
uint32_t L_1;
|
|
L_1 = ConstrainedFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 0), il2cpp_rgctx_method(method->rgctx_data, 1), L_0, (void*)(Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___0_mask : &___0_mask), (RuntimeObject*)NULL);
|
|
uint32_t L_3;
|
|
L_3 = ConstrainedFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 0), il2cpp_rgctx_method(method->rgctx_data, 1), L_2, (void*)(Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_flag : &___1_flag), (RuntimeObject*)NULL);
|
|
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_1&(int32_t)L_3))) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 30658
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUtils_Swap_TisRuntimeObject_m90918B648B5523623E7104CF64145223DDB3E28A_gshared (RuntimeObject** ___0_a, RuntimeObject** ___1_b, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Utilities/CoreUtils.cs:1207>
|
|
RuntimeObject** L_0 = ___0_a;
|
|
RuntimeObject* L_1 = (*(RuntimeObject**)L_0);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Utilities/CoreUtils.cs:1208>
|
|
RuntimeObject** L_2 = ___0_a;
|
|
RuntimeObject** L_3 = ___1_b;
|
|
RuntimeObject* L_4 = (*(RuntimeObject**)L_3);
|
|
*(RuntimeObject**)L_2 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)L_4);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Utilities/CoreUtils.cs:1209>
|
|
RuntimeObject** L_5 = ___1_b;
|
|
RuntimeObject* L_6 = V_0;
|
|
*(RuntimeObject**)L_5 = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_5, (void*)L_6);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Utilities/CoreUtils.cs:1210>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 30658
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUtils_Swap_TisIl2CppFullySharedGenericAny_mF32B9C6C284EF413B632D4A35E2C25B6A1107037_gshared (Il2CppFullySharedGenericAny* ___0_a, Il2CppFullySharedGenericAny* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T_tFCFDDDDB59BB345E93C3E03C7E4996F8B3ACA9B2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T_tFCFDDDDB59BB345E93C3E03C7E4996F8B3ACA9B2);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T_tFCFDDDDB59BB345E93C3E03C7E4996F8B3ACA9B2);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T_tFCFDDDDB59BB345E93C3E03C7E4996F8B3ACA9B2);
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_T_tFCFDDDDB59BB345E93C3E03C7E4996F8B3ACA9B2);
|
|
memset(V_0, 0, SizeOf_T_tFCFDDDDB59BB345E93C3E03C7E4996F8B3ACA9B2);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Utilities/CoreUtils.cs:1207>
|
|
Il2CppFullySharedGenericAny* L_0 = ___0_a;
|
|
il2cpp_codegen_memcpy(L_1, L_0, SizeOf_T_tFCFDDDDB59BB345E93C3E03C7E4996F8B3ACA9B2);
|
|
il2cpp_codegen_memcpy(V_0, L_1, SizeOf_T_tFCFDDDDB59BB345E93C3E03C7E4996F8B3ACA9B2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Utilities/CoreUtils.cs:1208>
|
|
Il2CppFullySharedGenericAny* L_2 = ___0_a;
|
|
Il2CppFullySharedGenericAny* L_3 = ___1_b;
|
|
il2cpp_codegen_memcpy(L_4, L_3, SizeOf_T_tFCFDDDDB59BB345E93C3E03C7E4996F8B3ACA9B2);
|
|
il2cpp_codegen_memcpy((Il2CppFullySharedGenericAny*)L_2, L_4, SizeOf_T_tFCFDDDDB59BB345E93C3E03C7E4996F8B3ACA9B2);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->rgctx_data, 1), (void**)(Il2CppFullySharedGenericAny*)L_2, (void*)L_4);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Utilities/CoreUtils.cs:1209>
|
|
Il2CppFullySharedGenericAny* L_5 = ___1_b;
|
|
il2cpp_codegen_memcpy(L_6, V_0, SizeOf_T_tFCFDDDDB59BB345E93C3E03C7E4996F8B3ACA9B2);
|
|
il2cpp_codegen_memcpy((Il2CppFullySharedGenericAny*)L_5, L_6, SizeOf_T_tFCFDDDDB59BB345E93C3E03C7E4996F8B3ACA9B2);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->rgctx_data, 1), (void**)(Il2CppFullySharedGenericAny*)L_5, (void*)L_6);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Utilities/CoreUtils.cs:1210>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 40158
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t71485A1E60B31CCAD3E525C907CF172E8B804468 CullingResults_GetNativeArray_TisVisibleLight_t0A4DF5B22865A00F618A0352B805277FA0132805_mB9817677C042A4D184CE33B7C16AEE37E5A6E2CE_gshared (CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267* __this, void* ___0_dataPointer, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_t71485A1E60B31CCAD3E525C907CF172E8B804468 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
NativeArray_1_t71485A1E60B31CCAD3E525C907CF172E8B804468 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
void* L_0 = ___0_dataPointer;
|
|
int32_t L_1 = ___1_length;
|
|
NativeArray_1_t71485A1E60B31CCAD3E525C907CF172E8B804468 L_2;
|
|
L_2 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisVisibleLight_t0A4DF5B22865A00F618A0352B805277FA0132805_m212572101685FD8A1B11AE6CB89F859D04721B05(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_2;
|
|
NativeArray_1_t71485A1E60B31CCAD3E525C907CF172E8B804468 L_3 = V_0;
|
|
V_1 = L_3;
|
|
goto IL_000e;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
NativeArray_1_t71485A1E60B31CCAD3E525C907CF172E8B804468 L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t71485A1E60B31CCAD3E525C907CF172E8B804468 CullingResults_GetNativeArray_TisVisibleLight_t0A4DF5B22865A00F618A0352B805277FA0132805_mB9817677C042A4D184CE33B7C16AEE37E5A6E2CE_AdjustorThunk (RuntimeObject* __this, void* ___0_dataPointer, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267*>(__this + _offset);
|
|
NativeArray_1_t71485A1E60B31CCAD3E525C907CF172E8B804468 _returnValue;
|
|
_returnValue = CullingResults_GetNativeArray_TisVisibleLight_t0A4DF5B22865A00F618A0352B805277FA0132805_mB9817677C042A4D184CE33B7C16AEE37E5A6E2CE(_thisAdjusted, ___0_dataPointer, ___1_length, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 40158
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3CC4179AFF43449D3539816D3EE4D2D69B6022E8 CullingResults_GetNativeArray_TisVisibleReflectionProbe_t8AF1FAD09A36E33F5101B683DB8E99582815EF0B_m64623DE34C36FFB68DFE5A894F3B0A4D5E4DE018_gshared (CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267* __this, void* ___0_dataPointer, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_t3CC4179AFF43449D3539816D3EE4D2D69B6022E8 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
NativeArray_1_t3CC4179AFF43449D3539816D3EE4D2D69B6022E8 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
void* L_0 = ___0_dataPointer;
|
|
int32_t L_1 = ___1_length;
|
|
NativeArray_1_t3CC4179AFF43449D3539816D3EE4D2D69B6022E8 L_2;
|
|
L_2 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisVisibleReflectionProbe_t8AF1FAD09A36E33F5101B683DB8E99582815EF0B_mA1B9B486611AB443D9F931830D9481B1E9D6FAF1(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_2;
|
|
NativeArray_1_t3CC4179AFF43449D3539816D3EE4D2D69B6022E8 L_3 = V_0;
|
|
V_1 = L_3;
|
|
goto IL_000e;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
NativeArray_1_t3CC4179AFF43449D3539816D3EE4D2D69B6022E8 L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t3CC4179AFF43449D3539816D3EE4D2D69B6022E8 CullingResults_GetNativeArray_TisVisibleReflectionProbe_t8AF1FAD09A36E33F5101B683DB8E99582815EF0B_m64623DE34C36FFB68DFE5A894F3B0A4D5E4DE018_AdjustorThunk (RuntimeObject* __this, void* ___0_dataPointer, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267*>(__this + _offset);
|
|
NativeArray_1_t3CC4179AFF43449D3539816D3EE4D2D69B6022E8 _returnValue;
|
|
_returnValue = CullingResults_GetNativeArray_TisVisibleReflectionProbe_t8AF1FAD09A36E33F5101B683DB8E99582815EF0B_m64623DE34C36FFB68DFE5A894F3B0A4D5E4DE018(_thisAdjusted, ___0_dataPointer, ___1_length, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 40158
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 CullingResults_GetNativeArray_TisIl2CppFullySharedGenericStruct_mAD95E79FFE908C81E8C8514A3F2E8E583998A7C0_gshared (CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267* __this, void* ___0_dataPointer, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
void* L_0 = ___0_dataPointer;
|
|
int32_t L_1 = ___1_length;
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 L_2;
|
|
L_2 = (( NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 (*) (void*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)))(L_0, L_1, (int32_t)0, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
V_0 = L_2;
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 L_3 = V_0;
|
|
V_1 = L_3;
|
|
goto IL_000e;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 CullingResults_GetNativeArray_TisIl2CppFullySharedGenericStruct_mAD95E79FFE908C81E8C8514A3F2E8E583998A7C0_AdjustorThunk (RuntimeObject* __this, void* ___0_dataPointer, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267*>(__this + _offset);
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18 _returnValue;
|
|
_returnValue = CullingResults_GetNativeArray_TisIl2CppFullySharedGenericStruct_mAD95E79FFE908C81E8C8514A3F2E8E583998A7C0(_thisAdjusted, ___0_dataPointer, ___1_length, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 7441
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeNamedArgumentU5BU5D_tC0A39D9401E28662213F5958EFF5D26D0681B440* CustomAttributeData_UnboxValues_TisCustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02_mA26F11CCA26B15053B75E13DBD6D92D635CE4C9C_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_values, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
CustomAttributeNamedArgumentU5BU5D_tC0A39D9401E28662213F5958EFF5D26D0681B440* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___0_values;
|
|
NullCheck(L_0);
|
|
CustomAttributeNamedArgumentU5BU5D_tC0A39D9401E28662213F5958EFF5D26D0681B440* L_1 = (CustomAttributeNamedArgumentU5BU5D_tC0A39D9401E28662213F5958EFF5D26D0681B440*)(CustomAttributeNamedArgumentU5BU5D_tC0A39D9401E28662213F5958EFF5D26D0681B440*)SZArrayNew(il2cpp_rgctx_data(method->rgctx_data, 0), (uint32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)));
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
CustomAttributeNamedArgumentU5BU5D_tC0A39D9401E28662213F5958EFF5D26D0681B440* L_2 = V_0;
|
|
int32_t L_3 = V_1;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___0_values;
|
|
int32_t L_5 = V_1;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = L_5;
|
|
RuntimeObject* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
NullCheck(L_2);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02)((*(CustomAttributeNamedArgument_t4EC1C2BB9943BEB7E77AC0870BE2A899E23B4E02*)UnBox(L_7, il2cpp_rgctx_data(method->rgctx_data, 1)))));
|
|
int32_t L_8 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t L_9 = V_1;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = ___0_values;
|
|
NullCheck(L_10);
|
|
if ((((int32_t)L_9) < ((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
CustomAttributeNamedArgumentU5BU5D_tC0A39D9401E28662213F5958EFF5D26D0681B440* L_11 = V_0;
|
|
return L_11;
|
|
}
|
|
}
|
|
// Method Definition Index: 7441
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeTypedArgumentU5BU5D_t6CAA09EC6AACBED57FC8B02C587D50BF6B738C6B* CustomAttributeData_UnboxValues_TisCustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F_m51C7AEFE8D7F38381B9A8D765E596D00E3EB6E89_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_values, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
CustomAttributeTypedArgumentU5BU5D_t6CAA09EC6AACBED57FC8B02C587D50BF6B738C6B* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___0_values;
|
|
NullCheck(L_0);
|
|
CustomAttributeTypedArgumentU5BU5D_t6CAA09EC6AACBED57FC8B02C587D50BF6B738C6B* L_1 = (CustomAttributeTypedArgumentU5BU5D_t6CAA09EC6AACBED57FC8B02C587D50BF6B738C6B*)(CustomAttributeTypedArgumentU5BU5D_t6CAA09EC6AACBED57FC8B02C587D50BF6B738C6B*)SZArrayNew(il2cpp_rgctx_data(method->rgctx_data, 0), (uint32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)));
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
CustomAttributeTypedArgumentU5BU5D_t6CAA09EC6AACBED57FC8B02C587D50BF6B738C6B* L_2 = V_0;
|
|
int32_t L_3 = V_1;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___0_values;
|
|
int32_t L_5 = V_1;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = L_5;
|
|
RuntimeObject* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
NullCheck(L_2);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F)((*(CustomAttributeTypedArgument_tAAA19ADE66B16A67D030C8C67D7ADB29A7BEC75F*)UnBox(L_7, il2cpp_rgctx_data(method->rgctx_data, 1)))));
|
|
int32_t L_8 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t L_9 = V_1;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = ___0_values;
|
|
NullCheck(L_10);
|
|
if ((((int32_t)L_9) < ((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
CustomAttributeTypedArgumentU5BU5D_t6CAA09EC6AACBED57FC8B02C587D50BF6B738C6B* L_11 = V_0;
|
|
return L_11;
|
|
}
|
|
}
|
|
// Method Definition Index: 7441
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* CustomAttributeData_UnboxValues_TisIl2CppFullySharedGenericAny_m8A35F6AFA3152D955AC5F5DE44F805EA42773A8A_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_values, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T_tFABA89096A3FC891574EE036D422A4D106829B20 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T_tFABA89096A3FC891574EE036D422A4D106829B20);
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___0_values;
|
|
NullCheck(L_0);
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_1 = (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)(__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)SZArrayNew(il2cpp_rgctx_data(method->rgctx_data, 0), (uint32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)));
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_2 = V_0;
|
|
int32_t L_3 = V_1;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___0_values;
|
|
int32_t L_5 = V_1;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = L_5;
|
|
RuntimeObject* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
void* L_9 = UnBox_Any(L_7, il2cpp_rgctx_data(method->rgctx_data, 1), L_8);
|
|
NullCheck(L_2);
|
|
il2cpp_codegen_memcpy((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)), (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_9)), SizeOf_T_tFABA89096A3FC891574EE036D422A4D106829B20);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->rgctx_data, 1), (void**)(L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)), (void*)(((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_9)));
|
|
int32_t L_10 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t L_11 = V_1;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = ___0_values;
|
|
NullCheck(L_12);
|
|
if ((((int32_t)L_11) < ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_13 = V_0;
|
|
return L_13;
|
|
}
|
|
}
|
|
// Method Definition Index: 7348
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_m50F93D8077A30306214D92B70DE00DBC355D209B_gshared (Assembly_t* ___0_element, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
Assembly_t* L_0 = ___0_element;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* L_3;
|
|
L_3 = CustomAttributeExtensions_GetCustomAttribute_m5BEDBB46CF1A8378A386E144E4591C9BEDAF1A9B(L_0, L_2, NULL);
|
|
return ((RuntimeObject*)Castclass((RuntimeObject*)L_3, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
}
|
|
}
|
|
// Method Definition Index: 7349
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_m5B4B712DB5F08EBF4518A1973C9F11C15A4BEAE9_gshared (MemberInfo_t* ___0_element, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
MemberInfo_t* L_0 = ___0_element;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* L_3;
|
|
L_3 = CustomAttributeExtensions_GetCustomAttribute_m7241E02800DB70BF4B7FE0DD35A57C32196B4030(L_0, L_2, NULL);
|
|
return ((RuntimeObject*)Castclass((RuntimeObject*)L_3, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
}
|
|
}
|
|
// Method Definition Index: 7351
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_m9EFD5CBA0FF05E990D56D14EE1BD1E289E6BE9EA_gshared (MemberInfo_t* ___0_element, bool ___1_inherit, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
MemberInfo_t* L_0 = ___0_element;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
bool L_3 = ___1_inherit;
|
|
Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* L_4;
|
|
L_4 = CustomAttributeExtensions_GetCustomAttribute_m8451F6949BEA92A69AE673CD95D6AD767B66880A(L_0, L_2, L_3, NULL);
|
|
return ((RuntimeObject*)Castclass((RuntimeObject*)L_4, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
}
|
|
}
|
|
// Method Definition Index: 7356
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CustomAttributeExtensions_GetCustomAttributes_TisRuntimeObject_m4D42F650E5486418C833A1D788800BFCBFF7AF11_gshared (MemberInfo_t* ___0_element, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
MemberInfo_t* L_0 = ___0_element;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeObject* L_3;
|
|
L_3 = CustomAttributeExtensions_GetCustomAttributes_mA663A241432473A89C830284F82A775F47A76FDC(L_0, L_2, NULL);
|
|
return ((RuntimeObject*)Castclass((RuntimeObject*)L_3, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
}
|
|
}
|
|
// Method Definition Index: 7358
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CustomAttributeExtensions_GetCustomAttributes_TisRuntimeObject_mBF71968FD8245DB3BE66890858B1877DCF8875CF_gshared (MemberInfo_t* ___0_element, bool ___1_inherit, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
MemberInfo_t* L_0 = ___0_element;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
bool L_3 = ___1_inherit;
|
|
RuntimeObject* L_4;
|
|
L_4 = CustomAttributeExtensions_GetCustomAttributes_m19F5D9C3B60FA00E4692C21EC0D59328FAF631AE(L_0, L_2, L_3, NULL);
|
|
return ((RuntimeObject*)Castclass((RuntimeObject*)L_4, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
}
|
|
}
|
|
// Method Definition Index: 10511
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m9E7E4DCE5828E839CBEB9C6ACFC507852ED0CEC6_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, bool ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DE82CFA3F86492F358D234AF986449070189743);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
String_t* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
RuntimeObject* V_6 = NULL;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
bool V_10 = false;
|
|
int32_t G_B8_0 = 0;
|
|
String_t* G_B12_0 = NULL;
|
|
int32_t G_B18_0 = 0;
|
|
String_t* G_B22_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___3_target;
|
|
NullCheck(L_0);
|
|
Type_t* L_1;
|
|
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
|
|
NullCheck((MemberInfo_t*)L_1);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_1);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_3 = ___4_targetPath;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_4 = (*(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*)L_3);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_5 = L_4;
|
|
RuntimeObject* L_6 = Box(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var, &L_5);
|
|
String_t* L_7;
|
|
L_7 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1, (RuntimeObject*)L_2, L_6, NULL);
|
|
V_0 = L_7;
|
|
int32_t L_8 = ___0_returnCode;
|
|
V_3 = L_8;
|
|
int32_t L_9 = V_3;
|
|
V_2 = L_9;
|
|
int32_t L_10 = V_2;
|
|
switch (L_10)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0213;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0233;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
String_t* L_11 = V_0;
|
|
RuntimeObject* L_12 = ___3_target;
|
|
NullCheck(L_12);
|
|
Type_t* L_13;
|
|
L_13 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_12, NULL);
|
|
NullCheck((MemberInfo_t*)L_13);
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_13);
|
|
String_t* L_15;
|
|
L_15 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_11, _stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7, L_14, _stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5, NULL);
|
|
V_4 = L_15;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
String_t* L_16 = V_0;
|
|
String_t* L_17;
|
|
L_17 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_16, _stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF, NULL);
|
|
V_4 = L_17;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_18 = ___2_sourcePath;
|
|
bool L_19;
|
|
L_19 = PropertyPath_get_IsEmpty_m5923CD28AB201F75C64F40AED27C7E42FC5DBF50(L_18, NULL);
|
|
V_5 = L_19;
|
|
bool L_20 = V_5;
|
|
if (!L_20)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_21 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_22;
|
|
L_22 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_22, (&V_6), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_24 = V_6;
|
|
G_B8_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_24) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_00ac;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
V_7 = (bool)G_B8_0;
|
|
bool L_25 = V_7;
|
|
if (!L_25)
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = L_27;
|
|
String_t* L_29 = V_0;
|
|
NullCheck(L_28);
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_29);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_30 = L_28;
|
|
NullCheck(L_30);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_31 = L_30;
|
|
Il2CppFakeBox<bool> L_32(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_33;
|
|
L_33 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_32), NULL);
|
|
NullCheck((MemberInfo_t*)L_33);
|
|
String_t* L_34;
|
|
L_34 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_33);
|
|
NullCheck(L_31);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_34);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_35 = L_31;
|
|
NullCheck(L_35);
|
|
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_36 = L_35;
|
|
RuntimeObject* L_37 = V_6;
|
|
NullCheck(L_37);
|
|
Type_t* L_38;
|
|
L_38 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_37, NULL);
|
|
NullCheck((MemberInfo_t*)L_38);
|
|
String_t* L_39;
|
|
L_39 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_38);
|
|
NullCheck(L_36);
|
|
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_39);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_40 = L_36;
|
|
NullCheck(L_40);
|
|
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_41;
|
|
L_41 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_40, NULL);
|
|
G_B12_0 = L_41;
|
|
goto IL_0125;
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
V_4 = G_B12_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_42 = ___2_sourcePath;
|
|
bool L_43;
|
|
L_43 = PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20((&___1_source), L_42, (&V_1), PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
V_8 = L_43;
|
|
bool L_44 = V_8;
|
|
if (!L_44)
|
|
{
|
|
goto IL_0204;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_45 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_46;
|
|
L_46 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_45, NULL);
|
|
bool L_47;
|
|
L_47 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_46, (&V_9), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_47)
|
|
{
|
|
goto IL_015a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_48 = V_9;
|
|
G_B18_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_48) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_015b;
|
|
}
|
|
|
|
IL_015a:
|
|
{
|
|
G_B18_0 = 0;
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
V_10 = (bool)G_B18_0;
|
|
bool L_49 = V_10;
|
|
if (!L_49)
|
|
{
|
|
goto IL_0203;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_51 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_52 = L_51;
|
|
String_t* L_53 = V_0;
|
|
NullCheck(L_52);
|
|
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_53);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_54 = L_52;
|
|
NullCheck(L_54);
|
|
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_55 = L_54;
|
|
Il2CppFakeBox<bool> L_56(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_57;
|
|
L_57 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_56), NULL);
|
|
NullCheck((MemberInfo_t*)L_57);
|
|
String_t* L_58;
|
|
L_58 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_57);
|
|
NullCheck(L_55);
|
|
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_58);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_59 = L_55;
|
|
NullCheck(L_59);
|
|
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_60 = L_59;
|
|
RuntimeObject* L_61 = V_9;
|
|
NullCheck(L_61);
|
|
Type_t* L_62;
|
|
L_62 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_61, NULL);
|
|
NullCheck((MemberInfo_t*)L_62);
|
|
String_t* L_63;
|
|
L_63 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_62);
|
|
NullCheck(L_60);
|
|
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_63);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_64 = L_60;
|
|
NullCheck(L_64);
|
|
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_65;
|
|
L_65 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_64, NULL);
|
|
G_B22_0 = L_65;
|
|
goto IL_01ff;
|
|
}
|
|
|
|
IL_01ff:
|
|
{
|
|
V_4 = G_B22_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0203:
|
|
{
|
|
}
|
|
|
|
IL_0204:
|
|
{
|
|
String_t* L_66 = V_0;
|
|
String_t* L_67;
|
|
L_67 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_66, _stringLiteral0DE82CFA3F86492F358D234AF986449070189743, NULL);
|
|
V_4 = L_67;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0213:
|
|
{
|
|
String_t* L_68 = V_0;
|
|
String_t* L_69;
|
|
L_69 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_68, _stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5, NULL);
|
|
V_4 = L_69;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
String_t* L_70 = V_0;
|
|
String_t* L_71;
|
|
L_71 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_70, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral846EBD88927A0A5178044365E1F013B802F123DC)), NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_72 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_72, L_71, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_72, method);
|
|
}
|
|
|
|
IL_0233:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_73 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_73, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, method);
|
|
}
|
|
|
|
IL_0239:
|
|
{
|
|
String_t* L_74 = V_4;
|
|
return L_74;
|
|
}
|
|
}
|
|
// Method Definition Index: 10511
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m2BB4E686E362E0B72CFE055ECC55E3F07D9DA26A_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, uint8_t ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DE82CFA3F86492F358D234AF986449070189743);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
String_t* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
RuntimeObject* V_6 = NULL;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
bool V_10 = false;
|
|
int32_t G_B8_0 = 0;
|
|
String_t* G_B12_0 = NULL;
|
|
int32_t G_B18_0 = 0;
|
|
String_t* G_B22_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___3_target;
|
|
NullCheck(L_0);
|
|
Type_t* L_1;
|
|
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
|
|
NullCheck((MemberInfo_t*)L_1);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_1);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_3 = ___4_targetPath;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_4 = (*(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*)L_3);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_5 = L_4;
|
|
RuntimeObject* L_6 = Box(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var, &L_5);
|
|
String_t* L_7;
|
|
L_7 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1, (RuntimeObject*)L_2, L_6, NULL);
|
|
V_0 = L_7;
|
|
int32_t L_8 = ___0_returnCode;
|
|
V_3 = L_8;
|
|
int32_t L_9 = V_3;
|
|
V_2 = L_9;
|
|
int32_t L_10 = V_2;
|
|
switch (L_10)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0213;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0233;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
String_t* L_11 = V_0;
|
|
RuntimeObject* L_12 = ___3_target;
|
|
NullCheck(L_12);
|
|
Type_t* L_13;
|
|
L_13 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_12, NULL);
|
|
NullCheck((MemberInfo_t*)L_13);
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_13);
|
|
String_t* L_15;
|
|
L_15 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_11, _stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7, L_14, _stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5, NULL);
|
|
V_4 = L_15;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
String_t* L_16 = V_0;
|
|
String_t* L_17;
|
|
L_17 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_16, _stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF, NULL);
|
|
V_4 = L_17;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_18 = ___2_sourcePath;
|
|
bool L_19;
|
|
L_19 = PropertyPath_get_IsEmpty_m5923CD28AB201F75C64F40AED27C7E42FC5DBF50(L_18, NULL);
|
|
V_5 = L_19;
|
|
bool L_20 = V_5;
|
|
if (!L_20)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_21 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_22;
|
|
L_22 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_22, (&V_6), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_24 = V_6;
|
|
G_B8_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_24) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_00ac;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
V_7 = (bool)G_B8_0;
|
|
bool L_25 = V_7;
|
|
if (!L_25)
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = L_27;
|
|
String_t* L_29 = V_0;
|
|
NullCheck(L_28);
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_29);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_30 = L_28;
|
|
NullCheck(L_30);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_31 = L_30;
|
|
Il2CppFakeBox<uint8_t> L_32(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_33;
|
|
L_33 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_32), NULL);
|
|
NullCheck((MemberInfo_t*)L_33);
|
|
String_t* L_34;
|
|
L_34 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_33);
|
|
NullCheck(L_31);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_34);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_35 = L_31;
|
|
NullCheck(L_35);
|
|
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_36 = L_35;
|
|
RuntimeObject* L_37 = V_6;
|
|
NullCheck(L_37);
|
|
Type_t* L_38;
|
|
L_38 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_37, NULL);
|
|
NullCheck((MemberInfo_t*)L_38);
|
|
String_t* L_39;
|
|
L_39 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_38);
|
|
NullCheck(L_36);
|
|
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_39);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_40 = L_36;
|
|
NullCheck(L_40);
|
|
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_41;
|
|
L_41 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_40, NULL);
|
|
G_B12_0 = L_41;
|
|
goto IL_0125;
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
V_4 = G_B12_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_42 = ___2_sourcePath;
|
|
bool L_43;
|
|
L_43 = PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20((&___1_source), L_42, (&V_1), PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
V_8 = L_43;
|
|
bool L_44 = V_8;
|
|
if (!L_44)
|
|
{
|
|
goto IL_0204;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_45 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_46;
|
|
L_46 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_45, NULL);
|
|
bool L_47;
|
|
L_47 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_46, (&V_9), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_47)
|
|
{
|
|
goto IL_015a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_48 = V_9;
|
|
G_B18_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_48) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_015b;
|
|
}
|
|
|
|
IL_015a:
|
|
{
|
|
G_B18_0 = 0;
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
V_10 = (bool)G_B18_0;
|
|
bool L_49 = V_10;
|
|
if (!L_49)
|
|
{
|
|
goto IL_0203;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_51 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_52 = L_51;
|
|
String_t* L_53 = V_0;
|
|
NullCheck(L_52);
|
|
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_53);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_54 = L_52;
|
|
NullCheck(L_54);
|
|
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_55 = L_54;
|
|
Il2CppFakeBox<uint8_t> L_56(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_57;
|
|
L_57 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_56), NULL);
|
|
NullCheck((MemberInfo_t*)L_57);
|
|
String_t* L_58;
|
|
L_58 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_57);
|
|
NullCheck(L_55);
|
|
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_58);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_59 = L_55;
|
|
NullCheck(L_59);
|
|
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_60 = L_59;
|
|
RuntimeObject* L_61 = V_9;
|
|
NullCheck(L_61);
|
|
Type_t* L_62;
|
|
L_62 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_61, NULL);
|
|
NullCheck((MemberInfo_t*)L_62);
|
|
String_t* L_63;
|
|
L_63 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_62);
|
|
NullCheck(L_60);
|
|
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_63);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_64 = L_60;
|
|
NullCheck(L_64);
|
|
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_65;
|
|
L_65 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_64, NULL);
|
|
G_B22_0 = L_65;
|
|
goto IL_01ff;
|
|
}
|
|
|
|
IL_01ff:
|
|
{
|
|
V_4 = G_B22_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0203:
|
|
{
|
|
}
|
|
|
|
IL_0204:
|
|
{
|
|
String_t* L_66 = V_0;
|
|
String_t* L_67;
|
|
L_67 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_66, _stringLiteral0DE82CFA3F86492F358D234AF986449070189743, NULL);
|
|
V_4 = L_67;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0213:
|
|
{
|
|
String_t* L_68 = V_0;
|
|
String_t* L_69;
|
|
L_69 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_68, _stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5, NULL);
|
|
V_4 = L_69;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
String_t* L_70 = V_0;
|
|
String_t* L_71;
|
|
L_71 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_70, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral846EBD88927A0A5178044365E1F013B802F123DC)), NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_72 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_72, L_71, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_72, method);
|
|
}
|
|
|
|
IL_0233:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_73 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_73, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, method);
|
|
}
|
|
|
|
IL_0239:
|
|
{
|
|
String_t* L_74 = V_4;
|
|
return L_74;
|
|
}
|
|
}
|
|
// Method Definition Index: 10511
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD538741205AF482803DA3A02E0A67C9B8209F810_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, Il2CppChar ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DE82CFA3F86492F358D234AF986449070189743);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
String_t* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
RuntimeObject* V_6 = NULL;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
bool V_10 = false;
|
|
int32_t G_B8_0 = 0;
|
|
String_t* G_B12_0 = NULL;
|
|
int32_t G_B18_0 = 0;
|
|
String_t* G_B22_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___3_target;
|
|
NullCheck(L_0);
|
|
Type_t* L_1;
|
|
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
|
|
NullCheck((MemberInfo_t*)L_1);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_1);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_3 = ___4_targetPath;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_4 = (*(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*)L_3);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_5 = L_4;
|
|
RuntimeObject* L_6 = Box(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var, &L_5);
|
|
String_t* L_7;
|
|
L_7 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1, (RuntimeObject*)L_2, L_6, NULL);
|
|
V_0 = L_7;
|
|
int32_t L_8 = ___0_returnCode;
|
|
V_3 = L_8;
|
|
int32_t L_9 = V_3;
|
|
V_2 = L_9;
|
|
int32_t L_10 = V_2;
|
|
switch (L_10)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0213;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0233;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
String_t* L_11 = V_0;
|
|
RuntimeObject* L_12 = ___3_target;
|
|
NullCheck(L_12);
|
|
Type_t* L_13;
|
|
L_13 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_12, NULL);
|
|
NullCheck((MemberInfo_t*)L_13);
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_13);
|
|
String_t* L_15;
|
|
L_15 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_11, _stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7, L_14, _stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5, NULL);
|
|
V_4 = L_15;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
String_t* L_16 = V_0;
|
|
String_t* L_17;
|
|
L_17 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_16, _stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF, NULL);
|
|
V_4 = L_17;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_18 = ___2_sourcePath;
|
|
bool L_19;
|
|
L_19 = PropertyPath_get_IsEmpty_m5923CD28AB201F75C64F40AED27C7E42FC5DBF50(L_18, NULL);
|
|
V_5 = L_19;
|
|
bool L_20 = V_5;
|
|
if (!L_20)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_21 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_22;
|
|
L_22 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_22, (&V_6), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_24 = V_6;
|
|
G_B8_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_24) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_00ac;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
V_7 = (bool)G_B8_0;
|
|
bool L_25 = V_7;
|
|
if (!L_25)
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = L_27;
|
|
String_t* L_29 = V_0;
|
|
NullCheck(L_28);
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_29);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_30 = L_28;
|
|
NullCheck(L_30);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_31 = L_30;
|
|
Il2CppFakeBox<Il2CppChar> L_32(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_33;
|
|
L_33 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_32), NULL);
|
|
NullCheck((MemberInfo_t*)L_33);
|
|
String_t* L_34;
|
|
L_34 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_33);
|
|
NullCheck(L_31);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_34);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_35 = L_31;
|
|
NullCheck(L_35);
|
|
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_36 = L_35;
|
|
RuntimeObject* L_37 = V_6;
|
|
NullCheck(L_37);
|
|
Type_t* L_38;
|
|
L_38 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_37, NULL);
|
|
NullCheck((MemberInfo_t*)L_38);
|
|
String_t* L_39;
|
|
L_39 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_38);
|
|
NullCheck(L_36);
|
|
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_39);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_40 = L_36;
|
|
NullCheck(L_40);
|
|
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_41;
|
|
L_41 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_40, NULL);
|
|
G_B12_0 = L_41;
|
|
goto IL_0125;
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
V_4 = G_B12_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_42 = ___2_sourcePath;
|
|
bool L_43;
|
|
L_43 = PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20((&___1_source), L_42, (&V_1), PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
V_8 = L_43;
|
|
bool L_44 = V_8;
|
|
if (!L_44)
|
|
{
|
|
goto IL_0204;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_45 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_46;
|
|
L_46 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_45, NULL);
|
|
bool L_47;
|
|
L_47 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_46, (&V_9), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_47)
|
|
{
|
|
goto IL_015a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_48 = V_9;
|
|
G_B18_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_48) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_015b;
|
|
}
|
|
|
|
IL_015a:
|
|
{
|
|
G_B18_0 = 0;
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
V_10 = (bool)G_B18_0;
|
|
bool L_49 = V_10;
|
|
if (!L_49)
|
|
{
|
|
goto IL_0203;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_51 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_52 = L_51;
|
|
String_t* L_53 = V_0;
|
|
NullCheck(L_52);
|
|
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_53);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_54 = L_52;
|
|
NullCheck(L_54);
|
|
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_55 = L_54;
|
|
Il2CppFakeBox<Il2CppChar> L_56(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_57;
|
|
L_57 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_56), NULL);
|
|
NullCheck((MemberInfo_t*)L_57);
|
|
String_t* L_58;
|
|
L_58 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_57);
|
|
NullCheck(L_55);
|
|
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_58);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_59 = L_55;
|
|
NullCheck(L_59);
|
|
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_60 = L_59;
|
|
RuntimeObject* L_61 = V_9;
|
|
NullCheck(L_61);
|
|
Type_t* L_62;
|
|
L_62 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_61, NULL);
|
|
NullCheck((MemberInfo_t*)L_62);
|
|
String_t* L_63;
|
|
L_63 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_62);
|
|
NullCheck(L_60);
|
|
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_63);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_64 = L_60;
|
|
NullCheck(L_64);
|
|
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_65;
|
|
L_65 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_64, NULL);
|
|
G_B22_0 = L_65;
|
|
goto IL_01ff;
|
|
}
|
|
|
|
IL_01ff:
|
|
{
|
|
V_4 = G_B22_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0203:
|
|
{
|
|
}
|
|
|
|
IL_0204:
|
|
{
|
|
String_t* L_66 = V_0;
|
|
String_t* L_67;
|
|
L_67 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_66, _stringLiteral0DE82CFA3F86492F358D234AF986449070189743, NULL);
|
|
V_4 = L_67;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0213:
|
|
{
|
|
String_t* L_68 = V_0;
|
|
String_t* L_69;
|
|
L_69 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_68, _stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5, NULL);
|
|
V_4 = L_69;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
String_t* L_70 = V_0;
|
|
String_t* L_71;
|
|
L_71 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_70, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral846EBD88927A0A5178044365E1F013B802F123DC)), NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_72 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_72, L_71, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_72, method);
|
|
}
|
|
|
|
IL_0233:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_73 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_73, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, method);
|
|
}
|
|
|
|
IL_0239:
|
|
{
|
|
String_t* L_74 = V_4;
|
|
return L_74;
|
|
}
|
|
}
|
|
// Method Definition Index: 10511
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_mEABCBB742A7CAE1D09910287456EE605D8CE4AEB_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, double ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DE82CFA3F86492F358D234AF986449070189743);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
String_t* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
RuntimeObject* V_6 = NULL;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
bool V_10 = false;
|
|
int32_t G_B8_0 = 0;
|
|
String_t* G_B12_0 = NULL;
|
|
int32_t G_B18_0 = 0;
|
|
String_t* G_B22_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___3_target;
|
|
NullCheck(L_0);
|
|
Type_t* L_1;
|
|
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
|
|
NullCheck((MemberInfo_t*)L_1);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_1);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_3 = ___4_targetPath;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_4 = (*(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*)L_3);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_5 = L_4;
|
|
RuntimeObject* L_6 = Box(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var, &L_5);
|
|
String_t* L_7;
|
|
L_7 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1, (RuntimeObject*)L_2, L_6, NULL);
|
|
V_0 = L_7;
|
|
int32_t L_8 = ___0_returnCode;
|
|
V_3 = L_8;
|
|
int32_t L_9 = V_3;
|
|
V_2 = L_9;
|
|
int32_t L_10 = V_2;
|
|
switch (L_10)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0213;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0233;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
String_t* L_11 = V_0;
|
|
RuntimeObject* L_12 = ___3_target;
|
|
NullCheck(L_12);
|
|
Type_t* L_13;
|
|
L_13 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_12, NULL);
|
|
NullCheck((MemberInfo_t*)L_13);
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_13);
|
|
String_t* L_15;
|
|
L_15 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_11, _stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7, L_14, _stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5, NULL);
|
|
V_4 = L_15;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
String_t* L_16 = V_0;
|
|
String_t* L_17;
|
|
L_17 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_16, _stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF, NULL);
|
|
V_4 = L_17;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_18 = ___2_sourcePath;
|
|
bool L_19;
|
|
L_19 = PropertyPath_get_IsEmpty_m5923CD28AB201F75C64F40AED27C7E42FC5DBF50(L_18, NULL);
|
|
V_5 = L_19;
|
|
bool L_20 = V_5;
|
|
if (!L_20)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_21 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_22;
|
|
L_22 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_22, (&V_6), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_24 = V_6;
|
|
G_B8_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_24) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_00ac;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
V_7 = (bool)G_B8_0;
|
|
bool L_25 = V_7;
|
|
if (!L_25)
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = L_27;
|
|
String_t* L_29 = V_0;
|
|
NullCheck(L_28);
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_29);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_30 = L_28;
|
|
NullCheck(L_30);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_31 = L_30;
|
|
Il2CppFakeBox<double> L_32(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_33;
|
|
L_33 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_32), NULL);
|
|
NullCheck((MemberInfo_t*)L_33);
|
|
String_t* L_34;
|
|
L_34 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_33);
|
|
NullCheck(L_31);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_34);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_35 = L_31;
|
|
NullCheck(L_35);
|
|
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_36 = L_35;
|
|
RuntimeObject* L_37 = V_6;
|
|
NullCheck(L_37);
|
|
Type_t* L_38;
|
|
L_38 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_37, NULL);
|
|
NullCheck((MemberInfo_t*)L_38);
|
|
String_t* L_39;
|
|
L_39 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_38);
|
|
NullCheck(L_36);
|
|
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_39);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_40 = L_36;
|
|
NullCheck(L_40);
|
|
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_41;
|
|
L_41 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_40, NULL);
|
|
G_B12_0 = L_41;
|
|
goto IL_0125;
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
V_4 = G_B12_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_42 = ___2_sourcePath;
|
|
bool L_43;
|
|
L_43 = PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20((&___1_source), L_42, (&V_1), PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
V_8 = L_43;
|
|
bool L_44 = V_8;
|
|
if (!L_44)
|
|
{
|
|
goto IL_0204;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_45 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_46;
|
|
L_46 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_45, NULL);
|
|
bool L_47;
|
|
L_47 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_46, (&V_9), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_47)
|
|
{
|
|
goto IL_015a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_48 = V_9;
|
|
G_B18_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_48) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_015b;
|
|
}
|
|
|
|
IL_015a:
|
|
{
|
|
G_B18_0 = 0;
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
V_10 = (bool)G_B18_0;
|
|
bool L_49 = V_10;
|
|
if (!L_49)
|
|
{
|
|
goto IL_0203;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_51 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_52 = L_51;
|
|
String_t* L_53 = V_0;
|
|
NullCheck(L_52);
|
|
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_53);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_54 = L_52;
|
|
NullCheck(L_54);
|
|
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_55 = L_54;
|
|
Il2CppFakeBox<double> L_56(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_57;
|
|
L_57 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_56), NULL);
|
|
NullCheck((MemberInfo_t*)L_57);
|
|
String_t* L_58;
|
|
L_58 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_57);
|
|
NullCheck(L_55);
|
|
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_58);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_59 = L_55;
|
|
NullCheck(L_59);
|
|
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_60 = L_59;
|
|
RuntimeObject* L_61 = V_9;
|
|
NullCheck(L_61);
|
|
Type_t* L_62;
|
|
L_62 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_61, NULL);
|
|
NullCheck((MemberInfo_t*)L_62);
|
|
String_t* L_63;
|
|
L_63 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_62);
|
|
NullCheck(L_60);
|
|
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_63);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_64 = L_60;
|
|
NullCheck(L_64);
|
|
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_65;
|
|
L_65 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_64, NULL);
|
|
G_B22_0 = L_65;
|
|
goto IL_01ff;
|
|
}
|
|
|
|
IL_01ff:
|
|
{
|
|
V_4 = G_B22_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0203:
|
|
{
|
|
}
|
|
|
|
IL_0204:
|
|
{
|
|
String_t* L_66 = V_0;
|
|
String_t* L_67;
|
|
L_67 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_66, _stringLiteral0DE82CFA3F86492F358D234AF986449070189743, NULL);
|
|
V_4 = L_67;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0213:
|
|
{
|
|
String_t* L_68 = V_0;
|
|
String_t* L_69;
|
|
L_69 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_68, _stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5, NULL);
|
|
V_4 = L_69;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
String_t* L_70 = V_0;
|
|
String_t* L_71;
|
|
L_71 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_70, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral846EBD88927A0A5178044365E1F013B802F123DC)), NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_72 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_72, L_71, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_72, method);
|
|
}
|
|
|
|
IL_0233:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_73 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_73, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, method);
|
|
}
|
|
|
|
IL_0239:
|
|
{
|
|
String_t* L_74 = V_4;
|
|
return L_74;
|
|
}
|
|
}
|
|
// Method Definition Index: 10511
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisInt16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_mD352A5FD1DE2B0820D7BFB91DA2ACC240A372C0A_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, int16_t ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DE82CFA3F86492F358D234AF986449070189743);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
String_t* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
RuntimeObject* V_6 = NULL;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
bool V_10 = false;
|
|
int32_t G_B8_0 = 0;
|
|
String_t* G_B12_0 = NULL;
|
|
int32_t G_B18_0 = 0;
|
|
String_t* G_B22_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___3_target;
|
|
NullCheck(L_0);
|
|
Type_t* L_1;
|
|
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
|
|
NullCheck((MemberInfo_t*)L_1);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_1);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_3 = ___4_targetPath;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_4 = (*(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*)L_3);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_5 = L_4;
|
|
RuntimeObject* L_6 = Box(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var, &L_5);
|
|
String_t* L_7;
|
|
L_7 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1, (RuntimeObject*)L_2, L_6, NULL);
|
|
V_0 = L_7;
|
|
int32_t L_8 = ___0_returnCode;
|
|
V_3 = L_8;
|
|
int32_t L_9 = V_3;
|
|
V_2 = L_9;
|
|
int32_t L_10 = V_2;
|
|
switch (L_10)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0213;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0233;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
String_t* L_11 = V_0;
|
|
RuntimeObject* L_12 = ___3_target;
|
|
NullCheck(L_12);
|
|
Type_t* L_13;
|
|
L_13 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_12, NULL);
|
|
NullCheck((MemberInfo_t*)L_13);
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_13);
|
|
String_t* L_15;
|
|
L_15 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_11, _stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7, L_14, _stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5, NULL);
|
|
V_4 = L_15;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
String_t* L_16 = V_0;
|
|
String_t* L_17;
|
|
L_17 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_16, _stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF, NULL);
|
|
V_4 = L_17;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_18 = ___2_sourcePath;
|
|
bool L_19;
|
|
L_19 = PropertyPath_get_IsEmpty_m5923CD28AB201F75C64F40AED27C7E42FC5DBF50(L_18, NULL);
|
|
V_5 = L_19;
|
|
bool L_20 = V_5;
|
|
if (!L_20)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_21 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_22;
|
|
L_22 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_22, (&V_6), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_24 = V_6;
|
|
G_B8_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_24) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_00ac;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
V_7 = (bool)G_B8_0;
|
|
bool L_25 = V_7;
|
|
if (!L_25)
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = L_27;
|
|
String_t* L_29 = V_0;
|
|
NullCheck(L_28);
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_29);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_30 = L_28;
|
|
NullCheck(L_30);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_31 = L_30;
|
|
Il2CppFakeBox<int16_t> L_32(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_33;
|
|
L_33 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_32), NULL);
|
|
NullCheck((MemberInfo_t*)L_33);
|
|
String_t* L_34;
|
|
L_34 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_33);
|
|
NullCheck(L_31);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_34);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_35 = L_31;
|
|
NullCheck(L_35);
|
|
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_36 = L_35;
|
|
RuntimeObject* L_37 = V_6;
|
|
NullCheck(L_37);
|
|
Type_t* L_38;
|
|
L_38 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_37, NULL);
|
|
NullCheck((MemberInfo_t*)L_38);
|
|
String_t* L_39;
|
|
L_39 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_38);
|
|
NullCheck(L_36);
|
|
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_39);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_40 = L_36;
|
|
NullCheck(L_40);
|
|
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_41;
|
|
L_41 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_40, NULL);
|
|
G_B12_0 = L_41;
|
|
goto IL_0125;
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
V_4 = G_B12_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_42 = ___2_sourcePath;
|
|
bool L_43;
|
|
L_43 = PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20((&___1_source), L_42, (&V_1), PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
V_8 = L_43;
|
|
bool L_44 = V_8;
|
|
if (!L_44)
|
|
{
|
|
goto IL_0204;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_45 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_46;
|
|
L_46 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_45, NULL);
|
|
bool L_47;
|
|
L_47 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_46, (&V_9), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_47)
|
|
{
|
|
goto IL_015a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_48 = V_9;
|
|
G_B18_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_48) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_015b;
|
|
}
|
|
|
|
IL_015a:
|
|
{
|
|
G_B18_0 = 0;
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
V_10 = (bool)G_B18_0;
|
|
bool L_49 = V_10;
|
|
if (!L_49)
|
|
{
|
|
goto IL_0203;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_51 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_52 = L_51;
|
|
String_t* L_53 = V_0;
|
|
NullCheck(L_52);
|
|
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_53);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_54 = L_52;
|
|
NullCheck(L_54);
|
|
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_55 = L_54;
|
|
Il2CppFakeBox<int16_t> L_56(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_57;
|
|
L_57 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_56), NULL);
|
|
NullCheck((MemberInfo_t*)L_57);
|
|
String_t* L_58;
|
|
L_58 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_57);
|
|
NullCheck(L_55);
|
|
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_58);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_59 = L_55;
|
|
NullCheck(L_59);
|
|
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_60 = L_59;
|
|
RuntimeObject* L_61 = V_9;
|
|
NullCheck(L_61);
|
|
Type_t* L_62;
|
|
L_62 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_61, NULL);
|
|
NullCheck((MemberInfo_t*)L_62);
|
|
String_t* L_63;
|
|
L_63 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_62);
|
|
NullCheck(L_60);
|
|
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_63);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_64 = L_60;
|
|
NullCheck(L_64);
|
|
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_65;
|
|
L_65 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_64, NULL);
|
|
G_B22_0 = L_65;
|
|
goto IL_01ff;
|
|
}
|
|
|
|
IL_01ff:
|
|
{
|
|
V_4 = G_B22_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0203:
|
|
{
|
|
}
|
|
|
|
IL_0204:
|
|
{
|
|
String_t* L_66 = V_0;
|
|
String_t* L_67;
|
|
L_67 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_66, _stringLiteral0DE82CFA3F86492F358D234AF986449070189743, NULL);
|
|
V_4 = L_67;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0213:
|
|
{
|
|
String_t* L_68 = V_0;
|
|
String_t* L_69;
|
|
L_69 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_68, _stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5, NULL);
|
|
V_4 = L_69;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
String_t* L_70 = V_0;
|
|
String_t* L_71;
|
|
L_71 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_70, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral846EBD88927A0A5178044365E1F013B802F123DC)), NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_72 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_72, L_71, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_72, method);
|
|
}
|
|
|
|
IL_0233:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_73 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_73, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, method);
|
|
}
|
|
|
|
IL_0239:
|
|
{
|
|
String_t* L_74 = V_4;
|
|
return L_74;
|
|
}
|
|
}
|
|
// Method Definition Index: 10511
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mEB66817134A95892AC98FEB5E6177BDEE90DA11E_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, int32_t ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DE82CFA3F86492F358D234AF986449070189743);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
String_t* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
RuntimeObject* V_6 = NULL;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
bool V_10 = false;
|
|
int32_t G_B8_0 = 0;
|
|
String_t* G_B12_0 = NULL;
|
|
int32_t G_B18_0 = 0;
|
|
String_t* G_B22_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___3_target;
|
|
NullCheck(L_0);
|
|
Type_t* L_1;
|
|
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
|
|
NullCheck((MemberInfo_t*)L_1);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_1);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_3 = ___4_targetPath;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_4 = (*(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*)L_3);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_5 = L_4;
|
|
RuntimeObject* L_6 = Box(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var, &L_5);
|
|
String_t* L_7;
|
|
L_7 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1, (RuntimeObject*)L_2, L_6, NULL);
|
|
V_0 = L_7;
|
|
int32_t L_8 = ___0_returnCode;
|
|
V_3 = L_8;
|
|
int32_t L_9 = V_3;
|
|
V_2 = L_9;
|
|
int32_t L_10 = V_2;
|
|
switch (L_10)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0213;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0233;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
String_t* L_11 = V_0;
|
|
RuntimeObject* L_12 = ___3_target;
|
|
NullCheck(L_12);
|
|
Type_t* L_13;
|
|
L_13 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_12, NULL);
|
|
NullCheck((MemberInfo_t*)L_13);
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_13);
|
|
String_t* L_15;
|
|
L_15 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_11, _stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7, L_14, _stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5, NULL);
|
|
V_4 = L_15;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
String_t* L_16 = V_0;
|
|
String_t* L_17;
|
|
L_17 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_16, _stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF, NULL);
|
|
V_4 = L_17;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_18 = ___2_sourcePath;
|
|
bool L_19;
|
|
L_19 = PropertyPath_get_IsEmpty_m5923CD28AB201F75C64F40AED27C7E42FC5DBF50(L_18, NULL);
|
|
V_5 = L_19;
|
|
bool L_20 = V_5;
|
|
if (!L_20)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_21 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_22;
|
|
L_22 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_22, (&V_6), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_24 = V_6;
|
|
G_B8_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_24) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_00ac;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
V_7 = (bool)G_B8_0;
|
|
bool L_25 = V_7;
|
|
if (!L_25)
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = L_27;
|
|
String_t* L_29 = V_0;
|
|
NullCheck(L_28);
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_29);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_30 = L_28;
|
|
NullCheck(L_30);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_31 = L_30;
|
|
Il2CppFakeBox<int32_t> L_32(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_33;
|
|
L_33 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_32), NULL);
|
|
NullCheck((MemberInfo_t*)L_33);
|
|
String_t* L_34;
|
|
L_34 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_33);
|
|
NullCheck(L_31);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_34);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_35 = L_31;
|
|
NullCheck(L_35);
|
|
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_36 = L_35;
|
|
RuntimeObject* L_37 = V_6;
|
|
NullCheck(L_37);
|
|
Type_t* L_38;
|
|
L_38 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_37, NULL);
|
|
NullCheck((MemberInfo_t*)L_38);
|
|
String_t* L_39;
|
|
L_39 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_38);
|
|
NullCheck(L_36);
|
|
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_39);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_40 = L_36;
|
|
NullCheck(L_40);
|
|
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_41;
|
|
L_41 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_40, NULL);
|
|
G_B12_0 = L_41;
|
|
goto IL_0125;
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
V_4 = G_B12_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_42 = ___2_sourcePath;
|
|
bool L_43;
|
|
L_43 = PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20((&___1_source), L_42, (&V_1), PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
V_8 = L_43;
|
|
bool L_44 = V_8;
|
|
if (!L_44)
|
|
{
|
|
goto IL_0204;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_45 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_46;
|
|
L_46 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_45, NULL);
|
|
bool L_47;
|
|
L_47 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_46, (&V_9), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_47)
|
|
{
|
|
goto IL_015a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_48 = V_9;
|
|
G_B18_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_48) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_015b;
|
|
}
|
|
|
|
IL_015a:
|
|
{
|
|
G_B18_0 = 0;
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
V_10 = (bool)G_B18_0;
|
|
bool L_49 = V_10;
|
|
if (!L_49)
|
|
{
|
|
goto IL_0203;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_51 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_52 = L_51;
|
|
String_t* L_53 = V_0;
|
|
NullCheck(L_52);
|
|
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_53);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_54 = L_52;
|
|
NullCheck(L_54);
|
|
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_55 = L_54;
|
|
Il2CppFakeBox<int32_t> L_56(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_57;
|
|
L_57 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_56), NULL);
|
|
NullCheck((MemberInfo_t*)L_57);
|
|
String_t* L_58;
|
|
L_58 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_57);
|
|
NullCheck(L_55);
|
|
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_58);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_59 = L_55;
|
|
NullCheck(L_59);
|
|
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_60 = L_59;
|
|
RuntimeObject* L_61 = V_9;
|
|
NullCheck(L_61);
|
|
Type_t* L_62;
|
|
L_62 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_61, NULL);
|
|
NullCheck((MemberInfo_t*)L_62);
|
|
String_t* L_63;
|
|
L_63 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_62);
|
|
NullCheck(L_60);
|
|
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_63);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_64 = L_60;
|
|
NullCheck(L_64);
|
|
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_65;
|
|
L_65 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_64, NULL);
|
|
G_B22_0 = L_65;
|
|
goto IL_01ff;
|
|
}
|
|
|
|
IL_01ff:
|
|
{
|
|
V_4 = G_B22_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0203:
|
|
{
|
|
}
|
|
|
|
IL_0204:
|
|
{
|
|
String_t* L_66 = V_0;
|
|
String_t* L_67;
|
|
L_67 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_66, _stringLiteral0DE82CFA3F86492F358D234AF986449070189743, NULL);
|
|
V_4 = L_67;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0213:
|
|
{
|
|
String_t* L_68 = V_0;
|
|
String_t* L_69;
|
|
L_69 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_68, _stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5, NULL);
|
|
V_4 = L_69;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
String_t* L_70 = V_0;
|
|
String_t* L_71;
|
|
L_71 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_70, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral846EBD88927A0A5178044365E1F013B802F123DC)), NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_72 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_72, L_71, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_72, method);
|
|
}
|
|
|
|
IL_0233:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_73 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_73, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, method);
|
|
}
|
|
|
|
IL_0239:
|
|
{
|
|
String_t* L_74 = V_4;
|
|
return L_74;
|
|
}
|
|
}
|
|
// Method Definition Index: 10511
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m5F50CBF79D617F92D22DD503F44A3B76E6CBD944_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, int64_t ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DE82CFA3F86492F358D234AF986449070189743);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
String_t* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
RuntimeObject* V_6 = NULL;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
bool V_10 = false;
|
|
int32_t G_B8_0 = 0;
|
|
String_t* G_B12_0 = NULL;
|
|
int32_t G_B18_0 = 0;
|
|
String_t* G_B22_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___3_target;
|
|
NullCheck(L_0);
|
|
Type_t* L_1;
|
|
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
|
|
NullCheck((MemberInfo_t*)L_1);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_1);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_3 = ___4_targetPath;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_4 = (*(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*)L_3);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_5 = L_4;
|
|
RuntimeObject* L_6 = Box(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var, &L_5);
|
|
String_t* L_7;
|
|
L_7 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1, (RuntimeObject*)L_2, L_6, NULL);
|
|
V_0 = L_7;
|
|
int32_t L_8 = ___0_returnCode;
|
|
V_3 = L_8;
|
|
int32_t L_9 = V_3;
|
|
V_2 = L_9;
|
|
int32_t L_10 = V_2;
|
|
switch (L_10)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0213;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0233;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
String_t* L_11 = V_0;
|
|
RuntimeObject* L_12 = ___3_target;
|
|
NullCheck(L_12);
|
|
Type_t* L_13;
|
|
L_13 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_12, NULL);
|
|
NullCheck((MemberInfo_t*)L_13);
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_13);
|
|
String_t* L_15;
|
|
L_15 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_11, _stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7, L_14, _stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5, NULL);
|
|
V_4 = L_15;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
String_t* L_16 = V_0;
|
|
String_t* L_17;
|
|
L_17 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_16, _stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF, NULL);
|
|
V_4 = L_17;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_18 = ___2_sourcePath;
|
|
bool L_19;
|
|
L_19 = PropertyPath_get_IsEmpty_m5923CD28AB201F75C64F40AED27C7E42FC5DBF50(L_18, NULL);
|
|
V_5 = L_19;
|
|
bool L_20 = V_5;
|
|
if (!L_20)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_21 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_22;
|
|
L_22 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_22, (&V_6), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_24 = V_6;
|
|
G_B8_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_24) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_00ac;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
V_7 = (bool)G_B8_0;
|
|
bool L_25 = V_7;
|
|
if (!L_25)
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = L_27;
|
|
String_t* L_29 = V_0;
|
|
NullCheck(L_28);
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_29);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_30 = L_28;
|
|
NullCheck(L_30);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_31 = L_30;
|
|
Il2CppFakeBox<int64_t> L_32(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_33;
|
|
L_33 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_32), NULL);
|
|
NullCheck((MemberInfo_t*)L_33);
|
|
String_t* L_34;
|
|
L_34 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_33);
|
|
NullCheck(L_31);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_34);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_35 = L_31;
|
|
NullCheck(L_35);
|
|
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_36 = L_35;
|
|
RuntimeObject* L_37 = V_6;
|
|
NullCheck(L_37);
|
|
Type_t* L_38;
|
|
L_38 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_37, NULL);
|
|
NullCheck((MemberInfo_t*)L_38);
|
|
String_t* L_39;
|
|
L_39 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_38);
|
|
NullCheck(L_36);
|
|
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_39);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_40 = L_36;
|
|
NullCheck(L_40);
|
|
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_41;
|
|
L_41 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_40, NULL);
|
|
G_B12_0 = L_41;
|
|
goto IL_0125;
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
V_4 = G_B12_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_42 = ___2_sourcePath;
|
|
bool L_43;
|
|
L_43 = PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20((&___1_source), L_42, (&V_1), PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
V_8 = L_43;
|
|
bool L_44 = V_8;
|
|
if (!L_44)
|
|
{
|
|
goto IL_0204;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_45 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_46;
|
|
L_46 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_45, NULL);
|
|
bool L_47;
|
|
L_47 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_46, (&V_9), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_47)
|
|
{
|
|
goto IL_015a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_48 = V_9;
|
|
G_B18_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_48) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_015b;
|
|
}
|
|
|
|
IL_015a:
|
|
{
|
|
G_B18_0 = 0;
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
V_10 = (bool)G_B18_0;
|
|
bool L_49 = V_10;
|
|
if (!L_49)
|
|
{
|
|
goto IL_0203;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_51 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_52 = L_51;
|
|
String_t* L_53 = V_0;
|
|
NullCheck(L_52);
|
|
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_53);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_54 = L_52;
|
|
NullCheck(L_54);
|
|
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_55 = L_54;
|
|
Il2CppFakeBox<int64_t> L_56(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_57;
|
|
L_57 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_56), NULL);
|
|
NullCheck((MemberInfo_t*)L_57);
|
|
String_t* L_58;
|
|
L_58 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_57);
|
|
NullCheck(L_55);
|
|
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_58);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_59 = L_55;
|
|
NullCheck(L_59);
|
|
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_60 = L_59;
|
|
RuntimeObject* L_61 = V_9;
|
|
NullCheck(L_61);
|
|
Type_t* L_62;
|
|
L_62 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_61, NULL);
|
|
NullCheck((MemberInfo_t*)L_62);
|
|
String_t* L_63;
|
|
L_63 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_62);
|
|
NullCheck(L_60);
|
|
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_63);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_64 = L_60;
|
|
NullCheck(L_64);
|
|
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_65;
|
|
L_65 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_64, NULL);
|
|
G_B22_0 = L_65;
|
|
goto IL_01ff;
|
|
}
|
|
|
|
IL_01ff:
|
|
{
|
|
V_4 = G_B22_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0203:
|
|
{
|
|
}
|
|
|
|
IL_0204:
|
|
{
|
|
String_t* L_66 = V_0;
|
|
String_t* L_67;
|
|
L_67 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_66, _stringLiteral0DE82CFA3F86492F358D234AF986449070189743, NULL);
|
|
V_4 = L_67;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0213:
|
|
{
|
|
String_t* L_68 = V_0;
|
|
String_t* L_69;
|
|
L_69 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_68, _stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5, NULL);
|
|
V_4 = L_69;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
String_t* L_70 = V_0;
|
|
String_t* L_71;
|
|
L_71 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_70, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral846EBD88927A0A5178044365E1F013B802F123DC)), NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_72 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_72, L_71, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_72, method);
|
|
}
|
|
|
|
IL_0233:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_73 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_73, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, method);
|
|
}
|
|
|
|
IL_0239:
|
|
{
|
|
String_t* L_74 = V_4;
|
|
return L_74;
|
|
}
|
|
}
|
|
// Method Definition Index: 10511
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisRuntimeObject_mF3A7F00209C07E2578250228DF1849108CE77911_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, RuntimeObject* ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IProperty_t9DAAF3D1ACD042DA2D622152506F58CE625EF697_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DE82CFA3F86492F358D234AF986449070189743);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7FB0D9E4FACEEDAB18AAE0CBAD68E80441858BD9);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA4CA0091D7FA5EB653D78A68B103F9C68A8F9EF0);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD1EA222166F21A927FA1BA3626A8EBDB404B9FCE);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
String_t* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
RuntimeObject* V_6 = NULL;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
bool V_10 = false;
|
|
int32_t G_B8_0 = 0;
|
|
String_t* G_B12_0 = NULL;
|
|
int32_t G_B18_0 = 0;
|
|
String_t* G_B22_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___3_target;
|
|
NullCheck(L_0);
|
|
Type_t* L_1;
|
|
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
|
|
NullCheck((MemberInfo_t*)L_1);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_1);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_3 = ___4_targetPath;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_4 = (*(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*)L_3);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_5 = L_4;
|
|
RuntimeObject* L_6 = Box(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var, &L_5);
|
|
String_t* L_7;
|
|
L_7 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1, (RuntimeObject*)L_2, L_6, NULL);
|
|
V_0 = L_7;
|
|
int32_t L_8 = ___0_returnCode;
|
|
V_3 = L_8;
|
|
int32_t L_9 = V_3;
|
|
V_2 = L_9;
|
|
int32_t L_10 = V_2;
|
|
switch (L_10)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0213;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0233;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
String_t* L_11 = V_0;
|
|
RuntimeObject* L_12 = ___3_target;
|
|
NullCheck(L_12);
|
|
Type_t* L_13;
|
|
L_13 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_12, NULL);
|
|
NullCheck((MemberInfo_t*)L_13);
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_13);
|
|
String_t* L_15;
|
|
L_15 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_11, _stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7, L_14, _stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5, NULL);
|
|
V_4 = L_15;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
String_t* L_16 = V_0;
|
|
String_t* L_17;
|
|
L_17 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_16, _stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF, NULL);
|
|
V_4 = L_17;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_18 = ___2_sourcePath;
|
|
bool L_19;
|
|
L_19 = PropertyPath_get_IsEmpty_m5923CD28AB201F75C64F40AED27C7E42FC5DBF50(L_18, NULL);
|
|
V_5 = L_19;
|
|
bool L_20 = V_5;
|
|
if (!L_20)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_21 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_22;
|
|
L_22 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_22, (&V_6), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_24 = V_6;
|
|
G_B8_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_24) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_00ac;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
V_7 = (bool)G_B8_0;
|
|
bool L_25 = V_7;
|
|
if (!L_25)
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_26 = ___5_extractedValueFromSource;
|
|
if (!L_26)
|
|
{
|
|
goto IL_0109;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = L_27;
|
|
String_t* L_29 = V_0;
|
|
NullCheck(L_28);
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_29);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_30 = L_28;
|
|
NullCheck(L_30);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_31 = L_30;
|
|
NullCheck((___5_extractedValueFromSource));
|
|
Type_t* L_32;
|
|
L_32 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((___5_extractedValueFromSource), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
NullCheck((MemberInfo_t*)L_32);
|
|
String_t* L_33;
|
|
L_33 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_32);
|
|
NullCheck(L_31);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_33);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_34 = L_31;
|
|
NullCheck(L_34);
|
|
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_35 = L_34;
|
|
RuntimeObject* L_36 = V_6;
|
|
NullCheck(L_36);
|
|
Type_t* L_37;
|
|
L_37 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_36, NULL);
|
|
NullCheck((MemberInfo_t*)L_37);
|
|
String_t* L_38;
|
|
L_38 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_37);
|
|
NullCheck(L_35);
|
|
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_38);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_39 = L_35;
|
|
NullCheck(L_39);
|
|
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_40;
|
|
L_40 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_39, NULL);
|
|
G_B12_0 = L_40;
|
|
goto IL_0125;
|
|
}
|
|
|
|
IL_0109:
|
|
{
|
|
String_t* L_41 = V_0;
|
|
RuntimeObject* L_42 = V_6;
|
|
NullCheck(L_42);
|
|
Type_t* L_43;
|
|
L_43 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_42, NULL);
|
|
NullCheck((MemberInfo_t*)L_43);
|
|
String_t* L_44;
|
|
L_44 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_43);
|
|
String_t* L_45;
|
|
L_45 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_41, _stringLiteralD1EA222166F21A927FA1BA3626A8EBDB404B9FCE, L_44, _stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F, NULL);
|
|
G_B12_0 = L_45;
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
V_4 = G_B12_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_46 = ___2_sourcePath;
|
|
bool L_47;
|
|
L_47 = PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20((&___1_source), L_46, (&V_1), PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
V_8 = L_47;
|
|
bool L_48 = V_8;
|
|
if (!L_48)
|
|
{
|
|
goto IL_0204;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_49 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_50;
|
|
L_50 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_49, NULL);
|
|
bool L_51;
|
|
L_51 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_50, (&V_9), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_51)
|
|
{
|
|
goto IL_015a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_52 = V_9;
|
|
G_B18_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_52) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_015b;
|
|
}
|
|
|
|
IL_015a:
|
|
{
|
|
G_B18_0 = 0;
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
V_10 = (bool)G_B18_0;
|
|
bool L_53 = V_10;
|
|
if (!L_53)
|
|
{
|
|
goto IL_0203;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_54 = ___5_extractedValueFromSource;
|
|
if (!L_54)
|
|
{
|
|
goto IL_01bb;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_55 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_56 = L_55;
|
|
String_t* L_57 = V_0;
|
|
NullCheck(L_56);
|
|
(L_56)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_57);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_58 = L_56;
|
|
NullCheck(L_58);
|
|
(L_58)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_59 = L_58;
|
|
NullCheck((___5_extractedValueFromSource));
|
|
Type_t* L_60;
|
|
L_60 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((___5_extractedValueFromSource), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
NullCheck((MemberInfo_t*)L_60);
|
|
String_t* L_61;
|
|
L_61 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_60);
|
|
NullCheck(L_59);
|
|
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_61);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_62 = L_59;
|
|
NullCheck(L_62);
|
|
(L_62)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_63 = L_62;
|
|
RuntimeObject* L_64 = V_9;
|
|
NullCheck(L_64);
|
|
Type_t* L_65;
|
|
L_65 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_64, NULL);
|
|
NullCheck((MemberInfo_t*)L_65);
|
|
String_t* L_66;
|
|
L_66 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_65);
|
|
NullCheck(L_63);
|
|
(L_63)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_66);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_67 = L_63;
|
|
NullCheck(L_67);
|
|
(L_67)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_68;
|
|
L_68 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_67, NULL);
|
|
G_B22_0 = L_68;
|
|
goto IL_01ff;
|
|
}
|
|
|
|
IL_01bb:
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_69 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_70 = L_69;
|
|
String_t* L_71 = V_0;
|
|
NullCheck(L_70);
|
|
(L_70)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_71);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_72 = L_70;
|
|
NullCheck(L_72);
|
|
(L_72)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral7FB0D9E4FACEEDAB18AAE0CBAD68E80441858BD9);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_73 = L_72;
|
|
RuntimeObject* L_74 = V_1;
|
|
NullCheck(L_74);
|
|
Type_t* L_75;
|
|
L_75 = InterfaceFuncInvoker0< Type_t* >::Invoke(1, IProperty_t9DAAF3D1ACD042DA2D622152506F58CE625EF697_il2cpp_TypeInfo_var, L_74);
|
|
NullCheck((MemberInfo_t*)L_75);
|
|
String_t* L_76;
|
|
L_76 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_75);
|
|
NullCheck(L_73);
|
|
(L_73)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_76);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_77 = L_73;
|
|
NullCheck(L_77);
|
|
(L_77)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteralA4CA0091D7FA5EB653D78A68B103F9C68A8F9EF0);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_78 = L_77;
|
|
RuntimeObject* L_79 = V_9;
|
|
NullCheck(L_79);
|
|
Type_t* L_80;
|
|
L_80 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_79, NULL);
|
|
NullCheck((MemberInfo_t*)L_80);
|
|
String_t* L_81;
|
|
L_81 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_80);
|
|
NullCheck(L_78);
|
|
(L_78)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_81);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_82 = L_78;
|
|
NullCheck(L_82);
|
|
(L_82)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_83;
|
|
L_83 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_82, NULL);
|
|
G_B22_0 = L_83;
|
|
}
|
|
|
|
IL_01ff:
|
|
{
|
|
V_4 = G_B22_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0203:
|
|
{
|
|
}
|
|
|
|
IL_0204:
|
|
{
|
|
String_t* L_84 = V_0;
|
|
String_t* L_85;
|
|
L_85 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_84, _stringLiteral0DE82CFA3F86492F358D234AF986449070189743, NULL);
|
|
V_4 = L_85;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0213:
|
|
{
|
|
String_t* L_86 = V_0;
|
|
String_t* L_87;
|
|
L_87 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_86, _stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5, NULL);
|
|
V_4 = L_87;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
String_t* L_88 = V_0;
|
|
String_t* L_89;
|
|
L_89 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_88, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral846EBD88927A0A5178044365E1F013B802F123DC)), NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_90 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_90, L_89, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_90, method);
|
|
}
|
|
|
|
IL_0233:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_91 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_91, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_91, method);
|
|
}
|
|
|
|
IL_0239:
|
|
{
|
|
String_t* L_92 = V_4;
|
|
return L_92;
|
|
}
|
|
}
|
|
// Method Definition Index: 10511
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_mEEF2ED6254BBD880C65795276EA87FF59E11CE44_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, int8_t ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DE82CFA3F86492F358D234AF986449070189743);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
String_t* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
RuntimeObject* V_6 = NULL;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
bool V_10 = false;
|
|
int32_t G_B8_0 = 0;
|
|
String_t* G_B12_0 = NULL;
|
|
int32_t G_B18_0 = 0;
|
|
String_t* G_B22_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___3_target;
|
|
NullCheck(L_0);
|
|
Type_t* L_1;
|
|
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
|
|
NullCheck((MemberInfo_t*)L_1);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_1);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_3 = ___4_targetPath;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_4 = (*(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*)L_3);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_5 = L_4;
|
|
RuntimeObject* L_6 = Box(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var, &L_5);
|
|
String_t* L_7;
|
|
L_7 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1, (RuntimeObject*)L_2, L_6, NULL);
|
|
V_0 = L_7;
|
|
int32_t L_8 = ___0_returnCode;
|
|
V_3 = L_8;
|
|
int32_t L_9 = V_3;
|
|
V_2 = L_9;
|
|
int32_t L_10 = V_2;
|
|
switch (L_10)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0213;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0233;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
String_t* L_11 = V_0;
|
|
RuntimeObject* L_12 = ___3_target;
|
|
NullCheck(L_12);
|
|
Type_t* L_13;
|
|
L_13 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_12, NULL);
|
|
NullCheck((MemberInfo_t*)L_13);
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_13);
|
|
String_t* L_15;
|
|
L_15 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_11, _stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7, L_14, _stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5, NULL);
|
|
V_4 = L_15;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
String_t* L_16 = V_0;
|
|
String_t* L_17;
|
|
L_17 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_16, _stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF, NULL);
|
|
V_4 = L_17;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_18 = ___2_sourcePath;
|
|
bool L_19;
|
|
L_19 = PropertyPath_get_IsEmpty_m5923CD28AB201F75C64F40AED27C7E42FC5DBF50(L_18, NULL);
|
|
V_5 = L_19;
|
|
bool L_20 = V_5;
|
|
if (!L_20)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_21 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_22;
|
|
L_22 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_22, (&V_6), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_24 = V_6;
|
|
G_B8_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_24) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_00ac;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
V_7 = (bool)G_B8_0;
|
|
bool L_25 = V_7;
|
|
if (!L_25)
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = L_27;
|
|
String_t* L_29 = V_0;
|
|
NullCheck(L_28);
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_29);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_30 = L_28;
|
|
NullCheck(L_30);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_31 = L_30;
|
|
Il2CppFakeBox<int8_t> L_32(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_33;
|
|
L_33 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_32), NULL);
|
|
NullCheck((MemberInfo_t*)L_33);
|
|
String_t* L_34;
|
|
L_34 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_33);
|
|
NullCheck(L_31);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_34);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_35 = L_31;
|
|
NullCheck(L_35);
|
|
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_36 = L_35;
|
|
RuntimeObject* L_37 = V_6;
|
|
NullCheck(L_37);
|
|
Type_t* L_38;
|
|
L_38 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_37, NULL);
|
|
NullCheck((MemberInfo_t*)L_38);
|
|
String_t* L_39;
|
|
L_39 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_38);
|
|
NullCheck(L_36);
|
|
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_39);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_40 = L_36;
|
|
NullCheck(L_40);
|
|
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_41;
|
|
L_41 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_40, NULL);
|
|
G_B12_0 = L_41;
|
|
goto IL_0125;
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
V_4 = G_B12_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_42 = ___2_sourcePath;
|
|
bool L_43;
|
|
L_43 = PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20((&___1_source), L_42, (&V_1), PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
V_8 = L_43;
|
|
bool L_44 = V_8;
|
|
if (!L_44)
|
|
{
|
|
goto IL_0204;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_45 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_46;
|
|
L_46 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_45, NULL);
|
|
bool L_47;
|
|
L_47 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_46, (&V_9), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_47)
|
|
{
|
|
goto IL_015a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_48 = V_9;
|
|
G_B18_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_48) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_015b;
|
|
}
|
|
|
|
IL_015a:
|
|
{
|
|
G_B18_0 = 0;
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
V_10 = (bool)G_B18_0;
|
|
bool L_49 = V_10;
|
|
if (!L_49)
|
|
{
|
|
goto IL_0203;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_51 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_52 = L_51;
|
|
String_t* L_53 = V_0;
|
|
NullCheck(L_52);
|
|
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_53);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_54 = L_52;
|
|
NullCheck(L_54);
|
|
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_55 = L_54;
|
|
Il2CppFakeBox<int8_t> L_56(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_57;
|
|
L_57 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_56), NULL);
|
|
NullCheck((MemberInfo_t*)L_57);
|
|
String_t* L_58;
|
|
L_58 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_57);
|
|
NullCheck(L_55);
|
|
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_58);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_59 = L_55;
|
|
NullCheck(L_59);
|
|
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_60 = L_59;
|
|
RuntimeObject* L_61 = V_9;
|
|
NullCheck(L_61);
|
|
Type_t* L_62;
|
|
L_62 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_61, NULL);
|
|
NullCheck((MemberInfo_t*)L_62);
|
|
String_t* L_63;
|
|
L_63 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_62);
|
|
NullCheck(L_60);
|
|
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_63);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_64 = L_60;
|
|
NullCheck(L_64);
|
|
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_65;
|
|
L_65 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_64, NULL);
|
|
G_B22_0 = L_65;
|
|
goto IL_01ff;
|
|
}
|
|
|
|
IL_01ff:
|
|
{
|
|
V_4 = G_B22_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0203:
|
|
{
|
|
}
|
|
|
|
IL_0204:
|
|
{
|
|
String_t* L_66 = V_0;
|
|
String_t* L_67;
|
|
L_67 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_66, _stringLiteral0DE82CFA3F86492F358D234AF986449070189743, NULL);
|
|
V_4 = L_67;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0213:
|
|
{
|
|
String_t* L_68 = V_0;
|
|
String_t* L_69;
|
|
L_69 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_68, _stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5, NULL);
|
|
V_4 = L_69;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
String_t* L_70 = V_0;
|
|
String_t* L_71;
|
|
L_71 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_70, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral846EBD88927A0A5178044365E1F013B802F123DC)), NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_72 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_72, L_71, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_72, method);
|
|
}
|
|
|
|
IL_0233:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_73 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_73, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, method);
|
|
}
|
|
|
|
IL_0239:
|
|
{
|
|
String_t* L_74 = V_4;
|
|
return L_74;
|
|
}
|
|
}
|
|
// Method Definition Index: 10511
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mA3D9DEFBC828EAAFAAB3C515C59EED3187228B70_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, float ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DE82CFA3F86492F358D234AF986449070189743);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
String_t* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
RuntimeObject* V_6 = NULL;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
bool V_10 = false;
|
|
int32_t G_B8_0 = 0;
|
|
String_t* G_B12_0 = NULL;
|
|
int32_t G_B18_0 = 0;
|
|
String_t* G_B22_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___3_target;
|
|
NullCheck(L_0);
|
|
Type_t* L_1;
|
|
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
|
|
NullCheck((MemberInfo_t*)L_1);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_1);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_3 = ___4_targetPath;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_4 = (*(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*)L_3);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_5 = L_4;
|
|
RuntimeObject* L_6 = Box(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var, &L_5);
|
|
String_t* L_7;
|
|
L_7 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1, (RuntimeObject*)L_2, L_6, NULL);
|
|
V_0 = L_7;
|
|
int32_t L_8 = ___0_returnCode;
|
|
V_3 = L_8;
|
|
int32_t L_9 = V_3;
|
|
V_2 = L_9;
|
|
int32_t L_10 = V_2;
|
|
switch (L_10)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0213;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0233;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
String_t* L_11 = V_0;
|
|
RuntimeObject* L_12 = ___3_target;
|
|
NullCheck(L_12);
|
|
Type_t* L_13;
|
|
L_13 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_12, NULL);
|
|
NullCheck((MemberInfo_t*)L_13);
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_13);
|
|
String_t* L_15;
|
|
L_15 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_11, _stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7, L_14, _stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5, NULL);
|
|
V_4 = L_15;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
String_t* L_16 = V_0;
|
|
String_t* L_17;
|
|
L_17 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_16, _stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF, NULL);
|
|
V_4 = L_17;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_18 = ___2_sourcePath;
|
|
bool L_19;
|
|
L_19 = PropertyPath_get_IsEmpty_m5923CD28AB201F75C64F40AED27C7E42FC5DBF50(L_18, NULL);
|
|
V_5 = L_19;
|
|
bool L_20 = V_5;
|
|
if (!L_20)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_21 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_22;
|
|
L_22 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_22, (&V_6), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_24 = V_6;
|
|
G_B8_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_24) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_00ac;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
V_7 = (bool)G_B8_0;
|
|
bool L_25 = V_7;
|
|
if (!L_25)
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = L_27;
|
|
String_t* L_29 = V_0;
|
|
NullCheck(L_28);
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_29);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_30 = L_28;
|
|
NullCheck(L_30);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_31 = L_30;
|
|
Il2CppFakeBox<float> L_32(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_33;
|
|
L_33 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_32), NULL);
|
|
NullCheck((MemberInfo_t*)L_33);
|
|
String_t* L_34;
|
|
L_34 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_33);
|
|
NullCheck(L_31);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_34);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_35 = L_31;
|
|
NullCheck(L_35);
|
|
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_36 = L_35;
|
|
RuntimeObject* L_37 = V_6;
|
|
NullCheck(L_37);
|
|
Type_t* L_38;
|
|
L_38 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_37, NULL);
|
|
NullCheck((MemberInfo_t*)L_38);
|
|
String_t* L_39;
|
|
L_39 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_38);
|
|
NullCheck(L_36);
|
|
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_39);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_40 = L_36;
|
|
NullCheck(L_40);
|
|
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_41;
|
|
L_41 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_40, NULL);
|
|
G_B12_0 = L_41;
|
|
goto IL_0125;
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
V_4 = G_B12_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_42 = ___2_sourcePath;
|
|
bool L_43;
|
|
L_43 = PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20((&___1_source), L_42, (&V_1), PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
V_8 = L_43;
|
|
bool L_44 = V_8;
|
|
if (!L_44)
|
|
{
|
|
goto IL_0204;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_45 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_46;
|
|
L_46 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_45, NULL);
|
|
bool L_47;
|
|
L_47 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_46, (&V_9), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_47)
|
|
{
|
|
goto IL_015a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_48 = V_9;
|
|
G_B18_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_48) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_015b;
|
|
}
|
|
|
|
IL_015a:
|
|
{
|
|
G_B18_0 = 0;
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
V_10 = (bool)G_B18_0;
|
|
bool L_49 = V_10;
|
|
if (!L_49)
|
|
{
|
|
goto IL_0203;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_51 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_52 = L_51;
|
|
String_t* L_53 = V_0;
|
|
NullCheck(L_52);
|
|
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_53);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_54 = L_52;
|
|
NullCheck(L_54);
|
|
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_55 = L_54;
|
|
Il2CppFakeBox<float> L_56(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_57;
|
|
L_57 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_56), NULL);
|
|
NullCheck((MemberInfo_t*)L_57);
|
|
String_t* L_58;
|
|
L_58 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_57);
|
|
NullCheck(L_55);
|
|
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_58);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_59 = L_55;
|
|
NullCheck(L_59);
|
|
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_60 = L_59;
|
|
RuntimeObject* L_61 = V_9;
|
|
NullCheck(L_61);
|
|
Type_t* L_62;
|
|
L_62 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_61, NULL);
|
|
NullCheck((MemberInfo_t*)L_62);
|
|
String_t* L_63;
|
|
L_63 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_62);
|
|
NullCheck(L_60);
|
|
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_63);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_64 = L_60;
|
|
NullCheck(L_64);
|
|
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_65;
|
|
L_65 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_64, NULL);
|
|
G_B22_0 = L_65;
|
|
goto IL_01ff;
|
|
}
|
|
|
|
IL_01ff:
|
|
{
|
|
V_4 = G_B22_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0203:
|
|
{
|
|
}
|
|
|
|
IL_0204:
|
|
{
|
|
String_t* L_66 = V_0;
|
|
String_t* L_67;
|
|
L_67 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_66, _stringLiteral0DE82CFA3F86492F358D234AF986449070189743, NULL);
|
|
V_4 = L_67;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0213:
|
|
{
|
|
String_t* L_68 = V_0;
|
|
String_t* L_69;
|
|
L_69 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_68, _stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5, NULL);
|
|
V_4 = L_69;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
String_t* L_70 = V_0;
|
|
String_t* L_71;
|
|
L_71 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_70, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral846EBD88927A0A5178044365E1F013B802F123DC)), NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_72 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_72, L_71, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_72, method);
|
|
}
|
|
|
|
IL_0233:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_73 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_73, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, method);
|
|
}
|
|
|
|
IL_0239:
|
|
{
|
|
String_t* L_74 = V_4;
|
|
return L_74;
|
|
}
|
|
}
|
|
// Method Definition Index: 10511
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m091FE7BDAA857B98E917C5504C053BCB57B146DB_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, uint16_t ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DE82CFA3F86492F358D234AF986449070189743);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
String_t* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
RuntimeObject* V_6 = NULL;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
bool V_10 = false;
|
|
int32_t G_B8_0 = 0;
|
|
String_t* G_B12_0 = NULL;
|
|
int32_t G_B18_0 = 0;
|
|
String_t* G_B22_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___3_target;
|
|
NullCheck(L_0);
|
|
Type_t* L_1;
|
|
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
|
|
NullCheck((MemberInfo_t*)L_1);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_1);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_3 = ___4_targetPath;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_4 = (*(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*)L_3);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_5 = L_4;
|
|
RuntimeObject* L_6 = Box(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var, &L_5);
|
|
String_t* L_7;
|
|
L_7 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1, (RuntimeObject*)L_2, L_6, NULL);
|
|
V_0 = L_7;
|
|
int32_t L_8 = ___0_returnCode;
|
|
V_3 = L_8;
|
|
int32_t L_9 = V_3;
|
|
V_2 = L_9;
|
|
int32_t L_10 = V_2;
|
|
switch (L_10)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0213;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0233;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
String_t* L_11 = V_0;
|
|
RuntimeObject* L_12 = ___3_target;
|
|
NullCheck(L_12);
|
|
Type_t* L_13;
|
|
L_13 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_12, NULL);
|
|
NullCheck((MemberInfo_t*)L_13);
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_13);
|
|
String_t* L_15;
|
|
L_15 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_11, _stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7, L_14, _stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5, NULL);
|
|
V_4 = L_15;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
String_t* L_16 = V_0;
|
|
String_t* L_17;
|
|
L_17 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_16, _stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF, NULL);
|
|
V_4 = L_17;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_18 = ___2_sourcePath;
|
|
bool L_19;
|
|
L_19 = PropertyPath_get_IsEmpty_m5923CD28AB201F75C64F40AED27C7E42FC5DBF50(L_18, NULL);
|
|
V_5 = L_19;
|
|
bool L_20 = V_5;
|
|
if (!L_20)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_21 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_22;
|
|
L_22 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_22, (&V_6), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_24 = V_6;
|
|
G_B8_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_24) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_00ac;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
V_7 = (bool)G_B8_0;
|
|
bool L_25 = V_7;
|
|
if (!L_25)
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = L_27;
|
|
String_t* L_29 = V_0;
|
|
NullCheck(L_28);
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_29);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_30 = L_28;
|
|
NullCheck(L_30);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_31 = L_30;
|
|
Il2CppFakeBox<uint16_t> L_32(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_33;
|
|
L_33 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_32), NULL);
|
|
NullCheck((MemberInfo_t*)L_33);
|
|
String_t* L_34;
|
|
L_34 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_33);
|
|
NullCheck(L_31);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_34);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_35 = L_31;
|
|
NullCheck(L_35);
|
|
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_36 = L_35;
|
|
RuntimeObject* L_37 = V_6;
|
|
NullCheck(L_37);
|
|
Type_t* L_38;
|
|
L_38 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_37, NULL);
|
|
NullCheck((MemberInfo_t*)L_38);
|
|
String_t* L_39;
|
|
L_39 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_38);
|
|
NullCheck(L_36);
|
|
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_39);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_40 = L_36;
|
|
NullCheck(L_40);
|
|
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_41;
|
|
L_41 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_40, NULL);
|
|
G_B12_0 = L_41;
|
|
goto IL_0125;
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
V_4 = G_B12_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_42 = ___2_sourcePath;
|
|
bool L_43;
|
|
L_43 = PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20((&___1_source), L_42, (&V_1), PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
V_8 = L_43;
|
|
bool L_44 = V_8;
|
|
if (!L_44)
|
|
{
|
|
goto IL_0204;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_45 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_46;
|
|
L_46 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_45, NULL);
|
|
bool L_47;
|
|
L_47 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_46, (&V_9), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_47)
|
|
{
|
|
goto IL_015a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_48 = V_9;
|
|
G_B18_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_48) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_015b;
|
|
}
|
|
|
|
IL_015a:
|
|
{
|
|
G_B18_0 = 0;
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
V_10 = (bool)G_B18_0;
|
|
bool L_49 = V_10;
|
|
if (!L_49)
|
|
{
|
|
goto IL_0203;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_51 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_52 = L_51;
|
|
String_t* L_53 = V_0;
|
|
NullCheck(L_52);
|
|
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_53);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_54 = L_52;
|
|
NullCheck(L_54);
|
|
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_55 = L_54;
|
|
Il2CppFakeBox<uint16_t> L_56(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_57;
|
|
L_57 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_56), NULL);
|
|
NullCheck((MemberInfo_t*)L_57);
|
|
String_t* L_58;
|
|
L_58 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_57);
|
|
NullCheck(L_55);
|
|
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_58);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_59 = L_55;
|
|
NullCheck(L_59);
|
|
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_60 = L_59;
|
|
RuntimeObject* L_61 = V_9;
|
|
NullCheck(L_61);
|
|
Type_t* L_62;
|
|
L_62 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_61, NULL);
|
|
NullCheck((MemberInfo_t*)L_62);
|
|
String_t* L_63;
|
|
L_63 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_62);
|
|
NullCheck(L_60);
|
|
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_63);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_64 = L_60;
|
|
NullCheck(L_64);
|
|
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_65;
|
|
L_65 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_64, NULL);
|
|
G_B22_0 = L_65;
|
|
goto IL_01ff;
|
|
}
|
|
|
|
IL_01ff:
|
|
{
|
|
V_4 = G_B22_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0203:
|
|
{
|
|
}
|
|
|
|
IL_0204:
|
|
{
|
|
String_t* L_66 = V_0;
|
|
String_t* L_67;
|
|
L_67 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_66, _stringLiteral0DE82CFA3F86492F358D234AF986449070189743, NULL);
|
|
V_4 = L_67;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0213:
|
|
{
|
|
String_t* L_68 = V_0;
|
|
String_t* L_69;
|
|
L_69 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_68, _stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5, NULL);
|
|
V_4 = L_69;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
String_t* L_70 = V_0;
|
|
String_t* L_71;
|
|
L_71 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_70, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral846EBD88927A0A5178044365E1F013B802F123DC)), NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_72 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_72, L_71, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_72, method);
|
|
}
|
|
|
|
IL_0233:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_73 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_73, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, method);
|
|
}
|
|
|
|
IL_0239:
|
|
{
|
|
String_t* L_74 = V_4;
|
|
return L_74;
|
|
}
|
|
}
|
|
// Method Definition Index: 10511
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m0884F2D81F8AFE20C37E26C96DD3F4A856ACA029_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, uint32_t ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DE82CFA3F86492F358D234AF986449070189743);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
String_t* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
RuntimeObject* V_6 = NULL;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
bool V_10 = false;
|
|
int32_t G_B8_0 = 0;
|
|
String_t* G_B12_0 = NULL;
|
|
int32_t G_B18_0 = 0;
|
|
String_t* G_B22_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___3_target;
|
|
NullCheck(L_0);
|
|
Type_t* L_1;
|
|
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
|
|
NullCheck((MemberInfo_t*)L_1);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_1);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_3 = ___4_targetPath;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_4 = (*(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*)L_3);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_5 = L_4;
|
|
RuntimeObject* L_6 = Box(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var, &L_5);
|
|
String_t* L_7;
|
|
L_7 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1, (RuntimeObject*)L_2, L_6, NULL);
|
|
V_0 = L_7;
|
|
int32_t L_8 = ___0_returnCode;
|
|
V_3 = L_8;
|
|
int32_t L_9 = V_3;
|
|
V_2 = L_9;
|
|
int32_t L_10 = V_2;
|
|
switch (L_10)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0213;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0233;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
String_t* L_11 = V_0;
|
|
RuntimeObject* L_12 = ___3_target;
|
|
NullCheck(L_12);
|
|
Type_t* L_13;
|
|
L_13 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_12, NULL);
|
|
NullCheck((MemberInfo_t*)L_13);
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_13);
|
|
String_t* L_15;
|
|
L_15 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_11, _stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7, L_14, _stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5, NULL);
|
|
V_4 = L_15;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
String_t* L_16 = V_0;
|
|
String_t* L_17;
|
|
L_17 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_16, _stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF, NULL);
|
|
V_4 = L_17;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_18 = ___2_sourcePath;
|
|
bool L_19;
|
|
L_19 = PropertyPath_get_IsEmpty_m5923CD28AB201F75C64F40AED27C7E42FC5DBF50(L_18, NULL);
|
|
V_5 = L_19;
|
|
bool L_20 = V_5;
|
|
if (!L_20)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_21 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_22;
|
|
L_22 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_22, (&V_6), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_24 = V_6;
|
|
G_B8_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_24) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_00ac;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
V_7 = (bool)G_B8_0;
|
|
bool L_25 = V_7;
|
|
if (!L_25)
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = L_27;
|
|
String_t* L_29 = V_0;
|
|
NullCheck(L_28);
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_29);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_30 = L_28;
|
|
NullCheck(L_30);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_31 = L_30;
|
|
Il2CppFakeBox<uint32_t> L_32(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_33;
|
|
L_33 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_32), NULL);
|
|
NullCheck((MemberInfo_t*)L_33);
|
|
String_t* L_34;
|
|
L_34 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_33);
|
|
NullCheck(L_31);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_34);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_35 = L_31;
|
|
NullCheck(L_35);
|
|
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_36 = L_35;
|
|
RuntimeObject* L_37 = V_6;
|
|
NullCheck(L_37);
|
|
Type_t* L_38;
|
|
L_38 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_37, NULL);
|
|
NullCheck((MemberInfo_t*)L_38);
|
|
String_t* L_39;
|
|
L_39 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_38);
|
|
NullCheck(L_36);
|
|
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_39);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_40 = L_36;
|
|
NullCheck(L_40);
|
|
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_41;
|
|
L_41 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_40, NULL);
|
|
G_B12_0 = L_41;
|
|
goto IL_0125;
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
V_4 = G_B12_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_42 = ___2_sourcePath;
|
|
bool L_43;
|
|
L_43 = PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20((&___1_source), L_42, (&V_1), PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
V_8 = L_43;
|
|
bool L_44 = V_8;
|
|
if (!L_44)
|
|
{
|
|
goto IL_0204;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_45 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_46;
|
|
L_46 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_45, NULL);
|
|
bool L_47;
|
|
L_47 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_46, (&V_9), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_47)
|
|
{
|
|
goto IL_015a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_48 = V_9;
|
|
G_B18_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_48) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_015b;
|
|
}
|
|
|
|
IL_015a:
|
|
{
|
|
G_B18_0 = 0;
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
V_10 = (bool)G_B18_0;
|
|
bool L_49 = V_10;
|
|
if (!L_49)
|
|
{
|
|
goto IL_0203;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_51 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_52 = L_51;
|
|
String_t* L_53 = V_0;
|
|
NullCheck(L_52);
|
|
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_53);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_54 = L_52;
|
|
NullCheck(L_54);
|
|
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_55 = L_54;
|
|
Il2CppFakeBox<uint32_t> L_56(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_57;
|
|
L_57 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_56), NULL);
|
|
NullCheck((MemberInfo_t*)L_57);
|
|
String_t* L_58;
|
|
L_58 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_57);
|
|
NullCheck(L_55);
|
|
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_58);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_59 = L_55;
|
|
NullCheck(L_59);
|
|
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_60 = L_59;
|
|
RuntimeObject* L_61 = V_9;
|
|
NullCheck(L_61);
|
|
Type_t* L_62;
|
|
L_62 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_61, NULL);
|
|
NullCheck((MemberInfo_t*)L_62);
|
|
String_t* L_63;
|
|
L_63 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_62);
|
|
NullCheck(L_60);
|
|
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_63);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_64 = L_60;
|
|
NullCheck(L_64);
|
|
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_65;
|
|
L_65 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_64, NULL);
|
|
G_B22_0 = L_65;
|
|
goto IL_01ff;
|
|
}
|
|
|
|
IL_01ff:
|
|
{
|
|
V_4 = G_B22_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0203:
|
|
{
|
|
}
|
|
|
|
IL_0204:
|
|
{
|
|
String_t* L_66 = V_0;
|
|
String_t* L_67;
|
|
L_67 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_66, _stringLiteral0DE82CFA3F86492F358D234AF986449070189743, NULL);
|
|
V_4 = L_67;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0213:
|
|
{
|
|
String_t* L_68 = V_0;
|
|
String_t* L_69;
|
|
L_69 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_68, _stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5, NULL);
|
|
V_4 = L_69;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
String_t* L_70 = V_0;
|
|
String_t* L_71;
|
|
L_71 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_70, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral846EBD88927A0A5178044365E1F013B802F123DC)), NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_72 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_72, L_71, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_72, method);
|
|
}
|
|
|
|
IL_0233:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_73 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_73, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, method);
|
|
}
|
|
|
|
IL_0239:
|
|
{
|
|
String_t* L_74 = V_4;
|
|
return L_74;
|
|
}
|
|
}
|
|
// Method Definition Index: 10511
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m58DE243AAC43A3D991E8CD7D9D93BC5A0455369A_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, uint64_t ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DE82CFA3F86492F358D234AF986449070189743);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
String_t* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
RuntimeObject* V_6 = NULL;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
bool V_10 = false;
|
|
int32_t G_B8_0 = 0;
|
|
String_t* G_B12_0 = NULL;
|
|
int32_t G_B18_0 = 0;
|
|
String_t* G_B22_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___3_target;
|
|
NullCheck(L_0);
|
|
Type_t* L_1;
|
|
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
|
|
NullCheck((MemberInfo_t*)L_1);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_1);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_3 = ___4_targetPath;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_4 = (*(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*)L_3);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_5 = L_4;
|
|
RuntimeObject* L_6 = Box(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var, &L_5);
|
|
String_t* L_7;
|
|
L_7 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1, (RuntimeObject*)L_2, L_6, NULL);
|
|
V_0 = L_7;
|
|
int32_t L_8 = ___0_returnCode;
|
|
V_3 = L_8;
|
|
int32_t L_9 = V_3;
|
|
V_2 = L_9;
|
|
int32_t L_10 = V_2;
|
|
switch (L_10)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0213;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0233;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
String_t* L_11 = V_0;
|
|
RuntimeObject* L_12 = ___3_target;
|
|
NullCheck(L_12);
|
|
Type_t* L_13;
|
|
L_13 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_12, NULL);
|
|
NullCheck((MemberInfo_t*)L_13);
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_13);
|
|
String_t* L_15;
|
|
L_15 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_11, _stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7, L_14, _stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5, NULL);
|
|
V_4 = L_15;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
String_t* L_16 = V_0;
|
|
String_t* L_17;
|
|
L_17 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_16, _stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF, NULL);
|
|
V_4 = L_17;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_18 = ___2_sourcePath;
|
|
bool L_19;
|
|
L_19 = PropertyPath_get_IsEmpty_m5923CD28AB201F75C64F40AED27C7E42FC5DBF50(L_18, NULL);
|
|
V_5 = L_19;
|
|
bool L_20 = V_5;
|
|
if (!L_20)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_21 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_22;
|
|
L_22 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_22, (&V_6), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_24 = V_6;
|
|
G_B8_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_24) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_00ac;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
V_7 = (bool)G_B8_0;
|
|
bool L_25 = V_7;
|
|
if (!L_25)
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = L_27;
|
|
String_t* L_29 = V_0;
|
|
NullCheck(L_28);
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_29);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_30 = L_28;
|
|
NullCheck(L_30);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_31 = L_30;
|
|
Il2CppFakeBox<uint64_t> L_32(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_33;
|
|
L_33 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_32), NULL);
|
|
NullCheck((MemberInfo_t*)L_33);
|
|
String_t* L_34;
|
|
L_34 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_33);
|
|
NullCheck(L_31);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_34);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_35 = L_31;
|
|
NullCheck(L_35);
|
|
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_36 = L_35;
|
|
RuntimeObject* L_37 = V_6;
|
|
NullCheck(L_37);
|
|
Type_t* L_38;
|
|
L_38 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_37, NULL);
|
|
NullCheck((MemberInfo_t*)L_38);
|
|
String_t* L_39;
|
|
L_39 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_38);
|
|
NullCheck(L_36);
|
|
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_39);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_40 = L_36;
|
|
NullCheck(L_40);
|
|
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_41;
|
|
L_41 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_40, NULL);
|
|
G_B12_0 = L_41;
|
|
goto IL_0125;
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
V_4 = G_B12_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_42 = ___2_sourcePath;
|
|
bool L_43;
|
|
L_43 = PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20((&___1_source), L_42, (&V_1), PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
V_8 = L_43;
|
|
bool L_44 = V_8;
|
|
if (!L_44)
|
|
{
|
|
goto IL_0204;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_45 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_46;
|
|
L_46 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_45, NULL);
|
|
bool L_47;
|
|
L_47 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_46, (&V_9), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_47)
|
|
{
|
|
goto IL_015a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_48 = V_9;
|
|
G_B18_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_48) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_015b;
|
|
}
|
|
|
|
IL_015a:
|
|
{
|
|
G_B18_0 = 0;
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
V_10 = (bool)G_B18_0;
|
|
bool L_49 = V_10;
|
|
if (!L_49)
|
|
{
|
|
goto IL_0203;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_51 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_52 = L_51;
|
|
String_t* L_53 = V_0;
|
|
NullCheck(L_52);
|
|
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_53);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_54 = L_52;
|
|
NullCheck(L_54);
|
|
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_55 = L_54;
|
|
Il2CppFakeBox<uint64_t> L_56(il2cpp_rgctx_data(method->rgctx_data, 0), (&___5_extractedValueFromSource));
|
|
Type_t* L_57;
|
|
L_57 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((&L_56), NULL);
|
|
NullCheck((MemberInfo_t*)L_57);
|
|
String_t* L_58;
|
|
L_58 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_57);
|
|
NullCheck(L_55);
|
|
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_58);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_59 = L_55;
|
|
NullCheck(L_59);
|
|
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_60 = L_59;
|
|
RuntimeObject* L_61 = V_9;
|
|
NullCheck(L_61);
|
|
Type_t* L_62;
|
|
L_62 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_61, NULL);
|
|
NullCheck((MemberInfo_t*)L_62);
|
|
String_t* L_63;
|
|
L_63 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_62);
|
|
NullCheck(L_60);
|
|
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_63);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_64 = L_60;
|
|
NullCheck(L_64);
|
|
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_65;
|
|
L_65 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_64, NULL);
|
|
G_B22_0 = L_65;
|
|
goto IL_01ff;
|
|
}
|
|
|
|
IL_01ff:
|
|
{
|
|
V_4 = G_B22_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0203:
|
|
{
|
|
}
|
|
|
|
IL_0204:
|
|
{
|
|
String_t* L_66 = V_0;
|
|
String_t* L_67;
|
|
L_67 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_66, _stringLiteral0DE82CFA3F86492F358D234AF986449070189743, NULL);
|
|
V_4 = L_67;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0213:
|
|
{
|
|
String_t* L_68 = V_0;
|
|
String_t* L_69;
|
|
L_69 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_68, _stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5, NULL);
|
|
V_4 = L_69;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
String_t* L_70 = V_0;
|
|
String_t* L_71;
|
|
L_71 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_70, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral846EBD88927A0A5178044365E1F013B802F123DC)), NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_72 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_72, L_71, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_72, method);
|
|
}
|
|
|
|
IL_0233:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_73 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_73, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, method);
|
|
}
|
|
|
|
IL_0239:
|
|
{
|
|
String_t* L_74 = V_4;
|
|
return L_74;
|
|
}
|
|
}
|
|
// Method Definition Index: 10511
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataBinding_GetSetValueErrorString_TisIl2CppFullySharedGenericAny_m04E14235025455B68F5726C1456C4913A9BE8D47_gshared (int32_t ___0_returnCode, RuntimeObject* ___1_source, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* ___2_sourcePath, RuntimeObject* ___3_target, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* ___4_targetPath, Il2CppFullySharedGenericAny ___5_extractedValueFromSource, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IProperty_t9DAAF3D1ACD042DA2D622152506F58CE625EF697_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DE82CFA3F86492F358D234AF986449070189743);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7FB0D9E4FACEEDAB18AAE0CBAD68E80441858BD9);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA4CA0091D7FA5EB653D78A68B103F9C68A8F9EF0);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD1EA222166F21A927FA1BA3626A8EBDB404B9FCE);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_TValue_t72F1729951F9FBC20E53DC902D00CDADC268F8AD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
void* L_33 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 0)));
|
|
void* L_63 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 0)));
|
|
const Il2CppFullySharedGenericAny L_26 = alloca(SizeOf_TValue_t72F1729951F9FBC20E53DC902D00CDADC268F8AD);
|
|
const Il2CppFullySharedGenericAny L_56 = L_26;
|
|
String_t* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
RuntimeObject* V_6 = NULL;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
bool V_10 = false;
|
|
int32_t G_B8_0 = 0;
|
|
String_t* G_B12_0 = NULL;
|
|
int32_t G_B18_0 = 0;
|
|
String_t* G_B22_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___3_target;
|
|
NullCheck(L_0);
|
|
Type_t* L_1;
|
|
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
|
|
NullCheck((MemberInfo_t*)L_1);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_1);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_3 = ___4_targetPath;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_4 = (*(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*)L_3);
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_5 = L_4;
|
|
RuntimeObject* L_6 = Box(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var, &L_5);
|
|
String_t* L_7;
|
|
L_7 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteralE2E2EC2DE19FB12B921F63FFEAF9F926418891C1, (RuntimeObject*)L_2, L_6, NULL);
|
|
V_0 = L_7;
|
|
int32_t L_8 = ___0_returnCode;
|
|
V_3 = L_8;
|
|
int32_t L_9 = V_3;
|
|
V_2 = L_9;
|
|
int32_t L_10 = V_2;
|
|
switch (L_10)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0213;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0233;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
String_t* L_11 = V_0;
|
|
RuntimeObject* L_12 = ___3_target;
|
|
NullCheck(L_12);
|
|
Type_t* L_13;
|
|
L_13 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_12, NULL);
|
|
NullCheck((MemberInfo_t*)L_13);
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_13);
|
|
String_t* L_15;
|
|
L_15 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_11, _stringLiteral8E3A9174A80B5F268DAF228C47FE4386D76123B7, L_14, _stringLiteral04BEC9CCDEE21D044FA2D354439EFB7FE8D014B5, NULL);
|
|
V_4 = L_15;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
String_t* L_16 = V_0;
|
|
String_t* L_17;
|
|
L_17 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_16, _stringLiteral13ECE49E5C54D25448B6E15EAA55880DB2B239FF, NULL);
|
|
V_4 = L_17;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_18 = ___2_sourcePath;
|
|
bool L_19;
|
|
L_19 = PropertyPath_get_IsEmpty_m5923CD28AB201F75C64F40AED27C7E42FC5DBF50(L_18, NULL);
|
|
V_5 = L_19;
|
|
bool L_20 = V_5;
|
|
if (!L_20)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_21 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_22;
|
|
L_22 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_22, (&V_6), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_24 = V_6;
|
|
G_B8_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_24) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_00ac;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
V_7 = (bool)G_B8_0;
|
|
bool L_25 = V_7;
|
|
if (!L_25)
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_26, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___5_extractedValueFromSource : &___5_extractedValueFromSource), SizeOf_TValue_t72F1729951F9FBC20E53DC902D00CDADC268F8AD);
|
|
bool L_27 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 0), L_26);
|
|
if (!L_27)
|
|
{
|
|
goto IL_0109;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_29 = L_28;
|
|
String_t* L_30 = V_0;
|
|
NullCheck(L_29);
|
|
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_30);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_31 = L_29;
|
|
NullCheck(L_31);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_32 = L_31;
|
|
Type_t* L_34;
|
|
L_34 = ConstrainedFuncInvoker0< Type_t* >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 0), il2cpp_rgctx_method(method->rgctx_data, 1), L_33, (void*)(Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___5_extractedValueFromSource : &___5_extractedValueFromSource));
|
|
NullCheck((MemberInfo_t*)L_34);
|
|
String_t* L_35;
|
|
L_35 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_34);
|
|
NullCheck(L_32);
|
|
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_35);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_36 = L_32;
|
|
NullCheck(L_36);
|
|
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_37 = L_36;
|
|
RuntimeObject* L_38 = V_6;
|
|
NullCheck(L_38);
|
|
Type_t* L_39;
|
|
L_39 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_38, NULL);
|
|
NullCheck((MemberInfo_t*)L_39);
|
|
String_t* L_40;
|
|
L_40 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_39);
|
|
NullCheck(L_37);
|
|
(L_37)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_40);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_41 = L_37;
|
|
NullCheck(L_41);
|
|
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_42;
|
|
L_42 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_41, NULL);
|
|
G_B12_0 = L_42;
|
|
goto IL_0125;
|
|
}
|
|
|
|
IL_0109:
|
|
{
|
|
String_t* L_43 = V_0;
|
|
RuntimeObject* L_44 = V_6;
|
|
NullCheck(L_44);
|
|
Type_t* L_45;
|
|
L_45 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_44, NULL);
|
|
NullCheck((MemberInfo_t*)L_45);
|
|
String_t* L_46;
|
|
L_46 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_45);
|
|
String_t* L_47;
|
|
L_47 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_43, _stringLiteralD1EA222166F21A927FA1BA3626A8EBDB404B9FCE, L_46, _stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F, NULL);
|
|
G_B12_0 = L_47;
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
V_4 = G_B12_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79* L_48 = ___2_sourcePath;
|
|
bool L_49;
|
|
L_49 = PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20((&___1_source), L_48, (&V_1), PropertyContainer_TryGetProperty_TisRuntimeObject_mFE75D3FFFA2DD3C28597E9100A97E5201C758D20_RuntimeMethod_var);
|
|
V_8 = L_49;
|
|
bool L_50 = V_8;
|
|
if (!L_50)
|
|
{
|
|
goto IL_0204;
|
|
}
|
|
}
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E* L_51 = ___4_targetPath;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
String_t* L_52;
|
|
L_52 = BindingId_op_Implicit_m4C66B821FADCD3FB913B3A5B508432DC2FCD0B28(L_51, NULL);
|
|
bool L_53;
|
|
L_53 = PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059((&___3_target), L_52, (&V_9), PropertyContainer_TryGetValue_TisRuntimeObject_TisRuntimeObject_m93B903C08AC3D636B3974D918C6CAAD39F2C7059_RuntimeMethod_var);
|
|
if (!L_53)
|
|
{
|
|
goto IL_015a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_54 = V_9;
|
|
G_B18_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_54) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_015b;
|
|
}
|
|
|
|
IL_015a:
|
|
{
|
|
G_B18_0 = 0;
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
V_10 = (bool)G_B18_0;
|
|
bool L_55 = V_10;
|
|
if (!L_55)
|
|
{
|
|
goto IL_0203;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_56, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___5_extractedValueFromSource : &___5_extractedValueFromSource), SizeOf_TValue_t72F1729951F9FBC20E53DC902D00CDADC268F8AD);
|
|
bool L_57 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 0), L_56);
|
|
if (!L_57)
|
|
{
|
|
goto IL_01bb;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_58 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_59 = L_58;
|
|
String_t* L_60 = V_0;
|
|
NullCheck(L_59);
|
|
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_60);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_61 = L_59;
|
|
NullCheck(L_61);
|
|
(L_61)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2AF485C9170DEC6F3A74DDDED2A3462546A4F058);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_62 = L_61;
|
|
Type_t* L_64;
|
|
L_64 = ConstrainedFuncInvoker0< Type_t* >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 0), il2cpp_rgctx_method(method->rgctx_data, 1), L_63, (void*)(Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___5_extractedValueFromSource : &___5_extractedValueFromSource));
|
|
NullCheck((MemberInfo_t*)L_64);
|
|
String_t* L_65;
|
|
L_65 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_64);
|
|
NullCheck(L_62);
|
|
(L_62)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_65);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_66 = L_62;
|
|
NullCheck(L_66);
|
|
(L_66)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral775B3E04B53C1FE35D80F5432331CC6757CAA0FA);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_67 = L_66;
|
|
RuntimeObject* L_68 = V_9;
|
|
NullCheck(L_68);
|
|
Type_t* L_69;
|
|
L_69 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_68, NULL);
|
|
NullCheck((MemberInfo_t*)L_69);
|
|
String_t* L_70;
|
|
L_70 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_69);
|
|
NullCheck(L_67);
|
|
(L_67)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_70);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_71 = L_67;
|
|
NullCheck(L_71);
|
|
(L_71)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_72;
|
|
L_72 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_71, NULL);
|
|
G_B22_0 = L_72;
|
|
goto IL_01ff;
|
|
}
|
|
|
|
IL_01bb:
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_73 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_74 = L_73;
|
|
String_t* L_75 = V_0;
|
|
NullCheck(L_74);
|
|
(L_74)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_75);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_76 = L_74;
|
|
NullCheck(L_76);
|
|
(L_76)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral7FB0D9E4FACEEDAB18AAE0CBAD68E80441858BD9);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_77 = L_76;
|
|
RuntimeObject* L_78 = V_1;
|
|
NullCheck(L_78);
|
|
Type_t* L_79;
|
|
L_79 = InterfaceFuncInvoker0< Type_t* >::Invoke(1, IProperty_t9DAAF3D1ACD042DA2D622152506F58CE625EF697_il2cpp_TypeInfo_var, L_78);
|
|
NullCheck((MemberInfo_t*)L_79);
|
|
String_t* L_80;
|
|
L_80 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_79);
|
|
NullCheck(L_77);
|
|
(L_77)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_80);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_81 = L_77;
|
|
NullCheck(L_81);
|
|
(L_81)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteralA4CA0091D7FA5EB653D78A68B103F9C68A8F9EF0);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_82 = L_81;
|
|
RuntimeObject* L_83 = V_9;
|
|
NullCheck(L_83);
|
|
Type_t* L_84;
|
|
L_84 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_83, NULL);
|
|
NullCheck((MemberInfo_t*)L_84);
|
|
String_t* L_85;
|
|
L_85 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_84);
|
|
NullCheck(L_82);
|
|
(L_82)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_85);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_86 = L_82;
|
|
NullCheck(L_86);
|
|
(L_86)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6F78D79307543AB82C8BE6DEF31D3EB2E265628F);
|
|
String_t* L_87;
|
|
L_87 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_86, NULL);
|
|
G_B22_0 = L_87;
|
|
}
|
|
|
|
IL_01ff:
|
|
{
|
|
V_4 = G_B22_0;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0203:
|
|
{
|
|
}
|
|
|
|
IL_0204:
|
|
{
|
|
String_t* L_88 = V_0;
|
|
String_t* L_89;
|
|
L_89 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_88, _stringLiteral0DE82CFA3F86492F358D234AF986449070189743, NULL);
|
|
V_4 = L_89;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0213:
|
|
{
|
|
String_t* L_90 = V_0;
|
|
String_t* L_91;
|
|
L_91 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_90, _stringLiteral6D22783BFEC48D89C16BED79CF5144B1BB34B9B5, NULL);
|
|
V_4 = L_91;
|
|
goto IL_0239;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
String_t* L_92 = V_0;
|
|
String_t* L_93;
|
|
L_93 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_92, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral846EBD88927A0A5178044365E1F013B802F123DC)), NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_94 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_94, L_93, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_94, method);
|
|
}
|
|
|
|
IL_0233:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_95 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_95, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_95, method);
|
|
}
|
|
|
|
IL_0239:
|
|
{
|
|
String_t* L_96 = V_4;
|
|
return L_96;
|
|
}
|
|
}
|
|
// Method Definition Index: 10510
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB DataBinding_UpdateSource_TisIl2CppFullySharedGenericAny_mCEB97A73179A4A0EF8604D527C22D347D4ADE0A6_gshared (DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA* __this, BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* ___0_context, Il2CppFullySharedGenericAny* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_TValue_tF37BC3C3B4C62D7F1F3E4CEC9BC46892F9EC512B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TValue_tF37BC3C3B4C62D7F1F3E4CEC9BC46892F9EC512B);
|
|
const Il2CppFullySharedGenericAny L_23 = L_6;
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
String_t* V_3 = NULL;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
bool V_5 = false;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E V_8;
|
|
memset((&V_8), 0, sizeof(V_8));
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
{
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_0 = ___0_context;
|
|
RuntimeObject* L_1;
|
|
L_1 = BindingContext_get_dataSource_mF6CA0E5AED1F7DCA5619AEBA09F9F8F05D1CF504_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_2;
|
|
L_2 = DataBinding_get_uiToSourceConverters_m4454C568EA66F782C5F894F3FB4DBC4D3F922867(__this, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_3 = ___0_context;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_4;
|
|
L_4 = BindingContext_get_dataSourcePath_m10A8B994ADD410BE92EAD7E0143C64C3A60B36BA_inline(L_3, NULL);
|
|
V_4 = L_4;
|
|
Il2CppFullySharedGenericAny* L_5 = ___1_value;
|
|
il2cpp_codegen_memcpy(L_6, L_5, SizeOf_TValue_tF37BC3C3B4C62D7F1F3E4CEC9BC46892F9EC512B);
|
|
NullCheck(L_2);
|
|
bool L_7;
|
|
L_7 = InvokerFuncInvoker4< bool, RuntimeObject**, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, Il2CppFullySharedGenericAny, int32_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)), il2cpp_rgctx_method(method->rgctx_data, 2), L_2, (&V_0), (&V_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_6: *(void**)L_6), (&V_2));
|
|
V_1 = L_7;
|
|
bool L_8 = V_1;
|
|
V_5 = L_8;
|
|
bool L_9 = V_5;
|
|
if (!L_9)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_6), sizeof(BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB));
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_10 = V_6;
|
|
V_7 = L_10;
|
|
goto IL_0087;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_11 = V_2;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_12 = ___0_context;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13;
|
|
L_13 = BindingContext_get_targetElement_m3E4F5FD912C4659E09308288F4F054457FB48691_inline(L_12, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_14 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_15;
|
|
L_15 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_14, NULL);
|
|
V_8 = L_15;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_16;
|
|
L_16 = BindingId_op_Implicit_m59B81D19F3282655F5E65A49E7E1BBE666313528((&V_8), NULL);
|
|
V_4 = L_16;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_17 = ___0_context;
|
|
RuntimeObject* L_18;
|
|
L_18 = BindingContext_get_dataSource_mF6CA0E5AED1F7DCA5619AEBA09F9F8F05D1CF504_inline(L_17, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_19 = ___0_context;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_20;
|
|
L_20 = BindingContext_get_dataSourcePath_m10A8B994ADD410BE92EAD7E0143C64C3A60B36BA_inline(L_19, NULL);
|
|
V_9 = L_20;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_21;
|
|
L_21 = BindingId_op_Implicit_m576A873786EE4F8CE01DDAFE952500CA8372927E((&V_9), NULL);
|
|
V_10 = L_21;
|
|
Il2CppFullySharedGenericAny* L_22 = ___1_value;
|
|
il2cpp_codegen_memcpy(L_23, L_22, SizeOf_TValue_tF37BC3C3B4C62D7F1F3E4CEC9BC46892F9EC512B);
|
|
String_t* L_24;
|
|
L_24 = InvokerFuncInvoker6< String_t*, int32_t, RuntimeObject*, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, RuntimeObject*, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, L_11, (RuntimeObject*)L_13, (&V_4), L_18, (&V_10), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_23: *(void**)L_23));
|
|
V_3 = L_24;
|
|
String_t* L_25 = V_3;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_26;
|
|
memset((&L_26), 0, sizeof(L_26));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_26), (int32_t)1, L_25, NULL);
|
|
V_7 = L_26;
|
|
goto IL_0087;
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_27 = V_7;
|
|
return L_27;
|
|
}
|
|
}
|
|
// Method Definition Index: 10509
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB DataBinding_UpdateUI_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m703BE0682579C6C99FC0669DCF6CCB072D2DADD3_gshared (DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA* __this, BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* ___0_context, bool* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* V_1 = NULL;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_6 = NULL;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* V_7 = NULL;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
bool V_13 = false;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_0 = ___0_context;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = BindingContext_get_targetElement_m3E4F5FD912C4659E09308288F4F054457FB48691_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = V_0;
|
|
NullCheck((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_3;
|
|
L_3 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
V_1 = L_3;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_5 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_7;
|
|
L_7 = FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53(L_5, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_6, NULL);
|
|
G_B3_0 = ((int32_t)(L_7));
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
V_5 = (bool)G_B3_0;
|
|
bool L_8 = V_5;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10;
|
|
L_10 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_9, NULL);
|
|
V_6 = L_10;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_11 = V_6;
|
|
V_7 = ((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0*)IsInstClass((RuntimeObject*)L_11, TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var));
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_12 = V_7;
|
|
if (!L_12)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_13 = V_7;
|
|
NullCheck((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13);
|
|
bool L_14;
|
|
L_14 = VisualElement_ClassListContains_m202159CA74B09E919CBF4497AA5FAD6AD9B1666F((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13, _stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = V_0;
|
|
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_16 = V_9;
|
|
if (!L_16)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = V_9;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var, L_17);
|
|
if (L_18)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_19 = V_7;
|
|
NullCheck(L_19);
|
|
RuntimeObject* L_20;
|
|
L_20 = TextElement_get_edition_m29D5704DD0B49EA8AC63B5CEBA9A69AC075327CC(L_19, NULL);
|
|
NullCheck(L_20);
|
|
TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* L_21;
|
|
L_21 = InterfaceFuncInvoker0< TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* >::Invoke(36, ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var, L_20);
|
|
G_B10_0 = ((!(((RuntimeObject*)(TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_8 = (bool)G_B12_0;
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_23;
|
|
memset((&L_23), 0, sizeof(L_23));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_23), (int32_t)2, (String_t*)NULL, NULL);
|
|
V_10 = L_23;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_24;
|
|
L_24 = DataBinding_get_sourceToUiConverters_m2888B514C8EB942094376F57EFB6218E678F9409(__this, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_25 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_26;
|
|
L_26 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_25, NULL);
|
|
V_11 = L_26;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_27;
|
|
L_27 = BindingId_op_Implicit_m59B81D19F3282655F5E65A49E7E1BBE666313528((&V_11), NULL);
|
|
V_12 = L_27;
|
|
bool* L_28 = ___1_value;
|
|
bool L_29 = (*(bool*)L_28);
|
|
NullCheck(L_24);
|
|
bool L_30;
|
|
L_30 = ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m58CDBC0B28C4B65BCCB3844FDD0A810733CFD891(L_24, (&V_0), (&V_12), L_29, (&V_3), il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_30;
|
|
bool L_31 = V_2;
|
|
V_13 = L_31;
|
|
bool L_32 = V_13;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_14), sizeof(BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB));
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_33 = V_14;
|
|
V_10 = L_33;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
int32_t L_34 = V_3;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_35 = ___0_context;
|
|
RuntimeObject* L_36;
|
|
L_36 = BindingContext_get_dataSource_mF6CA0E5AED1F7DCA5619AEBA09F9F8F05D1CF504_inline(L_35, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_37 = ___0_context;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_38;
|
|
L_38 = BindingContext_get_dataSourcePath_m10A8B994ADD410BE92EAD7E0143C64C3A60B36BA_inline(L_37, NULL);
|
|
V_12 = L_38;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39 = V_0;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_40 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_41;
|
|
L_41 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_40, NULL);
|
|
V_11 = L_41;
|
|
bool* L_42 = ___1_value;
|
|
bool L_43 = (*(bool*)L_42);
|
|
String_t* L_44;
|
|
L_44 = DataBinding_GetSetValueErrorString_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m9E7E4DCE5828E839CBEB9C6ACFC507852ED0CEC6(L_34, L_36, (&V_12), (RuntimeObject*)L_39, (&V_11), L_43, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_4 = L_44;
|
|
String_t* L_45 = V_4;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_46;
|
|
memset((&L_46), 0, sizeof(L_46));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_46), (int32_t)1, L_45, NULL);
|
|
V_10 = L_46;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_47 = V_10;
|
|
return L_47;
|
|
}
|
|
}
|
|
// Method Definition Index: 10509
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB DataBinding_UpdateUI_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m96435BA239543C3D1A49B7D68BAEA14DBD7BD2BF_gshared (DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA* __this, BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* ___0_context, uint8_t* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* V_1 = NULL;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_6 = NULL;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* V_7 = NULL;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
bool V_13 = false;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_0 = ___0_context;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = BindingContext_get_targetElement_m3E4F5FD912C4659E09308288F4F054457FB48691_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = V_0;
|
|
NullCheck((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_3;
|
|
L_3 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
V_1 = L_3;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_5 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_7;
|
|
L_7 = FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53(L_5, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_6, NULL);
|
|
G_B3_0 = ((int32_t)(L_7));
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
V_5 = (bool)G_B3_0;
|
|
bool L_8 = V_5;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10;
|
|
L_10 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_9, NULL);
|
|
V_6 = L_10;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_11 = V_6;
|
|
V_7 = ((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0*)IsInstClass((RuntimeObject*)L_11, TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var));
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_12 = V_7;
|
|
if (!L_12)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_13 = V_7;
|
|
NullCheck((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13);
|
|
bool L_14;
|
|
L_14 = VisualElement_ClassListContains_m202159CA74B09E919CBF4497AA5FAD6AD9B1666F((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13, _stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = V_0;
|
|
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_16 = V_9;
|
|
if (!L_16)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = V_9;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var, L_17);
|
|
if (L_18)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_19 = V_7;
|
|
NullCheck(L_19);
|
|
RuntimeObject* L_20;
|
|
L_20 = TextElement_get_edition_m29D5704DD0B49EA8AC63B5CEBA9A69AC075327CC(L_19, NULL);
|
|
NullCheck(L_20);
|
|
TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* L_21;
|
|
L_21 = InterfaceFuncInvoker0< TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* >::Invoke(36, ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var, L_20);
|
|
G_B10_0 = ((!(((RuntimeObject*)(TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_8 = (bool)G_B12_0;
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_23;
|
|
memset((&L_23), 0, sizeof(L_23));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_23), (int32_t)2, (String_t*)NULL, NULL);
|
|
V_10 = L_23;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_24;
|
|
L_24 = DataBinding_get_sourceToUiConverters_m2888B514C8EB942094376F57EFB6218E678F9409(__this, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_25 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_26;
|
|
L_26 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_25, NULL);
|
|
V_11 = L_26;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_27;
|
|
L_27 = BindingId_op_Implicit_m59B81D19F3282655F5E65A49E7E1BBE666313528((&V_11), NULL);
|
|
V_12 = L_27;
|
|
uint8_t* L_28 = ___1_value;
|
|
uint8_t L_29 = (*(uint8_t*)L_28);
|
|
NullCheck(L_24);
|
|
bool L_30;
|
|
L_30 = ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m86ADEFC45B74BBE3BD67E4942F5F07C7D16D5AB7(L_24, (&V_0), (&V_12), L_29, (&V_3), il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_30;
|
|
bool L_31 = V_2;
|
|
V_13 = L_31;
|
|
bool L_32 = V_13;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_14), sizeof(BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB));
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_33 = V_14;
|
|
V_10 = L_33;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
int32_t L_34 = V_3;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_35 = ___0_context;
|
|
RuntimeObject* L_36;
|
|
L_36 = BindingContext_get_dataSource_mF6CA0E5AED1F7DCA5619AEBA09F9F8F05D1CF504_inline(L_35, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_37 = ___0_context;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_38;
|
|
L_38 = BindingContext_get_dataSourcePath_m10A8B994ADD410BE92EAD7E0143C64C3A60B36BA_inline(L_37, NULL);
|
|
V_12 = L_38;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39 = V_0;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_40 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_41;
|
|
L_41 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_40, NULL);
|
|
V_11 = L_41;
|
|
uint8_t* L_42 = ___1_value;
|
|
uint8_t L_43 = (*(uint8_t*)L_42);
|
|
String_t* L_44;
|
|
L_44 = DataBinding_GetSetValueErrorString_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m2BB4E686E362E0B72CFE055ECC55E3F07D9DA26A(L_34, L_36, (&V_12), (RuntimeObject*)L_39, (&V_11), L_43, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_4 = L_44;
|
|
String_t* L_45 = V_4;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_46;
|
|
memset((&L_46), 0, sizeof(L_46));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_46), (int32_t)1, L_45, NULL);
|
|
V_10 = L_46;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_47 = V_10;
|
|
return L_47;
|
|
}
|
|
}
|
|
// Method Definition Index: 10509
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB DataBinding_UpdateUI_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m007E48BEB668EA7FD0459825E55EFDE3CB159928_gshared (DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA* __this, BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* ___0_context, Il2CppChar* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* V_1 = NULL;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_6 = NULL;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* V_7 = NULL;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
bool V_13 = false;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_0 = ___0_context;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = BindingContext_get_targetElement_m3E4F5FD912C4659E09308288F4F054457FB48691_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = V_0;
|
|
NullCheck((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_3;
|
|
L_3 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
V_1 = L_3;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_5 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_7;
|
|
L_7 = FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53(L_5, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_6, NULL);
|
|
G_B3_0 = ((int32_t)(L_7));
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
V_5 = (bool)G_B3_0;
|
|
bool L_8 = V_5;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10;
|
|
L_10 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_9, NULL);
|
|
V_6 = L_10;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_11 = V_6;
|
|
V_7 = ((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0*)IsInstClass((RuntimeObject*)L_11, TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var));
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_12 = V_7;
|
|
if (!L_12)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_13 = V_7;
|
|
NullCheck((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13);
|
|
bool L_14;
|
|
L_14 = VisualElement_ClassListContains_m202159CA74B09E919CBF4497AA5FAD6AD9B1666F((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13, _stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = V_0;
|
|
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_16 = V_9;
|
|
if (!L_16)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = V_9;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var, L_17);
|
|
if (L_18)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_19 = V_7;
|
|
NullCheck(L_19);
|
|
RuntimeObject* L_20;
|
|
L_20 = TextElement_get_edition_m29D5704DD0B49EA8AC63B5CEBA9A69AC075327CC(L_19, NULL);
|
|
NullCheck(L_20);
|
|
TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* L_21;
|
|
L_21 = InterfaceFuncInvoker0< TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* >::Invoke(36, ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var, L_20);
|
|
G_B10_0 = ((!(((RuntimeObject*)(TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_8 = (bool)G_B12_0;
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_23;
|
|
memset((&L_23), 0, sizeof(L_23));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_23), (int32_t)2, (String_t*)NULL, NULL);
|
|
V_10 = L_23;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_24;
|
|
L_24 = DataBinding_get_sourceToUiConverters_m2888B514C8EB942094376F57EFB6218E678F9409(__this, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_25 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_26;
|
|
L_26 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_25, NULL);
|
|
V_11 = L_26;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_27;
|
|
L_27 = BindingId_op_Implicit_m59B81D19F3282655F5E65A49E7E1BBE666313528((&V_11), NULL);
|
|
V_12 = L_27;
|
|
Il2CppChar* L_28 = ___1_value;
|
|
Il2CppChar L_29 = (*(Il2CppChar*)L_28);
|
|
NullCheck(L_24);
|
|
bool L_30;
|
|
L_30 = ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mAC991187426224419029A5DCD132DDE6FDFFEA6C(L_24, (&V_0), (&V_12), L_29, (&V_3), il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_30;
|
|
bool L_31 = V_2;
|
|
V_13 = L_31;
|
|
bool L_32 = V_13;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_14), sizeof(BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB));
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_33 = V_14;
|
|
V_10 = L_33;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
int32_t L_34 = V_3;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_35 = ___0_context;
|
|
RuntimeObject* L_36;
|
|
L_36 = BindingContext_get_dataSource_mF6CA0E5AED1F7DCA5619AEBA09F9F8F05D1CF504_inline(L_35, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_37 = ___0_context;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_38;
|
|
L_38 = BindingContext_get_dataSourcePath_m10A8B994ADD410BE92EAD7E0143C64C3A60B36BA_inline(L_37, NULL);
|
|
V_12 = L_38;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39 = V_0;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_40 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_41;
|
|
L_41 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_40, NULL);
|
|
V_11 = L_41;
|
|
Il2CppChar* L_42 = ___1_value;
|
|
Il2CppChar L_43 = (*(Il2CppChar*)L_42);
|
|
String_t* L_44;
|
|
L_44 = DataBinding_GetSetValueErrorString_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD538741205AF482803DA3A02E0A67C9B8209F810(L_34, L_36, (&V_12), (RuntimeObject*)L_39, (&V_11), L_43, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_4 = L_44;
|
|
String_t* L_45 = V_4;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_46;
|
|
memset((&L_46), 0, sizeof(L_46));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_46), (int32_t)1, L_45, NULL);
|
|
V_10 = L_46;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_47 = V_10;
|
|
return L_47;
|
|
}
|
|
}
|
|
// Method Definition Index: 10509
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB DataBinding_UpdateUI_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m35DA114C93D9B2B44D1A807CEEFC68A9DF9DCFF3_gshared (DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA* __this, BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* ___0_context, double* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* V_1 = NULL;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_6 = NULL;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* V_7 = NULL;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
bool V_13 = false;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_0 = ___0_context;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = BindingContext_get_targetElement_m3E4F5FD912C4659E09308288F4F054457FB48691_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = V_0;
|
|
NullCheck((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_3;
|
|
L_3 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
V_1 = L_3;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_5 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_7;
|
|
L_7 = FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53(L_5, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_6, NULL);
|
|
G_B3_0 = ((int32_t)(L_7));
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
V_5 = (bool)G_B3_0;
|
|
bool L_8 = V_5;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10;
|
|
L_10 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_9, NULL);
|
|
V_6 = L_10;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_11 = V_6;
|
|
V_7 = ((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0*)IsInstClass((RuntimeObject*)L_11, TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var));
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_12 = V_7;
|
|
if (!L_12)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_13 = V_7;
|
|
NullCheck((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13);
|
|
bool L_14;
|
|
L_14 = VisualElement_ClassListContains_m202159CA74B09E919CBF4497AA5FAD6AD9B1666F((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13, _stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = V_0;
|
|
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_16 = V_9;
|
|
if (!L_16)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = V_9;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var, L_17);
|
|
if (L_18)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_19 = V_7;
|
|
NullCheck(L_19);
|
|
RuntimeObject* L_20;
|
|
L_20 = TextElement_get_edition_m29D5704DD0B49EA8AC63B5CEBA9A69AC075327CC(L_19, NULL);
|
|
NullCheck(L_20);
|
|
TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* L_21;
|
|
L_21 = InterfaceFuncInvoker0< TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* >::Invoke(36, ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var, L_20);
|
|
G_B10_0 = ((!(((RuntimeObject*)(TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_8 = (bool)G_B12_0;
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_23;
|
|
memset((&L_23), 0, sizeof(L_23));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_23), (int32_t)2, (String_t*)NULL, NULL);
|
|
V_10 = L_23;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_24;
|
|
L_24 = DataBinding_get_sourceToUiConverters_m2888B514C8EB942094376F57EFB6218E678F9409(__this, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_25 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_26;
|
|
L_26 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_25, NULL);
|
|
V_11 = L_26;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_27;
|
|
L_27 = BindingId_op_Implicit_m59B81D19F3282655F5E65A49E7E1BBE666313528((&V_11), NULL);
|
|
V_12 = L_27;
|
|
double* L_28 = ___1_value;
|
|
double L_29 = (*(double*)L_28);
|
|
NullCheck(L_24);
|
|
bool L_30;
|
|
L_30 = ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m232A1C32F9C13B7B4A160441740BD4B85FB9590A(L_24, (&V_0), (&V_12), L_29, (&V_3), il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_30;
|
|
bool L_31 = V_2;
|
|
V_13 = L_31;
|
|
bool L_32 = V_13;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_14), sizeof(BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB));
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_33 = V_14;
|
|
V_10 = L_33;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
int32_t L_34 = V_3;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_35 = ___0_context;
|
|
RuntimeObject* L_36;
|
|
L_36 = BindingContext_get_dataSource_mF6CA0E5AED1F7DCA5619AEBA09F9F8F05D1CF504_inline(L_35, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_37 = ___0_context;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_38;
|
|
L_38 = BindingContext_get_dataSourcePath_m10A8B994ADD410BE92EAD7E0143C64C3A60B36BA_inline(L_37, NULL);
|
|
V_12 = L_38;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39 = V_0;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_40 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_41;
|
|
L_41 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_40, NULL);
|
|
V_11 = L_41;
|
|
double* L_42 = ___1_value;
|
|
double L_43 = (*(double*)L_42);
|
|
String_t* L_44;
|
|
L_44 = DataBinding_GetSetValueErrorString_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_mEABCBB742A7CAE1D09910287456EE605D8CE4AEB(L_34, L_36, (&V_12), (RuntimeObject*)L_39, (&V_11), L_43, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_4 = L_44;
|
|
String_t* L_45 = V_4;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_46;
|
|
memset((&L_46), 0, sizeof(L_46));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_46), (int32_t)1, L_45, NULL);
|
|
V_10 = L_46;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_47 = V_10;
|
|
return L_47;
|
|
}
|
|
}
|
|
// Method Definition Index: 10509
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB DataBinding_UpdateUI_TisInt16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_m5D644E96D822DBD27E34C332F02AEEA369498EED_gshared (DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA* __this, BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* ___0_context, int16_t* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* V_1 = NULL;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_6 = NULL;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* V_7 = NULL;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
bool V_13 = false;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_0 = ___0_context;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = BindingContext_get_targetElement_m3E4F5FD912C4659E09308288F4F054457FB48691_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = V_0;
|
|
NullCheck((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_3;
|
|
L_3 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
V_1 = L_3;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_5 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_7;
|
|
L_7 = FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53(L_5, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_6, NULL);
|
|
G_B3_0 = ((int32_t)(L_7));
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
V_5 = (bool)G_B3_0;
|
|
bool L_8 = V_5;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10;
|
|
L_10 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_9, NULL);
|
|
V_6 = L_10;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_11 = V_6;
|
|
V_7 = ((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0*)IsInstClass((RuntimeObject*)L_11, TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var));
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_12 = V_7;
|
|
if (!L_12)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_13 = V_7;
|
|
NullCheck((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13);
|
|
bool L_14;
|
|
L_14 = VisualElement_ClassListContains_m202159CA74B09E919CBF4497AA5FAD6AD9B1666F((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13, _stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = V_0;
|
|
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_16 = V_9;
|
|
if (!L_16)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = V_9;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var, L_17);
|
|
if (L_18)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_19 = V_7;
|
|
NullCheck(L_19);
|
|
RuntimeObject* L_20;
|
|
L_20 = TextElement_get_edition_m29D5704DD0B49EA8AC63B5CEBA9A69AC075327CC(L_19, NULL);
|
|
NullCheck(L_20);
|
|
TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* L_21;
|
|
L_21 = InterfaceFuncInvoker0< TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* >::Invoke(36, ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var, L_20);
|
|
G_B10_0 = ((!(((RuntimeObject*)(TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_8 = (bool)G_B12_0;
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_23;
|
|
memset((&L_23), 0, sizeof(L_23));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_23), (int32_t)2, (String_t*)NULL, NULL);
|
|
V_10 = L_23;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_24;
|
|
L_24 = DataBinding_get_sourceToUiConverters_m2888B514C8EB942094376F57EFB6218E678F9409(__this, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_25 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_26;
|
|
L_26 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_25, NULL);
|
|
V_11 = L_26;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_27;
|
|
L_27 = BindingId_op_Implicit_m59B81D19F3282655F5E65A49E7E1BBE666313528((&V_11), NULL);
|
|
V_12 = L_27;
|
|
int16_t* L_28 = ___1_value;
|
|
int16_t L_29 = (*(int16_t*)L_28);
|
|
NullCheck(L_24);
|
|
bool L_30;
|
|
L_30 = ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisInt16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_m42DA3202F30155CB932260F258D37CE3DF4ABA0E(L_24, (&V_0), (&V_12), L_29, (&V_3), il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_30;
|
|
bool L_31 = V_2;
|
|
V_13 = L_31;
|
|
bool L_32 = V_13;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_14), sizeof(BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB));
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_33 = V_14;
|
|
V_10 = L_33;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
int32_t L_34 = V_3;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_35 = ___0_context;
|
|
RuntimeObject* L_36;
|
|
L_36 = BindingContext_get_dataSource_mF6CA0E5AED1F7DCA5619AEBA09F9F8F05D1CF504_inline(L_35, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_37 = ___0_context;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_38;
|
|
L_38 = BindingContext_get_dataSourcePath_m10A8B994ADD410BE92EAD7E0143C64C3A60B36BA_inline(L_37, NULL);
|
|
V_12 = L_38;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39 = V_0;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_40 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_41;
|
|
L_41 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_40, NULL);
|
|
V_11 = L_41;
|
|
int16_t* L_42 = ___1_value;
|
|
int16_t L_43 = (*(int16_t*)L_42);
|
|
String_t* L_44;
|
|
L_44 = DataBinding_GetSetValueErrorString_TisInt16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_mD352A5FD1DE2B0820D7BFB91DA2ACC240A372C0A(L_34, L_36, (&V_12), (RuntimeObject*)L_39, (&V_11), L_43, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_4 = L_44;
|
|
String_t* L_45 = V_4;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_46;
|
|
memset((&L_46), 0, sizeof(L_46));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_46), (int32_t)1, L_45, NULL);
|
|
V_10 = L_46;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_47 = V_10;
|
|
return L_47;
|
|
}
|
|
}
|
|
// Method Definition Index: 10509
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB DataBinding_UpdateUI_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m2470BF3B82EE9EE0FA31E911BB80185E19F949CA_gshared (DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA* __this, BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* ___0_context, int32_t* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* V_1 = NULL;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_6 = NULL;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* V_7 = NULL;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
bool V_13 = false;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_0 = ___0_context;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = BindingContext_get_targetElement_m3E4F5FD912C4659E09308288F4F054457FB48691_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = V_0;
|
|
NullCheck((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_3;
|
|
L_3 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
V_1 = L_3;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_5 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_7;
|
|
L_7 = FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53(L_5, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_6, NULL);
|
|
G_B3_0 = ((int32_t)(L_7));
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
V_5 = (bool)G_B3_0;
|
|
bool L_8 = V_5;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10;
|
|
L_10 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_9, NULL);
|
|
V_6 = L_10;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_11 = V_6;
|
|
V_7 = ((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0*)IsInstClass((RuntimeObject*)L_11, TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var));
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_12 = V_7;
|
|
if (!L_12)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_13 = V_7;
|
|
NullCheck((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13);
|
|
bool L_14;
|
|
L_14 = VisualElement_ClassListContains_m202159CA74B09E919CBF4497AA5FAD6AD9B1666F((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13, _stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = V_0;
|
|
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_16 = V_9;
|
|
if (!L_16)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = V_9;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var, L_17);
|
|
if (L_18)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_19 = V_7;
|
|
NullCheck(L_19);
|
|
RuntimeObject* L_20;
|
|
L_20 = TextElement_get_edition_m29D5704DD0B49EA8AC63B5CEBA9A69AC075327CC(L_19, NULL);
|
|
NullCheck(L_20);
|
|
TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* L_21;
|
|
L_21 = InterfaceFuncInvoker0< TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* >::Invoke(36, ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var, L_20);
|
|
G_B10_0 = ((!(((RuntimeObject*)(TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_8 = (bool)G_B12_0;
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_23;
|
|
memset((&L_23), 0, sizeof(L_23));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_23), (int32_t)2, (String_t*)NULL, NULL);
|
|
V_10 = L_23;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_24;
|
|
L_24 = DataBinding_get_sourceToUiConverters_m2888B514C8EB942094376F57EFB6218E678F9409(__this, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_25 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_26;
|
|
L_26 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_25, NULL);
|
|
V_11 = L_26;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_27;
|
|
L_27 = BindingId_op_Implicit_m59B81D19F3282655F5E65A49E7E1BBE666313528((&V_11), NULL);
|
|
V_12 = L_27;
|
|
int32_t* L_28 = ___1_value;
|
|
int32_t L_29 = (*(int32_t*)L_28);
|
|
NullCheck(L_24);
|
|
bool L_30;
|
|
L_30 = ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m395AA0123C949B05D064A20073C2DE09C63AE0B8(L_24, (&V_0), (&V_12), L_29, (&V_3), il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_30;
|
|
bool L_31 = V_2;
|
|
V_13 = L_31;
|
|
bool L_32 = V_13;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_14), sizeof(BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB));
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_33 = V_14;
|
|
V_10 = L_33;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
int32_t L_34 = V_3;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_35 = ___0_context;
|
|
RuntimeObject* L_36;
|
|
L_36 = BindingContext_get_dataSource_mF6CA0E5AED1F7DCA5619AEBA09F9F8F05D1CF504_inline(L_35, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_37 = ___0_context;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_38;
|
|
L_38 = BindingContext_get_dataSourcePath_m10A8B994ADD410BE92EAD7E0143C64C3A60B36BA_inline(L_37, NULL);
|
|
V_12 = L_38;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39 = V_0;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_40 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_41;
|
|
L_41 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_40, NULL);
|
|
V_11 = L_41;
|
|
int32_t* L_42 = ___1_value;
|
|
int32_t L_43 = (*(int32_t*)L_42);
|
|
String_t* L_44;
|
|
L_44 = DataBinding_GetSetValueErrorString_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mEB66817134A95892AC98FEB5E6177BDEE90DA11E(L_34, L_36, (&V_12), (RuntimeObject*)L_39, (&V_11), L_43, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_4 = L_44;
|
|
String_t* L_45 = V_4;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_46;
|
|
memset((&L_46), 0, sizeof(L_46));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_46), (int32_t)1, L_45, NULL);
|
|
V_10 = L_46;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_47 = V_10;
|
|
return L_47;
|
|
}
|
|
}
|
|
// Method Definition Index: 10509
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB DataBinding_UpdateUI_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m8308992A69ACA929A0F71F517A5479BE6A89073C_gshared (DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA* __this, BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* ___0_context, int64_t* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* V_1 = NULL;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_6 = NULL;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* V_7 = NULL;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
bool V_13 = false;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_0 = ___0_context;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = BindingContext_get_targetElement_m3E4F5FD912C4659E09308288F4F054457FB48691_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = V_0;
|
|
NullCheck((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_3;
|
|
L_3 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
V_1 = L_3;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_5 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_7;
|
|
L_7 = FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53(L_5, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_6, NULL);
|
|
G_B3_0 = ((int32_t)(L_7));
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
V_5 = (bool)G_B3_0;
|
|
bool L_8 = V_5;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10;
|
|
L_10 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_9, NULL);
|
|
V_6 = L_10;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_11 = V_6;
|
|
V_7 = ((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0*)IsInstClass((RuntimeObject*)L_11, TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var));
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_12 = V_7;
|
|
if (!L_12)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_13 = V_7;
|
|
NullCheck((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13);
|
|
bool L_14;
|
|
L_14 = VisualElement_ClassListContains_m202159CA74B09E919CBF4497AA5FAD6AD9B1666F((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13, _stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = V_0;
|
|
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_16 = V_9;
|
|
if (!L_16)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = V_9;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var, L_17);
|
|
if (L_18)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_19 = V_7;
|
|
NullCheck(L_19);
|
|
RuntimeObject* L_20;
|
|
L_20 = TextElement_get_edition_m29D5704DD0B49EA8AC63B5CEBA9A69AC075327CC(L_19, NULL);
|
|
NullCheck(L_20);
|
|
TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* L_21;
|
|
L_21 = InterfaceFuncInvoker0< TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* >::Invoke(36, ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var, L_20);
|
|
G_B10_0 = ((!(((RuntimeObject*)(TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_8 = (bool)G_B12_0;
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_23;
|
|
memset((&L_23), 0, sizeof(L_23));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_23), (int32_t)2, (String_t*)NULL, NULL);
|
|
V_10 = L_23;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_24;
|
|
L_24 = DataBinding_get_sourceToUiConverters_m2888B514C8EB942094376F57EFB6218E678F9409(__this, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_25 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_26;
|
|
L_26 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_25, NULL);
|
|
V_11 = L_26;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_27;
|
|
L_27 = BindingId_op_Implicit_m59B81D19F3282655F5E65A49E7E1BBE666313528((&V_11), NULL);
|
|
V_12 = L_27;
|
|
int64_t* L_28 = ___1_value;
|
|
int64_t L_29 = (*(int64_t*)L_28);
|
|
NullCheck(L_24);
|
|
bool L_30;
|
|
L_30 = ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_mF87C748B1D6CDFD399F6AEC5BBC439E9D112FA0F(L_24, (&V_0), (&V_12), L_29, (&V_3), il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_30;
|
|
bool L_31 = V_2;
|
|
V_13 = L_31;
|
|
bool L_32 = V_13;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_14), sizeof(BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB));
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_33 = V_14;
|
|
V_10 = L_33;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
int32_t L_34 = V_3;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_35 = ___0_context;
|
|
RuntimeObject* L_36;
|
|
L_36 = BindingContext_get_dataSource_mF6CA0E5AED1F7DCA5619AEBA09F9F8F05D1CF504_inline(L_35, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_37 = ___0_context;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_38;
|
|
L_38 = BindingContext_get_dataSourcePath_m10A8B994ADD410BE92EAD7E0143C64C3A60B36BA_inline(L_37, NULL);
|
|
V_12 = L_38;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39 = V_0;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_40 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_41;
|
|
L_41 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_40, NULL);
|
|
V_11 = L_41;
|
|
int64_t* L_42 = ___1_value;
|
|
int64_t L_43 = (*(int64_t*)L_42);
|
|
String_t* L_44;
|
|
L_44 = DataBinding_GetSetValueErrorString_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m5F50CBF79D617F92D22DD503F44A3B76E6CBD944(L_34, L_36, (&V_12), (RuntimeObject*)L_39, (&V_11), L_43, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_4 = L_44;
|
|
String_t* L_45 = V_4;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_46;
|
|
memset((&L_46), 0, sizeof(L_46));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_46), (int32_t)1, L_45, NULL);
|
|
V_10 = L_46;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_47 = V_10;
|
|
return L_47;
|
|
}
|
|
}
|
|
// Method Definition Index: 10509
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB DataBinding_UpdateUI_TisRuntimeObject_mD6400AAE02E99865AC78972929D77BE09E0E4309_gshared (DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA* __this, BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* ___0_context, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* V_1 = NULL;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_6 = NULL;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* V_7 = NULL;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
bool V_13 = false;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_0 = ___0_context;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = BindingContext_get_targetElement_m3E4F5FD912C4659E09308288F4F054457FB48691_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = V_0;
|
|
NullCheck((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_3;
|
|
L_3 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
V_1 = L_3;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_5 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_7;
|
|
L_7 = FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53(L_5, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_6, NULL);
|
|
G_B3_0 = ((int32_t)(L_7));
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
V_5 = (bool)G_B3_0;
|
|
bool L_8 = V_5;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10;
|
|
L_10 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_9, NULL);
|
|
V_6 = L_10;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_11 = V_6;
|
|
V_7 = ((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0*)IsInstClass((RuntimeObject*)L_11, TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var));
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_12 = V_7;
|
|
if (!L_12)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_13 = V_7;
|
|
NullCheck((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13);
|
|
bool L_14;
|
|
L_14 = VisualElement_ClassListContains_m202159CA74B09E919CBF4497AA5FAD6AD9B1666F((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13, _stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = V_0;
|
|
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_16 = V_9;
|
|
if (!L_16)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = V_9;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var, L_17);
|
|
if (L_18)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_19 = V_7;
|
|
NullCheck(L_19);
|
|
RuntimeObject* L_20;
|
|
L_20 = TextElement_get_edition_m29D5704DD0B49EA8AC63B5CEBA9A69AC075327CC(L_19, NULL);
|
|
NullCheck(L_20);
|
|
TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* L_21;
|
|
L_21 = InterfaceFuncInvoker0< TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* >::Invoke(36, ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var, L_20);
|
|
G_B10_0 = ((!(((RuntimeObject*)(TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_8 = (bool)G_B12_0;
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_23;
|
|
memset((&L_23), 0, sizeof(L_23));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_23), (int32_t)2, (String_t*)NULL, NULL);
|
|
V_10 = L_23;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_24;
|
|
L_24 = DataBinding_get_sourceToUiConverters_m2888B514C8EB942094376F57EFB6218E678F9409(__this, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_25 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_26;
|
|
L_26 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_25, NULL);
|
|
V_11 = L_26;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_27;
|
|
L_27 = BindingId_op_Implicit_m59B81D19F3282655F5E65A49E7E1BBE666313528((&V_11), NULL);
|
|
V_12 = L_27;
|
|
RuntimeObject** L_28 = ___1_value;
|
|
RuntimeObject* L_29 = (*(RuntimeObject**)L_28);
|
|
NullCheck(L_24);
|
|
bool L_30;
|
|
L_30 = ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisRuntimeObject_m95BC645D236503EE9930754C108375FA81ACB2BE(L_24, (&V_0), (&V_12), L_29, (&V_3), il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_30;
|
|
bool L_31 = V_2;
|
|
V_13 = L_31;
|
|
bool L_32 = V_13;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_14), sizeof(BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB));
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_33 = V_14;
|
|
V_10 = L_33;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
int32_t L_34 = V_3;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_35 = ___0_context;
|
|
RuntimeObject* L_36;
|
|
L_36 = BindingContext_get_dataSource_mF6CA0E5AED1F7DCA5619AEBA09F9F8F05D1CF504_inline(L_35, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_37 = ___0_context;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_38;
|
|
L_38 = BindingContext_get_dataSourcePath_m10A8B994ADD410BE92EAD7E0143C64C3A60B36BA_inline(L_37, NULL);
|
|
V_12 = L_38;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39 = V_0;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_40 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_41;
|
|
L_41 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_40, NULL);
|
|
V_11 = L_41;
|
|
RuntimeObject** L_42 = ___1_value;
|
|
RuntimeObject* L_43 = (*(RuntimeObject**)L_42);
|
|
String_t* L_44;
|
|
L_44 = DataBinding_GetSetValueErrorString_TisRuntimeObject_mF3A7F00209C07E2578250228DF1849108CE77911(L_34, L_36, (&V_12), (RuntimeObject*)L_39, (&V_11), L_43, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_4 = L_44;
|
|
String_t* L_45 = V_4;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_46;
|
|
memset((&L_46), 0, sizeof(L_46));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_46), (int32_t)1, L_45, NULL);
|
|
V_10 = L_46;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_47 = V_10;
|
|
return L_47;
|
|
}
|
|
}
|
|
// Method Definition Index: 10509
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB DataBinding_UpdateUI_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_m180C47A6D01A1AF92939DADFA07198A982E3C0FF_gshared (DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA* __this, BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* ___0_context, int8_t* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* V_1 = NULL;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_6 = NULL;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* V_7 = NULL;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
bool V_13 = false;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_0 = ___0_context;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = BindingContext_get_targetElement_m3E4F5FD912C4659E09308288F4F054457FB48691_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = V_0;
|
|
NullCheck((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_3;
|
|
L_3 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
V_1 = L_3;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_5 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_7;
|
|
L_7 = FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53(L_5, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_6, NULL);
|
|
G_B3_0 = ((int32_t)(L_7));
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
V_5 = (bool)G_B3_0;
|
|
bool L_8 = V_5;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10;
|
|
L_10 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_9, NULL);
|
|
V_6 = L_10;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_11 = V_6;
|
|
V_7 = ((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0*)IsInstClass((RuntimeObject*)L_11, TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var));
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_12 = V_7;
|
|
if (!L_12)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_13 = V_7;
|
|
NullCheck((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13);
|
|
bool L_14;
|
|
L_14 = VisualElement_ClassListContains_m202159CA74B09E919CBF4497AA5FAD6AD9B1666F((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13, _stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = V_0;
|
|
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_16 = V_9;
|
|
if (!L_16)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = V_9;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var, L_17);
|
|
if (L_18)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_19 = V_7;
|
|
NullCheck(L_19);
|
|
RuntimeObject* L_20;
|
|
L_20 = TextElement_get_edition_m29D5704DD0B49EA8AC63B5CEBA9A69AC075327CC(L_19, NULL);
|
|
NullCheck(L_20);
|
|
TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* L_21;
|
|
L_21 = InterfaceFuncInvoker0< TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* >::Invoke(36, ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var, L_20);
|
|
G_B10_0 = ((!(((RuntimeObject*)(TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_8 = (bool)G_B12_0;
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_23;
|
|
memset((&L_23), 0, sizeof(L_23));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_23), (int32_t)2, (String_t*)NULL, NULL);
|
|
V_10 = L_23;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_24;
|
|
L_24 = DataBinding_get_sourceToUiConverters_m2888B514C8EB942094376F57EFB6218E678F9409(__this, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_25 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_26;
|
|
L_26 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_25, NULL);
|
|
V_11 = L_26;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_27;
|
|
L_27 = BindingId_op_Implicit_m59B81D19F3282655F5E65A49E7E1BBE666313528((&V_11), NULL);
|
|
V_12 = L_27;
|
|
int8_t* L_28 = ___1_value;
|
|
int8_t L_29 = (*(int8_t*)L_28);
|
|
NullCheck(L_24);
|
|
bool L_30;
|
|
L_30 = ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_m16E7BBD3A6747F996D4B887911D51535C062A677(L_24, (&V_0), (&V_12), L_29, (&V_3), il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_30;
|
|
bool L_31 = V_2;
|
|
V_13 = L_31;
|
|
bool L_32 = V_13;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_14), sizeof(BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB));
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_33 = V_14;
|
|
V_10 = L_33;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
int32_t L_34 = V_3;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_35 = ___0_context;
|
|
RuntimeObject* L_36;
|
|
L_36 = BindingContext_get_dataSource_mF6CA0E5AED1F7DCA5619AEBA09F9F8F05D1CF504_inline(L_35, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_37 = ___0_context;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_38;
|
|
L_38 = BindingContext_get_dataSourcePath_m10A8B994ADD410BE92EAD7E0143C64C3A60B36BA_inline(L_37, NULL);
|
|
V_12 = L_38;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39 = V_0;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_40 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_41;
|
|
L_41 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_40, NULL);
|
|
V_11 = L_41;
|
|
int8_t* L_42 = ___1_value;
|
|
int8_t L_43 = (*(int8_t*)L_42);
|
|
String_t* L_44;
|
|
L_44 = DataBinding_GetSetValueErrorString_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_mEEF2ED6254BBD880C65795276EA87FF59E11CE44(L_34, L_36, (&V_12), (RuntimeObject*)L_39, (&V_11), L_43, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_4 = L_44;
|
|
String_t* L_45 = V_4;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_46;
|
|
memset((&L_46), 0, sizeof(L_46));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_46), (int32_t)1, L_45, NULL);
|
|
V_10 = L_46;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_47 = V_10;
|
|
return L_47;
|
|
}
|
|
}
|
|
// Method Definition Index: 10509
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB DataBinding_UpdateUI_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mE4746CA1AE21F28AFAABA0ADCBF1BDD8D075373C_gshared (DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA* __this, BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* ___0_context, float* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* V_1 = NULL;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_6 = NULL;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* V_7 = NULL;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
bool V_13 = false;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_0 = ___0_context;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = BindingContext_get_targetElement_m3E4F5FD912C4659E09308288F4F054457FB48691_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = V_0;
|
|
NullCheck((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_3;
|
|
L_3 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
V_1 = L_3;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_5 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_7;
|
|
L_7 = FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53(L_5, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_6, NULL);
|
|
G_B3_0 = ((int32_t)(L_7));
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
V_5 = (bool)G_B3_0;
|
|
bool L_8 = V_5;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10;
|
|
L_10 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_9, NULL);
|
|
V_6 = L_10;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_11 = V_6;
|
|
V_7 = ((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0*)IsInstClass((RuntimeObject*)L_11, TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var));
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_12 = V_7;
|
|
if (!L_12)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_13 = V_7;
|
|
NullCheck((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13);
|
|
bool L_14;
|
|
L_14 = VisualElement_ClassListContains_m202159CA74B09E919CBF4497AA5FAD6AD9B1666F((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13, _stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = V_0;
|
|
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_16 = V_9;
|
|
if (!L_16)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = V_9;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var, L_17);
|
|
if (L_18)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_19 = V_7;
|
|
NullCheck(L_19);
|
|
RuntimeObject* L_20;
|
|
L_20 = TextElement_get_edition_m29D5704DD0B49EA8AC63B5CEBA9A69AC075327CC(L_19, NULL);
|
|
NullCheck(L_20);
|
|
TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* L_21;
|
|
L_21 = InterfaceFuncInvoker0< TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* >::Invoke(36, ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var, L_20);
|
|
G_B10_0 = ((!(((RuntimeObject*)(TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_8 = (bool)G_B12_0;
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_23;
|
|
memset((&L_23), 0, sizeof(L_23));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_23), (int32_t)2, (String_t*)NULL, NULL);
|
|
V_10 = L_23;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_24;
|
|
L_24 = DataBinding_get_sourceToUiConverters_m2888B514C8EB942094376F57EFB6218E678F9409(__this, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_25 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_26;
|
|
L_26 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_25, NULL);
|
|
V_11 = L_26;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_27;
|
|
L_27 = BindingId_op_Implicit_m59B81D19F3282655F5E65A49E7E1BBE666313528((&V_11), NULL);
|
|
V_12 = L_27;
|
|
float* L_28 = ___1_value;
|
|
float L_29 = (*(float*)L_28);
|
|
NullCheck(L_24);
|
|
bool L_30;
|
|
L_30 = ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m87A305C5E7BA08C400D911D619F3E1F82361399D(L_24, (&V_0), (&V_12), L_29, (&V_3), il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_30;
|
|
bool L_31 = V_2;
|
|
V_13 = L_31;
|
|
bool L_32 = V_13;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_14), sizeof(BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB));
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_33 = V_14;
|
|
V_10 = L_33;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
int32_t L_34 = V_3;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_35 = ___0_context;
|
|
RuntimeObject* L_36;
|
|
L_36 = BindingContext_get_dataSource_mF6CA0E5AED1F7DCA5619AEBA09F9F8F05D1CF504_inline(L_35, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_37 = ___0_context;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_38;
|
|
L_38 = BindingContext_get_dataSourcePath_m10A8B994ADD410BE92EAD7E0143C64C3A60B36BA_inline(L_37, NULL);
|
|
V_12 = L_38;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39 = V_0;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_40 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_41;
|
|
L_41 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_40, NULL);
|
|
V_11 = L_41;
|
|
float* L_42 = ___1_value;
|
|
float L_43 = (*(float*)L_42);
|
|
String_t* L_44;
|
|
L_44 = DataBinding_GetSetValueErrorString_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mA3D9DEFBC828EAAFAAB3C515C59EED3187228B70(L_34, L_36, (&V_12), (RuntimeObject*)L_39, (&V_11), L_43, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_4 = L_44;
|
|
String_t* L_45 = V_4;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_46;
|
|
memset((&L_46), 0, sizeof(L_46));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_46), (int32_t)1, L_45, NULL);
|
|
V_10 = L_46;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_47 = V_10;
|
|
return L_47;
|
|
}
|
|
}
|
|
// Method Definition Index: 10509
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB DataBinding_UpdateUI_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_mC9125D549052EB005E9744D350FEF6AD9B048ABE_gshared (DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA* __this, BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* ___0_context, uint16_t* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* V_1 = NULL;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_6 = NULL;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* V_7 = NULL;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
bool V_13 = false;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_0 = ___0_context;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = BindingContext_get_targetElement_m3E4F5FD912C4659E09308288F4F054457FB48691_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = V_0;
|
|
NullCheck((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_3;
|
|
L_3 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
V_1 = L_3;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_5 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_7;
|
|
L_7 = FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53(L_5, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_6, NULL);
|
|
G_B3_0 = ((int32_t)(L_7));
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
V_5 = (bool)G_B3_0;
|
|
bool L_8 = V_5;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10;
|
|
L_10 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_9, NULL);
|
|
V_6 = L_10;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_11 = V_6;
|
|
V_7 = ((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0*)IsInstClass((RuntimeObject*)L_11, TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var));
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_12 = V_7;
|
|
if (!L_12)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_13 = V_7;
|
|
NullCheck((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13);
|
|
bool L_14;
|
|
L_14 = VisualElement_ClassListContains_m202159CA74B09E919CBF4497AA5FAD6AD9B1666F((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13, _stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = V_0;
|
|
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_16 = V_9;
|
|
if (!L_16)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = V_9;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var, L_17);
|
|
if (L_18)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_19 = V_7;
|
|
NullCheck(L_19);
|
|
RuntimeObject* L_20;
|
|
L_20 = TextElement_get_edition_m29D5704DD0B49EA8AC63B5CEBA9A69AC075327CC(L_19, NULL);
|
|
NullCheck(L_20);
|
|
TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* L_21;
|
|
L_21 = InterfaceFuncInvoker0< TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* >::Invoke(36, ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var, L_20);
|
|
G_B10_0 = ((!(((RuntimeObject*)(TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_8 = (bool)G_B12_0;
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_23;
|
|
memset((&L_23), 0, sizeof(L_23));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_23), (int32_t)2, (String_t*)NULL, NULL);
|
|
V_10 = L_23;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_24;
|
|
L_24 = DataBinding_get_sourceToUiConverters_m2888B514C8EB942094376F57EFB6218E678F9409(__this, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_25 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_26;
|
|
L_26 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_25, NULL);
|
|
V_11 = L_26;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_27;
|
|
L_27 = BindingId_op_Implicit_m59B81D19F3282655F5E65A49E7E1BBE666313528((&V_11), NULL);
|
|
V_12 = L_27;
|
|
uint16_t* L_28 = ___1_value;
|
|
uint16_t L_29 = (*(uint16_t*)L_28);
|
|
NullCheck(L_24);
|
|
bool L_30;
|
|
L_30 = ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_mBC0438CFFBB91DC54055DEC5D7FD852FA2D70732(L_24, (&V_0), (&V_12), L_29, (&V_3), il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_30;
|
|
bool L_31 = V_2;
|
|
V_13 = L_31;
|
|
bool L_32 = V_13;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_14), sizeof(BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB));
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_33 = V_14;
|
|
V_10 = L_33;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
int32_t L_34 = V_3;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_35 = ___0_context;
|
|
RuntimeObject* L_36;
|
|
L_36 = BindingContext_get_dataSource_mF6CA0E5AED1F7DCA5619AEBA09F9F8F05D1CF504_inline(L_35, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_37 = ___0_context;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_38;
|
|
L_38 = BindingContext_get_dataSourcePath_m10A8B994ADD410BE92EAD7E0143C64C3A60B36BA_inline(L_37, NULL);
|
|
V_12 = L_38;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39 = V_0;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_40 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_41;
|
|
L_41 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_40, NULL);
|
|
V_11 = L_41;
|
|
uint16_t* L_42 = ___1_value;
|
|
uint16_t L_43 = (*(uint16_t*)L_42);
|
|
String_t* L_44;
|
|
L_44 = DataBinding_GetSetValueErrorString_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m091FE7BDAA857B98E917C5504C053BCB57B146DB(L_34, L_36, (&V_12), (RuntimeObject*)L_39, (&V_11), L_43, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_4 = L_44;
|
|
String_t* L_45 = V_4;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_46;
|
|
memset((&L_46), 0, sizeof(L_46));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_46), (int32_t)1, L_45, NULL);
|
|
V_10 = L_46;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_47 = V_10;
|
|
return L_47;
|
|
}
|
|
}
|
|
// Method Definition Index: 10509
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB DataBinding_UpdateUI_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mCD8A7A06256A305A8B094841441958A759BD1419_gshared (DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA* __this, BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* ___0_context, uint32_t* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* V_1 = NULL;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_6 = NULL;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* V_7 = NULL;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
bool V_13 = false;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_0 = ___0_context;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = BindingContext_get_targetElement_m3E4F5FD912C4659E09308288F4F054457FB48691_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = V_0;
|
|
NullCheck((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_3;
|
|
L_3 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
V_1 = L_3;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_5 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_7;
|
|
L_7 = FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53(L_5, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_6, NULL);
|
|
G_B3_0 = ((int32_t)(L_7));
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
V_5 = (bool)G_B3_0;
|
|
bool L_8 = V_5;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10;
|
|
L_10 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_9, NULL);
|
|
V_6 = L_10;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_11 = V_6;
|
|
V_7 = ((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0*)IsInstClass((RuntimeObject*)L_11, TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var));
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_12 = V_7;
|
|
if (!L_12)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_13 = V_7;
|
|
NullCheck((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13);
|
|
bool L_14;
|
|
L_14 = VisualElement_ClassListContains_m202159CA74B09E919CBF4497AA5FAD6AD9B1666F((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13, _stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = V_0;
|
|
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_16 = V_9;
|
|
if (!L_16)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = V_9;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var, L_17);
|
|
if (L_18)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_19 = V_7;
|
|
NullCheck(L_19);
|
|
RuntimeObject* L_20;
|
|
L_20 = TextElement_get_edition_m29D5704DD0B49EA8AC63B5CEBA9A69AC075327CC(L_19, NULL);
|
|
NullCheck(L_20);
|
|
TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* L_21;
|
|
L_21 = InterfaceFuncInvoker0< TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* >::Invoke(36, ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var, L_20);
|
|
G_B10_0 = ((!(((RuntimeObject*)(TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_8 = (bool)G_B12_0;
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_23;
|
|
memset((&L_23), 0, sizeof(L_23));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_23), (int32_t)2, (String_t*)NULL, NULL);
|
|
V_10 = L_23;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_24;
|
|
L_24 = DataBinding_get_sourceToUiConverters_m2888B514C8EB942094376F57EFB6218E678F9409(__this, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_25 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_26;
|
|
L_26 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_25, NULL);
|
|
V_11 = L_26;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_27;
|
|
L_27 = BindingId_op_Implicit_m59B81D19F3282655F5E65A49E7E1BBE666313528((&V_11), NULL);
|
|
V_12 = L_27;
|
|
uint32_t* L_28 = ___1_value;
|
|
uint32_t L_29 = (*(uint32_t*)L_28);
|
|
NullCheck(L_24);
|
|
bool L_30;
|
|
L_30 = ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mC7FEE1D9D218EBE98AB87BA70AFA54CF5403A31F(L_24, (&V_0), (&V_12), L_29, (&V_3), il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_30;
|
|
bool L_31 = V_2;
|
|
V_13 = L_31;
|
|
bool L_32 = V_13;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_14), sizeof(BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB));
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_33 = V_14;
|
|
V_10 = L_33;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
int32_t L_34 = V_3;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_35 = ___0_context;
|
|
RuntimeObject* L_36;
|
|
L_36 = BindingContext_get_dataSource_mF6CA0E5AED1F7DCA5619AEBA09F9F8F05D1CF504_inline(L_35, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_37 = ___0_context;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_38;
|
|
L_38 = BindingContext_get_dataSourcePath_m10A8B994ADD410BE92EAD7E0143C64C3A60B36BA_inline(L_37, NULL);
|
|
V_12 = L_38;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39 = V_0;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_40 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_41;
|
|
L_41 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_40, NULL);
|
|
V_11 = L_41;
|
|
uint32_t* L_42 = ___1_value;
|
|
uint32_t L_43 = (*(uint32_t*)L_42);
|
|
String_t* L_44;
|
|
L_44 = DataBinding_GetSetValueErrorString_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m0884F2D81F8AFE20C37E26C96DD3F4A856ACA029(L_34, L_36, (&V_12), (RuntimeObject*)L_39, (&V_11), L_43, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_4 = L_44;
|
|
String_t* L_45 = V_4;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_46;
|
|
memset((&L_46), 0, sizeof(L_46));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_46), (int32_t)1, L_45, NULL);
|
|
V_10 = L_46;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_47 = V_10;
|
|
return L_47;
|
|
}
|
|
}
|
|
// Method Definition Index: 10509
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB DataBinding_UpdateUI_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m165D9E72DA810AFEB45980E54916FE540759651D_gshared (DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA* __this, BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* ___0_context, uint64_t* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* V_1 = NULL;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_6 = NULL;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* V_7 = NULL;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
bool V_13 = false;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_0 = ___0_context;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = BindingContext_get_targetElement_m3E4F5FD912C4659E09308288F4F054457FB48691_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = V_0;
|
|
NullCheck((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_3;
|
|
L_3 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
V_1 = L_3;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_5 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_7;
|
|
L_7 = FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53(L_5, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_6, NULL);
|
|
G_B3_0 = ((int32_t)(L_7));
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
V_5 = (bool)G_B3_0;
|
|
bool L_8 = V_5;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10;
|
|
L_10 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_9, NULL);
|
|
V_6 = L_10;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_11 = V_6;
|
|
V_7 = ((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0*)IsInstClass((RuntimeObject*)L_11, TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var));
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_12 = V_7;
|
|
if (!L_12)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_13 = V_7;
|
|
NullCheck((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13);
|
|
bool L_14;
|
|
L_14 = VisualElement_ClassListContains_m202159CA74B09E919CBF4497AA5FAD6AD9B1666F((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13, _stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = V_0;
|
|
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_16 = V_9;
|
|
if (!L_16)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = V_9;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var, L_17);
|
|
if (L_18)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_19 = V_7;
|
|
NullCheck(L_19);
|
|
RuntimeObject* L_20;
|
|
L_20 = TextElement_get_edition_m29D5704DD0B49EA8AC63B5CEBA9A69AC075327CC(L_19, NULL);
|
|
NullCheck(L_20);
|
|
TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* L_21;
|
|
L_21 = InterfaceFuncInvoker0< TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* >::Invoke(36, ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var, L_20);
|
|
G_B10_0 = ((!(((RuntimeObject*)(TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_8 = (bool)G_B12_0;
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_23;
|
|
memset((&L_23), 0, sizeof(L_23));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_23), (int32_t)2, (String_t*)NULL, NULL);
|
|
V_10 = L_23;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_24;
|
|
L_24 = DataBinding_get_sourceToUiConverters_m2888B514C8EB942094376F57EFB6218E678F9409(__this, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_25 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_26;
|
|
L_26 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_25, NULL);
|
|
V_11 = L_26;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_27;
|
|
L_27 = BindingId_op_Implicit_m59B81D19F3282655F5E65A49E7E1BBE666313528((&V_11), NULL);
|
|
V_12 = L_27;
|
|
uint64_t* L_28 = ___1_value;
|
|
uint64_t L_29 = (*(uint64_t*)L_28);
|
|
NullCheck(L_24);
|
|
bool L_30;
|
|
L_30 = ConverterGroup_TrySetValue_TisVisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mF12D8925A4F5C6DB99F25CDC4EF50B941B71E124(L_24, (&V_0), (&V_12), L_29, (&V_3), il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_30;
|
|
bool L_31 = V_2;
|
|
V_13 = L_31;
|
|
bool L_32 = V_13;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_14), sizeof(BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB));
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_33 = V_14;
|
|
V_10 = L_33;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
int32_t L_34 = V_3;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_35 = ___0_context;
|
|
RuntimeObject* L_36;
|
|
L_36 = BindingContext_get_dataSource_mF6CA0E5AED1F7DCA5619AEBA09F9F8F05D1CF504_inline(L_35, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_37 = ___0_context;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_38;
|
|
L_38 = BindingContext_get_dataSourcePath_m10A8B994ADD410BE92EAD7E0143C64C3A60B36BA_inline(L_37, NULL);
|
|
V_12 = L_38;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39 = V_0;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_40 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_41;
|
|
L_41 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_40, NULL);
|
|
V_11 = L_41;
|
|
uint64_t* L_42 = ___1_value;
|
|
uint64_t L_43 = (*(uint64_t*)L_42);
|
|
String_t* L_44;
|
|
L_44 = DataBinding_GetSetValueErrorString_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m58DE243AAC43A3D991E8CD7D9D93BC5A0455369A(L_34, L_36, (&V_12), (RuntimeObject*)L_39, (&V_11), L_43, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
V_4 = L_44;
|
|
String_t* L_45 = V_4;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_46;
|
|
memset((&L_46), 0, sizeof(L_46));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_46), (int32_t)1, L_45, NULL);
|
|
V_10 = L_46;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_47 = V_10;
|
|
return L_47;
|
|
}
|
|
}
|
|
// Method Definition Index: 10509
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB DataBinding_UpdateUI_TisIl2CppFullySharedGenericAny_m4BDDE1A4A574EF8B4C73847A727907C3FA48E292_gshared (DataBinding_t4AEDF779EB49F9E11B45F99385482936B2FC34DA* __this, BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* ___0_context, Il2CppFullySharedGenericAny* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_TValue_tF6C3EE61210E11D0C48461DAF7B2189E696276A4 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const Il2CppFullySharedGenericAny L_29 = alloca(SizeOf_TValue_tF6C3EE61210E11D0C48461DAF7B2189E696276A4);
|
|
const Il2CppFullySharedGenericAny L_43 = L_29;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* V_1 = NULL;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_6 = NULL;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* V_7 = NULL;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
bool V_13 = false;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_0 = ___0_context;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = BindingContext_get_targetElement_m3E4F5FD912C4659E09308288F4F054457FB48691_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = V_0;
|
|
NullCheck((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_3;
|
|
L_3 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2);
|
|
V_1 = L_3;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_5 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_7;
|
|
L_7 = FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53(L_5, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_6, NULL);
|
|
G_B3_0 = ((int32_t)(L_7));
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
V_5 = (bool)G_B3_0;
|
|
bool L_8 = V_5;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10;
|
|
L_10 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_9, NULL);
|
|
V_6 = L_10;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_11 = V_6;
|
|
V_7 = ((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0*)IsInstClass((RuntimeObject*)L_11, TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var));
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_12 = V_7;
|
|
if (!L_12)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_13 = V_7;
|
|
NullCheck((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13);
|
|
bool L_14;
|
|
L_14 = VisualElement_ClassListContains_m202159CA74B09E919CBF4497AA5FAD6AD9B1666F((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13, _stringLiteral69987B9FEFCF68F19DA4F7558F696436F249D6A9, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = V_0;
|
|
V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_16 = V_9;
|
|
if (!L_16)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = V_9;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0, IDelayedField_t39A208D8D5201417B6EF034CF774756BE3A5771F_il2cpp_TypeInfo_var, L_17);
|
|
if (L_18)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* L_19 = V_7;
|
|
NullCheck(L_19);
|
|
RuntimeObject* L_20;
|
|
L_20 = TextElement_get_edition_m29D5704DD0B49EA8AC63B5CEBA9A69AC075327CC(L_19, NULL);
|
|
NullCheck(L_20);
|
|
TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* L_21;
|
|
L_21 = InterfaceFuncInvoker0< TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* >::Invoke(36, ITextEdition_tCCF2749F0A6AEE80B6AEFCDC5D03F4CA7AFBE18C_il2cpp_TypeInfo_var, L_20);
|
|
G_B10_0 = ((!(((RuntimeObject*)(TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
G_B12_0 = G_B10_0;
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_8 = (bool)G_B12_0;
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_23;
|
|
memset((&L_23), 0, sizeof(L_23));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_23), (int32_t)2, (String_t*)NULL, NULL);
|
|
V_10 = L_23;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* L_24;
|
|
L_24 = DataBinding_get_sourceToUiConverters_m2888B514C8EB942094376F57EFB6218E678F9409(__this, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_25 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_26;
|
|
L_26 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_25, NULL);
|
|
V_11 = L_26;
|
|
il2cpp_codegen_runtime_class_init_inline(BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_il2cpp_TypeInfo_var);
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_27;
|
|
L_27 = BindingId_op_Implicit_m59B81D19F3282655F5E65A49E7E1BBE666313528((&V_11), NULL);
|
|
V_12 = L_27;
|
|
Il2CppFullySharedGenericAny* L_28 = ___1_value;
|
|
il2cpp_codegen_memcpy(L_29, L_28, SizeOf_TValue_tF6C3EE61210E11D0C48461DAF7B2189E696276A4);
|
|
NullCheck(L_24);
|
|
bool L_30;
|
|
L_30 = InvokerFuncInvoker4< bool, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115**, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, Il2CppFullySharedGenericAny, int32_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)), il2cpp_rgctx_method(method->rgctx_data, 2), L_24, (&V_0), (&V_12), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_29: *(void**)L_29), (&V_3));
|
|
V_2 = L_30;
|
|
bool L_31 = V_2;
|
|
V_13 = L_31;
|
|
bool L_32 = V_13;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_14), sizeof(BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB));
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_33 = V_14;
|
|
V_10 = L_33;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
int32_t L_34 = V_3;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_35 = ___0_context;
|
|
RuntimeObject* L_36;
|
|
L_36 = BindingContext_get_dataSource_mF6CA0E5AED1F7DCA5619AEBA09F9F8F05D1CF504_inline(L_35, NULL);
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_37 = ___0_context;
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_38;
|
|
L_38 = BindingContext_get_dataSourcePath_m10A8B994ADD410BE92EAD7E0143C64C3A60B36BA_inline(L_37, NULL);
|
|
V_12 = L_38;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39 = V_0;
|
|
BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* L_40 = ___0_context;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_41;
|
|
L_41 = BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline(L_40, NULL);
|
|
V_11 = L_41;
|
|
Il2CppFullySharedGenericAny* L_42 = ___1_value;
|
|
il2cpp_codegen_memcpy(L_43, L_42, SizeOf_TValue_tF6C3EE61210E11D0C48461DAF7B2189E696276A4);
|
|
String_t* L_44;
|
|
L_44 = InvokerFuncInvoker6< String_t*, int32_t, RuntimeObject*, PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79*, RuntimeObject*, BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, L_34, L_36, (&V_12), (RuntimeObject*)L_39, (&V_11), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_43: *(void**)L_43));
|
|
V_4 = L_44;
|
|
String_t* L_45 = V_4;
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_46;
|
|
memset((&L_46), 0, sizeof(L_46));
|
|
BindingResult__ctor_mEDF609999541569157EB2B3741C7CEF9CAF8E7E4((&L_46), (int32_t)1, L_45, NULL);
|
|
V_10 = L_46;
|
|
goto IL_00f6;
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
BindingResult_t8B7B654A3357F5E8F5B0E4CB4AB9076B5FE0A4FB L_47 = V_10;
|
|
return L_47;
|
|
}
|
|
}
|
|
// Method Definition Index: 73488
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DataManager_LoadJson_TisRuntimeObject_TisRuntimeObject_m6991F3B0E6D5AA5878021884FAA795ABFB8DAEC6_gshared (DataManager_tE86238CF20D1A233E0ADDA21C619896E5F278275* __this, String_t* ___0_path, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResourceManager_Load_TisTextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69_mD161AD0E701B97CF1D9C149ECB1917FBB202C3A4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
String_t* G_B2_0 = NULL;
|
|
ResourceManager_t3C786E6B9CB06BD30723E3099A98FEF2F853355E* G_B2_1 = NULL;
|
|
String_t* G_B1_0 = NULL;
|
|
ResourceManager_t3C786E6B9CB06BD30723E3099A98FEF2F853355E* G_B1_1 = NULL;
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:54>
|
|
ResourceManager_t3C786E6B9CB06BD30723E3099A98FEF2F853355E* L_0;
|
|
L_0 = Manager_get_Resource_m20789BB3A6CEA4F5D99667BDF2AC9F7E063FE178(NULL);
|
|
String_t* L_1 = ___0_path;
|
|
String_t* L_2 = L_1;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_2;
|
|
G_B2_1 = L_0;
|
|
goto IL_000f;
|
|
}
|
|
G_B1_0 = L_2;
|
|
G_B1_1 = L_0;
|
|
}
|
|
{
|
|
G_B2_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
|
|
G_B2_1 = G_B1_1;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
NullCheck(G_B2_1);
|
|
TextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69* L_3;
|
|
L_3 = ResourceManager_Load_TisTextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69_mD161AD0E701B97CF1D9C149ECB1917FBB202C3A4(G_B2_1, G_B2_0, ResourceManager_Load_TisTextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69_mD161AD0E701B97CF1D9C149ECB1917FBB202C3A4_RuntimeMethod_var);
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:55>
|
|
NullCheck(L_3);
|
|
String_t* L_4;
|
|
L_4 = TextAsset_get_text_m36846042E3CF3D9DD337BF3F8B2B1902D10C8FD9(L_3, NULL);
|
|
RuntimeObject* L_5;
|
|
L_5 = JsonUtility_FromJson_TisRuntimeObject_m0CCF0FE109BF4C85AECC9C5D0DBB43422A24FB40(L_4, il2cpp_rgctx_method(method->rgctx_data, 0));
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:56>
|
|
return L_5;
|
|
}
|
|
}
|
|
// Method Definition Index: 73488
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataManager_LoadJson_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m7545B4ECB963C0C28D1BF11BF2BB8FD7E364CBC2_gshared (DataManager_tE86238CF20D1A233E0ADDA21C619896E5F278275* __this, String_t* ___0_path, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResourceManager_Load_TisTextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69_mD161AD0E701B97CF1D9C149ECB1917FBB202C3A4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_TLoader_t58841D225C724C51416205C45C77C2B5245BB038 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_TLoader_t58841D225C724C51416205C45C77C2B5245BB038);
|
|
String_t* G_B2_0 = NULL;
|
|
ResourceManager_t3C786E6B9CB06BD30723E3099A98FEF2F853355E* G_B2_1 = NULL;
|
|
String_t* G_B1_0 = NULL;
|
|
ResourceManager_t3C786E6B9CB06BD30723E3099A98FEF2F853355E* G_B1_1 = NULL;
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:54>
|
|
ResourceManager_t3C786E6B9CB06BD30723E3099A98FEF2F853355E* L_0;
|
|
L_0 = Manager_get_Resource_m20789BB3A6CEA4F5D99667BDF2AC9F7E063FE178(NULL);
|
|
String_t* L_1 = ___0_path;
|
|
String_t* L_2 = L_1;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_2;
|
|
G_B2_1 = L_0;
|
|
goto IL_000f;
|
|
}
|
|
G_B1_0 = L_2;
|
|
G_B1_1 = L_0;
|
|
}
|
|
{
|
|
G_B2_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
|
|
G_B2_1 = G_B1_1;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
NullCheck(G_B2_1);
|
|
TextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69* L_3;
|
|
L_3 = ResourceManager_Load_TisTextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69_mD161AD0E701B97CF1D9C149ECB1917FBB202C3A4(G_B2_1, G_B2_0, ResourceManager_Load_TisTextAsset_t2C64E93DA366D9DE5A8209E1802FA4884AC1BD69_mD161AD0E701B97CF1D9C149ECB1917FBB202C3A4_RuntimeMethod_var);
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:55>
|
|
NullCheck(L_3);
|
|
String_t* L_4;
|
|
L_4 = TextAsset_get_text_m36846042E3CF3D9DD337BF3F8B2B1902D10C8FD9(L_3, NULL);
|
|
InvokerActionInvoker2< String_t*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 0)), il2cpp_rgctx_method(method->rgctx_data, 0), NULL, L_4, (Il2CppFullySharedGenericAny*)L_5);
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:56>
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_5, SizeOf_TLoader_t58841D225C724C51416205C45C77C2B5245BB038);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 73486
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DataManager_LoadSingle_TisRuntimeObject_TisRuntimeObject_mEE69923C6D8F59AB7CDEDBA38B253C316C3BE12D_gshared (DataManager_tE86238CF20D1A233E0ADDA21C619896E5F278275* __this, String_t* ___0_path, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m5875DF2ACE933D734119C088B2E7C9C63F49B443_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mC14A0401676B34A68B06FC858BA801E7DF99B7D8_RuntimeMethod_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
RuntimeObject* V_2 = NULL;
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:18>
|
|
Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* L_0 = __this->____cache;
|
|
String_t* L_1 = ___0_path;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Dictionary_2_TryGetValue_mC14A0401676B34A68B06FC858BA801E7DF99B7D8(L_0, L_1, (&V_0), Dictionary_2_TryGetValue_mC14A0401676B34A68B06FC858BA801E7DF99B7D8_RuntimeMethod_var);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:18>
|
|
RuntimeObject* L_3 = V_0;
|
|
return ((RuntimeObject*)Castclass((RuntimeObject*)L_3, il2cpp_rgctx_data(method->rgctx_data, 0)));
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:20>
|
|
String_t* L_4 = ___0_path;
|
|
RuntimeObject* L_5;
|
|
L_5 = DataManager_LoadJson_TisRuntimeObject_TisRuntimeObject_m6991F3B0E6D5AA5878021884FAA795ABFB8DAEC6(__this, L_4, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_1 = L_5;
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:22>
|
|
NullCheck((RuntimeObject*)(V_1));
|
|
RuntimeObject* L_6;
|
|
L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1, il2cpp_rgctx_data(method->rgctx_data, 3), (RuntimeObject*)(V_1));
|
|
V_2 = L_6;
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:24>
|
|
Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* L_7 = __this->____cache;
|
|
String_t* L_8 = ___0_path;
|
|
RuntimeObject* L_9 = V_2;
|
|
NullCheck(L_7);
|
|
Dictionary_2_Add_m5875DF2ACE933D734119C088B2E7C9C63F49B443(L_7, L_8, L_9, Dictionary_2_Add_m5875DF2ACE933D734119C088B2E7C9C63F49B443_RuntimeMethod_var);
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:25>
|
|
RuntimeObject* L_10 = V_2;
|
|
return L_10;
|
|
}
|
|
}
|
|
// Method Definition Index: 73486
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataManager_LoadSingle_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m0AA0EE96982B20F59C4BA34CCC903189F9BF80D6_gshared (DataManager_tE86238CF20D1A233E0ADDA21C619896E5F278275* __this, String_t* ___0_path, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m5875DF2ACE933D734119C088B2E7C9C63F49B443_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mC14A0401676B34A68B06FC858BA801E7DF99B7D8_RuntimeMethod_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_TLoader_t6909CD29B152062F44CE29BD7A0DCB6370D5F14F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T_t3EEBEB80B718347A8E8C36FD486D10DA6B9C1F42 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
void* L_8 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 2)));
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_TLoader_t6909CD29B152062F44CE29BD7A0DCB6370D5F14F);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T_t3EEBEB80B718347A8E8C36FD486D10DA6B9C1F42);
|
|
const Il2CppFullySharedGenericAny L_9 = L_4;
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_T_t3EEBEB80B718347A8E8C36FD486D10DA6B9C1F42);
|
|
const Il2CppFullySharedGenericAny L_14 = alloca(SizeOf_T_t3EEBEB80B718347A8E8C36FD486D10DA6B9C1F42);
|
|
RuntimeObject* V_0 = NULL;
|
|
Il2CppFullySharedGenericAny V_1 = alloca(SizeOf_TLoader_t6909CD29B152062F44CE29BD7A0DCB6370D5F14F);
|
|
memset(V_1, 0, SizeOf_TLoader_t6909CD29B152062F44CE29BD7A0DCB6370D5F14F);
|
|
Il2CppFullySharedGenericAny V_2 = alloca(SizeOf_T_t3EEBEB80B718347A8E8C36FD486D10DA6B9C1F42);
|
|
memset(V_2, 0, SizeOf_T_t3EEBEB80B718347A8E8C36FD486D10DA6B9C1F42);
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:18>
|
|
Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* L_0 = __this->____cache;
|
|
String_t* L_1 = ___0_path;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Dictionary_2_TryGetValue_mC14A0401676B34A68B06FC858BA801E7DF99B7D8(L_0, L_1, (&V_0), Dictionary_2_TryGetValue_mC14A0401676B34A68B06FC858BA801E7DF99B7D8_RuntimeMethod_var);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:18>
|
|
RuntimeObject* L_3 = V_0;
|
|
void* L_5 = UnBox_Any(L_3, il2cpp_rgctx_data(method->rgctx_data, 0), L_4);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, (((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_5)), SizeOf_T_t3EEBEB80B718347A8E8C36FD486D10DA6B9C1F42);
|
|
return;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:20>
|
|
String_t* L_6 = ___0_path;
|
|
InvokerActionInvoker2< String_t*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), __this, L_6, (Il2CppFullySharedGenericAny*)L_7);
|
|
il2cpp_codegen_memcpy(V_1, L_7, SizeOf_TLoader_t6909CD29B152062F44CE29BD7A0DCB6370D5F14F);
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:22>
|
|
ConstrainedActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 2), il2cpp_rgctx_method(method->rgctx_data, 4), L_8, (void*)(Il2CppFullySharedGenericAny*)V_1, (Il2CppFullySharedGenericAny*)L_9);
|
|
il2cpp_codegen_memcpy(V_2, L_9, SizeOf_T_t3EEBEB80B718347A8E8C36FD486D10DA6B9C1F42);
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:24>
|
|
Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* L_10 = __this->____cache;
|
|
String_t* L_11 = ___0_path;
|
|
il2cpp_codegen_memcpy(L_12, V_2, SizeOf_T_t3EEBEB80B718347A8E8C36FD486D10DA6B9C1F42);
|
|
RuntimeObject* L_13 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 0), L_12);
|
|
NullCheck(L_10);
|
|
Dictionary_2_Add_m5875DF2ACE933D734119C088B2E7C9C63F49B443(L_10, L_11, L_13, Dictionary_2_Add_m5875DF2ACE933D734119C088B2E7C9C63F49B443_RuntimeMethod_var);
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:25>
|
|
il2cpp_codegen_memcpy(L_14, V_2, SizeOf_T_t3EEBEB80B718347A8E8C36FD486D10DA6B9C1F42);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_14, SizeOf_T_t3EEBEB80B718347A8E8C36FD486D10DA6B9C1F42);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 73487
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* DataManager_LoadToDict_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_m83BF9BE3ADA8E4E53AED65A32ED37B5B7A2E8531_gshared (DataManager_tE86238CF20D1A233E0ADDA21C619896E5F278275* __this, String_t* ___0_path, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___1_keySelector, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m5875DF2ACE933D734119C088B2E7C9C63F49B443_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mC14A0401676B34A68B06FC858BA801E7DF99B7D8_RuntimeMethod_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* V_1 = NULL;
|
|
RuntimeObject* V_2 = NULL;
|
|
Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
RuntimeObject* V_4 = NULL;
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:39>
|
|
Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* L_0 = __this->____cache;
|
|
String_t* L_1 = ___0_path;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Dictionary_2_TryGetValue_mC14A0401676B34A68B06FC858BA801E7DF99B7D8(L_0, L_1, (&V_0), Dictionary_2_TryGetValue_mC14A0401676B34A68B06FC858BA801E7DF99B7D8_RuntimeMethod_var);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:39>
|
|
RuntimeObject* L_3 = V_0;
|
|
return ((Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA*)CastclassClass((RuntimeObject*)L_3, il2cpp_rgctx_data(method->rgctx_data, 0)));
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:40>
|
|
Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* L_4 = (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329(L_4, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_1 = L_4;
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:42>
|
|
String_t* L_5 = ___0_path;
|
|
RuntimeObject* L_6;
|
|
L_6 = DataManager_LoadJson_TisRuntimeObject_TisRuntimeObject_m6991F3B0E6D5AA5878021884FAA795ABFB8DAEC6(__this, L_5, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_6;
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:44>
|
|
NullCheck((RuntimeObject*)(V_2));
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_7;
|
|
L_7 = InterfaceFuncInvoker0< List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* >::Invoke(0, il2cpp_rgctx_data(method->rgctx_data, 4), (RuntimeObject*)(V_2));
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:46>
|
|
NullCheck(L_7);
|
|
Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A L_8;
|
|
L_8 = List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC(L_7, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
V_3 = L_8;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_005e:
|
|
{
|
|
Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419((&V_3), il2cpp_rgctx_method(method->rgctx_data, 17));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0053_1;
|
|
}
|
|
|
|
IL_003a_1:
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:46>
|
|
RuntimeObject* L_9;
|
|
L_9 = Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_inline((&V_3), il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
V_4 = L_9;
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:46>
|
|
Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* L_10 = V_1;
|
|
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_11 = ___1_keySelector;
|
|
RuntimeObject* L_12 = V_4;
|
|
NullCheck(L_11);
|
|
RuntimeObject* L_13;
|
|
L_13 = Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_inline(L_11, L_12, il2cpp_rgctx_method(method->rgctx_data, 13));
|
|
RuntimeObject* L_14 = V_4;
|
|
NullCheck(L_10);
|
|
Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1(L_10, L_13, L_14, il2cpp_rgctx_method(method->rgctx_data, 15));
|
|
}
|
|
|
|
IL_0053_1:
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:46>
|
|
bool L_15;
|
|
L_15 = Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB((&V_3), il2cpp_rgctx_method(method->rgctx_data, 16));
|
|
if (L_15)
|
|
{
|
|
goto IL_003a_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:48>
|
|
Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* L_16 = __this->____cache;
|
|
String_t* L_17 = ___0_path;
|
|
Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* L_18 = V_1;
|
|
NullCheck(L_16);
|
|
Dictionary_2_Add_m5875DF2ACE933D734119C088B2E7C9C63F49B443(L_16, L_17, (RuntimeObject*)L_18, Dictionary_2_Add_m5875DF2ACE933D734119C088B2E7C9C63F49B443_RuntimeMethod_var);
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:49>
|
|
Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* L_19 = V_1;
|
|
return L_19;
|
|
}
|
|
}
|
|
// Method Definition Index: 73487
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E* DataManager_LoadToDict_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m2DB93A167969B3394C65B22013E3BF7803B99CE4_gshared (DataManager_tE86238CF20D1A233E0ADDA21C619896E5F278275* __this, String_t* ___0_path, Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0* ___1_keySelector, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m5875DF2ACE933D734119C088B2E7C9C63F49B443_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mC14A0401676B34A68B06FC858BA801E7DF99B7D8_RuntimeMethod_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_TLoader_t97303AEDCDFCED54DADB6C38CD83B568D0003C02 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_Enumerator_tA5ED56985515B292918B6796BFCFB14219C7318B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_TValue_t6FA29EC796A688FDD3C9D66192D04F16D3D9C4FF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 11));
|
|
void* L_7 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 3)));
|
|
void* L_10 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->rgctx_data, 8)));
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TLoader_t97303AEDCDFCED54DADB6C38CD83B568D0003C02);
|
|
const uint32_t SizeOf_TKey_tFAE8241B720C546861648D4B292CA9A9677B5A3F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const Il2CppFullySharedGenericAny L_15 = alloca(SizeOf_TKey_tFAE8241B720C546861648D4B292CA9A9677B5A3F);
|
|
const Il2CppFullySharedGenericAny L_11 = alloca(SizeOf_TValue_t6FA29EC796A688FDD3C9D66192D04F16D3D9C4FF);
|
|
const Il2CppFullySharedGenericAny L_14 = alloca(SizeOf_TValue_t6FA29EC796A688FDD3C9D66192D04F16D3D9C4FF);
|
|
const Il2CppFullySharedGenericAny L_16 = alloca(SizeOf_TValue_t6FA29EC796A688FDD3C9D66192D04F16D3D9C4FF);
|
|
const Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF L_9 = alloca(SizeOf_Enumerator_tA5ED56985515B292918B6796BFCFB14219C7318B);
|
|
RuntimeObject* V_0 = NULL;
|
|
Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E* V_1 = NULL;
|
|
Il2CppFullySharedGenericAny V_2 = alloca(SizeOf_TLoader_t97303AEDCDFCED54DADB6C38CD83B568D0003C02);
|
|
memset(V_2, 0, SizeOf_TLoader_t97303AEDCDFCED54DADB6C38CD83B568D0003C02);
|
|
Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF V_3 = alloca(SizeOf_Enumerator_tA5ED56985515B292918B6796BFCFB14219C7318B);
|
|
memset(V_3, 0, SizeOf_Enumerator_tA5ED56985515B292918B6796BFCFB14219C7318B);
|
|
Il2CppFullySharedGenericAny V_4 = alloca(SizeOf_TValue_t6FA29EC796A688FDD3C9D66192D04F16D3D9C4FF);
|
|
memset(V_4, 0, SizeOf_TValue_t6FA29EC796A688FDD3C9D66192D04F16D3D9C4FF);
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:39>
|
|
Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* L_0 = __this->____cache;
|
|
String_t* L_1 = ___0_path;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Dictionary_2_TryGetValue_mC14A0401676B34A68B06FC858BA801E7DF99B7D8(L_0, L_1, (&V_0), Dictionary_2_TryGetValue_mC14A0401676B34A68B06FC858BA801E7DF99B7D8_RuntimeMethod_var);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:39>
|
|
RuntimeObject* L_3 = V_0;
|
|
return ((Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*)CastclassClass((RuntimeObject*)L_3, il2cpp_rgctx_data(method->rgctx_data, 0)));
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:40>
|
|
Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E* L_4 = (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_4, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
V_1 = L_4;
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:42>
|
|
String_t* L_5 = ___0_path;
|
|
InvokerActionInvoker2< String_t*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)), il2cpp_rgctx_method(method->rgctx_data, 2), __this, L_5, (Il2CppFullySharedGenericAny*)L_6);
|
|
il2cpp_codegen_memcpy(V_2, L_6, SizeOf_TLoader_t97303AEDCDFCED54DADB6C38CD83B568D0003C02);
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:44>
|
|
List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* L_8;
|
|
L_8 = ConstrainedFuncInvoker0< List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* >::Invoke(il2cpp_rgctx_data(method->rgctx_data, 3), il2cpp_rgctx_method(method->rgctx_data, 5), L_7, (void*)(Il2CppFullySharedGenericAny*)V_2);
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:46>
|
|
NullCheck(L_8);
|
|
InvokerActionInvoker1< Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), L_8, (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)L_9);
|
|
il2cpp_codegen_memcpy(V_3, L_9, SizeOf_Enumerator_tA5ED56985515B292918B6796BFCFB14219C7318B);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_005e:
|
|
{
|
|
ConstrainedActionInvoker0::Invoke(il2cpp_rgctx_data(method->rgctx_data, 8), il2cpp_rgctx_method(method->rgctx_data, 17), L_10, (void*)(Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)V_3);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0053_1;
|
|
}
|
|
|
|
IL_003a_1:
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:46>
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)V_3, (Il2CppFullySharedGenericAny*)L_11);
|
|
il2cpp_codegen_memcpy(V_4, L_11, SizeOf_TValue_t6FA29EC796A688FDD3C9D66192D04F16D3D9C4FF);
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:46>
|
|
Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E* L_12 = V_1;
|
|
Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0* L_13 = ___1_keySelector;
|
|
il2cpp_codegen_memcpy(L_14, V_4, SizeOf_TValue_t6FA29EC796A688FDD3C9D66192D04F16D3D9C4FF);
|
|
NullCheck(L_13);
|
|
InvokerActionInvoker2< Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), L_13, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? L_14: *(void**)L_14), (Il2CppFullySharedGenericAny*)L_15);
|
|
il2cpp_codegen_memcpy(L_16, V_4, SizeOf_TValue_t6FA29EC796A688FDD3C9D66192D04F16D3D9C4FF);
|
|
NullCheck(L_12);
|
|
InvokerActionInvoker2< Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), L_12, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? L_15: *(void**)L_15), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? L_16: *(void**)L_16));
|
|
}
|
|
|
|
IL_0053_1:
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:46>
|
|
bool L_17;
|
|
L_17 = (( bool (*) (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 16)))((Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)V_3, il2cpp_rgctx_method(method->rgctx_data, 16));
|
|
if (L_17)
|
|
{
|
|
goto IL_003a_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:48>
|
|
Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* L_18 = __this->____cache;
|
|
String_t* L_19 = ___0_path;
|
|
Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E* L_20 = V_1;
|
|
NullCheck(L_18);
|
|
Dictionary_2_Add_m5875DF2ACE933D734119C088B2E7C9C63F49B443(L_18, L_19, (RuntimeObject*)L_20, Dictionary_2_Add_m5875DF2ACE933D734119C088B2E7C9C63F49B443_RuntimeMethod_var);
|
|
//<source_info:/Users/ta9/DEV/Study/Practice_Unity/Assets/Scripts/Managers/DataManager.cs:49>
|
|
Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E* L_21 = V_1;
|
|
return L_21;
|
|
}
|
|
}
|
|
// Method Definition Index: 32363
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DebugUIHandlerWidget_CastWidget_TisRuntimeObject_m0BEE163AE9AD9B6CD435E1364C33FBD7D23B5C8C_gshared (DebugUIHandlerWidget_tE597C749DDA3EBA7627F38F8A77EB5A171B9E6D1* __this, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
String_t* V_0 = NULL;
|
|
RuntimeObject* G_B2_0 = NULL;
|
|
RuntimeObject* G_B1_0 = NULL;
|
|
String_t* G_B3_0 = NULL;
|
|
RuntimeObject* G_B3_1 = NULL;
|
|
RuntimeObject* G_B8_0 = NULL;
|
|
RuntimeObject* G_B4_0 = NULL;
|
|
Type_t* G_B6_0 = NULL;
|
|
String_t* G_B6_1 = NULL;
|
|
String_t* G_B6_2 = NULL;
|
|
String_t* G_B6_3 = NULL;
|
|
RuntimeObject* G_B6_4 = NULL;
|
|
Type_t* G_B5_0 = NULL;
|
|
String_t* G_B5_1 = NULL;
|
|
String_t* G_B5_2 = NULL;
|
|
String_t* G_B5_3 = NULL;
|
|
RuntimeObject* G_B5_4 = NULL;
|
|
String_t* G_B7_0 = NULL;
|
|
String_t* G_B7_1 = NULL;
|
|
String_t* G_B7_2 = NULL;
|
|
String_t* G_B7_3 = NULL;
|
|
RuntimeObject* G_B7_4 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerWidget.cs:64>
|
|
Widget_tE8D6AF1D7525CC84E8F2C3B73162016736A6A2FF* L_0 = __this->___m_Widget;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerWidget.cs:65>
|
|
Widget_tE8D6AF1D7525CC84E8F2C3B73162016736A6A2FF* L_1 = __this->___m_Widget;
|
|
if (!L_1)
|
|
{
|
|
G_B2_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, il2cpp_rgctx_data(method->rgctx_data, 0)));
|
|
goto IL_002a;
|
|
}
|
|
G_B1_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, il2cpp_rgctx_data(method->rgctx_data, 0)));
|
|
}
|
|
{
|
|
Widget_tE8D6AF1D7525CC84E8F2C3B73162016736A6A2FF* L_2 = __this->___m_Widget;
|
|
NullCheck((RuntimeObject*)L_2);
|
|
Type_t* L_3;
|
|
L_3 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((RuntimeObject*)L_2, NULL);
|
|
NullCheck((RuntimeObject*)L_3);
|
|
String_t* L_4;
|
|
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(3, (RuntimeObject*)L_3);
|
|
G_B3_0 = L_4;
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_002f;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
G_B3_0 = _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174;
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
V_0 = G_B3_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerWidget.cs:67>
|
|
RuntimeObject* L_5 = G_B3_1;
|
|
if (L_5)
|
|
{
|
|
G_B8_0 = L_5;
|
|
goto IL_0064;
|
|
}
|
|
G_B4_0 = L_5;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerWidget.cs:68>
|
|
String_t* L_6 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 1)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_8;
|
|
L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL);
|
|
Type_t* L_9 = L_8;
|
|
if (L_9)
|
|
{
|
|
G_B6_0 = L_9;
|
|
G_B6_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8239DDE7DBC91495DACC42B52FAF15E9C617D4D7));
|
|
G_B6_2 = L_6;
|
|
G_B6_3 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDD2BBF431A1C8E39DE062E142D158318F7F73332));
|
|
G_B6_4 = G_B4_0;
|
|
goto IL_0054;
|
|
}
|
|
G_B5_0 = L_9;
|
|
G_B5_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8239DDE7DBC91495DACC42B52FAF15E9C617D4D7));
|
|
G_B5_2 = L_6;
|
|
G_B5_3 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDD2BBF431A1C8E39DE062E142D158318F7F73332));
|
|
G_B5_4 = G_B4_0;
|
|
}
|
|
{
|
|
G_B7_0 = ((String_t*)(NULL));
|
|
G_B7_1 = G_B5_1;
|
|
G_B7_2 = G_B5_2;
|
|
G_B7_3 = G_B5_3;
|
|
G_B7_4 = G_B5_4;
|
|
goto IL_0059;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
NullCheck((RuntimeObject*)G_B6_0);
|
|
String_t* L_10;
|
|
L_10 = VirtualFuncInvoker0< String_t* >::Invoke(3, (RuntimeObject*)G_B6_0);
|
|
G_B7_0 = L_10;
|
|
G_B7_1 = G_B6_1;
|
|
G_B7_2 = G_B6_2;
|
|
G_B7_3 = G_B6_3;
|
|
G_B7_4 = G_B6_4;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
String_t* L_11;
|
|
L_11 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(G_B7_3, G_B7_2, G_B7_1, G_B7_0, NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_12 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_12, L_11, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, method);
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerWidget.cs:70>
|
|
return G_B8_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33142
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m1386EBC4D7599F71F0B303F12813F0582E8F3100_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:36>
|
|
NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB* L_0 = ___0_array;
|
|
int32_t L_1 = ___1_index;
|
|
NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB* L_2 = ___0_array;
|
|
int32_t L_3 = ___2_count;
|
|
bool L_4;
|
|
L_4 = IL2CPP_NATIVEARRAY_GET_ITEM(bool, (L_2)->___m_Buffer, ((int32_t)il2cpp_codegen_subtract(L_3, 1)));
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(bool, (L_0)->___m_Buffer, L_1, (L_4));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:37>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33142
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m311450680094235BD4A769DB9E44144FADE76015_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:36>
|
|
NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6* L_0 = ___0_array;
|
|
int32_t L_1 = ___1_index;
|
|
NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6* L_2 = ___0_array;
|
|
int32_t L_3 = ___2_count;
|
|
BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 L_4;
|
|
L_4 = IL2CPP_NATIVEARRAY_GET_ITEM(BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010, (L_2)->___m_Buffer, ((int32_t)il2cpp_codegen_subtract(L_3, 1)));
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010, (L_0)->___m_Buffer, L_1, (L_4));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:37>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33143
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m6543A85EE8FF00637356B416DEDCF1177D22D345_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47** ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:41>
|
|
BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47** L_0 = ___0_array;
|
|
BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47* L_1 = *((BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47**)L_0);
|
|
int32_t L_2 = ___1_index;
|
|
BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47** L_3 = ___0_array;
|
|
BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47* L_4 = *((BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47**)L_3);
|
|
int32_t L_5 = ___2_count;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = ((int32_t)il2cpp_codegen_subtract(L_5, 1));
|
|
BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
NullCheck(L_1);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010)L_7);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:42>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33142
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisDecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD_m36119187CF415D833FDD62E726BC5A1101C68EFB_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t83F02282C33BAD818D67110F7760483208880311* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:36>
|
|
NativeArray_1_t83F02282C33BAD818D67110F7760483208880311* L_0 = ___0_array;
|
|
int32_t L_1 = ___1_index;
|
|
NativeArray_1_t83F02282C33BAD818D67110F7760483208880311* L_2 = ___0_array;
|
|
int32_t L_3 = ___2_count;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_4;
|
|
L_4 = IL2CPP_NATIVEARRAY_GET_ITEM(DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD, (L_2)->___m_Buffer, ((int32_t)il2cpp_codegen_subtract(L_3, 1)));
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD, (L_0)->___m_Buffer, L_1, (L_4));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:37>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33142
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisDecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49_m4BA3CBFAFEA6D310AACA36EB36A4F76192F8C6CA_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:36>
|
|
NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2* L_0 = ___0_array;
|
|
int32_t L_1 = ___1_index;
|
|
NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2* L_2 = ___0_array;
|
|
int32_t L_3 = ___2_count;
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_4;
|
|
L_4 = IL2CPP_NATIVEARRAY_GET_ITEM(DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49, (L_2)->___m_Buffer, ((int32_t)il2cpp_codegen_subtract(L_3, 1)));
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49, (L_0)->___m_Buffer, L_1, (L_4));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:37>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33142
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m79F67135CEB14F4F697474A409493E057B89D759_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:36>
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_0 = ___0_array;
|
|
int32_t L_1 = ___1_index;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_2 = ___0_array;
|
|
int32_t L_3 = ___2_count;
|
|
int32_t L_4;
|
|
L_4 = IL2CPP_NATIVEARRAY_GET_ITEM(int32_t, (L_2)->___m_Buffer, ((int32_t)il2cpp_codegen_subtract(L_3, 1)));
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(int32_t, (L_0)->___m_Buffer, L_1, (L_4));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:37>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33143
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m915FF8D13A89D601291E1005178CA3EA54A7C5D8_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:41>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** L_0 = ___0_array;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = *((Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C**)L_0);
|
|
int32_t L_2 = ___1_index;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** L_3 = ___0_array;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = *((Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C**)L_3);
|
|
int32_t L_5 = ___2_count;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = ((int32_t)il2cpp_codegen_subtract(L_5, 1));
|
|
int32_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
NullCheck(L_1);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (int32_t)L_7);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:42>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33142
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m0C19B1FB7A99F8DBEBA677CE522A1EF3B08411E1_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_tE0DCAF7ED58915BC160F767E310F0F0A55B6BC75* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:36>
|
|
NativeArray_1_tE0DCAF7ED58915BC160F767E310F0F0A55B6BC75* L_0 = ___0_array;
|
|
int32_t L_1 = ___1_index;
|
|
NativeArray_1_tE0DCAF7ED58915BC160F767E310F0F0A55B6BC75* L_2 = ___0_array;
|
|
int32_t L_3 = ___2_count;
|
|
int32_t L_4;
|
|
L_4 = IL2CPP_NATIVEARRAY_GET_ITEM(int32_t, (L_2)->___m_Buffer, ((int32_t)il2cpp_codegen_subtract(L_3, 1)));
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(int32_t, (L_0)->___m_Buffer, L_1, (L_4));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:37>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33143
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisRuntimeObject_m7589FCF9692B333A56368AB65C3CC44A1F5096AD_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918** ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:41>
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918** L_0 = ___0_array;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = *((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918**)L_0);
|
|
int32_t L_2 = ___1_index;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918** L_3 = ___0_array;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = *((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918**)L_3);
|
|
int32_t L_5 = ___2_count;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = ((int32_t)il2cpp_codegen_subtract(L_5, 1));
|
|
RuntimeObject* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
NullCheck(L_1);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (RuntimeObject*)L_7);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:42>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33142
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m938CD70E1FF91D3803E9854F0872C6BE2F4CCD1B_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:36>
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* L_0 = ___0_array;
|
|
int32_t L_1 = ___1_index;
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* L_2 = ___0_array;
|
|
int32_t L_3 = ___2_count;
|
|
float L_4;
|
|
L_4 = IL2CPP_NATIVEARRAY_GET_ITEM(float, (L_2)->___m_Buffer, ((int32_t)il2cpp_codegen_subtract(L_3, 1)));
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float, (L_0)->___m_Buffer, L_1, (L_4));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:37>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33142
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mF1836CDB48035A918A43ABAF39AF37C896E0C1BD_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:36>
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* L_0 = ___0_array;
|
|
int32_t L_1 = ___1_index;
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* L_2 = ___0_array;
|
|
int32_t L_3 = ___2_count;
|
|
uint32_t L_4;
|
|
L_4 = IL2CPP_NATIVEARRAY_GET_ITEM(uint32_t, (L_2)->___m_Buffer, ((int32_t)il2cpp_codegen_subtract(L_3, 1)));
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(uint32_t, (L_0)->___m_Buffer, L_1, (L_4));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:37>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33142
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mBB7A6220A8A54E9F8DE79470ED3302F907D49F82_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:36>
|
|
NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B* L_0 = ___0_array;
|
|
int32_t L_1 = ___1_index;
|
|
NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B* L_2 = ___0_array;
|
|
int32_t L_3 = ___2_count;
|
|
uint64_t L_4;
|
|
L_4 = IL2CPP_NATIVEARRAY_GET_ITEM(uint64_t, (L_2)->___m_Buffer, ((int32_t)il2cpp_codegen_subtract(L_3, 1)));
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(uint64_t, (L_0)->___m_Buffer, L_1, (L_4));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:37>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33142
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisIl2CppFullySharedGenericStruct_m962F096FAF8C0F9B5DE923BF79243ACE4F6381F7_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T_t3E368084790BB1AB3325BBC83F6A9188382E8362 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const Il2CppFullySharedGenericStruct L_4 = alloca(SizeOf_T_t3E368084790BB1AB3325BBC83F6A9188382E8362);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:36>
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18* L_0 = ___0_array;
|
|
int32_t L_1 = ___1_index;
|
|
NativeArray_1_tDB8B8DC66CC8E16ED6D9A8C75D2C1AFC80AC1E18* L_2 = ___0_array;
|
|
int32_t L_3 = ___2_count;
|
|
InvokerActionInvoker2< int32_t, Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), L_2, ((int32_t)il2cpp_codegen_subtract(L_3, 1)), (Il2CppFullySharedGenericStruct*)L_4);
|
|
InvokerActionInvoker2< int32_t, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)), il2cpp_rgctx_method(method->rgctx_data, 4), L_0, L_1, L_4);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:37>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33143
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisIl2CppFullySharedGenericAny_mD655956C48F76673E2EAD56E0163C068046A6A83_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC** ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_T_tD3C74A24DCC26A03B76C6AE35BA39AD30749B96E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T_tD3C74A24DCC26A03B76C6AE35BA39AD30749B96E);
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:41>
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC** L_0 = ___0_array;
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_1 = *((__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC**)L_0);
|
|
int32_t L_2 = ___1_index;
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC** L_3 = ___0_array;
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_4 = *((__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC**)L_3);
|
|
int32_t L_5 = ___2_count;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = ((int32_t)il2cpp_codegen_subtract(L_5, 1));
|
|
il2cpp_codegen_memcpy(L_7, (L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)), SizeOf_T_tD3C74A24DCC26A03B76C6AE35BA39AD30749B96E);
|
|
NullCheck(L_1);
|
|
il2cpp_codegen_memcpy((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)), L_7, SizeOf_T_tD3C74A24DCC26A03B76C6AE35BA39AD30749B96E);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->rgctx_data, 1), (void**)(L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)), (void*)L_7);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:42>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33142
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_mE510E702120051CBB3A9122BC1BA957B834E2D91_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:36>
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* L_0 = ___0_array;
|
|
int32_t L_1 = ___1_index;
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* L_2 = ___0_array;
|
|
int32_t L_3 = ___2_count;
|
|
float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA L_4;
|
|
L_4 = IL2CPP_NATIVEARRAY_GET_ITEM(float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA, (L_2)->___m_Buffer, ((int32_t)il2cpp_codegen_subtract(L_3, 1)));
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA, (L_0)->___m_Buffer, L_1, (L_4));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:37>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33142
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_m3EB3E0A1DA38C90FA88EE269EC7BDA37C5EF1418_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:36>
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* L_0 = ___0_array;
|
|
int32_t L_1 = ___1_index;
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* L_2 = ___0_array;
|
|
int32_t L_3 = ___2_count;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_4;
|
|
L_4 = IL2CPP_NATIVEARRAY_GET_ITEM(float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E, (L_2)->___m_Buffer, ((int32_t)il2cpp_codegen_subtract(L_3, 1)));
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E, (L_0)->___m_Buffer, L_1, (L_4));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:37>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33142
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_mB4FD1FD13539DAAD140535134857F4E7C2D61113_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:36>
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881* L_0 = ___0_array;
|
|
int32_t L_1 = ___1_index;
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881* L_2 = ___0_array;
|
|
int32_t L_3 = ___2_count;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_4;
|
|
L_4 = IL2CPP_NATIVEARRAY_GET_ITEM(float4_t89D9A294E7A79BD81BFBDD18654508532958555E, (L_2)->___m_Buffer, ((int32_t)il2cpp_codegen_subtract(L_3, 1)));
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float4_t89D9A294E7A79BD81BFBDD18654508532958555E, (L_0)->___m_Buffer, L_1, (L_4));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:37>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33142
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_mE225441B0A02C93487869B33817022EBF2023283_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:36>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_0 = ___0_array;
|
|
int32_t L_1 = ___1_index;
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_2 = ___0_array;
|
|
int32_t L_3 = ___2_count;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_4;
|
|
L_4 = IL2CPP_NATIVEARRAY_GET_ITEM(float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2, (L_2)->___m_Buffer, ((int32_t)il2cpp_codegen_subtract(L_3, 1)));
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2, (L_0)->___m_Buffer, L_1, (L_4));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:37>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33142
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_Tisquaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4_m0D53FB632D8820AC1B5BB42DD60212A78423CCEA_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:36>
|
|
NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A* L_0 = ___0_array;
|
|
int32_t L_1 = ___1_index;
|
|
NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A* L_2 = ___0_array;
|
|
int32_t L_3 = ___2_count;
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_4;
|
|
L_4 = IL2CPP_NATIVEARRAY_GET_ITEM(quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4, (L_2)->___m_Buffer, ((int32_t)il2cpp_codegen_subtract(L_3, 1)));
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4, (L_0)->___m_Buffer, L_1, (L_4));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:37>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14235
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendFocusBasedEvent_TisValueTuple_2_t84554798B99CE8D7914B5585AE53CEE950F43CE6_m12CAC22EE78929A6C7C985867EDECD76FD577BC1_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Func_2_tEC8651D2749456D39806A8151756C8D4E376386F* ___0_evtFactory, ValueTuple_2_t84554798B99CE8D7914B5585AE53CEE950F43CE6 ___1_arg, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* V_0 = NULL;
|
|
bool V_1 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_4 = NULL;
|
|
bool V_5 = false;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* V_6 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_7 = NULL;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B4_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B4_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B3_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B3_1 = NULL;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0 = __this->___m_PreviousFocusedPanel;
|
|
V_1 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
Func_2_tEC8651D2749456D39806A8151756C8D4E376386F* L_2 = ___0_evtFactory;
|
|
ValueTuple_2_t84554798B99CE8D7914B5585AE53CEE950F43CE6 L_3 = ___1_arg;
|
|
NullCheck(L_2);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4;
|
|
L_4 = Func_2_Invoke_m068376B984355E45695A1A842C1C3F316FE29AD9_inline(L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_005d:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = V_2;
|
|
NullCheck((RuntimeObject*)L_6);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_6);
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7 = V_2;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_8 = __this->___m_PreviousFocusedElement;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)CastclassClass((RuntimeObject*)L_8, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
if (L_9)
|
|
{
|
|
G_B4_0 = L_9;
|
|
G_B4_1 = L_7;
|
|
goto IL_0033_1;
|
|
}
|
|
G_B3_0 = L_9;
|
|
G_B3_1 = L_7;
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_10 = __this->___m_PreviousFocusedPanel;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_10);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11;
|
|
L_11 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_10);
|
|
G_B4_0 = L_11;
|
|
G_B4_1 = G_B3_1;
|
|
}
|
|
|
|
IL_0033_1:
|
|
{
|
|
NullCheck(G_B4_1);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(G_B4_1, G_B4_0, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_12 = __this->___m_PreviousFocusedPanel;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_12);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13;
|
|
L_13 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_12);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_14 = V_2;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_13);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_13, L_14);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_15 = __this->___m_PreviousFocusedPanel;
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_15, NULL);
|
|
goto IL_0126;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_16;
|
|
L_16 = UIElementsRuntimeUtility_GetSortedPlayerPanels_m670C8594565AABB890C94CDBA06DBD5C259CF466(NULL);
|
|
V_0 = L_16;
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_inline(L_17, List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_RuntimeMethod_var);
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_18, 1));
|
|
goto IL_0116;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_19 = V_0;
|
|
int32_t L_20 = V_3;
|
|
NullCheck(L_19);
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_21;
|
|
L_21 = List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6(L_19, L_20, List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6_RuntimeMethod_var);
|
|
V_6 = L_21;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_22 = V_6;
|
|
V_4 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_22, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_23 = V_4;
|
|
if (!L_23)
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
}
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_24 = V_6;
|
|
NullCheck(L_24);
|
|
bool L_25;
|
|
L_25 = BaseRuntimePanel_get_drawsInCameras_m8248DBEB03449B761535333F8816A17FB9498307(L_24, NULL);
|
|
G_B12_0 = ((((int32_t)L_25) == ((int32_t)0))? 1 : 0);
|
|
goto IL_00a0;
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
V_5 = (bool)G_B12_0;
|
|
bool L_26 = V_5;
|
|
if (!L_26)
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
Func_2_tEC8651D2749456D39806A8151756C8D4E376386F* L_27 = ___0_evtFactory;
|
|
ValueTuple_2_t84554798B99CE8D7914B5585AE53CEE950F43CE6 L_28 = ___1_arg;
|
|
NullCheck(L_27);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_29;
|
|
L_29 = Func_2_Invoke_m068376B984355E45695A1A842C1C3F316FE29AD9_inline(L_27, L_28, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_7 = L_29;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0103:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_30 = V_7;
|
|
if (!L_30)
|
|
{
|
|
goto IL_010f;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_31 = V_7;
|
|
NullCheck((RuntimeObject*)L_31);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_31);
|
|
}
|
|
|
|
IL_010f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_32 = V_7;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_33 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_33);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34;
|
|
L_34 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_33);
|
|
NullCheck(L_32);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(L_32, L_34, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_35 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_36;
|
|
L_36 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_37 = V_7;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36, L_37);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_38 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_39;
|
|
L_39 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(19, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
NullCheck(L_39);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_40;
|
|
L_40 = FocusController_get_focusedElement_mC8B530DA2FE09394ADA0A4D25A85DBF5C66853D8(L_39, NULL);
|
|
V_8 = (bool)((!(((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_40) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_41 = V_8;
|
|
if (!L_41)
|
|
{
|
|
goto IL_00f0_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_42 = V_4;
|
|
DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C(__this, L_42, NULL);
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_00f0_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_43 = V_7;
|
|
NullCheck(L_43);
|
|
bool L_44;
|
|
L_44 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_43, NULL);
|
|
V_9 = L_44;
|
|
bool L_45 = V_9;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0100_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_0100_1:
|
|
{
|
|
goto IL_0110;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0110:
|
|
{
|
|
}
|
|
|
|
IL_0111:
|
|
{
|
|
int32_t L_46 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_46, 1));
|
|
}
|
|
|
|
IL_0116:
|
|
{
|
|
int32_t L_47 = V_3;
|
|
V_10 = (bool)((((int32_t)((((int32_t)L_47) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_48 = V_10;
|
|
if (L_48)
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
|
|
IL_0126:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14235
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendFocusBasedEvent_TisValueTuple_2_t9270F8474E554C7C106A7F7DE4F0D15C12802EAB_mA928C9FC516DCE1CDBE0BC0369992E782016B21B_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Func_2_tE29FFE46D694921A593EEFB32E4877D75994CC75* ___0_evtFactory, ValueTuple_2_t9270F8474E554C7C106A7F7DE4F0D15C12802EAB ___1_arg, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* V_0 = NULL;
|
|
bool V_1 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_4 = NULL;
|
|
bool V_5 = false;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* V_6 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_7 = NULL;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B4_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B4_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B3_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B3_1 = NULL;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0 = __this->___m_PreviousFocusedPanel;
|
|
V_1 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
Func_2_tE29FFE46D694921A593EEFB32E4877D75994CC75* L_2 = ___0_evtFactory;
|
|
ValueTuple_2_t9270F8474E554C7C106A7F7DE4F0D15C12802EAB L_3 = ___1_arg;
|
|
NullCheck(L_2);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4;
|
|
L_4 = Func_2_Invoke_m7E62B4971BEB10447ADE08369FD94C0B0C001C2B_inline(L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_005d:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = V_2;
|
|
NullCheck((RuntimeObject*)L_6);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_6);
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7 = V_2;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_8 = __this->___m_PreviousFocusedElement;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)CastclassClass((RuntimeObject*)L_8, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
if (L_9)
|
|
{
|
|
G_B4_0 = L_9;
|
|
G_B4_1 = L_7;
|
|
goto IL_0033_1;
|
|
}
|
|
G_B3_0 = L_9;
|
|
G_B3_1 = L_7;
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_10 = __this->___m_PreviousFocusedPanel;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_10);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11;
|
|
L_11 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_10);
|
|
G_B4_0 = L_11;
|
|
G_B4_1 = G_B3_1;
|
|
}
|
|
|
|
IL_0033_1:
|
|
{
|
|
NullCheck(G_B4_1);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(G_B4_1, G_B4_0, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_12 = __this->___m_PreviousFocusedPanel;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_12);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13;
|
|
L_13 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_12);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_14 = V_2;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_13);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_13, L_14);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_15 = __this->___m_PreviousFocusedPanel;
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_15, NULL);
|
|
goto IL_0126;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_16;
|
|
L_16 = UIElementsRuntimeUtility_GetSortedPlayerPanels_m670C8594565AABB890C94CDBA06DBD5C259CF466(NULL);
|
|
V_0 = L_16;
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_inline(L_17, List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_RuntimeMethod_var);
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_18, 1));
|
|
goto IL_0116;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_19 = V_0;
|
|
int32_t L_20 = V_3;
|
|
NullCheck(L_19);
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_21;
|
|
L_21 = List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6(L_19, L_20, List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6_RuntimeMethod_var);
|
|
V_6 = L_21;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_22 = V_6;
|
|
V_4 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_22, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_23 = V_4;
|
|
if (!L_23)
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
}
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_24 = V_6;
|
|
NullCheck(L_24);
|
|
bool L_25;
|
|
L_25 = BaseRuntimePanel_get_drawsInCameras_m8248DBEB03449B761535333F8816A17FB9498307(L_24, NULL);
|
|
G_B12_0 = ((((int32_t)L_25) == ((int32_t)0))? 1 : 0);
|
|
goto IL_00a0;
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
V_5 = (bool)G_B12_0;
|
|
bool L_26 = V_5;
|
|
if (!L_26)
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
Func_2_tE29FFE46D694921A593EEFB32E4877D75994CC75* L_27 = ___0_evtFactory;
|
|
ValueTuple_2_t9270F8474E554C7C106A7F7DE4F0D15C12802EAB L_28 = ___1_arg;
|
|
NullCheck(L_27);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_29;
|
|
L_29 = Func_2_Invoke_m7E62B4971BEB10447ADE08369FD94C0B0C001C2B_inline(L_27, L_28, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_7 = L_29;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0103:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_30 = V_7;
|
|
if (!L_30)
|
|
{
|
|
goto IL_010f;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_31 = V_7;
|
|
NullCheck((RuntimeObject*)L_31);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_31);
|
|
}
|
|
|
|
IL_010f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_32 = V_7;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_33 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_33);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34;
|
|
L_34 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_33);
|
|
NullCheck(L_32);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(L_32, L_34, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_35 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_36;
|
|
L_36 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_37 = V_7;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36, L_37);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_38 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_39;
|
|
L_39 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(19, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
NullCheck(L_39);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_40;
|
|
L_40 = FocusController_get_focusedElement_mC8B530DA2FE09394ADA0A4D25A85DBF5C66853D8(L_39, NULL);
|
|
V_8 = (bool)((!(((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_40) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_41 = V_8;
|
|
if (!L_41)
|
|
{
|
|
goto IL_00f0_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_42 = V_4;
|
|
DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C(__this, L_42, NULL);
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_00f0_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_43 = V_7;
|
|
NullCheck(L_43);
|
|
bool L_44;
|
|
L_44 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_43, NULL);
|
|
V_9 = L_44;
|
|
bool L_45 = V_9;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0100_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_0100_1:
|
|
{
|
|
goto IL_0110;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0110:
|
|
{
|
|
}
|
|
|
|
IL_0111:
|
|
{
|
|
int32_t L_46 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_46, 1));
|
|
}
|
|
|
|
IL_0116:
|
|
{
|
|
int32_t L_47 = V_3;
|
|
V_10 = (bool)((((int32_t)((((int32_t)L_47) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_48 = V_10;
|
|
if (L_48)
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
|
|
IL_0126:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14235
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendFocusBasedEvent_TisValueTuple_3_t221FA8EA322AE1156326997DEA4F6D24BF1E5243_mB48B92097D357DA8BB13A89140F089633FBF0167_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Func_2_t2E586245AEB77072D7227BD6AF2907CB9524227A* ___0_evtFactory, ValueTuple_3_t221FA8EA322AE1156326997DEA4F6D24BF1E5243 ___1_arg, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* V_0 = NULL;
|
|
bool V_1 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_4 = NULL;
|
|
bool V_5 = false;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* V_6 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_7 = NULL;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B4_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B4_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B3_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B3_1 = NULL;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0 = __this->___m_PreviousFocusedPanel;
|
|
V_1 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
Func_2_t2E586245AEB77072D7227BD6AF2907CB9524227A* L_2 = ___0_evtFactory;
|
|
ValueTuple_3_t221FA8EA322AE1156326997DEA4F6D24BF1E5243 L_3 = ___1_arg;
|
|
NullCheck(L_2);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4;
|
|
L_4 = Func_2_Invoke_m160364E07EED591FACCA11D1138E57FB3B25A97B_inline(L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_005d:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = V_2;
|
|
NullCheck((RuntimeObject*)L_6);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_6);
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7 = V_2;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_8 = __this->___m_PreviousFocusedElement;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)CastclassClass((RuntimeObject*)L_8, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
if (L_9)
|
|
{
|
|
G_B4_0 = L_9;
|
|
G_B4_1 = L_7;
|
|
goto IL_0033_1;
|
|
}
|
|
G_B3_0 = L_9;
|
|
G_B3_1 = L_7;
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_10 = __this->___m_PreviousFocusedPanel;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_10);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11;
|
|
L_11 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_10);
|
|
G_B4_0 = L_11;
|
|
G_B4_1 = G_B3_1;
|
|
}
|
|
|
|
IL_0033_1:
|
|
{
|
|
NullCheck(G_B4_1);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(G_B4_1, G_B4_0, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_12 = __this->___m_PreviousFocusedPanel;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_12);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13;
|
|
L_13 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_12);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_14 = V_2;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_13);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_13, L_14);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_15 = __this->___m_PreviousFocusedPanel;
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_15, NULL);
|
|
goto IL_0126;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_16;
|
|
L_16 = UIElementsRuntimeUtility_GetSortedPlayerPanels_m670C8594565AABB890C94CDBA06DBD5C259CF466(NULL);
|
|
V_0 = L_16;
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_inline(L_17, List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_RuntimeMethod_var);
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_18, 1));
|
|
goto IL_0116;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_19 = V_0;
|
|
int32_t L_20 = V_3;
|
|
NullCheck(L_19);
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_21;
|
|
L_21 = List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6(L_19, L_20, List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6_RuntimeMethod_var);
|
|
V_6 = L_21;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_22 = V_6;
|
|
V_4 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_22, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_23 = V_4;
|
|
if (!L_23)
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
}
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_24 = V_6;
|
|
NullCheck(L_24);
|
|
bool L_25;
|
|
L_25 = BaseRuntimePanel_get_drawsInCameras_m8248DBEB03449B761535333F8816A17FB9498307(L_24, NULL);
|
|
G_B12_0 = ((((int32_t)L_25) == ((int32_t)0))? 1 : 0);
|
|
goto IL_00a0;
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
V_5 = (bool)G_B12_0;
|
|
bool L_26 = V_5;
|
|
if (!L_26)
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
Func_2_t2E586245AEB77072D7227BD6AF2907CB9524227A* L_27 = ___0_evtFactory;
|
|
ValueTuple_3_t221FA8EA322AE1156326997DEA4F6D24BF1E5243 L_28 = ___1_arg;
|
|
NullCheck(L_27);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_29;
|
|
L_29 = Func_2_Invoke_m160364E07EED591FACCA11D1138E57FB3B25A97B_inline(L_27, L_28, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_7 = L_29;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0103:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_30 = V_7;
|
|
if (!L_30)
|
|
{
|
|
goto IL_010f;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_31 = V_7;
|
|
NullCheck((RuntimeObject*)L_31);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_31);
|
|
}
|
|
|
|
IL_010f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_32 = V_7;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_33 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_33);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34;
|
|
L_34 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_33);
|
|
NullCheck(L_32);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(L_32, L_34, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_35 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_36;
|
|
L_36 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_37 = V_7;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36, L_37);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_38 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_39;
|
|
L_39 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(19, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
NullCheck(L_39);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_40;
|
|
L_40 = FocusController_get_focusedElement_mC8B530DA2FE09394ADA0A4D25A85DBF5C66853D8(L_39, NULL);
|
|
V_8 = (bool)((!(((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_40) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_41 = V_8;
|
|
if (!L_41)
|
|
{
|
|
goto IL_00f0_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_42 = V_4;
|
|
DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C(__this, L_42, NULL);
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_00f0_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_43 = V_7;
|
|
NullCheck(L_43);
|
|
bool L_44;
|
|
L_44 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_43, NULL);
|
|
V_9 = L_44;
|
|
bool L_45 = V_9;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0100_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_0100_1:
|
|
{
|
|
goto IL_0110;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0110:
|
|
{
|
|
}
|
|
|
|
IL_0111:
|
|
{
|
|
int32_t L_46 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_46, 1));
|
|
}
|
|
|
|
IL_0116:
|
|
{
|
|
int32_t L_47 = V_3;
|
|
V_10 = (bool)((((int32_t)((((int32_t)L_47) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_48 = V_10;
|
|
if (L_48)
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
|
|
IL_0126:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14235
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendFocusBasedEvent_TisValueTuple_3_t90CF2FEF2703459E904C84694EEECB64D3F220C1_mF5343A2CE59825E5C8766EF804EDF616246E4A29_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Func_2_tB5123A698CF2F0D326B1441BFFD2D1F46F29231D* ___0_evtFactory, ValueTuple_3_t90CF2FEF2703459E904C84694EEECB64D3F220C1 ___1_arg, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* V_0 = NULL;
|
|
bool V_1 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_4 = NULL;
|
|
bool V_5 = false;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* V_6 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_7 = NULL;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B4_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B4_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B3_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B3_1 = NULL;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0 = __this->___m_PreviousFocusedPanel;
|
|
V_1 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
Func_2_tB5123A698CF2F0D326B1441BFFD2D1F46F29231D* L_2 = ___0_evtFactory;
|
|
ValueTuple_3_t90CF2FEF2703459E904C84694EEECB64D3F220C1 L_3 = ___1_arg;
|
|
NullCheck(L_2);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4;
|
|
L_4 = Func_2_Invoke_mCBFE0E2E6675707131F5E1B8E4DFBE9E7BC62BD4_inline(L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_005d:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = V_2;
|
|
NullCheck((RuntimeObject*)L_6);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_6);
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7 = V_2;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_8 = __this->___m_PreviousFocusedElement;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)CastclassClass((RuntimeObject*)L_8, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
if (L_9)
|
|
{
|
|
G_B4_0 = L_9;
|
|
G_B4_1 = L_7;
|
|
goto IL_0033_1;
|
|
}
|
|
G_B3_0 = L_9;
|
|
G_B3_1 = L_7;
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_10 = __this->___m_PreviousFocusedPanel;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_10);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11;
|
|
L_11 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_10);
|
|
G_B4_0 = L_11;
|
|
G_B4_1 = G_B3_1;
|
|
}
|
|
|
|
IL_0033_1:
|
|
{
|
|
NullCheck(G_B4_1);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(G_B4_1, G_B4_0, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_12 = __this->___m_PreviousFocusedPanel;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_12);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13;
|
|
L_13 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_12);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_14 = V_2;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_13);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_13, L_14);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_15 = __this->___m_PreviousFocusedPanel;
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_15, NULL);
|
|
goto IL_0126;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_16;
|
|
L_16 = UIElementsRuntimeUtility_GetSortedPlayerPanels_m670C8594565AABB890C94CDBA06DBD5C259CF466(NULL);
|
|
V_0 = L_16;
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_inline(L_17, List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_RuntimeMethod_var);
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_18, 1));
|
|
goto IL_0116;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_19 = V_0;
|
|
int32_t L_20 = V_3;
|
|
NullCheck(L_19);
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_21;
|
|
L_21 = List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6(L_19, L_20, List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6_RuntimeMethod_var);
|
|
V_6 = L_21;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_22 = V_6;
|
|
V_4 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_22, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_23 = V_4;
|
|
if (!L_23)
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
}
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_24 = V_6;
|
|
NullCheck(L_24);
|
|
bool L_25;
|
|
L_25 = BaseRuntimePanel_get_drawsInCameras_m8248DBEB03449B761535333F8816A17FB9498307(L_24, NULL);
|
|
G_B12_0 = ((((int32_t)L_25) == ((int32_t)0))? 1 : 0);
|
|
goto IL_00a0;
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
V_5 = (bool)G_B12_0;
|
|
bool L_26 = V_5;
|
|
if (!L_26)
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
Func_2_tB5123A698CF2F0D326B1441BFFD2D1F46F29231D* L_27 = ___0_evtFactory;
|
|
ValueTuple_3_t90CF2FEF2703459E904C84694EEECB64D3F220C1 L_28 = ___1_arg;
|
|
NullCheck(L_27);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_29;
|
|
L_29 = Func_2_Invoke_mCBFE0E2E6675707131F5E1B8E4DFBE9E7BC62BD4_inline(L_27, L_28, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_7 = L_29;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0103:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_30 = V_7;
|
|
if (!L_30)
|
|
{
|
|
goto IL_010f;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_31 = V_7;
|
|
NullCheck((RuntimeObject*)L_31);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_31);
|
|
}
|
|
|
|
IL_010f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_32 = V_7;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_33 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_33);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34;
|
|
L_34 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_33);
|
|
NullCheck(L_32);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(L_32, L_34, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_35 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_36;
|
|
L_36 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_37 = V_7;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36, L_37);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_38 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_39;
|
|
L_39 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(19, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
NullCheck(L_39);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_40;
|
|
L_40 = FocusController_get_focusedElement_mC8B530DA2FE09394ADA0A4D25A85DBF5C66853D8(L_39, NULL);
|
|
V_8 = (bool)((!(((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_40) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_41 = V_8;
|
|
if (!L_41)
|
|
{
|
|
goto IL_00f0_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_42 = V_4;
|
|
DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C(__this, L_42, NULL);
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_00f0_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_43 = V_7;
|
|
NullCheck(L_43);
|
|
bool L_44;
|
|
L_44 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_43, NULL);
|
|
V_9 = L_44;
|
|
bool L_45 = V_9;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0100_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_0100_1:
|
|
{
|
|
goto IL_0110;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0110:
|
|
{
|
|
}
|
|
|
|
IL_0111:
|
|
{
|
|
int32_t L_46 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_46, 1));
|
|
}
|
|
|
|
IL_0116:
|
|
{
|
|
int32_t L_47 = V_3;
|
|
V_10 = (bool)((((int32_t)((((int32_t)L_47) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_48 = V_10;
|
|
if (L_48)
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
|
|
IL_0126:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14235
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendFocusBasedEvent_TisValueTuple_3_t1214F2A1CCE3F3DE3E2DA1E6EC57E2DFEE17E613_mAAD00D0D9524B572FA0290727113DA66B18D5F7F_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Func_2_tAB47C3D2B1DBDEAB988B0994E8D6B702514D18F7* ___0_evtFactory, ValueTuple_3_t1214F2A1CCE3F3DE3E2DA1E6EC57E2DFEE17E613 ___1_arg, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* V_0 = NULL;
|
|
bool V_1 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_4 = NULL;
|
|
bool V_5 = false;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* V_6 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_7 = NULL;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B4_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B4_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B3_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B3_1 = NULL;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0 = __this->___m_PreviousFocusedPanel;
|
|
V_1 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
Func_2_tAB47C3D2B1DBDEAB988B0994E8D6B702514D18F7* L_2 = ___0_evtFactory;
|
|
ValueTuple_3_t1214F2A1CCE3F3DE3E2DA1E6EC57E2DFEE17E613 L_3 = ___1_arg;
|
|
NullCheck(L_2);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4;
|
|
L_4 = Func_2_Invoke_m33E2D72B1AD7B06B56091E8F75FED7AD243B50AF_inline(L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_005d:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = V_2;
|
|
NullCheck((RuntimeObject*)L_6);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_6);
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7 = V_2;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_8 = __this->___m_PreviousFocusedElement;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)CastclassClass((RuntimeObject*)L_8, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
if (L_9)
|
|
{
|
|
G_B4_0 = L_9;
|
|
G_B4_1 = L_7;
|
|
goto IL_0033_1;
|
|
}
|
|
G_B3_0 = L_9;
|
|
G_B3_1 = L_7;
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_10 = __this->___m_PreviousFocusedPanel;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_10);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11;
|
|
L_11 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_10);
|
|
G_B4_0 = L_11;
|
|
G_B4_1 = G_B3_1;
|
|
}
|
|
|
|
IL_0033_1:
|
|
{
|
|
NullCheck(G_B4_1);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(G_B4_1, G_B4_0, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_12 = __this->___m_PreviousFocusedPanel;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_12);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13;
|
|
L_13 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_12);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_14 = V_2;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_13);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_13, L_14);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_15 = __this->___m_PreviousFocusedPanel;
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_15, NULL);
|
|
goto IL_0126;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_16;
|
|
L_16 = UIElementsRuntimeUtility_GetSortedPlayerPanels_m670C8594565AABB890C94CDBA06DBD5C259CF466(NULL);
|
|
V_0 = L_16;
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_inline(L_17, List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_RuntimeMethod_var);
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_18, 1));
|
|
goto IL_0116;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_19 = V_0;
|
|
int32_t L_20 = V_3;
|
|
NullCheck(L_19);
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_21;
|
|
L_21 = List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6(L_19, L_20, List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6_RuntimeMethod_var);
|
|
V_6 = L_21;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_22 = V_6;
|
|
V_4 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_22, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_23 = V_4;
|
|
if (!L_23)
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
}
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_24 = V_6;
|
|
NullCheck(L_24);
|
|
bool L_25;
|
|
L_25 = BaseRuntimePanel_get_drawsInCameras_m8248DBEB03449B761535333F8816A17FB9498307(L_24, NULL);
|
|
G_B12_0 = ((((int32_t)L_25) == ((int32_t)0))? 1 : 0);
|
|
goto IL_00a0;
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
V_5 = (bool)G_B12_0;
|
|
bool L_26 = V_5;
|
|
if (!L_26)
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
Func_2_tAB47C3D2B1DBDEAB988B0994E8D6B702514D18F7* L_27 = ___0_evtFactory;
|
|
ValueTuple_3_t1214F2A1CCE3F3DE3E2DA1E6EC57E2DFEE17E613 L_28 = ___1_arg;
|
|
NullCheck(L_27);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_29;
|
|
L_29 = Func_2_Invoke_m33E2D72B1AD7B06B56091E8F75FED7AD243B50AF_inline(L_27, L_28, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_7 = L_29;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0103:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_30 = V_7;
|
|
if (!L_30)
|
|
{
|
|
goto IL_010f;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_31 = V_7;
|
|
NullCheck((RuntimeObject*)L_31);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_31);
|
|
}
|
|
|
|
IL_010f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_32 = V_7;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_33 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_33);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34;
|
|
L_34 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_33);
|
|
NullCheck(L_32);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(L_32, L_34, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_35 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_36;
|
|
L_36 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_37 = V_7;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36, L_37);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_38 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_39;
|
|
L_39 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(19, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
NullCheck(L_39);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_40;
|
|
L_40 = FocusController_get_focusedElement_mC8B530DA2FE09394ADA0A4D25A85DBF5C66853D8(L_39, NULL);
|
|
V_8 = (bool)((!(((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_40) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_41 = V_8;
|
|
if (!L_41)
|
|
{
|
|
goto IL_00f0_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_42 = V_4;
|
|
DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C(__this, L_42, NULL);
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_00f0_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_43 = V_7;
|
|
NullCheck(L_43);
|
|
bool L_44;
|
|
L_44 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_43, NULL);
|
|
V_9 = L_44;
|
|
bool L_45 = V_9;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0100_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_0100_1:
|
|
{
|
|
goto IL_0110;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0110:
|
|
{
|
|
}
|
|
|
|
IL_0111:
|
|
{
|
|
int32_t L_46 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_46, 1));
|
|
}
|
|
|
|
IL_0116:
|
|
{
|
|
int32_t L_47 = V_3;
|
|
V_10 = (bool)((((int32_t)((((int32_t)L_47) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_48 = V_10;
|
|
if (L_48)
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
|
|
IL_0126:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14235
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendFocusBasedEvent_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6CE57ABDA81F392E51C4A7ACEFF442D58506D25C_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Func_2_tC33A67D9939EA70F5967CC0D7E5A50AF0E530302* ___0_evtFactory, int32_t ___1_arg, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* V_0 = NULL;
|
|
bool V_1 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_4 = NULL;
|
|
bool V_5 = false;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* V_6 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_7 = NULL;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B4_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B4_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B3_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B3_1 = NULL;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0 = __this->___m_PreviousFocusedPanel;
|
|
V_1 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
Func_2_tC33A67D9939EA70F5967CC0D7E5A50AF0E530302* L_2 = ___0_evtFactory;
|
|
int32_t L_3 = ___1_arg;
|
|
NullCheck(L_2);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4;
|
|
L_4 = Func_2_Invoke_m70FEFE96737AC9DC0FC1203825527104E3D6BED2_inline(L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_005d:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = V_2;
|
|
NullCheck((RuntimeObject*)L_6);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_6);
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7 = V_2;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_8 = __this->___m_PreviousFocusedElement;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)CastclassClass((RuntimeObject*)L_8, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
if (L_9)
|
|
{
|
|
G_B4_0 = L_9;
|
|
G_B4_1 = L_7;
|
|
goto IL_0033_1;
|
|
}
|
|
G_B3_0 = L_9;
|
|
G_B3_1 = L_7;
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_10 = __this->___m_PreviousFocusedPanel;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_10);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11;
|
|
L_11 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_10);
|
|
G_B4_0 = L_11;
|
|
G_B4_1 = G_B3_1;
|
|
}
|
|
|
|
IL_0033_1:
|
|
{
|
|
NullCheck(G_B4_1);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(G_B4_1, G_B4_0, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_12 = __this->___m_PreviousFocusedPanel;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_12);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13;
|
|
L_13 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_12);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_14 = V_2;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_13);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_13, L_14);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_15 = __this->___m_PreviousFocusedPanel;
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_15, NULL);
|
|
goto IL_0126;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_16;
|
|
L_16 = UIElementsRuntimeUtility_GetSortedPlayerPanels_m670C8594565AABB890C94CDBA06DBD5C259CF466(NULL);
|
|
V_0 = L_16;
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_inline(L_17, List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_RuntimeMethod_var);
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_18, 1));
|
|
goto IL_0116;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_19 = V_0;
|
|
int32_t L_20 = V_3;
|
|
NullCheck(L_19);
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_21;
|
|
L_21 = List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6(L_19, L_20, List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6_RuntimeMethod_var);
|
|
V_6 = L_21;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_22 = V_6;
|
|
V_4 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_22, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_23 = V_4;
|
|
if (!L_23)
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
}
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_24 = V_6;
|
|
NullCheck(L_24);
|
|
bool L_25;
|
|
L_25 = BaseRuntimePanel_get_drawsInCameras_m8248DBEB03449B761535333F8816A17FB9498307(L_24, NULL);
|
|
G_B12_0 = ((((int32_t)L_25) == ((int32_t)0))? 1 : 0);
|
|
goto IL_00a0;
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
V_5 = (bool)G_B12_0;
|
|
bool L_26 = V_5;
|
|
if (!L_26)
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
Func_2_tC33A67D9939EA70F5967CC0D7E5A50AF0E530302* L_27 = ___0_evtFactory;
|
|
int32_t L_28 = ___1_arg;
|
|
NullCheck(L_27);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_29;
|
|
L_29 = Func_2_Invoke_m70FEFE96737AC9DC0FC1203825527104E3D6BED2_inline(L_27, L_28, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_7 = L_29;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0103:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_30 = V_7;
|
|
if (!L_30)
|
|
{
|
|
goto IL_010f;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_31 = V_7;
|
|
NullCheck((RuntimeObject*)L_31);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_31);
|
|
}
|
|
|
|
IL_010f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_32 = V_7;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_33 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_33);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34;
|
|
L_34 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_33);
|
|
NullCheck(L_32);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(L_32, L_34, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_35 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_36;
|
|
L_36 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_37 = V_7;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36, L_37);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_38 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_39;
|
|
L_39 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(19, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
NullCheck(L_39);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_40;
|
|
L_40 = FocusController_get_focusedElement_mC8B530DA2FE09394ADA0A4D25A85DBF5C66853D8(L_39, NULL);
|
|
V_8 = (bool)((!(((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_40) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_41 = V_8;
|
|
if (!L_41)
|
|
{
|
|
goto IL_00f0_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_42 = V_4;
|
|
DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C(__this, L_42, NULL);
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_00f0_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_43 = V_7;
|
|
NullCheck(L_43);
|
|
bool L_44;
|
|
L_44 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_43, NULL);
|
|
V_9 = L_44;
|
|
bool L_45 = V_9;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0100_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_0100_1:
|
|
{
|
|
goto IL_0110;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0110:
|
|
{
|
|
}
|
|
|
|
IL_0111:
|
|
{
|
|
int32_t L_46 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_46, 1));
|
|
}
|
|
|
|
IL_0116:
|
|
{
|
|
int32_t L_47 = V_3;
|
|
V_10 = (bool)((((int32_t)((((int32_t)L_47) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_48 = V_10;
|
|
if (L_48)
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
|
|
IL_0126:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14235
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendFocusBasedEvent_TisRuntimeObject_m8654C010A19CC8EFDCFEAC35EE4AB7F2E66BD4D1_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Func_2_t615C91B75B6D7B4E70D5080F4EE82DFCD6B6B069* ___0_evtFactory, RuntimeObject* ___1_arg, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* V_0 = NULL;
|
|
bool V_1 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_4 = NULL;
|
|
bool V_5 = false;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* V_6 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_7 = NULL;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B4_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B4_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B3_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B3_1 = NULL;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0 = __this->___m_PreviousFocusedPanel;
|
|
V_1 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
Func_2_t615C91B75B6D7B4E70D5080F4EE82DFCD6B6B069* L_2 = ___0_evtFactory;
|
|
RuntimeObject* L_3 = ___1_arg;
|
|
NullCheck(L_2);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4;
|
|
L_4 = Func_2_Invoke_mB8388FF63F77C4BC0C51A8A66369FC6503A68E7A_inline(L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_2 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_005d:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = V_2;
|
|
NullCheck((RuntimeObject*)L_6);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_6);
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7 = V_2;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_8 = __this->___m_PreviousFocusedElement;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)CastclassClass((RuntimeObject*)L_8, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
if (L_9)
|
|
{
|
|
G_B4_0 = L_9;
|
|
G_B4_1 = L_7;
|
|
goto IL_0033_1;
|
|
}
|
|
G_B3_0 = L_9;
|
|
G_B3_1 = L_7;
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_10 = __this->___m_PreviousFocusedPanel;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_10);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11;
|
|
L_11 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_10);
|
|
G_B4_0 = L_11;
|
|
G_B4_1 = G_B3_1;
|
|
}
|
|
|
|
IL_0033_1:
|
|
{
|
|
NullCheck(G_B4_1);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(G_B4_1, G_B4_0, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_12 = __this->___m_PreviousFocusedPanel;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_12);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13;
|
|
L_13 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_12);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_14 = V_2;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_13);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_13, L_14);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_15 = __this->___m_PreviousFocusedPanel;
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_15, NULL);
|
|
goto IL_0126;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_16;
|
|
L_16 = UIElementsRuntimeUtility_GetSortedPlayerPanels_m670C8594565AABB890C94CDBA06DBD5C259CF466(NULL);
|
|
V_0 = L_16;
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_inline(L_17, List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_RuntimeMethod_var);
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_18, 1));
|
|
goto IL_0116;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_19 = V_0;
|
|
int32_t L_20 = V_3;
|
|
NullCheck(L_19);
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_21;
|
|
L_21 = List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6(L_19, L_20, List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6_RuntimeMethod_var);
|
|
V_6 = L_21;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_22 = V_6;
|
|
V_4 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_22, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_23 = V_4;
|
|
if (!L_23)
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
}
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_24 = V_6;
|
|
NullCheck(L_24);
|
|
bool L_25;
|
|
L_25 = BaseRuntimePanel_get_drawsInCameras_m8248DBEB03449B761535333F8816A17FB9498307(L_24, NULL);
|
|
G_B12_0 = ((((int32_t)L_25) == ((int32_t)0))? 1 : 0);
|
|
goto IL_00a0;
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
V_5 = (bool)G_B12_0;
|
|
bool L_26 = V_5;
|
|
if (!L_26)
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
Func_2_t615C91B75B6D7B4E70D5080F4EE82DFCD6B6B069* L_27 = ___0_evtFactory;
|
|
RuntimeObject* L_28 = ___1_arg;
|
|
NullCheck(L_27);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_29;
|
|
L_29 = Func_2_Invoke_mB8388FF63F77C4BC0C51A8A66369FC6503A68E7A_inline(L_27, L_28, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_7 = L_29;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0103:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_30 = V_7;
|
|
if (!L_30)
|
|
{
|
|
goto IL_010f;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_31 = V_7;
|
|
NullCheck((RuntimeObject*)L_31);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_31);
|
|
}
|
|
|
|
IL_010f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_32 = V_7;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_33 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_33);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34;
|
|
L_34 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_33);
|
|
NullCheck(L_32);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(L_32, L_34, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_35 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_36;
|
|
L_36 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_37 = V_7;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36, L_37);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_38 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_39;
|
|
L_39 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(19, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
NullCheck(L_39);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_40;
|
|
L_40 = FocusController_get_focusedElement_mC8B530DA2FE09394ADA0A4D25A85DBF5C66853D8(L_39, NULL);
|
|
V_8 = (bool)((!(((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_40) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_41 = V_8;
|
|
if (!L_41)
|
|
{
|
|
goto IL_00f0_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_42 = V_4;
|
|
DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C(__this, L_42, NULL);
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_00f0_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_43 = V_7;
|
|
NullCheck(L_43);
|
|
bool L_44;
|
|
L_44 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_43, NULL);
|
|
V_9 = L_44;
|
|
bool L_45 = V_9;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0100_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_0100_1:
|
|
{
|
|
goto IL_0110;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0110:
|
|
{
|
|
}
|
|
|
|
IL_0111:
|
|
{
|
|
int32_t L_46 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_46, 1));
|
|
}
|
|
|
|
IL_0116:
|
|
{
|
|
int32_t L_47 = V_3;
|
|
V_10 = (bool)((((int32_t)((((int32_t)L_47) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_48 = V_10;
|
|
if (L_48)
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
|
|
IL_0126:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14235
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendFocusBasedEvent_TisIl2CppFullySharedGenericAny_m2300BC2BC8B61EC0F2FF2919A9BE4E5592E9AC23_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Func_2_t387AD3722EB0E22243BF0C62E63A64376031C305* ___0_evtFactory, Il2CppFullySharedGenericAny ___1_arg, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_TArg_t8189A858D7103EF15637196D48D9028BDDB0B93B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_TArg_t8189A858D7103EF15637196D48D9028BDDB0B93B);
|
|
const Il2CppFullySharedGenericAny L_28 = L_3;
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* V_0 = NULL;
|
|
bool V_1 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_4 = NULL;
|
|
bool V_5 = false;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* V_6 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_7 = NULL;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B4_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B4_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B3_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B3_1 = NULL;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0 = __this->___m_PreviousFocusedPanel;
|
|
V_1 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
Func_2_t387AD3722EB0E22243BF0C62E63A64376031C305* L_2 = ___0_evtFactory;
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___1_arg : &___1_arg), SizeOf_TArg_t8189A858D7103EF15637196D48D9028BDDB0B93B);
|
|
NullCheck(L_2);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4;
|
|
L_4 = InvokerFuncInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)), il2cpp_rgctx_method(method->rgctx_data, 2), L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_3: *(void**)L_3));
|
|
V_2 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_005d:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = V_2;
|
|
NullCheck((RuntimeObject*)L_6);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_6);
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7 = V_2;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_8 = __this->___m_PreviousFocusedElement;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)CastclassClass((RuntimeObject*)L_8, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
if (L_9)
|
|
{
|
|
G_B4_0 = L_9;
|
|
G_B4_1 = L_7;
|
|
goto IL_0033_1;
|
|
}
|
|
G_B3_0 = L_9;
|
|
G_B3_1 = L_7;
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_10 = __this->___m_PreviousFocusedPanel;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_10);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11;
|
|
L_11 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_10);
|
|
G_B4_0 = L_11;
|
|
G_B4_1 = G_B3_1;
|
|
}
|
|
|
|
IL_0033_1:
|
|
{
|
|
NullCheck(G_B4_1);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(G_B4_1, G_B4_0, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_12 = __this->___m_PreviousFocusedPanel;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_12);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13;
|
|
L_13 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_12);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_14 = V_2;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_13);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_13, L_14);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_15 = __this->___m_PreviousFocusedPanel;
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_15, NULL);
|
|
goto IL_0126;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_16;
|
|
L_16 = UIElementsRuntimeUtility_GetSortedPlayerPanels_m670C8594565AABB890C94CDBA06DBD5C259CF466(NULL);
|
|
V_0 = L_16;
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_inline(L_17, List_1_get_Count_mFB3E1E6105D17DF87C1A17DEE5D6B42B41B45238_RuntimeMethod_var);
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_18, 1));
|
|
goto IL_0116;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_19 = V_0;
|
|
int32_t L_20 = V_3;
|
|
NullCheck(L_19);
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_21;
|
|
L_21 = List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6(L_19, L_20, List_1_get_Item_m1930E26575C57D29565191D3A1788DD2FC0E5BA6_RuntimeMethod_var);
|
|
V_6 = L_21;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_22 = V_6;
|
|
V_4 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_22, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_23 = V_4;
|
|
if (!L_23)
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
}
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_24 = V_6;
|
|
NullCheck(L_24);
|
|
bool L_25;
|
|
L_25 = BaseRuntimePanel_get_drawsInCameras_m8248DBEB03449B761535333F8816A17FB9498307(L_24, NULL);
|
|
G_B12_0 = ((((int32_t)L_25) == ((int32_t)0))? 1 : 0);
|
|
goto IL_00a0;
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
V_5 = (bool)G_B12_0;
|
|
bool L_26 = V_5;
|
|
if (!L_26)
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
Func_2_t387AD3722EB0E22243BF0C62E63A64376031C305* L_27 = ___0_evtFactory;
|
|
il2cpp_codegen_memcpy(L_28, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___1_arg : &___1_arg), SizeOf_TArg_t8189A858D7103EF15637196D48D9028BDDB0B93B);
|
|
NullCheck(L_27);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_29;
|
|
L_29 = InvokerFuncInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)), il2cpp_rgctx_method(method->rgctx_data, 2), L_27, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_28: *(void**)L_28));
|
|
V_7 = L_29;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0103:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_30 = V_7;
|
|
if (!L_30)
|
|
{
|
|
goto IL_010f;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_31 = V_7;
|
|
NullCheck((RuntimeObject*)L_31);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_31);
|
|
}
|
|
|
|
IL_010f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_32 = V_7;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_33 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_33);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34;
|
|
L_34 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_33);
|
|
NullCheck(L_32);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(L_32, L_34, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_35 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_36;
|
|
L_36 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_37 = V_7;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36, L_37);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_38 = V_4;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_39;
|
|
L_39 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(19, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
NullCheck(L_39);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_40;
|
|
L_40 = FocusController_get_focusedElement_mC8B530DA2FE09394ADA0A4D25A85DBF5C66853D8(L_39, NULL);
|
|
V_8 = (bool)((!(((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_40) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_41 = V_8;
|
|
if (!L_41)
|
|
{
|
|
goto IL_00f0_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_42 = V_4;
|
|
DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C(__this, L_42, NULL);
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_00f0_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_43 = V_7;
|
|
NullCheck(L_43);
|
|
bool L_44;
|
|
L_44 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_43, NULL);
|
|
V_9 = L_44;
|
|
bool L_45 = V_9;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0100_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_0100_1:
|
|
{
|
|
goto IL_0110;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0110:
|
|
{
|
|
}
|
|
|
|
IL_0111:
|
|
{
|
|
int32_t L_46 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_46, 1));
|
|
}
|
|
|
|
IL_0116:
|
|
{
|
|
int32_t L_47 = V_3;
|
|
V_10 = (bool)((((int32_t)((((int32_t)L_47) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_48 = V_10;
|
|
if (L_48)
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
|
|
IL_0126:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14236
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_2_t00940F333D00C8F1D5D9E7B80A81F8DCCE9908FC_m82140E0D4735DDB56D3426E187561F08B56FC3E0_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_4_t3B79C154D00A796C783C567CC587F09CD8926B19* ___4_evtFactory, ValueTuple_2_t00940F333D00C8F1D5D9E7B80A81F8DCCE9908FC ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
Func_3_t7ABD9F6EC6D72DB68F353D0F3C3FEC7322E5A853* G_B2_0 = NULL;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B2_1;
|
|
memset((&G_B2_1), 0, sizeof(G_B2_1));
|
|
int32_t G_B2_2 = 0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B2_3;
|
|
memset((&G_B2_3), 0, sizeof(G_B2_3));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B2_4;
|
|
memset((&G_B2_4), 0, sizeof(G_B2_4));
|
|
DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* G_B2_5 = NULL;
|
|
Func_3_t7ABD9F6EC6D72DB68F353D0F3C3FEC7322E5A853* G_B1_0 = NULL;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B1_1;
|
|
memset((&G_B1_1), 0, sizeof(G_B1_1));
|
|
int32_t G_B1_2 = 0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B1_3;
|
|
memset((&G_B1_3), 0, sizeof(G_B1_3));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B1_4;
|
|
memset((&G_B1_4), 0, sizeof(G_B1_4));
|
|
DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* G_B1_5 = NULL;
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_mousePosition;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___1_delta;
|
|
int32_t L_2 = ___2_pointerId;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_3 = ___3_targetDisplay;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
Func_3_t7ABD9F6EC6D72DB68F353D0F3C3FEC7322E5A853* L_4 = ((U3CU3Ec__35_1_t15D400D9F5A9E198C56A1F03181D2FF7A82CBF55_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0;
|
|
Func_3_t7ABD9F6EC6D72DB68F353D0F3C3FEC7322E5A853* L_5 = L_4;
|
|
if (L_5)
|
|
{
|
|
G_B2_0 = L_5;
|
|
G_B2_1 = L_3;
|
|
G_B2_2 = L_2;
|
|
G_B2_3 = L_1;
|
|
G_B2_4 = L_0;
|
|
G_B2_5 = __this;
|
|
goto IL_0026;
|
|
}
|
|
G_B1_0 = L_5;
|
|
G_B1_1 = L_3;
|
|
G_B1_2 = L_2;
|
|
G_B1_3 = L_1;
|
|
G_B1_4 = L_0;
|
|
G_B1_5 = __this;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
U3CU3Ec__35_1_t15D400D9F5A9E198C56A1F03181D2FF7A82CBF55* L_6 = ((U3CU3Ec__35_1_t15D400D9F5A9E198C56A1F03181D2FF7A82CBF55_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9;
|
|
Func_3_t7ABD9F6EC6D72DB68F353D0F3C3FEC7322E5A853* L_7 = (Func_3_t7ABD9F6EC6D72DB68F353D0F3C3FEC7322E5A853*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
Func_3__ctor_mECAED1E5A705EE98B4E7D9EF87E8F55A45974A08(L_7, (RuntimeObject*)L_6, (intptr_t)((void*)il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
Func_3_t7ABD9F6EC6D72DB68F353D0F3C3FEC7322E5A853* L_8 = L_7;
|
|
((U3CU3Ec__35_1_t15D400D9F5A9E198C56A1F03181D2FF7A82CBF55_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec__35_1_t15D400D9F5A9E198C56A1F03181D2FF7A82CBF55_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0), (void*)L_8);
|
|
G_B2_0 = L_8;
|
|
G_B2_1 = G_B1_1;
|
|
G_B2_2 = G_B1_2;
|
|
G_B2_3 = G_B1_3;
|
|
G_B2_4 = G_B1_4;
|
|
G_B2_5 = G_B1_5;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
Func_4_t3B79C154D00A796C783C567CC587F09CD8926B19* L_9 = ___4_evtFactory;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___1_delta;
|
|
ValueTuple_2_t00940F333D00C8F1D5D9E7B80A81F8DCCE9908FC L_11 = ___5_arg;
|
|
ValueTuple_3_tC96A183958B632D9F0A499D281BC205C751884EB L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
ValueTuple_3__ctor_m2200D670B147C0C61E3B8283572943071C6D4A6B((&L_12), L_9, L_10, L_11, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
bool L_13 = ___6_deselectIfNoTarget;
|
|
NullCheck(G_B2_5);
|
|
DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_tC96A183958B632D9F0A499D281BC205C751884EB_mA8BB7C2F62B499ADAA18B42D915006FB3917B950(G_B2_5, G_B2_4, G_B2_3, G_B2_2, G_B2_1, G_B2_0, L_12, L_13, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14236
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_2_t85FD60472857DFEA88086C45948C596619D3CA21_m97E6C76231DA1A2DD3EA79538F8A420A3D1201E9_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_4_t27E1E57CC45284A3365ADDD73218A4B7FBE8A41A* ___4_evtFactory, ValueTuple_2_t85FD60472857DFEA88086C45948C596619D3CA21 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
Func_3_t89E320FE1090235275D6DF55A8411FDA31CEFC7A* G_B2_0 = NULL;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B2_1;
|
|
memset((&G_B2_1), 0, sizeof(G_B2_1));
|
|
int32_t G_B2_2 = 0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B2_3;
|
|
memset((&G_B2_3), 0, sizeof(G_B2_3));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B2_4;
|
|
memset((&G_B2_4), 0, sizeof(G_B2_4));
|
|
DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* G_B2_5 = NULL;
|
|
Func_3_t89E320FE1090235275D6DF55A8411FDA31CEFC7A* G_B1_0 = NULL;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B1_1;
|
|
memset((&G_B1_1), 0, sizeof(G_B1_1));
|
|
int32_t G_B1_2 = 0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B1_3;
|
|
memset((&G_B1_3), 0, sizeof(G_B1_3));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B1_4;
|
|
memset((&G_B1_4), 0, sizeof(G_B1_4));
|
|
DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* G_B1_5 = NULL;
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_mousePosition;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___1_delta;
|
|
int32_t L_2 = ___2_pointerId;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_3 = ___3_targetDisplay;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
Func_3_t89E320FE1090235275D6DF55A8411FDA31CEFC7A* L_4 = ((U3CU3Ec__35_1_t101BAC9E48FB1426DD37DF65BBF83A3C171D017C_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0;
|
|
Func_3_t89E320FE1090235275D6DF55A8411FDA31CEFC7A* L_5 = L_4;
|
|
if (L_5)
|
|
{
|
|
G_B2_0 = L_5;
|
|
G_B2_1 = L_3;
|
|
G_B2_2 = L_2;
|
|
G_B2_3 = L_1;
|
|
G_B2_4 = L_0;
|
|
G_B2_5 = __this;
|
|
goto IL_0026;
|
|
}
|
|
G_B1_0 = L_5;
|
|
G_B1_1 = L_3;
|
|
G_B1_2 = L_2;
|
|
G_B1_3 = L_1;
|
|
G_B1_4 = L_0;
|
|
G_B1_5 = __this;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
U3CU3Ec__35_1_t101BAC9E48FB1426DD37DF65BBF83A3C171D017C* L_6 = ((U3CU3Ec__35_1_t101BAC9E48FB1426DD37DF65BBF83A3C171D017C_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9;
|
|
Func_3_t89E320FE1090235275D6DF55A8411FDA31CEFC7A* L_7 = (Func_3_t89E320FE1090235275D6DF55A8411FDA31CEFC7A*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
Func_3__ctor_m6E4726E0975349D96791A97621F72F61358433E9(L_7, (RuntimeObject*)L_6, (intptr_t)((void*)il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
Func_3_t89E320FE1090235275D6DF55A8411FDA31CEFC7A* L_8 = L_7;
|
|
((U3CU3Ec__35_1_t101BAC9E48FB1426DD37DF65BBF83A3C171D017C_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec__35_1_t101BAC9E48FB1426DD37DF65BBF83A3C171D017C_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0), (void*)L_8);
|
|
G_B2_0 = L_8;
|
|
G_B2_1 = G_B1_1;
|
|
G_B2_2 = G_B1_2;
|
|
G_B2_3 = G_B1_3;
|
|
G_B2_4 = G_B1_4;
|
|
G_B2_5 = G_B1_5;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
Func_4_t27E1E57CC45284A3365ADDD73218A4B7FBE8A41A* L_9 = ___4_evtFactory;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___1_delta;
|
|
ValueTuple_2_t85FD60472857DFEA88086C45948C596619D3CA21 L_11 = ___5_arg;
|
|
ValueTuple_3_t38EEEA492A2177FB74F091CFF8611128B4254088 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
ValueTuple_3__ctor_m19472BF1A722300B725585C9BC08809345F70368((&L_12), L_9, L_10, L_11, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
bool L_13 = ___6_deselectIfNoTarget;
|
|
NullCheck(G_B2_5);
|
|
DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_t38EEEA492A2177FB74F091CFF8611128B4254088_mD0D36C25F80665492AD43D7E22009307EB694466(G_B2_5, G_B2_4, G_B2_3, G_B2_2, G_B2_1, G_B2_0, L_12, L_13, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14237
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_t0830D9C281DA2A9A8B1564AB60C647F6DA504260_mA5B008F799247B6405A0AE739F71E83E19B835AD_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_tA9A0974E9EC292E11DAEA6B714FAE439FFE235F7* ___4_evtFactory, ValueTuple_3_t0830D9C281DA2A9A8B1564AB60C647F6DA504260 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_1 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_3 = NULL;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_4 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_5 = NULL;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_9 = NULL;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B19_0 = NULL;
|
|
int32_t G_B19_1 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B18_0 = NULL;
|
|
int32_t G_B18_1 = 0;
|
|
int32_t G_B23_0 = 0;
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0;
|
|
L_0 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
V_6 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_6;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_2;
|
|
L_2 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_2, NULL);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___0_mousePosition;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
L_4 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_3, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5 = ___1_delta;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_5, NULL);
|
|
int32_t L_7 = ___2_pointerId;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_8 = ___3_targetDisplay;
|
|
DefaultEventSystem_FindTargetAtPosition_m27DADBA203D33C4BBA848A244E48BF9B83E7AC61(__this, L_4, L_6, L_7, L_8, (&V_0), (&V_1), (&V_2), (&V_3), (&V_4), NULL);
|
|
int32_t L_9 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_10;
|
|
L_10 = PointerDeviceState_GetPanel_mF1ABAF676F34A5F603E66044D2F5BAB057AC140E(L_9, (int32_t)0, NULL);
|
|
V_5 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_10, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_11 = V_5;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_12 = V_1;
|
|
V_7 = (bool)((((int32_t)((((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_11) == ((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_12))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_13 = V_7;
|
|
if (!L_13)
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_14 = V_5;
|
|
if (L_14)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_15 = V_5;
|
|
int32_t L_16 = ___2_pointerId;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15);
|
|
BaseRuntimePanel_PointerLeavesPanel_mD7BC4DC877F6E4980EFEFD7CF5036E2F359AAF6E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15, L_16, NULL);
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_17 = V_1;
|
|
if (L_17)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_18 = V_1;
|
|
int32_t L_19 = ___2_pointerId;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_20 = V_2;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_18);
|
|
BaseRuntimePanel_PointerEntersPanel_m2826AA8588CBC87F1C39FB2FFA4A4B44E255843E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_18, L_19, L_20, NULL);
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_21 = V_1;
|
|
V_8 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_014b;
|
|
}
|
|
}
|
|
{
|
|
Func_3_tA9A0974E9EC292E11DAEA6B714FAE439FFE235F7* L_23 = ___4_evtFactory;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24 = V_2;
|
|
ValueTuple_3_t0830D9C281DA2A9A8B1564AB60C647F6DA504260 L_25 = ___5_arg;
|
|
NullCheck(L_23);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_26;
|
|
L_26 = Func_3_Invoke_mB48BDC9D79DE753FCA0471F284FAC748CB43E586_inline(L_23, L_24, L_25, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_9 = L_26;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_013b:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_27 = V_9;
|
|
if (!L_27)
|
|
{
|
|
goto IL_0147;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_28 = V_9;
|
|
NullCheck((RuntimeObject*)L_28);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_28);
|
|
}
|
|
|
|
IL_0147:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_29 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29);
|
|
bool L_30;
|
|
L_30 = BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29, NULL);
|
|
V_10 = (bool)((((int32_t)L_30) == ((int32_t)0))? 1 : 0);
|
|
bool L_31 = V_10;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00b1_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_32 = V_1;
|
|
int32_t L_33 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34 = V_3;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_35 = V_9;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_32);
|
|
BaseVisualElementPanel_SetTopElementUnderPointer_m9936A82FE14DDB5471576A5CE410F0686CA8E586((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_32, L_33, L_34, L_35, NULL);
|
|
}
|
|
|
|
IL_00b1_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_36 = V_9;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_37 = V_0;
|
|
NullCheck(L_36);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(L_36, L_37, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_38 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39;
|
|
L_39 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_40 = V_9;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_39);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_39, L_40);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_41 = V_9;
|
|
NullCheck(L_41);
|
|
bool L_42;
|
|
L_42 = EventBase_get_processedByFocusController_mB2BCAFE58D45919AC9F5AC0AAEF059D8A640AE53(L_41, NULL);
|
|
V_11 = L_42;
|
|
bool L_43 = V_11;
|
|
if (!L_43)
|
|
{
|
|
goto IL_00df_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_44 = V_1;
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_44, NULL);
|
|
}
|
|
|
|
IL_00df_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_45 = V_9;
|
|
NullCheck(L_45);
|
|
int64_t L_46;
|
|
L_46 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_45);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
int64_t L_47;
|
|
L_47 = EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12(EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
V_12 = (bool)((((int64_t)L_46) == ((int64_t)L_47))? 1 : 0);
|
|
bool L_48 = V_12;
|
|
if (!L_48)
|
|
{
|
|
goto IL_0109_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_49 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_50 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_51 = L_50;
|
|
if (L_51)
|
|
{
|
|
G_B19_0 = L_51;
|
|
G_B19_1 = L_49;
|
|
goto IL_00ff_1;
|
|
}
|
|
G_B18_0 = L_51;
|
|
G_B18_1 = L_49;
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_52 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_52);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_53;
|
|
L_53 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_52);
|
|
G_B19_0 = L_53;
|
|
G_B19_1 = G_B18_1;
|
|
}
|
|
|
|
IL_00ff_1:
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_54 = V_4;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(G_B19_1, G_B19_0, L_54, NULL);
|
|
goto IL_0138_1;
|
|
}
|
|
|
|
IL_0109_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_55 = V_9;
|
|
NullCheck(L_55);
|
|
int64_t L_56;
|
|
L_56 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_55);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
int64_t L_57;
|
|
L_57 = EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D(EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
if ((!(((uint64_t)L_56) == ((uint64_t)L_57))))
|
|
{
|
|
goto IL_0128_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_58 = V_9;
|
|
NullCheck((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_58, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)));
|
|
int32_t L_59;
|
|
L_59 = PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_inline((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_58, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)), PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
G_B23_0 = ((((int32_t)L_59) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0129_1;
|
|
}
|
|
|
|
IL_0128_1:
|
|
{
|
|
G_B23_0 = 0;
|
|
}
|
|
|
|
IL_0129_1:
|
|
{
|
|
V_13 = (bool)G_B23_0;
|
|
bool L_60 = V_13;
|
|
if (!L_60)
|
|
{
|
|
goto IL_0138_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_61 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(L_61, (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL, (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184*)NULL, NULL);
|
|
}
|
|
|
|
IL_0138_1:
|
|
{
|
|
goto IL_0148;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0148:
|
|
{
|
|
goto IL_015f;
|
|
}
|
|
|
|
IL_014b:
|
|
{
|
|
bool L_62 = ___6_deselectIfNoTarget;
|
|
V_14 = L_62;
|
|
bool L_63 = V_14;
|
|
if (!L_63)
|
|
{
|
|
goto IL_015e;
|
|
}
|
|
}
|
|
{
|
|
DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C(__this, (RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)NULL, NULL);
|
|
}
|
|
|
|
IL_015e:
|
|
{
|
|
}
|
|
|
|
IL_015f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14237
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_t5955F42FF36506750DBDF6E15B988AC705ACCEC6_mE5D31181E5E5AC1B0FC055077D05EE36A9F7AA39_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_tA3DDAB5A72CEB154FB50A12CE39636838C9008FA* ___4_evtFactory, ValueTuple_3_t5955F42FF36506750DBDF6E15B988AC705ACCEC6 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_1 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_3 = NULL;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_4 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_5 = NULL;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_9 = NULL;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B19_0 = NULL;
|
|
int32_t G_B19_1 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B18_0 = NULL;
|
|
int32_t G_B18_1 = 0;
|
|
int32_t G_B23_0 = 0;
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0;
|
|
L_0 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
V_6 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_6;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_2;
|
|
L_2 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_2, NULL);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___0_mousePosition;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
L_4 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_3, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5 = ___1_delta;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_5, NULL);
|
|
int32_t L_7 = ___2_pointerId;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_8 = ___3_targetDisplay;
|
|
DefaultEventSystem_FindTargetAtPosition_m27DADBA203D33C4BBA848A244E48BF9B83E7AC61(__this, L_4, L_6, L_7, L_8, (&V_0), (&V_1), (&V_2), (&V_3), (&V_4), NULL);
|
|
int32_t L_9 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_10;
|
|
L_10 = PointerDeviceState_GetPanel_mF1ABAF676F34A5F603E66044D2F5BAB057AC140E(L_9, (int32_t)0, NULL);
|
|
V_5 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_10, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_11 = V_5;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_12 = V_1;
|
|
V_7 = (bool)((((int32_t)((((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_11) == ((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_12))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_13 = V_7;
|
|
if (!L_13)
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_14 = V_5;
|
|
if (L_14)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_15 = V_5;
|
|
int32_t L_16 = ___2_pointerId;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15);
|
|
BaseRuntimePanel_PointerLeavesPanel_mD7BC4DC877F6E4980EFEFD7CF5036E2F359AAF6E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15, L_16, NULL);
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_17 = V_1;
|
|
if (L_17)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_18 = V_1;
|
|
int32_t L_19 = ___2_pointerId;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_20 = V_2;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_18);
|
|
BaseRuntimePanel_PointerEntersPanel_m2826AA8588CBC87F1C39FB2FFA4A4B44E255843E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_18, L_19, L_20, NULL);
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_21 = V_1;
|
|
V_8 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_014b;
|
|
}
|
|
}
|
|
{
|
|
Func_3_tA3DDAB5A72CEB154FB50A12CE39636838C9008FA* L_23 = ___4_evtFactory;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24 = V_2;
|
|
ValueTuple_3_t5955F42FF36506750DBDF6E15B988AC705ACCEC6 L_25 = ___5_arg;
|
|
NullCheck(L_23);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_26;
|
|
L_26 = Func_3_Invoke_mCC2F332F82DC3CB02A59C5355C15A536351ABD25_inline(L_23, L_24, L_25, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_9 = L_26;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_013b:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_27 = V_9;
|
|
if (!L_27)
|
|
{
|
|
goto IL_0147;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_28 = V_9;
|
|
NullCheck((RuntimeObject*)L_28);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_28);
|
|
}
|
|
|
|
IL_0147:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_29 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29);
|
|
bool L_30;
|
|
L_30 = BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29, NULL);
|
|
V_10 = (bool)((((int32_t)L_30) == ((int32_t)0))? 1 : 0);
|
|
bool L_31 = V_10;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00b1_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_32 = V_1;
|
|
int32_t L_33 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34 = V_3;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_35 = V_9;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_32);
|
|
BaseVisualElementPanel_SetTopElementUnderPointer_m9936A82FE14DDB5471576A5CE410F0686CA8E586((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_32, L_33, L_34, L_35, NULL);
|
|
}
|
|
|
|
IL_00b1_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_36 = V_9;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_37 = V_0;
|
|
NullCheck(L_36);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(L_36, L_37, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_38 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39;
|
|
L_39 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_40 = V_9;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_39);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_39, L_40);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_41 = V_9;
|
|
NullCheck(L_41);
|
|
bool L_42;
|
|
L_42 = EventBase_get_processedByFocusController_mB2BCAFE58D45919AC9F5AC0AAEF059D8A640AE53(L_41, NULL);
|
|
V_11 = L_42;
|
|
bool L_43 = V_11;
|
|
if (!L_43)
|
|
{
|
|
goto IL_00df_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_44 = V_1;
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_44, NULL);
|
|
}
|
|
|
|
IL_00df_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_45 = V_9;
|
|
NullCheck(L_45);
|
|
int64_t L_46;
|
|
L_46 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_45);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
int64_t L_47;
|
|
L_47 = EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12(EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
V_12 = (bool)((((int64_t)L_46) == ((int64_t)L_47))? 1 : 0);
|
|
bool L_48 = V_12;
|
|
if (!L_48)
|
|
{
|
|
goto IL_0109_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_49 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_50 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_51 = L_50;
|
|
if (L_51)
|
|
{
|
|
G_B19_0 = L_51;
|
|
G_B19_1 = L_49;
|
|
goto IL_00ff_1;
|
|
}
|
|
G_B18_0 = L_51;
|
|
G_B18_1 = L_49;
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_52 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_52);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_53;
|
|
L_53 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_52);
|
|
G_B19_0 = L_53;
|
|
G_B19_1 = G_B18_1;
|
|
}
|
|
|
|
IL_00ff_1:
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_54 = V_4;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(G_B19_1, G_B19_0, L_54, NULL);
|
|
goto IL_0138_1;
|
|
}
|
|
|
|
IL_0109_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_55 = V_9;
|
|
NullCheck(L_55);
|
|
int64_t L_56;
|
|
L_56 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_55);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
int64_t L_57;
|
|
L_57 = EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D(EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
if ((!(((uint64_t)L_56) == ((uint64_t)L_57))))
|
|
{
|
|
goto IL_0128_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_58 = V_9;
|
|
NullCheck((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_58, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)));
|
|
int32_t L_59;
|
|
L_59 = PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_inline((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_58, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)), PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
G_B23_0 = ((((int32_t)L_59) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0129_1;
|
|
}
|
|
|
|
IL_0128_1:
|
|
{
|
|
G_B23_0 = 0;
|
|
}
|
|
|
|
IL_0129_1:
|
|
{
|
|
V_13 = (bool)G_B23_0;
|
|
bool L_60 = V_13;
|
|
if (!L_60)
|
|
{
|
|
goto IL_0138_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_61 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(L_61, (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL, (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184*)NULL, NULL);
|
|
}
|
|
|
|
IL_0138_1:
|
|
{
|
|
goto IL_0148;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0148:
|
|
{
|
|
goto IL_015f;
|
|
}
|
|
|
|
IL_014b:
|
|
{
|
|
bool L_62 = ___6_deselectIfNoTarget;
|
|
V_14 = L_62;
|
|
bool L_63 = V_14;
|
|
if (!L_63)
|
|
{
|
|
goto IL_015e;
|
|
}
|
|
}
|
|
{
|
|
DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C(__this, (RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)NULL, NULL);
|
|
}
|
|
|
|
IL_015e:
|
|
{
|
|
}
|
|
|
|
IL_015f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14237
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_tAF08A8B8A8BDFE5BD5BB3273D7077FC68E7DE439_m301B1D383A6FD8823AC5FB57967832F576259A0F_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_t8E1C99C1281A1FE16C6EC1708A9B501F03768680* ___4_evtFactory, ValueTuple_3_tAF08A8B8A8BDFE5BD5BB3273D7077FC68E7DE439 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_1 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_3 = NULL;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_4 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_5 = NULL;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_9 = NULL;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B19_0 = NULL;
|
|
int32_t G_B19_1 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B18_0 = NULL;
|
|
int32_t G_B18_1 = 0;
|
|
int32_t G_B23_0 = 0;
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0;
|
|
L_0 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
V_6 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_6;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_2;
|
|
L_2 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_2, NULL);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___0_mousePosition;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
L_4 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_3, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5 = ___1_delta;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_5, NULL);
|
|
int32_t L_7 = ___2_pointerId;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_8 = ___3_targetDisplay;
|
|
DefaultEventSystem_FindTargetAtPosition_m27DADBA203D33C4BBA848A244E48BF9B83E7AC61(__this, L_4, L_6, L_7, L_8, (&V_0), (&V_1), (&V_2), (&V_3), (&V_4), NULL);
|
|
int32_t L_9 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_10;
|
|
L_10 = PointerDeviceState_GetPanel_mF1ABAF676F34A5F603E66044D2F5BAB057AC140E(L_9, (int32_t)0, NULL);
|
|
V_5 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_10, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_11 = V_5;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_12 = V_1;
|
|
V_7 = (bool)((((int32_t)((((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_11) == ((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_12))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_13 = V_7;
|
|
if (!L_13)
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_14 = V_5;
|
|
if (L_14)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_15 = V_5;
|
|
int32_t L_16 = ___2_pointerId;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15);
|
|
BaseRuntimePanel_PointerLeavesPanel_mD7BC4DC877F6E4980EFEFD7CF5036E2F359AAF6E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15, L_16, NULL);
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_17 = V_1;
|
|
if (L_17)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_18 = V_1;
|
|
int32_t L_19 = ___2_pointerId;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_20 = V_2;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_18);
|
|
BaseRuntimePanel_PointerEntersPanel_m2826AA8588CBC87F1C39FB2FFA4A4B44E255843E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_18, L_19, L_20, NULL);
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_21 = V_1;
|
|
V_8 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_014b;
|
|
}
|
|
}
|
|
{
|
|
Func_3_t8E1C99C1281A1FE16C6EC1708A9B501F03768680* L_23 = ___4_evtFactory;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24 = V_2;
|
|
ValueTuple_3_tAF08A8B8A8BDFE5BD5BB3273D7077FC68E7DE439 L_25 = ___5_arg;
|
|
NullCheck(L_23);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_26;
|
|
L_26 = Func_3_Invoke_mA39204D91565C23978A44F2FD2431240913A7C3B_inline(L_23, L_24, L_25, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_9 = L_26;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_013b:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_27 = V_9;
|
|
if (!L_27)
|
|
{
|
|
goto IL_0147;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_28 = V_9;
|
|
NullCheck((RuntimeObject*)L_28);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_28);
|
|
}
|
|
|
|
IL_0147:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_29 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29);
|
|
bool L_30;
|
|
L_30 = BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29, NULL);
|
|
V_10 = (bool)((((int32_t)L_30) == ((int32_t)0))? 1 : 0);
|
|
bool L_31 = V_10;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00b1_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_32 = V_1;
|
|
int32_t L_33 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34 = V_3;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_35 = V_9;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_32);
|
|
BaseVisualElementPanel_SetTopElementUnderPointer_m9936A82FE14DDB5471576A5CE410F0686CA8E586((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_32, L_33, L_34, L_35, NULL);
|
|
}
|
|
|
|
IL_00b1_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_36 = V_9;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_37 = V_0;
|
|
NullCheck(L_36);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(L_36, L_37, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_38 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39;
|
|
L_39 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_40 = V_9;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_39);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_39, L_40);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_41 = V_9;
|
|
NullCheck(L_41);
|
|
bool L_42;
|
|
L_42 = EventBase_get_processedByFocusController_mB2BCAFE58D45919AC9F5AC0AAEF059D8A640AE53(L_41, NULL);
|
|
V_11 = L_42;
|
|
bool L_43 = V_11;
|
|
if (!L_43)
|
|
{
|
|
goto IL_00df_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_44 = V_1;
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_44, NULL);
|
|
}
|
|
|
|
IL_00df_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_45 = V_9;
|
|
NullCheck(L_45);
|
|
int64_t L_46;
|
|
L_46 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_45);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
int64_t L_47;
|
|
L_47 = EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12(EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
V_12 = (bool)((((int64_t)L_46) == ((int64_t)L_47))? 1 : 0);
|
|
bool L_48 = V_12;
|
|
if (!L_48)
|
|
{
|
|
goto IL_0109_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_49 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_50 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_51 = L_50;
|
|
if (L_51)
|
|
{
|
|
G_B19_0 = L_51;
|
|
G_B19_1 = L_49;
|
|
goto IL_00ff_1;
|
|
}
|
|
G_B18_0 = L_51;
|
|
G_B18_1 = L_49;
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_52 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_52);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_53;
|
|
L_53 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_52);
|
|
G_B19_0 = L_53;
|
|
G_B19_1 = G_B18_1;
|
|
}
|
|
|
|
IL_00ff_1:
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_54 = V_4;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(G_B19_1, G_B19_0, L_54, NULL);
|
|
goto IL_0138_1;
|
|
}
|
|
|
|
IL_0109_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_55 = V_9;
|
|
NullCheck(L_55);
|
|
int64_t L_56;
|
|
L_56 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_55);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
int64_t L_57;
|
|
L_57 = EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D(EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
if ((!(((uint64_t)L_56) == ((uint64_t)L_57))))
|
|
{
|
|
goto IL_0128_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_58 = V_9;
|
|
NullCheck((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_58, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)));
|
|
int32_t L_59;
|
|
L_59 = PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_inline((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_58, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)), PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
G_B23_0 = ((((int32_t)L_59) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0129_1;
|
|
}
|
|
|
|
IL_0128_1:
|
|
{
|
|
G_B23_0 = 0;
|
|
}
|
|
|
|
IL_0129_1:
|
|
{
|
|
V_13 = (bool)G_B23_0;
|
|
bool L_60 = V_13;
|
|
if (!L_60)
|
|
{
|
|
goto IL_0138_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_61 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(L_61, (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL, (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184*)NULL, NULL);
|
|
}
|
|
|
|
IL_0138_1:
|
|
{
|
|
goto IL_0148;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0148:
|
|
{
|
|
goto IL_015f;
|
|
}
|
|
|
|
IL_014b:
|
|
{
|
|
bool L_62 = ___6_deselectIfNoTarget;
|
|
V_14 = L_62;
|
|
bool L_63 = V_14;
|
|
if (!L_63)
|
|
{
|
|
goto IL_015e;
|
|
}
|
|
}
|
|
{
|
|
DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C(__this, (RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)NULL, NULL);
|
|
}
|
|
|
|
IL_015e:
|
|
{
|
|
}
|
|
|
|
IL_015f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14237
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_tC8BBB30E9E4977D3D5D3D770C29BC7D26F8D7340_m1B17141BA48CA9A0522154FDDC7AD640B3563F76_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_t3431757396CB42FB4FA1735910FD76FB77E568CF* ___4_evtFactory, ValueTuple_3_tC8BBB30E9E4977D3D5D3D770C29BC7D26F8D7340 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_1 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_3 = NULL;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_4 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_5 = NULL;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_9 = NULL;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B19_0 = NULL;
|
|
int32_t G_B19_1 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B18_0 = NULL;
|
|
int32_t G_B18_1 = 0;
|
|
int32_t G_B23_0 = 0;
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0;
|
|
L_0 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
V_6 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_6;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_2;
|
|
L_2 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_2, NULL);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___0_mousePosition;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
L_4 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_3, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5 = ___1_delta;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_5, NULL);
|
|
int32_t L_7 = ___2_pointerId;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_8 = ___3_targetDisplay;
|
|
DefaultEventSystem_FindTargetAtPosition_m27DADBA203D33C4BBA848A244E48BF9B83E7AC61(__this, L_4, L_6, L_7, L_8, (&V_0), (&V_1), (&V_2), (&V_3), (&V_4), NULL);
|
|
int32_t L_9 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_10;
|
|
L_10 = PointerDeviceState_GetPanel_mF1ABAF676F34A5F603E66044D2F5BAB057AC140E(L_9, (int32_t)0, NULL);
|
|
V_5 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_10, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_11 = V_5;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_12 = V_1;
|
|
V_7 = (bool)((((int32_t)((((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_11) == ((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_12))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_13 = V_7;
|
|
if (!L_13)
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_14 = V_5;
|
|
if (L_14)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_15 = V_5;
|
|
int32_t L_16 = ___2_pointerId;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15);
|
|
BaseRuntimePanel_PointerLeavesPanel_mD7BC4DC877F6E4980EFEFD7CF5036E2F359AAF6E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15, L_16, NULL);
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_17 = V_1;
|
|
if (L_17)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_18 = V_1;
|
|
int32_t L_19 = ___2_pointerId;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_20 = V_2;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_18);
|
|
BaseRuntimePanel_PointerEntersPanel_m2826AA8588CBC87F1C39FB2FFA4A4B44E255843E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_18, L_19, L_20, NULL);
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_21 = V_1;
|
|
V_8 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_014b;
|
|
}
|
|
}
|
|
{
|
|
Func_3_t3431757396CB42FB4FA1735910FD76FB77E568CF* L_23 = ___4_evtFactory;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24 = V_2;
|
|
ValueTuple_3_tC8BBB30E9E4977D3D5D3D770C29BC7D26F8D7340 L_25 = ___5_arg;
|
|
NullCheck(L_23);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_26;
|
|
L_26 = Func_3_Invoke_m81E48DA2F7F6F5A77AA52B3011B1A0576B7EEA5E_inline(L_23, L_24, L_25, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_9 = L_26;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_013b:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_27 = V_9;
|
|
if (!L_27)
|
|
{
|
|
goto IL_0147;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_28 = V_9;
|
|
NullCheck((RuntimeObject*)L_28);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_28);
|
|
}
|
|
|
|
IL_0147:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_29 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29);
|
|
bool L_30;
|
|
L_30 = BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29, NULL);
|
|
V_10 = (bool)((((int32_t)L_30) == ((int32_t)0))? 1 : 0);
|
|
bool L_31 = V_10;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00b1_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_32 = V_1;
|
|
int32_t L_33 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34 = V_3;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_35 = V_9;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_32);
|
|
BaseVisualElementPanel_SetTopElementUnderPointer_m9936A82FE14DDB5471576A5CE410F0686CA8E586((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_32, L_33, L_34, L_35, NULL);
|
|
}
|
|
|
|
IL_00b1_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_36 = V_9;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_37 = V_0;
|
|
NullCheck(L_36);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(L_36, L_37, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_38 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39;
|
|
L_39 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_40 = V_9;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_39);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_39, L_40);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_41 = V_9;
|
|
NullCheck(L_41);
|
|
bool L_42;
|
|
L_42 = EventBase_get_processedByFocusController_mB2BCAFE58D45919AC9F5AC0AAEF059D8A640AE53(L_41, NULL);
|
|
V_11 = L_42;
|
|
bool L_43 = V_11;
|
|
if (!L_43)
|
|
{
|
|
goto IL_00df_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_44 = V_1;
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_44, NULL);
|
|
}
|
|
|
|
IL_00df_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_45 = V_9;
|
|
NullCheck(L_45);
|
|
int64_t L_46;
|
|
L_46 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_45);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
int64_t L_47;
|
|
L_47 = EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12(EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
V_12 = (bool)((((int64_t)L_46) == ((int64_t)L_47))? 1 : 0);
|
|
bool L_48 = V_12;
|
|
if (!L_48)
|
|
{
|
|
goto IL_0109_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_49 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_50 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_51 = L_50;
|
|
if (L_51)
|
|
{
|
|
G_B19_0 = L_51;
|
|
G_B19_1 = L_49;
|
|
goto IL_00ff_1;
|
|
}
|
|
G_B18_0 = L_51;
|
|
G_B18_1 = L_49;
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_52 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_52);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_53;
|
|
L_53 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_52);
|
|
G_B19_0 = L_53;
|
|
G_B19_1 = G_B18_1;
|
|
}
|
|
|
|
IL_00ff_1:
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_54 = V_4;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(G_B19_1, G_B19_0, L_54, NULL);
|
|
goto IL_0138_1;
|
|
}
|
|
|
|
IL_0109_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_55 = V_9;
|
|
NullCheck(L_55);
|
|
int64_t L_56;
|
|
L_56 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_55);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
int64_t L_57;
|
|
L_57 = EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D(EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
if ((!(((uint64_t)L_56) == ((uint64_t)L_57))))
|
|
{
|
|
goto IL_0128_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_58 = V_9;
|
|
NullCheck((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_58, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)));
|
|
int32_t L_59;
|
|
L_59 = PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_inline((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_58, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)), PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
G_B23_0 = ((((int32_t)L_59) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0129_1;
|
|
}
|
|
|
|
IL_0128_1:
|
|
{
|
|
G_B23_0 = 0;
|
|
}
|
|
|
|
IL_0129_1:
|
|
{
|
|
V_13 = (bool)G_B23_0;
|
|
bool L_60 = V_13;
|
|
if (!L_60)
|
|
{
|
|
goto IL_0138_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_61 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(L_61, (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL, (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184*)NULL, NULL);
|
|
}
|
|
|
|
IL_0138_1:
|
|
{
|
|
goto IL_0148;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0148:
|
|
{
|
|
goto IL_015f;
|
|
}
|
|
|
|
IL_014b:
|
|
{
|
|
bool L_62 = ___6_deselectIfNoTarget;
|
|
V_14 = L_62;
|
|
bool L_63 = V_14;
|
|
if (!L_63)
|
|
{
|
|
goto IL_015e;
|
|
}
|
|
}
|
|
{
|
|
DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C(__this, (RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)NULL, NULL);
|
|
}
|
|
|
|
IL_015e:
|
|
{
|
|
}
|
|
|
|
IL_015f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14237
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_tD815A2B59927FD0A0A8BC994BDDF93E1997053C4_m6A22A0165E7C0873C485E600CF30B0085C7E2FF5_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_t25A788C45878510857F0D5339F041D8B9FFB0DF7* ___4_evtFactory, ValueTuple_3_tD815A2B59927FD0A0A8BC994BDDF93E1997053C4 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_1 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_3 = NULL;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_4 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_5 = NULL;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_9 = NULL;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B19_0 = NULL;
|
|
int32_t G_B19_1 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B18_0 = NULL;
|
|
int32_t G_B18_1 = 0;
|
|
int32_t G_B23_0 = 0;
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0;
|
|
L_0 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
V_6 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_6;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_2;
|
|
L_2 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_2, NULL);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___0_mousePosition;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
L_4 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_3, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5 = ___1_delta;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_5, NULL);
|
|
int32_t L_7 = ___2_pointerId;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_8 = ___3_targetDisplay;
|
|
DefaultEventSystem_FindTargetAtPosition_m27DADBA203D33C4BBA848A244E48BF9B83E7AC61(__this, L_4, L_6, L_7, L_8, (&V_0), (&V_1), (&V_2), (&V_3), (&V_4), NULL);
|
|
int32_t L_9 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_10;
|
|
L_10 = PointerDeviceState_GetPanel_mF1ABAF676F34A5F603E66044D2F5BAB057AC140E(L_9, (int32_t)0, NULL);
|
|
V_5 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_10, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_11 = V_5;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_12 = V_1;
|
|
V_7 = (bool)((((int32_t)((((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_11) == ((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_12))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_13 = V_7;
|
|
if (!L_13)
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_14 = V_5;
|
|
if (L_14)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_15 = V_5;
|
|
int32_t L_16 = ___2_pointerId;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15);
|
|
BaseRuntimePanel_PointerLeavesPanel_mD7BC4DC877F6E4980EFEFD7CF5036E2F359AAF6E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15, L_16, NULL);
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_17 = V_1;
|
|
if (L_17)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_18 = V_1;
|
|
int32_t L_19 = ___2_pointerId;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_20 = V_2;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_18);
|
|
BaseRuntimePanel_PointerEntersPanel_m2826AA8588CBC87F1C39FB2FFA4A4B44E255843E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_18, L_19, L_20, NULL);
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_21 = V_1;
|
|
V_8 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_014b;
|
|
}
|
|
}
|
|
{
|
|
Func_3_t25A788C45878510857F0D5339F041D8B9FFB0DF7* L_23 = ___4_evtFactory;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24 = V_2;
|
|
ValueTuple_3_tD815A2B59927FD0A0A8BC994BDDF93E1997053C4 L_25 = ___5_arg;
|
|
NullCheck(L_23);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_26;
|
|
L_26 = Func_3_Invoke_mE29CADF60E4C35BDC747CBE00E06CCF217267A50_inline(L_23, L_24, L_25, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_9 = L_26;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_013b:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_27 = V_9;
|
|
if (!L_27)
|
|
{
|
|
goto IL_0147;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_28 = V_9;
|
|
NullCheck((RuntimeObject*)L_28);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_28);
|
|
}
|
|
|
|
IL_0147:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_29 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29);
|
|
bool L_30;
|
|
L_30 = BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29, NULL);
|
|
V_10 = (bool)((((int32_t)L_30) == ((int32_t)0))? 1 : 0);
|
|
bool L_31 = V_10;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00b1_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_32 = V_1;
|
|
int32_t L_33 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34 = V_3;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_35 = V_9;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_32);
|
|
BaseVisualElementPanel_SetTopElementUnderPointer_m9936A82FE14DDB5471576A5CE410F0686CA8E586((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_32, L_33, L_34, L_35, NULL);
|
|
}
|
|
|
|
IL_00b1_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_36 = V_9;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_37 = V_0;
|
|
NullCheck(L_36);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(L_36, L_37, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_38 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39;
|
|
L_39 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_40 = V_9;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_39);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_39, L_40);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_41 = V_9;
|
|
NullCheck(L_41);
|
|
bool L_42;
|
|
L_42 = EventBase_get_processedByFocusController_mB2BCAFE58D45919AC9F5AC0AAEF059D8A640AE53(L_41, NULL);
|
|
V_11 = L_42;
|
|
bool L_43 = V_11;
|
|
if (!L_43)
|
|
{
|
|
goto IL_00df_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_44 = V_1;
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_44, NULL);
|
|
}
|
|
|
|
IL_00df_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_45 = V_9;
|
|
NullCheck(L_45);
|
|
int64_t L_46;
|
|
L_46 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_45);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
int64_t L_47;
|
|
L_47 = EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12(EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
V_12 = (bool)((((int64_t)L_46) == ((int64_t)L_47))? 1 : 0);
|
|
bool L_48 = V_12;
|
|
if (!L_48)
|
|
{
|
|
goto IL_0109_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_49 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_50 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_51 = L_50;
|
|
if (L_51)
|
|
{
|
|
G_B19_0 = L_51;
|
|
G_B19_1 = L_49;
|
|
goto IL_00ff_1;
|
|
}
|
|
G_B18_0 = L_51;
|
|
G_B18_1 = L_49;
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_52 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_52);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_53;
|
|
L_53 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_52);
|
|
G_B19_0 = L_53;
|
|
G_B19_1 = G_B18_1;
|
|
}
|
|
|
|
IL_00ff_1:
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_54 = V_4;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(G_B19_1, G_B19_0, L_54, NULL);
|
|
goto IL_0138_1;
|
|
}
|
|
|
|
IL_0109_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_55 = V_9;
|
|
NullCheck(L_55);
|
|
int64_t L_56;
|
|
L_56 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_55);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
int64_t L_57;
|
|
L_57 = EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D(EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
if ((!(((uint64_t)L_56) == ((uint64_t)L_57))))
|
|
{
|
|
goto IL_0128_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_58 = V_9;
|
|
NullCheck((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_58, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)));
|
|
int32_t L_59;
|
|
L_59 = PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_inline((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_58, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)), PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
G_B23_0 = ((((int32_t)L_59) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0129_1;
|
|
}
|
|
|
|
IL_0128_1:
|
|
{
|
|
G_B23_0 = 0;
|
|
}
|
|
|
|
IL_0129_1:
|
|
{
|
|
V_13 = (bool)G_B23_0;
|
|
bool L_60 = V_13;
|
|
if (!L_60)
|
|
{
|
|
goto IL_0138_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_61 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(L_61, (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL, (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184*)NULL, NULL);
|
|
}
|
|
|
|
IL_0138_1:
|
|
{
|
|
goto IL_0148;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0148:
|
|
{
|
|
goto IL_015f;
|
|
}
|
|
|
|
IL_014b:
|
|
{
|
|
bool L_62 = ___6_deselectIfNoTarget;
|
|
V_14 = L_62;
|
|
bool L_63 = V_14;
|
|
if (!L_63)
|
|
{
|
|
goto IL_015e;
|
|
}
|
|
}
|
|
{
|
|
DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C(__this, (RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)NULL, NULL);
|
|
}
|
|
|
|
IL_015e:
|
|
{
|
|
}
|
|
|
|
IL_015f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14237
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_t2C125774ADD00599458B6333E72F7533D3866597_mCD8CA3DFF30F0654C475AC703F76A4316D30499B_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_tBD64F3C7DBE49CCECEC1DA85C48BC4C4E61F1CD0* ___4_evtFactory, ValueTuple_3_t2C125774ADD00599458B6333E72F7533D3866597 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_1 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_3 = NULL;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_4 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_5 = NULL;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_9 = NULL;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B19_0 = NULL;
|
|
int32_t G_B19_1 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B18_0 = NULL;
|
|
int32_t G_B18_1 = 0;
|
|
int32_t G_B23_0 = 0;
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0;
|
|
L_0 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
V_6 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_6;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_2;
|
|
L_2 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_2, NULL);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___0_mousePosition;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
L_4 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_3, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5 = ___1_delta;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_5, NULL);
|
|
int32_t L_7 = ___2_pointerId;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_8 = ___3_targetDisplay;
|
|
DefaultEventSystem_FindTargetAtPosition_m27DADBA203D33C4BBA848A244E48BF9B83E7AC61(__this, L_4, L_6, L_7, L_8, (&V_0), (&V_1), (&V_2), (&V_3), (&V_4), NULL);
|
|
int32_t L_9 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_10;
|
|
L_10 = PointerDeviceState_GetPanel_mF1ABAF676F34A5F603E66044D2F5BAB057AC140E(L_9, (int32_t)0, NULL);
|
|
V_5 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_10, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_11 = V_5;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_12 = V_1;
|
|
V_7 = (bool)((((int32_t)((((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_11) == ((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_12))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_13 = V_7;
|
|
if (!L_13)
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_14 = V_5;
|
|
if (L_14)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_15 = V_5;
|
|
int32_t L_16 = ___2_pointerId;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15);
|
|
BaseRuntimePanel_PointerLeavesPanel_mD7BC4DC877F6E4980EFEFD7CF5036E2F359AAF6E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15, L_16, NULL);
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_17 = V_1;
|
|
if (L_17)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_18 = V_1;
|
|
int32_t L_19 = ___2_pointerId;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_20 = V_2;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_18);
|
|
BaseRuntimePanel_PointerEntersPanel_m2826AA8588CBC87F1C39FB2FFA4A4B44E255843E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_18, L_19, L_20, NULL);
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_21 = V_1;
|
|
V_8 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_014b;
|
|
}
|
|
}
|
|
{
|
|
Func_3_tBD64F3C7DBE49CCECEC1DA85C48BC4C4E61F1CD0* L_23 = ___4_evtFactory;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24 = V_2;
|
|
ValueTuple_3_t2C125774ADD00599458B6333E72F7533D3866597 L_25 = ___5_arg;
|
|
NullCheck(L_23);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_26;
|
|
L_26 = Func_3_Invoke_mF1B46D5EF958C1DC6F2666E3464DA40D2ED0D1DD_inline(L_23, L_24, L_25, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_9 = L_26;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_013b:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_27 = V_9;
|
|
if (!L_27)
|
|
{
|
|
goto IL_0147;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_28 = V_9;
|
|
NullCheck((RuntimeObject*)L_28);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_28);
|
|
}
|
|
|
|
IL_0147:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_29 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29);
|
|
bool L_30;
|
|
L_30 = BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29, NULL);
|
|
V_10 = (bool)((((int32_t)L_30) == ((int32_t)0))? 1 : 0);
|
|
bool L_31 = V_10;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00b1_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_32 = V_1;
|
|
int32_t L_33 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34 = V_3;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_35 = V_9;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_32);
|
|
BaseVisualElementPanel_SetTopElementUnderPointer_m9936A82FE14DDB5471576A5CE410F0686CA8E586((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_32, L_33, L_34, L_35, NULL);
|
|
}
|
|
|
|
IL_00b1_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_36 = V_9;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_37 = V_0;
|
|
NullCheck(L_36);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(L_36, L_37, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_38 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39;
|
|
L_39 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_40 = V_9;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_39);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_39, L_40);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_41 = V_9;
|
|
NullCheck(L_41);
|
|
bool L_42;
|
|
L_42 = EventBase_get_processedByFocusController_mB2BCAFE58D45919AC9F5AC0AAEF059D8A640AE53(L_41, NULL);
|
|
V_11 = L_42;
|
|
bool L_43 = V_11;
|
|
if (!L_43)
|
|
{
|
|
goto IL_00df_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_44 = V_1;
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_44, NULL);
|
|
}
|
|
|
|
IL_00df_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_45 = V_9;
|
|
NullCheck(L_45);
|
|
int64_t L_46;
|
|
L_46 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_45);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
int64_t L_47;
|
|
L_47 = EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12(EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
V_12 = (bool)((((int64_t)L_46) == ((int64_t)L_47))? 1 : 0);
|
|
bool L_48 = V_12;
|
|
if (!L_48)
|
|
{
|
|
goto IL_0109_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_49 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_50 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_51 = L_50;
|
|
if (L_51)
|
|
{
|
|
G_B19_0 = L_51;
|
|
G_B19_1 = L_49;
|
|
goto IL_00ff_1;
|
|
}
|
|
G_B18_0 = L_51;
|
|
G_B18_1 = L_49;
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_52 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_52);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_53;
|
|
L_53 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_52);
|
|
G_B19_0 = L_53;
|
|
G_B19_1 = G_B18_1;
|
|
}
|
|
|
|
IL_00ff_1:
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_54 = V_4;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(G_B19_1, G_B19_0, L_54, NULL);
|
|
goto IL_0138_1;
|
|
}
|
|
|
|
IL_0109_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_55 = V_9;
|
|
NullCheck(L_55);
|
|
int64_t L_56;
|
|
L_56 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_55);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
int64_t L_57;
|
|
L_57 = EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D(EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
if ((!(((uint64_t)L_56) == ((uint64_t)L_57))))
|
|
{
|
|
goto IL_0128_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_58 = V_9;
|
|
NullCheck((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_58, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)));
|
|
int32_t L_59;
|
|
L_59 = PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_inline((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_58, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)), PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
G_B23_0 = ((((int32_t)L_59) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0129_1;
|
|
}
|
|
|
|
IL_0128_1:
|
|
{
|
|
G_B23_0 = 0;
|
|
}
|
|
|
|
IL_0129_1:
|
|
{
|
|
V_13 = (bool)G_B23_0;
|
|
bool L_60 = V_13;
|
|
if (!L_60)
|
|
{
|
|
goto IL_0138_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_61 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(L_61, (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL, (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184*)NULL, NULL);
|
|
}
|
|
|
|
IL_0138_1:
|
|
{
|
|
goto IL_0148;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0148:
|
|
{
|
|
goto IL_015f;
|
|
}
|
|
|
|
IL_014b:
|
|
{
|
|
bool L_62 = ___6_deselectIfNoTarget;
|
|
V_14 = L_62;
|
|
bool L_63 = V_14;
|
|
if (!L_63)
|
|
{
|
|
goto IL_015e;
|
|
}
|
|
}
|
|
{
|
|
DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C(__this, (RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)NULL, NULL);
|
|
}
|
|
|
|
IL_015e:
|
|
{
|
|
}
|
|
|
|
IL_015f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14237
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_t7710F86A623C8F578E76B4EAC47B05AA6EFE7B64_mE89F3C96A50F4667353517C774E51BF3FC241719_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_tA97A8AA5DD5E584A5ADBF2402322C22AE9F68D32* ___4_evtFactory, ValueTuple_3_t7710F86A623C8F578E76B4EAC47B05AA6EFE7B64 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_1 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_3 = NULL;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_4 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_5 = NULL;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_9 = NULL;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B19_0 = NULL;
|
|
int32_t G_B19_1 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B18_0 = NULL;
|
|
int32_t G_B18_1 = 0;
|
|
int32_t G_B23_0 = 0;
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0;
|
|
L_0 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
V_6 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_6;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_2;
|
|
L_2 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_2, NULL);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___0_mousePosition;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
L_4 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_3, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5 = ___1_delta;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_5, NULL);
|
|
int32_t L_7 = ___2_pointerId;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_8 = ___3_targetDisplay;
|
|
DefaultEventSystem_FindTargetAtPosition_m27DADBA203D33C4BBA848A244E48BF9B83E7AC61(__this, L_4, L_6, L_7, L_8, (&V_0), (&V_1), (&V_2), (&V_3), (&V_4), NULL);
|
|
int32_t L_9 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_10;
|
|
L_10 = PointerDeviceState_GetPanel_mF1ABAF676F34A5F603E66044D2F5BAB057AC140E(L_9, (int32_t)0, NULL);
|
|
V_5 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_10, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_11 = V_5;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_12 = V_1;
|
|
V_7 = (bool)((((int32_t)((((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_11) == ((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_12))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_13 = V_7;
|
|
if (!L_13)
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_14 = V_5;
|
|
if (L_14)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_15 = V_5;
|
|
int32_t L_16 = ___2_pointerId;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15);
|
|
BaseRuntimePanel_PointerLeavesPanel_mD7BC4DC877F6E4980EFEFD7CF5036E2F359AAF6E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15, L_16, NULL);
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_17 = V_1;
|
|
if (L_17)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_18 = V_1;
|
|
int32_t L_19 = ___2_pointerId;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_20 = V_2;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_18);
|
|
BaseRuntimePanel_PointerEntersPanel_m2826AA8588CBC87F1C39FB2FFA4A4B44E255843E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_18, L_19, L_20, NULL);
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_21 = V_1;
|
|
V_8 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_014b;
|
|
}
|
|
}
|
|
{
|
|
Func_3_tA97A8AA5DD5E584A5ADBF2402322C22AE9F68D32* L_23 = ___4_evtFactory;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24 = V_2;
|
|
ValueTuple_3_t7710F86A623C8F578E76B4EAC47B05AA6EFE7B64 L_25 = ___5_arg;
|
|
NullCheck(L_23);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_26;
|
|
L_26 = Func_3_Invoke_m54505B402FEB7A5917AEE0BCF1F4BD2B5BFC418B_inline(L_23, L_24, L_25, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_9 = L_26;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_013b:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_27 = V_9;
|
|
if (!L_27)
|
|
{
|
|
goto IL_0147;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_28 = V_9;
|
|
NullCheck((RuntimeObject*)L_28);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_28);
|
|
}
|
|
|
|
IL_0147:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_29 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29);
|
|
bool L_30;
|
|
L_30 = BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29, NULL);
|
|
V_10 = (bool)((((int32_t)L_30) == ((int32_t)0))? 1 : 0);
|
|
bool L_31 = V_10;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00b1_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_32 = V_1;
|
|
int32_t L_33 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34 = V_3;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_35 = V_9;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_32);
|
|
BaseVisualElementPanel_SetTopElementUnderPointer_m9936A82FE14DDB5471576A5CE410F0686CA8E586((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_32, L_33, L_34, L_35, NULL);
|
|
}
|
|
|
|
IL_00b1_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_36 = V_9;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_37 = V_0;
|
|
NullCheck(L_36);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(L_36, L_37, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_38 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39;
|
|
L_39 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_40 = V_9;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_39);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_39, L_40);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_41 = V_9;
|
|
NullCheck(L_41);
|
|
bool L_42;
|
|
L_42 = EventBase_get_processedByFocusController_mB2BCAFE58D45919AC9F5AC0AAEF059D8A640AE53(L_41, NULL);
|
|
V_11 = L_42;
|
|
bool L_43 = V_11;
|
|
if (!L_43)
|
|
{
|
|
goto IL_00df_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_44 = V_1;
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_44, NULL);
|
|
}
|
|
|
|
IL_00df_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_45 = V_9;
|
|
NullCheck(L_45);
|
|
int64_t L_46;
|
|
L_46 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_45);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
int64_t L_47;
|
|
L_47 = EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12(EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
V_12 = (bool)((((int64_t)L_46) == ((int64_t)L_47))? 1 : 0);
|
|
bool L_48 = V_12;
|
|
if (!L_48)
|
|
{
|
|
goto IL_0109_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_49 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_50 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_51 = L_50;
|
|
if (L_51)
|
|
{
|
|
G_B19_0 = L_51;
|
|
G_B19_1 = L_49;
|
|
goto IL_00ff_1;
|
|
}
|
|
G_B18_0 = L_51;
|
|
G_B18_1 = L_49;
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_52 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_52);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_53;
|
|
L_53 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_52);
|
|
G_B19_0 = L_53;
|
|
G_B19_1 = G_B18_1;
|
|
}
|
|
|
|
IL_00ff_1:
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_54 = V_4;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(G_B19_1, G_B19_0, L_54, NULL);
|
|
goto IL_0138_1;
|
|
}
|
|
|
|
IL_0109_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_55 = V_9;
|
|
NullCheck(L_55);
|
|
int64_t L_56;
|
|
L_56 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_55);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
int64_t L_57;
|
|
L_57 = EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D(EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
if ((!(((uint64_t)L_56) == ((uint64_t)L_57))))
|
|
{
|
|
goto IL_0128_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_58 = V_9;
|
|
NullCheck((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_58, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)));
|
|
int32_t L_59;
|
|
L_59 = PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_inline((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_58, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)), PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
G_B23_0 = ((((int32_t)L_59) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0129_1;
|
|
}
|
|
|
|
IL_0128_1:
|
|
{
|
|
G_B23_0 = 0;
|
|
}
|
|
|
|
IL_0129_1:
|
|
{
|
|
V_13 = (bool)G_B23_0;
|
|
bool L_60 = V_13;
|
|
if (!L_60)
|
|
{
|
|
goto IL_0138_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_61 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(L_61, (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL, (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184*)NULL, NULL);
|
|
}
|
|
|
|
IL_0138_1:
|
|
{
|
|
goto IL_0148;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0148:
|
|
{
|
|
goto IL_015f;
|
|
}
|
|
|
|
IL_014b:
|
|
{
|
|
bool L_62 = ___6_deselectIfNoTarget;
|
|
V_14 = L_62;
|
|
bool L_63 = V_14;
|
|
if (!L_63)
|
|
{
|
|
goto IL_015e;
|
|
}
|
|
}
|
|
{
|
|
DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C(__this, (RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)NULL, NULL);
|
|
}
|
|
|
|
IL_015e:
|
|
{
|
|
}
|
|
|
|
IL_015f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14236
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_t083FB9C32ED0C25542A5131205E7A8A0B87F1D15_mA8B177B5829A82067CA3B61A59EFF5DE25F4D52B_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_4_tC6554A9B6158B8E653539FD20E101E86ECAD14E5* ___4_evtFactory, ValueTuple_3_t083FB9C32ED0C25542A5131205E7A8A0B87F1D15 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
Func_3_t257468D81256F67CCB3C6EC189AA86146F0E83BF* G_B2_0 = NULL;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B2_1;
|
|
memset((&G_B2_1), 0, sizeof(G_B2_1));
|
|
int32_t G_B2_2 = 0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B2_3;
|
|
memset((&G_B2_3), 0, sizeof(G_B2_3));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B2_4;
|
|
memset((&G_B2_4), 0, sizeof(G_B2_4));
|
|
DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* G_B2_5 = NULL;
|
|
Func_3_t257468D81256F67CCB3C6EC189AA86146F0E83BF* G_B1_0 = NULL;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B1_1;
|
|
memset((&G_B1_1), 0, sizeof(G_B1_1));
|
|
int32_t G_B1_2 = 0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B1_3;
|
|
memset((&G_B1_3), 0, sizeof(G_B1_3));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B1_4;
|
|
memset((&G_B1_4), 0, sizeof(G_B1_4));
|
|
DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* G_B1_5 = NULL;
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_mousePosition;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___1_delta;
|
|
int32_t L_2 = ___2_pointerId;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_3 = ___3_targetDisplay;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
Func_3_t257468D81256F67CCB3C6EC189AA86146F0E83BF* L_4 = ((U3CU3Ec__35_1_t55989DD67EA28397E9C95C168B2F48E23CE26726_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0;
|
|
Func_3_t257468D81256F67CCB3C6EC189AA86146F0E83BF* L_5 = L_4;
|
|
if (L_5)
|
|
{
|
|
G_B2_0 = L_5;
|
|
G_B2_1 = L_3;
|
|
G_B2_2 = L_2;
|
|
G_B2_3 = L_1;
|
|
G_B2_4 = L_0;
|
|
G_B2_5 = __this;
|
|
goto IL_0026;
|
|
}
|
|
G_B1_0 = L_5;
|
|
G_B1_1 = L_3;
|
|
G_B1_2 = L_2;
|
|
G_B1_3 = L_1;
|
|
G_B1_4 = L_0;
|
|
G_B1_5 = __this;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
U3CU3Ec__35_1_t55989DD67EA28397E9C95C168B2F48E23CE26726* L_6 = ((U3CU3Ec__35_1_t55989DD67EA28397E9C95C168B2F48E23CE26726_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9;
|
|
Func_3_t257468D81256F67CCB3C6EC189AA86146F0E83BF* L_7 = (Func_3_t257468D81256F67CCB3C6EC189AA86146F0E83BF*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
Func_3__ctor_m31E14C20C3D69DF4C26C8892A1AB7947EC25F5D1(L_7, (RuntimeObject*)L_6, (intptr_t)((void*)il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
Func_3_t257468D81256F67CCB3C6EC189AA86146F0E83BF* L_8 = L_7;
|
|
((U3CU3Ec__35_1_t55989DD67EA28397E9C95C168B2F48E23CE26726_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec__35_1_t55989DD67EA28397E9C95C168B2F48E23CE26726_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0), (void*)L_8);
|
|
G_B2_0 = L_8;
|
|
G_B2_1 = G_B1_1;
|
|
G_B2_2 = G_B1_2;
|
|
G_B2_3 = G_B1_3;
|
|
G_B2_4 = G_B1_4;
|
|
G_B2_5 = G_B1_5;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
Func_4_tC6554A9B6158B8E653539FD20E101E86ECAD14E5* L_9 = ___4_evtFactory;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___1_delta;
|
|
ValueTuple_3_t083FB9C32ED0C25542A5131205E7A8A0B87F1D15 L_11 = ___5_arg;
|
|
ValueTuple_3_t10B3CDFA9EEBDCDFB1C25F6B3F6B5E468C8F9F50 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
ValueTuple_3__ctor_m19B992A595F13298A2C3A6910F14D408D4416F27((&L_12), L_9, L_10, L_11, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
bool L_13 = ___6_deselectIfNoTarget;
|
|
NullCheck(G_B2_5);
|
|
DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_t10B3CDFA9EEBDCDFB1C25F6B3F6B5E468C8F9F50_mCC57E15DB566EE35FB13504C307638BF947EA220(G_B2_5, G_B2_4, G_B2_3, G_B2_2, G_B2_1, G_B2_0, L_12, L_13, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14236
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_4_tEC98A0C80E3AD3740A1A365E6A6F25E9CC2FAAE7_mB622897E880DA8D9A42160064F6B2830424EC1F5_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_4_t647B1DCE59688F2956CCB8CCE5AD15BE3188D601* ___4_evtFactory, ValueTuple_4_tEC98A0C80E3AD3740A1A365E6A6F25E9CC2FAAE7 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
Func_3_tBD0EC492040F50111EAF0A77127409C4E6670C2E* G_B2_0 = NULL;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B2_1;
|
|
memset((&G_B2_1), 0, sizeof(G_B2_1));
|
|
int32_t G_B2_2 = 0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B2_3;
|
|
memset((&G_B2_3), 0, sizeof(G_B2_3));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B2_4;
|
|
memset((&G_B2_4), 0, sizeof(G_B2_4));
|
|
DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* G_B2_5 = NULL;
|
|
Func_3_tBD0EC492040F50111EAF0A77127409C4E6670C2E* G_B1_0 = NULL;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B1_1;
|
|
memset((&G_B1_1), 0, sizeof(G_B1_1));
|
|
int32_t G_B1_2 = 0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B1_3;
|
|
memset((&G_B1_3), 0, sizeof(G_B1_3));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B1_4;
|
|
memset((&G_B1_4), 0, sizeof(G_B1_4));
|
|
DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* G_B1_5 = NULL;
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_mousePosition;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___1_delta;
|
|
int32_t L_2 = ___2_pointerId;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_3 = ___3_targetDisplay;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
Func_3_tBD0EC492040F50111EAF0A77127409C4E6670C2E* L_4 = ((U3CU3Ec__35_1_t5C2A52595116ADB34929E11F0CFFD2777ABAF51C_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0;
|
|
Func_3_tBD0EC492040F50111EAF0A77127409C4E6670C2E* L_5 = L_4;
|
|
if (L_5)
|
|
{
|
|
G_B2_0 = L_5;
|
|
G_B2_1 = L_3;
|
|
G_B2_2 = L_2;
|
|
G_B2_3 = L_1;
|
|
G_B2_4 = L_0;
|
|
G_B2_5 = __this;
|
|
goto IL_0026;
|
|
}
|
|
G_B1_0 = L_5;
|
|
G_B1_1 = L_3;
|
|
G_B1_2 = L_2;
|
|
G_B1_3 = L_1;
|
|
G_B1_4 = L_0;
|
|
G_B1_5 = __this;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
U3CU3Ec__35_1_t5C2A52595116ADB34929E11F0CFFD2777ABAF51C* L_6 = ((U3CU3Ec__35_1_t5C2A52595116ADB34929E11F0CFFD2777ABAF51C_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9;
|
|
Func_3_tBD0EC492040F50111EAF0A77127409C4E6670C2E* L_7 = (Func_3_tBD0EC492040F50111EAF0A77127409C4E6670C2E*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
Func_3__ctor_m1EFA3BA4626166D4CE2B26B7D970A4D7E916C4F2(L_7, (RuntimeObject*)L_6, (intptr_t)((void*)il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
Func_3_tBD0EC492040F50111EAF0A77127409C4E6670C2E* L_8 = L_7;
|
|
((U3CU3Ec__35_1_t5C2A52595116ADB34929E11F0CFFD2777ABAF51C_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec__35_1_t5C2A52595116ADB34929E11F0CFFD2777ABAF51C_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0), (void*)L_8);
|
|
G_B2_0 = L_8;
|
|
G_B2_1 = G_B1_1;
|
|
G_B2_2 = G_B1_2;
|
|
G_B2_3 = G_B1_3;
|
|
G_B2_4 = G_B1_4;
|
|
G_B2_5 = G_B1_5;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
Func_4_t647B1DCE59688F2956CCB8CCE5AD15BE3188D601* L_9 = ___4_evtFactory;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___1_delta;
|
|
ValueTuple_4_tEC98A0C80E3AD3740A1A365E6A6F25E9CC2FAAE7 L_11 = ___5_arg;
|
|
ValueTuple_3_t617DC2E57CFF0ED9D93D25C3DE1080924BAB5FD5 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
ValueTuple_3__ctor_m63FD2DB0BF53E337421F4F66D3021B224631EF3E((&L_12), L_9, L_10, L_11, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
bool L_13 = ___6_deselectIfNoTarget;
|
|
NullCheck(G_B2_5);
|
|
DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_t617DC2E57CFF0ED9D93D25C3DE1080924BAB5FD5_m7380A3517AA5BB6840054CF28EF3EAEEDE5056C5(G_B2_5, G_B2_4, G_B2_3, G_B2_2, G_B2_1, G_B2_0, L_12, L_13, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14236
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisRuntimeObject_m509AD0E767B148E4A0FF2AE55A720C26E0861DF5_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_4_t3BDE3CA92565203F02E9E075D380C15E3C5964EE* ___4_evtFactory, RuntimeObject* ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
Func_3_tF4070BC973E64BF78AE4C9340BFC70326C962EB5* G_B2_0 = NULL;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B2_1;
|
|
memset((&G_B2_1), 0, sizeof(G_B2_1));
|
|
int32_t G_B2_2 = 0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B2_3;
|
|
memset((&G_B2_3), 0, sizeof(G_B2_3));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B2_4;
|
|
memset((&G_B2_4), 0, sizeof(G_B2_4));
|
|
DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* G_B2_5 = NULL;
|
|
Func_3_tF4070BC973E64BF78AE4C9340BFC70326C962EB5* G_B1_0 = NULL;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B1_1;
|
|
memset((&G_B1_1), 0, sizeof(G_B1_1));
|
|
int32_t G_B1_2 = 0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B1_3;
|
|
memset((&G_B1_3), 0, sizeof(G_B1_3));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B1_4;
|
|
memset((&G_B1_4), 0, sizeof(G_B1_4));
|
|
DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* G_B1_5 = NULL;
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_mousePosition;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___1_delta;
|
|
int32_t L_2 = ___2_pointerId;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_3 = ___3_targetDisplay;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
Func_3_tF4070BC973E64BF78AE4C9340BFC70326C962EB5* L_4 = ((U3CU3Ec__35_1_t3352CCC2A56A598B60BC6051E92F43565B29B9AD_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0;
|
|
Func_3_tF4070BC973E64BF78AE4C9340BFC70326C962EB5* L_5 = L_4;
|
|
if (L_5)
|
|
{
|
|
G_B2_0 = L_5;
|
|
G_B2_1 = L_3;
|
|
G_B2_2 = L_2;
|
|
G_B2_3 = L_1;
|
|
G_B2_4 = L_0;
|
|
G_B2_5 = __this;
|
|
goto IL_0026;
|
|
}
|
|
G_B1_0 = L_5;
|
|
G_B1_1 = L_3;
|
|
G_B1_2 = L_2;
|
|
G_B1_3 = L_1;
|
|
G_B1_4 = L_0;
|
|
G_B1_5 = __this;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
U3CU3Ec__35_1_t3352CCC2A56A598B60BC6051E92F43565B29B9AD* L_6 = ((U3CU3Ec__35_1_t3352CCC2A56A598B60BC6051E92F43565B29B9AD_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9;
|
|
Func_3_tF4070BC973E64BF78AE4C9340BFC70326C962EB5* L_7 = (Func_3_tF4070BC973E64BF78AE4C9340BFC70326C962EB5*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
Func_3__ctor_m2A3DF8A7284736A2E8ACA23DA892E4C1369ED750(L_7, (RuntimeObject*)L_6, (intptr_t)((void*)il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
Func_3_tF4070BC973E64BF78AE4C9340BFC70326C962EB5* L_8 = L_7;
|
|
((U3CU3Ec__35_1_t3352CCC2A56A598B60BC6051E92F43565B29B9AD_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec__35_1_t3352CCC2A56A598B60BC6051E92F43565B29B9AD_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0), (void*)L_8);
|
|
G_B2_0 = L_8;
|
|
G_B2_1 = G_B1_1;
|
|
G_B2_2 = G_B1_2;
|
|
G_B2_3 = G_B1_3;
|
|
G_B2_4 = G_B1_4;
|
|
G_B2_5 = G_B1_5;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
Func_4_t3BDE3CA92565203F02E9E075D380C15E3C5964EE* L_9 = ___4_evtFactory;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___1_delta;
|
|
RuntimeObject* L_11 = ___5_arg;
|
|
ValueTuple_3_tAA71DEC7929DC7293495D596B729346091A4CC33 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
ValueTuple_3__ctor_mF2F375F60B7E2C65668DA866C561BC0D92D01517((&L_12), L_9, L_10, L_11, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
bool L_13 = ___6_deselectIfNoTarget;
|
|
NullCheck(G_B2_5);
|
|
DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_tAA71DEC7929DC7293495D596B729346091A4CC33_mE32AFBEF0D0A1F390607D3F19B0DAC54FAFC1154(G_B2_5, G_B2_4, G_B2_3, G_B2_2, G_B2_1, G_B2_0, L_12, L_13, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14236
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisPenData_t2345B5FBD18D851528C5C18F8A667D4EF4690945_mAB7BF4A4CE84EB44027C34F967F5DC447DAECB97_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_4_t46812CB64A120A31977C87BC4A822A947B5C44A5* ___4_evtFactory, PenData_t2345B5FBD18D851528C5C18F8A667D4EF4690945 ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
Func_3_t4C315B89143B58391639906E83ABDD25F0D7E596* G_B2_0 = NULL;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B2_1;
|
|
memset((&G_B2_1), 0, sizeof(G_B2_1));
|
|
int32_t G_B2_2 = 0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B2_3;
|
|
memset((&G_B2_3), 0, sizeof(G_B2_3));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B2_4;
|
|
memset((&G_B2_4), 0, sizeof(G_B2_4));
|
|
DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* G_B2_5 = NULL;
|
|
Func_3_t4C315B89143B58391639906E83ABDD25F0D7E596* G_B1_0 = NULL;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B1_1;
|
|
memset((&G_B1_1), 0, sizeof(G_B1_1));
|
|
int32_t G_B1_2 = 0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B1_3;
|
|
memset((&G_B1_3), 0, sizeof(G_B1_3));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B1_4;
|
|
memset((&G_B1_4), 0, sizeof(G_B1_4));
|
|
DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* G_B1_5 = NULL;
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_mousePosition;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___1_delta;
|
|
int32_t L_2 = ___2_pointerId;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_3 = ___3_targetDisplay;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
Func_3_t4C315B89143B58391639906E83ABDD25F0D7E596* L_4 = ((U3CU3Ec__35_1_tA83A7CA3451D7FE8177747C4AE39456AD8DD9E1F_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0;
|
|
Func_3_t4C315B89143B58391639906E83ABDD25F0D7E596* L_5 = L_4;
|
|
if (L_5)
|
|
{
|
|
G_B2_0 = L_5;
|
|
G_B2_1 = L_3;
|
|
G_B2_2 = L_2;
|
|
G_B2_3 = L_1;
|
|
G_B2_4 = L_0;
|
|
G_B2_5 = __this;
|
|
goto IL_0026;
|
|
}
|
|
G_B1_0 = L_5;
|
|
G_B1_1 = L_3;
|
|
G_B1_2 = L_2;
|
|
G_B1_3 = L_1;
|
|
G_B1_4 = L_0;
|
|
G_B1_5 = __this;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
U3CU3Ec__35_1_tA83A7CA3451D7FE8177747C4AE39456AD8DD9E1F* L_6 = ((U3CU3Ec__35_1_tA83A7CA3451D7FE8177747C4AE39456AD8DD9E1F_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9;
|
|
Func_3_t4C315B89143B58391639906E83ABDD25F0D7E596* L_7 = (Func_3_t4C315B89143B58391639906E83ABDD25F0D7E596*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
Func_3__ctor_m3C31E463355C072448F5066656B1C80AF7CAB4EA(L_7, (RuntimeObject*)L_6, (intptr_t)((void*)il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
Func_3_t4C315B89143B58391639906E83ABDD25F0D7E596* L_8 = L_7;
|
|
((U3CU3Ec__35_1_tA83A7CA3451D7FE8177747C4AE39456AD8DD9E1F_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec__35_1_tA83A7CA3451D7FE8177747C4AE39456AD8DD9E1F_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0), (void*)L_8);
|
|
G_B2_0 = L_8;
|
|
G_B2_1 = G_B1_1;
|
|
G_B2_2 = G_B1_2;
|
|
G_B2_3 = G_B1_3;
|
|
G_B2_4 = G_B1_4;
|
|
G_B2_5 = G_B1_5;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
Func_4_t46812CB64A120A31977C87BC4A822A947B5C44A5* L_9 = ___4_evtFactory;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___1_delta;
|
|
PenData_t2345B5FBD18D851528C5C18F8A667D4EF4690945 L_11 = ___5_arg;
|
|
ValueTuple_3_tFA1D0F0223CD390EF58965CD27B066DD658BB426 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
ValueTuple_3__ctor_m2F395802A349F0B44E4E8F5EFC723BEC7D32E39C((&L_12), L_9, L_10, L_11, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
bool L_13 = ___6_deselectIfNoTarget;
|
|
NullCheck(G_B2_5);
|
|
DefaultEventSystem_SendPositionBasedEvent_TisValueTuple_3_tFA1D0F0223CD390EF58965CD27B066DD658BB426_mAC4297C0E716632BEC05A1633944D9602EB08BC7(G_B2_5, G_B2_4, G_B2_3, G_B2_2, G_B2_1, G_B2_0, L_12, L_13, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14237
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisIl2CppFullySharedGenericAny_m48A95FF247E2E919AB89A518A1FF4ADED1036521_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_3_t99E62D3154E1A6700E41EB034D8657E7F57A6572* ___4_evtFactory, Il2CppFullySharedGenericAny ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_TArg_t5B23B20430A4E9CA3780D1EE6588DB1647EE8A80 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const Il2CppFullySharedGenericAny L_25 = alloca(SizeOf_TArg_t5B23B20430A4E9CA3780D1EE6588DB1647EE8A80);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_1 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_3 = NULL;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_4 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_5 = NULL;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_9 = NULL;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B19_0 = NULL;
|
|
int32_t G_B19_1 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B18_0 = NULL;
|
|
int32_t G_B18_1 = 0;
|
|
int32_t G_B23_0 = 0;
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0;
|
|
L_0 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
V_6 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_6;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_2;
|
|
L_2 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_2, NULL);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___0_mousePosition;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
L_4 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_3, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5 = ___1_delta;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_5, NULL);
|
|
int32_t L_7 = ___2_pointerId;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_8 = ___3_targetDisplay;
|
|
DefaultEventSystem_FindTargetAtPosition_m27DADBA203D33C4BBA848A244E48BF9B83E7AC61(__this, L_4, L_6, L_7, L_8, (&V_0), (&V_1), (&V_2), (&V_3), (&V_4), NULL);
|
|
int32_t L_9 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_10;
|
|
L_10 = PointerDeviceState_GetPanel_mF1ABAF676F34A5F603E66044D2F5BAB057AC140E(L_9, (int32_t)0, NULL);
|
|
V_5 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_10, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_11 = V_5;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_12 = V_1;
|
|
V_7 = (bool)((((int32_t)((((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_11) == ((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_12))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_13 = V_7;
|
|
if (!L_13)
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_14 = V_5;
|
|
if (L_14)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_15 = V_5;
|
|
int32_t L_16 = ___2_pointerId;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15);
|
|
BaseRuntimePanel_PointerLeavesPanel_mD7BC4DC877F6E4980EFEFD7CF5036E2F359AAF6E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15, L_16, NULL);
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_17 = V_1;
|
|
if (L_17)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_18 = V_1;
|
|
int32_t L_19 = ___2_pointerId;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_20 = V_2;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_18);
|
|
BaseRuntimePanel_PointerEntersPanel_m2826AA8588CBC87F1C39FB2FFA4A4B44E255843E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_18, L_19, L_20, NULL);
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_21 = V_1;
|
|
V_8 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_014b;
|
|
}
|
|
}
|
|
{
|
|
Func_3_t99E62D3154E1A6700E41EB034D8657E7F57A6572* L_23 = ___4_evtFactory;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24 = V_2;
|
|
il2cpp_codegen_memcpy(L_25, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___5_arg : &___5_arg), SizeOf_TArg_t5B23B20430A4E9CA3780D1EE6588DB1647EE8A80);
|
|
NullCheck(L_23);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_26;
|
|
L_26 = InvokerFuncInvoker2< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)), il2cpp_rgctx_method(method->rgctx_data, 2), L_23, L_24, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_25: *(void**)L_25));
|
|
V_9 = L_26;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_013b:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_27 = V_9;
|
|
if (!L_27)
|
|
{
|
|
goto IL_0147;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_28 = V_9;
|
|
NullCheck((RuntimeObject*)L_28);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_28);
|
|
}
|
|
|
|
IL_0147:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_29 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29);
|
|
bool L_30;
|
|
L_30 = BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29, NULL);
|
|
V_10 = (bool)((((int32_t)L_30) == ((int32_t)0))? 1 : 0);
|
|
bool L_31 = V_10;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00b1_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_32 = V_1;
|
|
int32_t L_33 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34 = V_3;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_35 = V_9;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_32);
|
|
BaseVisualElementPanel_SetTopElementUnderPointer_m9936A82FE14DDB5471576A5CE410F0686CA8E586((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_32, L_33, L_34, L_35, NULL);
|
|
}
|
|
|
|
IL_00b1_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_36 = V_9;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_37 = V_0;
|
|
NullCheck(L_36);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(L_36, L_37, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_38 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39;
|
|
L_39 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_38);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_40 = V_9;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_39);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_39, L_40);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_41 = V_9;
|
|
NullCheck(L_41);
|
|
bool L_42;
|
|
L_42 = EventBase_get_processedByFocusController_mB2BCAFE58D45919AC9F5AC0AAEF059D8A640AE53(L_41, NULL);
|
|
V_11 = L_42;
|
|
bool L_43 = V_11;
|
|
if (!L_43)
|
|
{
|
|
goto IL_00df_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_44 = V_1;
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_44, NULL);
|
|
}
|
|
|
|
IL_00df_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_45 = V_9;
|
|
NullCheck(L_45);
|
|
int64_t L_46;
|
|
L_46 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_45);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
int64_t L_47;
|
|
L_47 = EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12(EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
V_12 = (bool)((((int64_t)L_46) == ((int64_t)L_47))? 1 : 0);
|
|
bool L_48 = V_12;
|
|
if (!L_48)
|
|
{
|
|
goto IL_0109_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_49 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_50 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_51 = L_50;
|
|
if (L_51)
|
|
{
|
|
G_B19_0 = L_51;
|
|
G_B19_1 = L_49;
|
|
goto IL_00ff_1;
|
|
}
|
|
G_B18_0 = L_51;
|
|
G_B18_1 = L_49;
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_52 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_52);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_53;
|
|
L_53 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_52);
|
|
G_B19_0 = L_53;
|
|
G_B19_1 = G_B18_1;
|
|
}
|
|
|
|
IL_00ff_1:
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_54 = V_4;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(G_B19_1, G_B19_0, L_54, NULL);
|
|
goto IL_0138_1;
|
|
}
|
|
|
|
IL_0109_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_55 = V_9;
|
|
NullCheck(L_55);
|
|
int64_t L_56;
|
|
L_56 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_55);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
int64_t L_57;
|
|
L_57 = EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D(EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
if ((!(((uint64_t)L_56) == ((uint64_t)L_57))))
|
|
{
|
|
goto IL_0128_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_58 = V_9;
|
|
NullCheck((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_58, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)));
|
|
int32_t L_59;
|
|
L_59 = PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_inline((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_58, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)), PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
G_B23_0 = ((((int32_t)L_59) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0129_1;
|
|
}
|
|
|
|
IL_0128_1:
|
|
{
|
|
G_B23_0 = 0;
|
|
}
|
|
|
|
IL_0129_1:
|
|
{
|
|
V_13 = (bool)G_B23_0;
|
|
bool L_60 = V_13;
|
|
if (!L_60)
|
|
{
|
|
goto IL_0138_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_61 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(L_61, (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL, (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184*)NULL, NULL);
|
|
}
|
|
|
|
IL_0138_1:
|
|
{
|
|
goto IL_0148;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0148:
|
|
{
|
|
goto IL_015f;
|
|
}
|
|
|
|
IL_014b:
|
|
{
|
|
bool L_62 = ___6_deselectIfNoTarget;
|
|
V_14 = L_62;
|
|
bool L_63 = V_14;
|
|
if (!L_63)
|
|
{
|
|
goto IL_015e;
|
|
}
|
|
}
|
|
{
|
|
DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C(__this, (RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)NULL, NULL);
|
|
}
|
|
|
|
IL_015e:
|
|
{
|
|
}
|
|
|
|
IL_015f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14236
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendPositionBasedEvent_TisIl2CppFullySharedGenericAny_mBA3CB514D1E06EB3DD892C675936B2201218F104_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_mousePosition, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_delta, int32_t ___2_pointerId, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___3_targetDisplay, Func_4_t222F7B044E23AD55E5A23F7A86BA3CF128947094* ___4_evtFactory, Il2CppFullySharedGenericAny ___5_arg, bool ___6_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_TArg_t60E47167119F3B3927A906F56C9CF65EA8455883 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_ValueTuple_3_tF2415726C07278AD31F4CBFA79D40EFA0FBEF30F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const Il2CppFullySharedGenericAny L_11 = alloca(SizeOf_TArg_t60E47167119F3B3927A906F56C9CF65EA8455883);
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_TArg_t60E47167119F3B3927A906F56C9CF65EA8455883);
|
|
const ValueTuple_3_t281F811FD3C50D75BEECE4EE3B96B099CA209E69 L_13 = alloca(SizeOf_ValueTuple_3_tF2415726C07278AD31F4CBFA79D40EFA0FBEF30F);
|
|
Func_3_t06ED4EB071C5BB0024319BE1F60C308E1DAA9CC5* G_B2_0 = NULL;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B2_1;
|
|
memset((&G_B2_1), 0, sizeof(G_B2_1));
|
|
int32_t G_B2_2 = 0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B2_3;
|
|
memset((&G_B2_3), 0, sizeof(G_B2_3));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B2_4;
|
|
memset((&G_B2_4), 0, sizeof(G_B2_4));
|
|
DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* G_B2_5 = NULL;
|
|
Func_3_t06ED4EB071C5BB0024319BE1F60C308E1DAA9CC5* G_B1_0 = NULL;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B1_1;
|
|
memset((&G_B1_1), 0, sizeof(G_B1_1));
|
|
int32_t G_B1_2 = 0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B1_3;
|
|
memset((&G_B1_3), 0, sizeof(G_B1_3));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B1_4;
|
|
memset((&G_B1_4), 0, sizeof(G_B1_4));
|
|
DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* G_B1_5 = NULL;
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_mousePosition;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___1_delta;
|
|
int32_t L_2 = ___2_pointerId;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_3 = ___3_targetDisplay;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
Func_3_t06ED4EB071C5BB0024319BE1F60C308E1DAA9CC5* L_4 = ((U3CU3Ec__35_1_t1DE6BF0C022461BB0CE70601BD71D4B9B92231C7_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0;
|
|
Func_3_t06ED4EB071C5BB0024319BE1F60C308E1DAA9CC5* L_5 = L_4;
|
|
if (L_5)
|
|
{
|
|
G_B2_0 = L_5;
|
|
G_B2_1 = L_3;
|
|
G_B2_2 = L_2;
|
|
G_B2_3 = L_1;
|
|
G_B2_4 = L_0;
|
|
G_B2_5 = __this;
|
|
goto IL_0026;
|
|
}
|
|
G_B1_0 = L_5;
|
|
G_B1_1 = L_3;
|
|
G_B1_2 = L_2;
|
|
G_B1_3 = L_1;
|
|
G_B1_4 = L_0;
|
|
G_B1_5 = __this;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
U3CU3Ec__35_1_t1DE6BF0C022461BB0CE70601BD71D4B9B92231C7* L_6 = ((U3CU3Ec__35_1_t1DE6BF0C022461BB0CE70601BD71D4B9B92231C7_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9;
|
|
Func_3_t06ED4EB071C5BB0024319BE1F60C308E1DAA9CC5* L_7 = (Func_3_t06ED4EB071C5BB0024319BE1F60C308E1DAA9CC5*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
(( void (*) (Func_3_t06ED4EB071C5BB0024319BE1F60C308E1DAA9CC5*, RuntimeObject*, intptr_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(L_7, (RuntimeObject*)L_6, (intptr_t)((void*)il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
Func_3_t06ED4EB071C5BB0024319BE1F60C308E1DAA9CC5* L_8 = L_7;
|
|
((U3CU3Ec__35_1_t1DE6BF0C022461BB0CE70601BD71D4B9B92231C7_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec__35_1_t1DE6BF0C022461BB0CE70601BD71D4B9B92231C7_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___U3CU3E9__35_0), (void*)L_8);
|
|
G_B2_0 = L_8;
|
|
G_B2_1 = G_B1_1;
|
|
G_B2_2 = G_B1_2;
|
|
G_B2_3 = G_B1_3;
|
|
G_B2_4 = G_B1_4;
|
|
G_B2_5 = G_B1_5;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
Func_4_t222F7B044E23AD55E5A23F7A86BA3CF128947094* L_9 = ___4_evtFactory;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___1_delta;
|
|
il2cpp_codegen_memcpy(L_11, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___5_arg : &___5_arg), SizeOf_TArg_t60E47167119F3B3927A906F56C9CF65EA8455883);
|
|
memset(L_13, 0, SizeOf_ValueTuple_3_tF2415726C07278AD31F4CBFA79D40EFA0FBEF30F);
|
|
ValueTuple_3__ctor_m0127DA82AC2AB4216F59E755683CEC1F116DACB1((ValueTuple_3_t281F811FD3C50D75BEECE4EE3B96B099CA209E69*)L_13, L_9, L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? il2cpp_codegen_memcpy(L_12, L_11, SizeOf_TArg_t60E47167119F3B3927A906F56C9CF65EA8455883): *(void**)L_11), il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
bool L_14 = ___6_deselectIfNoTarget;
|
|
NullCheck(G_B2_5);
|
|
InvokerActionInvoker7< Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, int32_t, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28, Func_3_t06ED4EB071C5BB0024319BE1F60C308E1DAA9CC5*, ValueTuple_3_t281F811FD3C50D75BEECE4EE3B96B099CA209E69, bool >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), G_B2_5, G_B2_4, G_B2_3, G_B2_2, G_B2_1, G_B2_0, L_13, L_14);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14238
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendRayBasedEvent_TisValueTuple_3_t7710F86A623C8F578E76B4EAC47B05AA6EFE7B64_mEFDEBDCD8F33CDADE2BAF2F3D837001C4A464CA3_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___0_worldRay, float ___1_maxDistance, int32_t ___2_pointerId, Func_3_tA97A8AA5DD5E584A5ADBF2402322C22AE9F68D32* ___3_evtFactory, ValueTuple_3_t7710F86A623C8F578E76B4EAC47B05AA6EFE7B64 ___4_arg, bool ___5_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_1 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_3 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_4 = NULL;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_8 = NULL;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B19_0 = NULL;
|
|
int32_t G_B19_1 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B18_0 = NULL;
|
|
int32_t G_B18_1 = 0;
|
|
int32_t G_B23_0 = 0;
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0;
|
|
L_0 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
V_5 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_5;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_2;
|
|
L_2 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_2, NULL);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_3 = ___0_worldRay;
|
|
float L_4 = ___1_maxDistance;
|
|
int32_t L_5 = ___2_pointerId;
|
|
DefaultEventSystem_FindTargetAtRay_mFDDCAD1CCB503D6CBBC4BDA22C68B617F6521E87(__this, L_3, L_4, L_5, (&V_0), (&V_1), (&V_2), (&V_3), NULL);
|
|
int32_t L_6 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_7;
|
|
L_7 = PointerDeviceState_GetPanel_mF1ABAF676F34A5F603E66044D2F5BAB057AC140E(L_6, (int32_t)0, NULL);
|
|
V_4 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_7, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_8 = V_4;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_9 = V_1;
|
|
V_6 = (bool)((((int32_t)((((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_8) == ((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_9))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_10 = V_6;
|
|
if (!L_10)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_11 = V_4;
|
|
if (L_11)
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_12 = V_4;
|
|
int32_t L_13 = ___2_pointerId;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_12);
|
|
BaseRuntimePanel_PointerLeavesPanel_mD7BC4DC877F6E4980EFEFD7CF5036E2F359AAF6E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_12, L_13, NULL);
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_14 = V_1;
|
|
if (L_14)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_15 = V_1;
|
|
int32_t L_16 = ___2_pointerId;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_17 = V_2;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15);
|
|
BaseRuntimePanel_PointerEntersPanel_m2826AA8588CBC87F1C39FB2FFA4A4B44E255843E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15, L_16, L_17, NULL);
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_18 = V_1;
|
|
V_7 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_18) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_19 = V_7;
|
|
if (!L_19)
|
|
{
|
|
goto IL_013c;
|
|
}
|
|
}
|
|
{
|
|
Func_3_tA97A8AA5DD5E584A5ADBF2402322C22AE9F68D32* L_20 = ___3_evtFactory;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_21 = V_2;
|
|
ValueTuple_3_t7710F86A623C8F578E76B4EAC47B05AA6EFE7B64 L_22 = ___4_arg;
|
|
NullCheck(L_20);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_23;
|
|
L_23 = Func_3_Invoke_m54505B402FEB7A5917AEE0BCF1F4BD2B5BFC418B_inline(L_20, L_21, L_22, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
V_8 = L_23;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_012c:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_24 = V_8;
|
|
if (!L_24)
|
|
{
|
|
goto IL_0138;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_25 = V_8;
|
|
NullCheck((RuntimeObject*)L_25);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_25);
|
|
}
|
|
|
|
IL_0138:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_26 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_26);
|
|
bool L_27;
|
|
L_27 = BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_26, NULL);
|
|
V_9 = (bool)((((int32_t)L_27) == ((int32_t)0))? 1 : 0);
|
|
bool L_28 = V_9;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00a3_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_29 = V_1;
|
|
int32_t L_30 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_31 = V_3;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_32 = V_8;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29);
|
|
BaseVisualElementPanel_SetTopElementUnderPointer_m9936A82FE14DDB5471576A5CE410F0686CA8E586((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29, L_30, L_31, L_32, NULL);
|
|
}
|
|
|
|
IL_00a3_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_33 = V_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34 = V_0;
|
|
NullCheck(L_33);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(L_33, L_34, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_35 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_36;
|
|
L_36 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_37 = V_8;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36, L_37);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_38 = V_8;
|
|
NullCheck(L_38);
|
|
bool L_39;
|
|
L_39 = EventBase_get_processedByFocusController_mB2BCAFE58D45919AC9F5AC0AAEF059D8A640AE53(L_38, NULL);
|
|
V_10 = L_39;
|
|
bool L_40 = V_10;
|
|
if (!L_40)
|
|
{
|
|
goto IL_00d1_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_41 = V_1;
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_41, NULL);
|
|
}
|
|
|
|
IL_00d1_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_42 = V_8;
|
|
NullCheck(L_42);
|
|
int64_t L_43;
|
|
L_43 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_42);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
int64_t L_44;
|
|
L_44 = EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12(EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
V_11 = (bool)((((int64_t)L_43) == ((int64_t)L_44))? 1 : 0);
|
|
bool L_45 = V_11;
|
|
if (!L_45)
|
|
{
|
|
goto IL_00fa_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_46 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_47 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_48 = L_47;
|
|
if (L_48)
|
|
{
|
|
G_B19_0 = L_48;
|
|
G_B19_1 = L_46;
|
|
goto IL_00f1_1;
|
|
}
|
|
G_B18_0 = L_48;
|
|
G_B18_1 = L_46;
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_49 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_49);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_50;
|
|
L_50 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_49);
|
|
G_B19_0 = L_50;
|
|
G_B19_1 = G_B18_1;
|
|
}
|
|
|
|
IL_00f1_1:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(G_B19_1, G_B19_0, (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184*)NULL, NULL);
|
|
goto IL_0129_1;
|
|
}
|
|
|
|
IL_00fa_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_51 = V_8;
|
|
NullCheck(L_51);
|
|
int64_t L_52;
|
|
L_52 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_51);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
int64_t L_53;
|
|
L_53 = EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D(EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
if ((!(((uint64_t)L_52) == ((uint64_t)L_53))))
|
|
{
|
|
goto IL_0119_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_54 = V_8;
|
|
NullCheck((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_54, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)));
|
|
int32_t L_55;
|
|
L_55 = PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_inline((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_54, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)), PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
G_B23_0 = ((((int32_t)L_55) == ((int32_t)0))? 1 : 0);
|
|
goto IL_011a_1;
|
|
}
|
|
|
|
IL_0119_1:
|
|
{
|
|
G_B23_0 = 0;
|
|
}
|
|
|
|
IL_011a_1:
|
|
{
|
|
V_12 = (bool)G_B23_0;
|
|
bool L_56 = V_12;
|
|
if (!L_56)
|
|
{
|
|
goto IL_0129_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_57 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(L_57, (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL, (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184*)NULL, NULL);
|
|
}
|
|
|
|
IL_0129_1:
|
|
{
|
|
goto IL_0139;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0139:
|
|
{
|
|
goto IL_0150;
|
|
}
|
|
|
|
IL_013c:
|
|
{
|
|
bool L_58 = ___5_deselectIfNoTarget;
|
|
V_13 = L_58;
|
|
bool L_59 = V_13;
|
|
if (!L_59)
|
|
{
|
|
goto IL_014f;
|
|
}
|
|
}
|
|
{
|
|
DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C(__this, (RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)NULL, NULL);
|
|
}
|
|
|
|
IL_014f:
|
|
{
|
|
}
|
|
|
|
IL_0150:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14238
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEventSystem_SendRayBasedEvent_TisIl2CppFullySharedGenericAny_m88529F6CD81AB2EFBF9A530787D17A53C59D81A0_gshared (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___0_worldRay, float ___1_maxDistance, int32_t ___2_pointerId, Func_3_t99E62D3154E1A6700E41EB034D8657E7F57A6572* ___3_evtFactory, Il2CppFullySharedGenericAny ___4_arg, bool ___5_deselectIfNoTarget, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_TArg_t3BD14692FDB4742056B62971C75D8513FF4F81B8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const Il2CppFullySharedGenericAny L_22 = alloca(SizeOf_TArg_t3BD14692FDB4742056B62971C75D8513FF4F81B8);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_1 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_3 = NULL;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_4 = NULL;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_8 = NULL;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B19_0 = NULL;
|
|
int32_t G_B19_1 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B18_0 = NULL;
|
|
int32_t G_B18_1 = 0;
|
|
int32_t G_B23_0 = 0;
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0;
|
|
L_0 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
V_5 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_5;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_2;
|
|
L_2 = DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline(__this, NULL);
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_2, NULL);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_3 = ___0_worldRay;
|
|
float L_4 = ___1_maxDistance;
|
|
int32_t L_5 = ___2_pointerId;
|
|
DefaultEventSystem_FindTargetAtRay_mFDDCAD1CCB503D6CBBC4BDA22C68B617F6521E87(__this, L_3, L_4, L_5, (&V_0), (&V_1), (&V_2), (&V_3), NULL);
|
|
int32_t L_6 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_7;
|
|
L_7 = PointerDeviceState_GetPanel_mF1ABAF676F34A5F603E66044D2F5BAB057AC140E(L_6, (int32_t)0, NULL);
|
|
V_4 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_7, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_8 = V_4;
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_9 = V_1;
|
|
V_6 = (bool)((((int32_t)((((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_8) == ((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_9))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_10 = V_6;
|
|
if (!L_10)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_11 = V_4;
|
|
if (L_11)
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_12 = V_4;
|
|
int32_t L_13 = ___2_pointerId;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_12);
|
|
BaseRuntimePanel_PointerLeavesPanel_mD7BC4DC877F6E4980EFEFD7CF5036E2F359AAF6E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_12, L_13, NULL);
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_14 = V_1;
|
|
if (L_14)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_15 = V_1;
|
|
int32_t L_16 = ___2_pointerId;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_17 = V_2;
|
|
NullCheck((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15);
|
|
BaseRuntimePanel_PointerEntersPanel_m2826AA8588CBC87F1C39FB2FFA4A4B44E255843E((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_15, L_16, L_17, NULL);
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_18 = V_1;
|
|
V_7 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_18) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_19 = V_7;
|
|
if (!L_19)
|
|
{
|
|
goto IL_013c;
|
|
}
|
|
}
|
|
{
|
|
Func_3_t99E62D3154E1A6700E41EB034D8657E7F57A6572* L_20 = ___3_evtFactory;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_21 = V_2;
|
|
il2cpp_codegen_memcpy(L_22, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___4_arg : &___4_arg), SizeOf_TArg_t3BD14692FDB4742056B62971C75D8513FF4F81B8);
|
|
NullCheck(L_20);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_23;
|
|
L_23 = InvokerFuncInvoker2< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)), il2cpp_rgctx_method(method->rgctx_data, 2), L_20, L_21, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_22: *(void**)L_22));
|
|
V_8 = L_23;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_012c:
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_24 = V_8;
|
|
if (!L_24)
|
|
{
|
|
goto IL_0138;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_25 = V_8;
|
|
NullCheck((RuntimeObject*)L_25);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_25);
|
|
}
|
|
|
|
IL_0138:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_26 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_26);
|
|
bool L_27;
|
|
L_27 = BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_26, NULL);
|
|
V_9 = (bool)((((int32_t)L_27) == ((int32_t)0))? 1 : 0);
|
|
bool L_28 = V_9;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00a3_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_29 = V_1;
|
|
int32_t L_30 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_31 = V_3;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_32 = V_8;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29);
|
|
BaseVisualElementPanel_SetTopElementUnderPointer_m9936A82FE14DDB5471576A5CE410F0686CA8E586((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29, L_30, L_31, L_32, NULL);
|
|
}
|
|
|
|
IL_00a3_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_33 = V_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34 = V_0;
|
|
NullCheck(L_33);
|
|
EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline(L_33, L_34, NULL);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_35 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_36;
|
|
L_36 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_35);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_37 = V_8;
|
|
NullCheck((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5, (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)L_36, L_37);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_38 = V_8;
|
|
NullCheck(L_38);
|
|
bool L_39;
|
|
L_39 = EventBase_get_processedByFocusController_mB2BCAFE58D45919AC9F5AC0AAEF059D8A640AE53(L_38, NULL);
|
|
V_10 = L_39;
|
|
bool L_40 = V_10;
|
|
if (!L_40)
|
|
{
|
|
goto IL_00d1_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_41 = V_1;
|
|
DefaultEventSystem_UpdateFocusedPanel_m8B782F6CB3E73750A27CF42EB26F08FE73B854B4(__this, L_41, NULL);
|
|
}
|
|
|
|
IL_00d1_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_42 = V_8;
|
|
NullCheck(L_42);
|
|
int64_t L_43;
|
|
L_43 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_42);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
int64_t L_44;
|
|
L_44 = EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12(EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
V_11 = (bool)((((int64_t)L_43) == ((int64_t)L_44))? 1 : 0);
|
|
bool L_45 = V_11;
|
|
if (!L_45)
|
|
{
|
|
goto IL_00fa_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_46 = ___2_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_47 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_48 = L_47;
|
|
if (L_48)
|
|
{
|
|
G_B19_0 = L_48;
|
|
G_B19_1 = L_46;
|
|
goto IL_00f1_1;
|
|
}
|
|
G_B18_0 = L_48;
|
|
G_B18_1 = L_46;
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_49 = V_1;
|
|
NullCheck((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_49);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_50;
|
|
L_50 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_49);
|
|
G_B19_0 = L_50;
|
|
G_B19_1 = G_B18_1;
|
|
}
|
|
|
|
IL_00f1_1:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(G_B19_1, G_B19_0, (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184*)NULL, NULL);
|
|
goto IL_0129_1;
|
|
}
|
|
|
|
IL_00fa_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_51 = V_8;
|
|
NullCheck(L_51);
|
|
int64_t L_52;
|
|
L_52 = VirtualFuncInvoker0< int64_t >::Invoke(5, L_51);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
int64_t L_53;
|
|
L_53 = EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D(EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
if ((!(((uint64_t)L_52) == ((uint64_t)L_53))))
|
|
{
|
|
goto IL_0119_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_54 = V_8;
|
|
NullCheck((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_54, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)));
|
|
int32_t L_55;
|
|
L_55 = PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_inline((PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_54, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)), PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
G_B23_0 = ((((int32_t)L_55) == ((int32_t)0))? 1 : 0);
|
|
goto IL_011a_1;
|
|
}
|
|
|
|
IL_0119_1:
|
|
{
|
|
G_B23_0 = 0;
|
|
}
|
|
|
|
IL_011a_1:
|
|
{
|
|
V_12 = (bool)G_B23_0;
|
|
bool L_56 = V_12;
|
|
if (!L_56)
|
|
{
|
|
goto IL_0129_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_57 = ___2_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(L_57, (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL, (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184*)NULL, NULL);
|
|
}
|
|
|
|
IL_0129_1:
|
|
{
|
|
goto IL_0139;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0139:
|
|
{
|
|
goto IL_0150;
|
|
}
|
|
|
|
IL_013c:
|
|
{
|
|
bool L_58 = ___5_deselectIfNoTarget;
|
|
V_13 = L_58;
|
|
bool L_59 = V_13;
|
|
if (!L_59)
|
|
{
|
|
goto IL_014f;
|
|
}
|
|
}
|
|
{
|
|
DefaultEventSystem_set_focusedPanel_m347D7EF02C24CD246B072475B83912AB538E8B1C(__this, (RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)NULL, NULL);
|
|
}
|
|
|
|
IL_014f:
|
|
{
|
|
}
|
|
|
|
IL_0150:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 26750
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_m9DEBF1BF04DA506E770B06B906F6ED856417BC9A_gshared (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* ___0_callbacks, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___1_argument, String_t* ___2_callbackName, RuntimeObject* ___3_context, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int32_t V_0 = 0;
|
|
Exception_t* V_1 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:38>
|
|
CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* L_0 = ___0_callbacks;
|
|
int32_t L_1;
|
|
L_1 = CallbackArray_1_get_length_m096E657BAB53406356BABE16CE03C92212CF5A52(L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if (L_1)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:39>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:41>
|
|
CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* L_2 = ___0_callbacks;
|
|
CallbackArray_1_LockForChanges_mA74AA879F43D4FE35D07CA0FF4CADC8224149E09(L_2, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:42>
|
|
V_0 = 0;
|
|
goto IL_0071;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
}
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:46>
|
|
CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* L_3 = ___0_callbacks;
|
|
int32_t L_4 = V_0;
|
|
Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* L_5;
|
|
L_5 = CallbackArray_1_get_Item_mD75A66CA41114514F6664B0201F1BE0B77507643(L_3, L_4, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_6 = ___1_argument;
|
|
NullCheck(L_5);
|
|
Action_1_Invoke_m30D56EDF2807EF309EEF182BA63A3F0EF0B08A15_inline(L_5, L_6, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:47>
|
|
goto IL_006d;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
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_0023;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0023:
|
|
{
|
|
{
|
|
Exception_t* L_7 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:48>
|
|
V_1 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:50>
|
|
Exception_t* L_8 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogException_mAB3F4DC7297ED8FBB49DAA718B70E59A6B0171B0(L_8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:51>
|
|
RuntimeObject* L_9 = ___3_context;
|
|
if (!L_9)
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:52>
|
|
Exception_t* L_10 = V_1;
|
|
NullCheck(L_10);
|
|
Type_t* L_11;
|
|
L_11 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_10, NULL);
|
|
NullCheck((MemberInfo_t*)L_11);
|
|
String_t* L_12;
|
|
L_12 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_11);
|
|
String_t* L_13 = ___2_callbackName;
|
|
RuntimeObject* L_14 = ___3_context;
|
|
String_t* L_15;
|
|
L_15 = String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral278942CDEE22E9328A00EB31BC7DEC0BB8D328F1)), (RuntimeObject*)L_12, (RuntimeObject*)L_13, L_14, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_15, NULL);
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:54>
|
|
Exception_t* L_16 = V_1;
|
|
NullCheck(L_16);
|
|
Type_t* L_17;
|
|
L_17 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_16, NULL);
|
|
NullCheck((MemberInfo_t*)L_17);
|
|
String_t* L_18;
|
|
L_18 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_17);
|
|
String_t* L_19 = ___2_callbackName;
|
|
String_t* L_20;
|
|
L_20 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral29E9D8EEDD40E3ADE1579882DA345730D66B63B5)), L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral77A73EBDA78185D665A8799738A9D6885E237CAD)), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_20, NULL);
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:55>
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_006d;
|
|
}
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:42>
|
|
int32_t L_21 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_21, 1));
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:42>
|
|
int32_t L_22 = V_0;
|
|
CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* L_23 = ___0_callbacks;
|
|
int32_t L_24;
|
|
L_24 = CallbackArray_1_get_length_m096E657BAB53406356BABE16CE03C92212CF5A52(L_23, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if ((((int32_t)L_22) < ((int32_t)L_24)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:57>
|
|
CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* L_25 = ___0_callbacks;
|
|
CallbackArray_1_UnlockForChanges_m36F89B841AF6C7B84793862F111411EA0A506313(L_25, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:59>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 26750
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegateHelpers_InvokeCallbacksSafe_TisRuntimeObject_m3765984E32F53D8A5A25B14A6E8A71B9234740F4_gshared (CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411* ___0_callbacks, RuntimeObject* ___1_argument, String_t* ___2_callbackName, RuntimeObject* ___3_context, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int32_t V_0 = 0;
|
|
Exception_t* V_1 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:38>
|
|
CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411* L_0 = ___0_callbacks;
|
|
int32_t L_1;
|
|
L_1 = CallbackArray_1_get_length_mD50339ABE7C0095D09433B0F9B65F8B63B89B37D(L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if (L_1)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:39>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:41>
|
|
CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411* L_2 = ___0_callbacks;
|
|
CallbackArray_1_LockForChanges_mAA314B37A06190733CFE7941947F4B4F1C024F7D(L_2, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:42>
|
|
V_0 = 0;
|
|
goto IL_0071;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
}
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:46>
|
|
CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411* L_3 = ___0_callbacks;
|
|
int32_t L_4 = V_0;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_5;
|
|
L_5 = CallbackArray_1_get_Item_m917B62A3FCD2F6A5A445659E461F2E5A8035B646(L_3, L_4, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
RuntimeObject* L_6 = ___1_argument;
|
|
NullCheck(L_5);
|
|
Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(L_5, L_6, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:47>
|
|
goto IL_006d;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
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_0023;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0023:
|
|
{
|
|
{
|
|
Exception_t* L_7 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:48>
|
|
V_1 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:50>
|
|
Exception_t* L_8 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogException_mAB3F4DC7297ED8FBB49DAA718B70E59A6B0171B0(L_8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:51>
|
|
RuntimeObject* L_9 = ___3_context;
|
|
if (!L_9)
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:52>
|
|
Exception_t* L_10 = V_1;
|
|
NullCheck(L_10);
|
|
Type_t* L_11;
|
|
L_11 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_10, NULL);
|
|
NullCheck((MemberInfo_t*)L_11);
|
|
String_t* L_12;
|
|
L_12 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_11);
|
|
String_t* L_13 = ___2_callbackName;
|
|
RuntimeObject* L_14 = ___3_context;
|
|
String_t* L_15;
|
|
L_15 = String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral278942CDEE22E9328A00EB31BC7DEC0BB8D328F1)), (RuntimeObject*)L_12, (RuntimeObject*)L_13, L_14, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_15, NULL);
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:54>
|
|
Exception_t* L_16 = V_1;
|
|
NullCheck(L_16);
|
|
Type_t* L_17;
|
|
L_17 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_16, NULL);
|
|
NullCheck((MemberInfo_t*)L_17);
|
|
String_t* L_18;
|
|
L_18 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_17);
|
|
String_t* L_19 = ___2_callbackName;
|
|
String_t* L_20;
|
|
L_20 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral29E9D8EEDD40E3ADE1579882DA345730D66B63B5)), L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral77A73EBDA78185D665A8799738A9D6885E237CAD)), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_20, NULL);
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:55>
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_006d;
|
|
}
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:42>
|
|
int32_t L_21 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_21, 1));
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:42>
|
|
int32_t L_22 = V_0;
|
|
CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411* L_23 = ___0_callbacks;
|
|
int32_t L_24;
|
|
L_24 = CallbackArray_1_get_length_mD50339ABE7C0095D09433B0F9B65F8B63B89B37D(L_23, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if ((((int32_t)L_22) < ((int32_t)L_24)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:57>
|
|
CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411* L_25 = ___0_callbacks;
|
|
CallbackArray_1_UnlockForChanges_m1E04FCA5160307853106274C9C496D77CB8F61AF(L_25, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:59>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 26750
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegateHelpers_InvokeCallbacksSafe_TisIl2CppFullySharedGenericAny_m5514D1F6250CB3A2568677614BA43D5F578BE753_gshared (CallbackArray_1_tBC884080A926B345EE8B5A52690527C349E487EB* ___0_callbacks, Il2CppFullySharedGenericAny ___1_argument, String_t* ___2_callbackName, RuntimeObject* ___3_context, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_TValue_tC79442CBA47E3002E5600E12B26B3D8353EBF75C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TValue_tC79442CBA47E3002E5600E12B26B3D8353EBF75C);
|
|
int32_t V_0 = 0;
|
|
Exception_t* V_1 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:38>
|
|
CallbackArray_1_tBC884080A926B345EE8B5A52690527C349E487EB* L_0 = ___0_callbacks;
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (CallbackArray_1_tBC884080A926B345EE8B5A52690527C349E487EB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if (L_1)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:39>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:41>
|
|
CallbackArray_1_tBC884080A926B345EE8B5A52690527C349E487EB* L_2 = ___0_callbacks;
|
|
(( void (*) (CallbackArray_1_tBC884080A926B345EE8B5A52690527C349E487EB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_2, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:42>
|
|
V_0 = 0;
|
|
goto IL_0071;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
}
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:46>
|
|
CallbackArray_1_tBC884080A926B345EE8B5A52690527C349E487EB* L_3 = ___0_callbacks;
|
|
int32_t L_4 = V_0;
|
|
Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* L_5;
|
|
L_5 = (( Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* (*) (CallbackArray_1_tBC884080A926B345EE8B5A52690527C349E487EB*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(L_3, L_4, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___1_argument : &___1_argument), SizeOf_TValue_tC79442CBA47E3002E5600E12B26B3D8353EBF75C);
|
|
NullCheck(L_5);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_6: *(void**)L_6));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:47>
|
|
goto IL_006d;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
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_0023;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0023:
|
|
{
|
|
{
|
|
Exception_t* L_7 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:48>
|
|
V_1 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:50>
|
|
Exception_t* L_8 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogException_mAB3F4DC7297ED8FBB49DAA718B70E59A6B0171B0(L_8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:51>
|
|
RuntimeObject* L_9 = ___3_context;
|
|
if (!L_9)
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:52>
|
|
Exception_t* L_10 = V_1;
|
|
NullCheck(L_10);
|
|
Type_t* L_11;
|
|
L_11 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_10, NULL);
|
|
NullCheck((MemberInfo_t*)L_11);
|
|
String_t* L_12;
|
|
L_12 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_11);
|
|
String_t* L_13 = ___2_callbackName;
|
|
RuntimeObject* L_14 = ___3_context;
|
|
String_t* L_15;
|
|
L_15 = String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral278942CDEE22E9328A00EB31BC7DEC0BB8D328F1)), (RuntimeObject*)L_12, (RuntimeObject*)L_13, L_14, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_15, NULL);
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:54>
|
|
Exception_t* L_16 = V_1;
|
|
NullCheck(L_16);
|
|
Type_t* L_17;
|
|
L_17 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_16, NULL);
|
|
NullCheck((MemberInfo_t*)L_17);
|
|
String_t* L_18;
|
|
L_18 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_17);
|
|
String_t* L_19 = ___2_callbackName;
|
|
String_t* L_20;
|
|
L_20 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral29E9D8EEDD40E3ADE1579882DA345730D66B63B5)), L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral77A73EBDA78185D665A8799738A9D6885E237CAD)), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_20, NULL);
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:55>
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_006d;
|
|
}
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:42>
|
|
int32_t L_21 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_21, 1));
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:42>
|
|
int32_t L_22 = V_0;
|
|
CallbackArray_1_tBC884080A926B345EE8B5A52690527C349E487EB* L_23 = ___0_callbacks;
|
|
int32_t L_24;
|
|
L_24 = (( int32_t (*) (CallbackArray_1_tBC884080A926B345EE8B5A52690527C349E487EB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_23, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if ((((int32_t)L_22) < ((int32_t)L_24)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:57>
|
|
CallbackArray_1_tBC884080A926B345EE8B5A52690527C349E487EB* L_25 = ___0_callbacks;
|
|
(( void (*) (CallbackArray_1_tBC884080A926B345EE8B5A52690527C349E487EB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(L_25, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:59>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 26750
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegateHelpers_InvokeCallbacksSafe_TisCallbackContext_tB251EE41F509C6E8A6B05EC97C029A45DF4F5FA8_m876CCCC92963B709E7FE1F22D5F72C1097CCC27C_gshared (CallbackArray_1_tDFF8C4C6015023B6C2E70BAD26D8BC6BF00D8775* ___0_callbacks, CallbackContext_tB251EE41F509C6E8A6B05EC97C029A45DF4F5FA8 ___1_argument, String_t* ___2_callbackName, RuntimeObject* ___3_context, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int32_t V_0 = 0;
|
|
Exception_t* V_1 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:38>
|
|
CallbackArray_1_tDFF8C4C6015023B6C2E70BAD26D8BC6BF00D8775* L_0 = ___0_callbacks;
|
|
int32_t L_1;
|
|
L_1 = CallbackArray_1_get_length_m3C50042E1C2A1DA8489E324AF7137CFABFB617FA(L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if (L_1)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:39>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:41>
|
|
CallbackArray_1_tDFF8C4C6015023B6C2E70BAD26D8BC6BF00D8775* L_2 = ___0_callbacks;
|
|
CallbackArray_1_LockForChanges_mBF281A2D6F751F95BCBE59AB0C68F9CD6AE4C4E2(L_2, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:42>
|
|
V_0 = 0;
|
|
goto IL_0071;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
}
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:46>
|
|
CallbackArray_1_tDFF8C4C6015023B6C2E70BAD26D8BC6BF00D8775* L_3 = ___0_callbacks;
|
|
int32_t L_4 = V_0;
|
|
Action_1_tEB0353AA1A112B6F2D921B58DCC9D9D4C0498E6E* L_5;
|
|
L_5 = CallbackArray_1_get_Item_m1F18565FAEB58506B8BE9336BC52ECAC9FE88ECB(L_3, L_4, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
CallbackContext_tB251EE41F509C6E8A6B05EC97C029A45DF4F5FA8 L_6 = ___1_argument;
|
|
NullCheck(L_5);
|
|
Action_1_Invoke_mC9D2864A52CF07F93C51935D9DCDF73E96FED543_inline(L_5, L_6, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:47>
|
|
goto IL_006d;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
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_0023;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0023:
|
|
{
|
|
{
|
|
Exception_t* L_7 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:48>
|
|
V_1 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:50>
|
|
Exception_t* L_8 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogException_mAB3F4DC7297ED8FBB49DAA718B70E59A6B0171B0(L_8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:51>
|
|
RuntimeObject* L_9 = ___3_context;
|
|
if (!L_9)
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:52>
|
|
Exception_t* L_10 = V_1;
|
|
NullCheck(L_10);
|
|
Type_t* L_11;
|
|
L_11 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_10, NULL);
|
|
NullCheck((MemberInfo_t*)L_11);
|
|
String_t* L_12;
|
|
L_12 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_11);
|
|
String_t* L_13 = ___2_callbackName;
|
|
RuntimeObject* L_14 = ___3_context;
|
|
String_t* L_15;
|
|
L_15 = String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral278942CDEE22E9328A00EB31BC7DEC0BB8D328F1)), (RuntimeObject*)L_12, (RuntimeObject*)L_13, L_14, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_15, NULL);
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:54>
|
|
Exception_t* L_16 = V_1;
|
|
NullCheck(L_16);
|
|
Type_t* L_17;
|
|
L_17 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_16, NULL);
|
|
NullCheck((MemberInfo_t*)L_17);
|
|
String_t* L_18;
|
|
L_18 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_17);
|
|
String_t* L_19 = ___2_callbackName;
|
|
String_t* L_20;
|
|
L_20 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral29E9D8EEDD40E3ADE1579882DA345730D66B63B5)), L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral77A73EBDA78185D665A8799738A9D6885E237CAD)), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_20, NULL);
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:55>
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_006d;
|
|
}
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:42>
|
|
int32_t L_21 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_21, 1));
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:42>
|
|
int32_t L_22 = V_0;
|
|
CallbackArray_1_tDFF8C4C6015023B6C2E70BAD26D8BC6BF00D8775* L_23 = ___0_callbacks;
|
|
int32_t L_24;
|
|
L_24 = CallbackArray_1_get_length_m3C50042E1C2A1DA8489E324AF7137CFABFB617FA(L_23, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if ((((int32_t)L_22) < ((int32_t)L_24)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:57>
|
|
CallbackArray_1_tDFF8C4C6015023B6C2E70BAD26D8BC6BF00D8775* L_25 = ___0_callbacks;
|
|
CallbackArray_1_UnlockForChanges_m765CE8C02F49FCC086F4F5995EC74AC2E47B1243(L_25, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:59>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 26751
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_TisRuntimeObject_m62FCAC07CA14C4F928EDD57E07BDAD198CB736B7_gshared (CallbackArray_1_tCF297A9E4DEDF9CF4C396E9C986D418FDA53FB2A* ___0_callbacks, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___1_argument1, RuntimeObject* ___2_argument2, ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___3_marker, String_t* ___4_callbackName, RuntimeObject* ___5_context, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int32_t V_0 = 0;
|
|
Exception_t* V_1 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:63>
|
|
CallbackArray_1_tCF297A9E4DEDF9CF4C396E9C986D418FDA53FB2A* L_0 = ___0_callbacks;
|
|
int32_t L_1;
|
|
L_1 = CallbackArray_1_get_length_mE153EF4D1DD34AA10974E898AE9F794D66C0E8D3(L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if (L_1)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:64>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:66>
|
|
CallbackArray_1_tCF297A9E4DEDF9CF4C396E9C986D418FDA53FB2A* L_2 = ___0_callbacks;
|
|
CallbackArray_1_LockForChanges_m695C43B2B5AE62D94563950262DAF0A584B6C75E(L_2, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:67>
|
|
V_0 = 0;
|
|
goto IL_0076;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
}
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:71>
|
|
CallbackArray_1_tCF297A9E4DEDF9CF4C396E9C986D418FDA53FB2A* L_3 = ___0_callbacks;
|
|
int32_t L_4 = V_0;
|
|
Action_2_tD987B97B18D27B9920365359C46BC12702AD4F7D* L_5;
|
|
L_5 = CallbackArray_1_get_Item_m81DC21C93BD1A00E0FC5B10D0FC7D7E6814F8CFF(L_3, L_4, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_6 = ___1_argument1;
|
|
RuntimeObject* L_7 = ___2_argument2;
|
|
NullCheck(L_5);
|
|
Action_2_Invoke_m5CA7C522C42D2A1120BA23ED9913909EF92762C5_inline(L_5, L_6, L_7, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:72>
|
|
goto IL_0072;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
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_0024;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0024:
|
|
{
|
|
{
|
|
Exception_t* L_8 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:73>
|
|
V_1 = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:75>
|
|
Exception_t* L_9 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogException_mAB3F4DC7297ED8FBB49DAA718B70E59A6B0171B0(L_9, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:76>
|
|
RuntimeObject* L_10 = ___5_context;
|
|
if (!L_10)
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:77>
|
|
Exception_t* L_11 = V_1;
|
|
NullCheck(L_11);
|
|
Type_t* L_12;
|
|
L_12 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_11, NULL);
|
|
NullCheck((MemberInfo_t*)L_12);
|
|
String_t* L_13;
|
|
L_13 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_12);
|
|
String_t* L_14 = ___4_callbackName;
|
|
RuntimeObject* L_15 = ___5_context;
|
|
String_t* L_16;
|
|
L_16 = String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral278942CDEE22E9328A00EB31BC7DEC0BB8D328F1)), (RuntimeObject*)L_13, (RuntimeObject*)L_14, L_15, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_16, NULL);
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:79>
|
|
Exception_t* L_17 = V_1;
|
|
NullCheck(L_17);
|
|
Type_t* L_18;
|
|
L_18 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_17, NULL);
|
|
NullCheck((MemberInfo_t*)L_18);
|
|
String_t* L_19;
|
|
L_19 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_18);
|
|
String_t* L_20 = ___4_callbackName;
|
|
String_t* L_21;
|
|
L_21 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral29E9D8EEDD40E3ADE1579882DA345730D66B63B5)), L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral77A73EBDA78185D665A8799738A9D6885E237CAD)), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_21, NULL);
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:80>
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:67>
|
|
int32_t L_22 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:67>
|
|
int32_t L_23 = V_0;
|
|
CallbackArray_1_tCF297A9E4DEDF9CF4C396E9C986D418FDA53FB2A* L_24 = ___0_callbacks;
|
|
int32_t L_25;
|
|
L_25 = CallbackArray_1_get_length_mE153EF4D1DD34AA10974E898AE9F794D66C0E8D3(L_24, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if ((((int32_t)L_23) < ((int32_t)L_25)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:82>
|
|
CallbackArray_1_tCF297A9E4DEDF9CF4C396E9C986D418FDA53FB2A* L_26 = ___0_callbacks;
|
|
CallbackArray_1_UnlockForChanges_m4777B526404B8F56C82D66301536F9E1B1ACAEFD(L_26, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:84>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 26751
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegateHelpers_InvokeCallbacksSafe_TisRuntimeObject_TisInputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_m87323128C1A8DFF321110E934E021A7D9CA2CC91_gshared (CallbackArray_1_t270AB3EEC7FF7B8E211305E1BC7311F2177FCBB2* ___0_callbacks, RuntimeObject* ___1_argument1, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___2_argument2, ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___3_marker, String_t* ___4_callbackName, RuntimeObject* ___5_context, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int32_t V_0 = 0;
|
|
Exception_t* V_1 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:63>
|
|
CallbackArray_1_t270AB3EEC7FF7B8E211305E1BC7311F2177FCBB2* L_0 = ___0_callbacks;
|
|
int32_t L_1;
|
|
L_1 = CallbackArray_1_get_length_mA3D0E74479E572345C743A4EA6228025F2F11D59(L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if (L_1)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:64>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:66>
|
|
CallbackArray_1_t270AB3EEC7FF7B8E211305E1BC7311F2177FCBB2* L_2 = ___0_callbacks;
|
|
CallbackArray_1_LockForChanges_mC3DEC4D5FF386FBA3DD8134E57BF1457D7A40121(L_2, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:67>
|
|
V_0 = 0;
|
|
goto IL_0076;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
}
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:71>
|
|
CallbackArray_1_t270AB3EEC7FF7B8E211305E1BC7311F2177FCBB2* L_3 = ___0_callbacks;
|
|
int32_t L_4 = V_0;
|
|
Action_2_t51C134DC0CD7F5ED5E83EE70AD1FE0FDFF6DDCCF* L_5;
|
|
L_5 = CallbackArray_1_get_Item_m31F355A5912C6A635576547A0C75F22A3771CE6D(L_3, L_4, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
RuntimeObject* L_6 = ___1_argument1;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_7 = ___2_argument2;
|
|
NullCheck(L_5);
|
|
Action_2_Invoke_m3AE16EB1F624AEBB87FA2FC37FC6D58694C23434_inline(L_5, L_6, L_7, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:72>
|
|
goto IL_0072;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
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_0024;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0024:
|
|
{
|
|
{
|
|
Exception_t* L_8 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:73>
|
|
V_1 = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:75>
|
|
Exception_t* L_9 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogException_mAB3F4DC7297ED8FBB49DAA718B70E59A6B0171B0(L_9, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:76>
|
|
RuntimeObject* L_10 = ___5_context;
|
|
if (!L_10)
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:77>
|
|
Exception_t* L_11 = V_1;
|
|
NullCheck(L_11);
|
|
Type_t* L_12;
|
|
L_12 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_11, NULL);
|
|
NullCheck((MemberInfo_t*)L_12);
|
|
String_t* L_13;
|
|
L_13 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_12);
|
|
String_t* L_14 = ___4_callbackName;
|
|
RuntimeObject* L_15 = ___5_context;
|
|
String_t* L_16;
|
|
L_16 = String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral278942CDEE22E9328A00EB31BC7DEC0BB8D328F1)), (RuntimeObject*)L_13, (RuntimeObject*)L_14, L_15, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_16, NULL);
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:79>
|
|
Exception_t* L_17 = V_1;
|
|
NullCheck(L_17);
|
|
Type_t* L_18;
|
|
L_18 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_17, NULL);
|
|
NullCheck((MemberInfo_t*)L_18);
|
|
String_t* L_19;
|
|
L_19 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_18);
|
|
String_t* L_20 = ___4_callbackName;
|
|
String_t* L_21;
|
|
L_21 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral29E9D8EEDD40E3ADE1579882DA345730D66B63B5)), L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral77A73EBDA78185D665A8799738A9D6885E237CAD)), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_21, NULL);
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:80>
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:67>
|
|
int32_t L_22 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:67>
|
|
int32_t L_23 = V_0;
|
|
CallbackArray_1_t270AB3EEC7FF7B8E211305E1BC7311F2177FCBB2* L_24 = ___0_callbacks;
|
|
int32_t L_25;
|
|
L_25 = CallbackArray_1_get_length_mA3D0E74479E572345C743A4EA6228025F2F11D59(L_24, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if ((((int32_t)L_23) < ((int32_t)L_25)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:82>
|
|
CallbackArray_1_t270AB3EEC7FF7B8E211305E1BC7311F2177FCBB2* L_26 = ___0_callbacks;
|
|
CallbackArray_1_UnlockForChanges_m4AEBD5F8C255437F3023C3F9B5A3FA52EDC100C2(L_26, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:84>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 26751
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegateHelpers_InvokeCallbacksSafe_TisRuntimeObject_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m0482D403BD4EC5379F05942A16183BDE1486F041_gshared (CallbackArray_1_t728037423B0E59AED45A54BD4669276E085A3A43* ___0_callbacks, RuntimeObject* ___1_argument1, int32_t ___2_argument2, ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___3_marker, String_t* ___4_callbackName, RuntimeObject* ___5_context, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
int32_t V_0 = 0;
|
|
Exception_t* V_1 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:63>
|
|
CallbackArray_1_t728037423B0E59AED45A54BD4669276E085A3A43* L_0 = ___0_callbacks;
|
|
int32_t L_1;
|
|
L_1 = CallbackArray_1_get_length_m0C22FF58F04966DC2857F29B2D84FBB733D1CE3A(L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if (L_1)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:64>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:66>
|
|
CallbackArray_1_t728037423B0E59AED45A54BD4669276E085A3A43* L_2 = ___0_callbacks;
|
|
CallbackArray_1_LockForChanges_m6D61BA7651AFC0C633B57D76077F241D020EED86(L_2, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:67>
|
|
V_0 = 0;
|
|
goto IL_0076;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
}
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:71>
|
|
CallbackArray_1_t728037423B0E59AED45A54BD4669276E085A3A43* L_3 = ___0_callbacks;
|
|
int32_t L_4 = V_0;
|
|
Action_2_t9C4E97D0565650F0AEF7C72077EB8A0F9326E40B* L_5;
|
|
L_5 = CallbackArray_1_get_Item_mB7124FA022E39C7EEB5D2D063CB07D921D7CB482(L_3, L_4, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
RuntimeObject* L_6 = ___1_argument1;
|
|
int32_t L_7 = ___2_argument2;
|
|
NullCheck(L_5);
|
|
Action_2_Invoke_m3BFB5987F7235AEF25980B76D635DBD5B56B0F7A_inline(L_5, L_6, L_7, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:72>
|
|
goto IL_0072;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
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_0024;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0024:
|
|
{
|
|
{
|
|
Exception_t* L_8 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:73>
|
|
V_1 = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:75>
|
|
Exception_t* L_9 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogException_mAB3F4DC7297ED8FBB49DAA718B70E59A6B0171B0(L_9, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:76>
|
|
RuntimeObject* L_10 = ___5_context;
|
|
if (!L_10)
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:77>
|
|
Exception_t* L_11 = V_1;
|
|
NullCheck(L_11);
|
|
Type_t* L_12;
|
|
L_12 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_11, NULL);
|
|
NullCheck((MemberInfo_t*)L_12);
|
|
String_t* L_13;
|
|
L_13 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_12);
|
|
String_t* L_14 = ___4_callbackName;
|
|
RuntimeObject* L_15 = ___5_context;
|
|
String_t* L_16;
|
|
L_16 = String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral278942CDEE22E9328A00EB31BC7DEC0BB8D328F1)), (RuntimeObject*)L_13, (RuntimeObject*)L_14, L_15, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_16, NULL);
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:79>
|
|
Exception_t* L_17 = V_1;
|
|
NullCheck(L_17);
|
|
Type_t* L_18;
|
|
L_18 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_17, NULL);
|
|
NullCheck((MemberInfo_t*)L_18);
|
|
String_t* L_19;
|
|
L_19 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_18);
|
|
String_t* L_20 = ___4_callbackName;
|
|
String_t* L_21;
|
|
L_21 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral29E9D8EEDD40E3ADE1579882DA345730D66B63B5)), L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral77A73EBDA78185D665A8799738A9D6885E237CAD)), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_21, NULL);
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:80>
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:67>
|
|
int32_t L_22 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:67>
|
|
int32_t L_23 = V_0;
|
|
CallbackArray_1_t728037423B0E59AED45A54BD4669276E085A3A43* L_24 = ___0_callbacks;
|
|
int32_t L_25;
|
|
L_25 = CallbackArray_1_get_length_m0C22FF58F04966DC2857F29B2D84FBB733D1CE3A(L_24, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if ((((int32_t)L_23) < ((int32_t)L_25)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:82>
|
|
CallbackArray_1_t728037423B0E59AED45A54BD4669276E085A3A43* L_26 = ___0_callbacks;
|
|
CallbackArray_1_UnlockForChanges_m4CE1FC885A99B0ECD337D1B2FD252838444E6C55(L_26, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:84>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 26751
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegateHelpers_InvokeCallbacksSafe_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m7FB2A8C73D5DA470D3AE1A70024C8C3FD61C4532_gshared (CallbackArray_1_tD603F6092E40EF5866778E31C3A05B7F9BC49B62* ___0_callbacks, Il2CppFullySharedGenericAny ___1_argument1, Il2CppFullySharedGenericAny ___2_argument2, ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___3_marker, String_t* ___4_callbackName, RuntimeObject* ___5_context, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_TValue1_t388E049AE3630C575AA3B48E3918231EFE1A44BD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_TValue2_t44BD60E0B83507FFA5F51501E5C0A8B56A871AA8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TValue1_t388E049AE3630C575AA3B48E3918231EFE1A44BD);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_TValue2_t44BD60E0B83507FFA5F51501E5C0A8B56A871AA8);
|
|
int32_t V_0 = 0;
|
|
Exception_t* V_1 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:63>
|
|
CallbackArray_1_tD603F6092E40EF5866778E31C3A05B7F9BC49B62* L_0 = ___0_callbacks;
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (CallbackArray_1_tD603F6092E40EF5866778E31C3A05B7F9BC49B62*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if (L_1)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:64>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:66>
|
|
CallbackArray_1_tD603F6092E40EF5866778E31C3A05B7F9BC49B62* L_2 = ___0_callbacks;
|
|
(( void (*) (CallbackArray_1_tD603F6092E40EF5866778E31C3A05B7F9BC49B62*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_2, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:67>
|
|
V_0 = 0;
|
|
goto IL_0076;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
}
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:71>
|
|
CallbackArray_1_tD603F6092E40EF5866778E31C3A05B7F9BC49B62* L_3 = ___0_callbacks;
|
|
int32_t L_4 = V_0;
|
|
Action_2_t1D42C7D8DCD2DEB7C556FB3783F0EDAFF694E5E8* L_5;
|
|
L_5 = (( Action_2_t1D42C7D8DCD2DEB7C556FB3783F0EDAFF694E5E8* (*) (CallbackArray_1_tD603F6092E40EF5866778E31C3A05B7F9BC49B62*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(L_3, L_4, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___1_argument1 : &___1_argument1), SizeOf_TValue1_t388E049AE3630C575AA3B48E3918231EFE1A44BD);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___2_argument2 : &___2_argument2), SizeOf_TValue2_t44BD60E0B83507FFA5F51501E5C0A8B56A871AA8);
|
|
NullCheck(L_5);
|
|
InvokerActionInvoker2< Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)), il2cpp_rgctx_method(method->rgctx_data, 8), L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_7: *(void**)L_7));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:72>
|
|
goto IL_0072;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
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_0024;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0024:
|
|
{
|
|
{
|
|
Exception_t* L_8 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:73>
|
|
V_1 = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:75>
|
|
Exception_t* L_9 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogException_mAB3F4DC7297ED8FBB49DAA718B70E59A6B0171B0(L_9, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:76>
|
|
RuntimeObject* L_10 = ___5_context;
|
|
if (!L_10)
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:77>
|
|
Exception_t* L_11 = V_1;
|
|
NullCheck(L_11);
|
|
Type_t* L_12;
|
|
L_12 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_11, NULL);
|
|
NullCheck((MemberInfo_t*)L_12);
|
|
String_t* L_13;
|
|
L_13 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_12);
|
|
String_t* L_14 = ___4_callbackName;
|
|
RuntimeObject* L_15 = ___5_context;
|
|
String_t* L_16;
|
|
L_16 = String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral278942CDEE22E9328A00EB31BC7DEC0BB8D328F1)), (RuntimeObject*)L_13, (RuntimeObject*)L_14, L_15, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_16, NULL);
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:79>
|
|
Exception_t* L_17 = V_1;
|
|
NullCheck(L_17);
|
|
Type_t* L_18;
|
|
L_18 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_17, NULL);
|
|
NullCheck((MemberInfo_t*)L_18);
|
|
String_t* L_19;
|
|
L_19 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_18);
|
|
String_t* L_20 = ___4_callbackName;
|
|
String_t* L_21;
|
|
L_21 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral29E9D8EEDD40E3ADE1579882DA345730D66B63B5)), L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral77A73EBDA78185D665A8799738A9D6885E237CAD)), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_21, NULL);
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:80>
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:67>
|
|
int32_t L_22 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:67>
|
|
int32_t L_23 = V_0;
|
|
CallbackArray_1_tD603F6092E40EF5866778E31C3A05B7F9BC49B62* L_24 = ___0_callbacks;
|
|
int32_t L_25;
|
|
L_25 = (( int32_t (*) (CallbackArray_1_tD603F6092E40EF5866778E31C3A05B7F9BC49B62*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_24, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if ((((int32_t)L_23) < ((int32_t)L_25)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:82>
|
|
CallbackArray_1_tD603F6092E40EF5866778E31C3A05B7F9BC49B62* L_26 = ___0_callbacks;
|
|
(( void (*) (CallbackArray_1_tD603F6092E40EF5866778E31C3A05B7F9BC49B62*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(L_26, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:84>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 26753
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegateHelpers_InvokeCallbacksSafe_AndInvokeReturnedActions_TisIl2CppFullySharedGenericAny_m4482B763C1E106C116D5E8E6080B6FB90CDC02BF_gshared (CallbackArray_1_t2E174CB79621C0FE4D9B251399BF80124E7FA05F* ___0_callbacks, Il2CppFullySharedGenericAny ___1_argument, String_t* ___2_callbackName, RuntimeObject* ___3_context, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_TValue_t624550D5BBC4BFBC1FE0B716300A80FB37BBF012 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TValue_t624550D5BBC4BFBC1FE0B716300A80FB37BBF012);
|
|
int32_t V_0 = 0;
|
|
Exception_t* V_1 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B6_0 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B5_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:130>
|
|
CallbackArray_1_t2E174CB79621C0FE4D9B251399BF80124E7FA05F* L_0 = ___0_callbacks;
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (CallbackArray_1_t2E174CB79621C0FE4D9B251399BF80124E7FA05F*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if (L_1)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:131>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:134>
|
|
CallbackArray_1_t2E174CB79621C0FE4D9B251399BF80124E7FA05F* L_2 = ___0_callbacks;
|
|
(( void (*) (CallbackArray_1_t2E174CB79621C0FE4D9B251399BF80124E7FA05F*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_2, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:135>
|
|
V_0 = 0;
|
|
goto IL_007c;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
}
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:139>
|
|
CallbackArray_1_t2E174CB79621C0FE4D9B251399BF80124E7FA05F* L_3 = ___0_callbacks;
|
|
int32_t L_4 = V_0;
|
|
Func_2_t51E0796D1DBB8E902BF230CE88C097AAC81A799E* L_5;
|
|
L_5 = (( Func_2_t51E0796D1DBB8E902BF230CE88C097AAC81A799E* (*) (CallbackArray_1_t2E174CB79621C0FE4D9B251399BF80124E7FA05F*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(L_3, L_4, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___1_argument : &___1_argument), SizeOf_TValue_t624550D5BBC4BFBC1FE0B716300A80FB37BBF012);
|
|
NullCheck(L_5);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_7;
|
|
L_7 = InvokerFuncInvoker1< Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_6: *(void**)L_6));
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_8 = L_7;
|
|
if (L_8)
|
|
{
|
|
G_B6_0 = L_8;
|
|
goto IL_0027_1;
|
|
}
|
|
G_B5_0 = L_8;
|
|
}
|
|
{
|
|
goto IL_002c_1;
|
|
}
|
|
|
|
IL_0027_1:
|
|
{
|
|
NullCheck(G_B6_0);
|
|
Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(G_B6_0, NULL);
|
|
}
|
|
|
|
IL_002c_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:140>
|
|
goto IL_0078;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
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_002e;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_002e:
|
|
{
|
|
{
|
|
Exception_t* L_9 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:141>
|
|
V_1 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:143>
|
|
Exception_t* L_10 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogException_mAB3F4DC7297ED8FBB49DAA718B70E59A6B0171B0(L_10, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:144>
|
|
RuntimeObject* L_11 = ___3_context;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:145>
|
|
Exception_t* L_12 = V_1;
|
|
NullCheck(L_12);
|
|
Type_t* L_13;
|
|
L_13 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_12, NULL);
|
|
NullCheck((MemberInfo_t*)L_13);
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_13);
|
|
String_t* L_15 = ___2_callbackName;
|
|
RuntimeObject* L_16 = ___3_context;
|
|
String_t* L_17;
|
|
L_17 = String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral278942CDEE22E9328A00EB31BC7DEC0BB8D328F1)), (RuntimeObject*)L_14, (RuntimeObject*)L_15, L_16, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_17, NULL);
|
|
goto IL_0076;
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:147>
|
|
Exception_t* L_18 = V_1;
|
|
NullCheck(L_18);
|
|
Type_t* L_19;
|
|
L_19 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_18, NULL);
|
|
NullCheck((MemberInfo_t*)L_19);
|
|
String_t* L_20;
|
|
L_20 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_19);
|
|
String_t* L_21 = ___2_callbackName;
|
|
String_t* L_22;
|
|
L_22 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral29E9D8EEDD40E3ADE1579882DA345730D66B63B5)), L_21, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral77A73EBDA78185D665A8799738A9D6885E237CAD)), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_22, NULL);
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:148>
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0078;
|
|
}
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:135>
|
|
int32_t L_23 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_23, 1));
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:135>
|
|
int32_t L_24 = V_0;
|
|
CallbackArray_1_t2E174CB79621C0FE4D9B251399BF80124E7FA05F* L_25 = ___0_callbacks;
|
|
int32_t L_26;
|
|
L_26 = (( int32_t (*) (CallbackArray_1_t2E174CB79621C0FE4D9B251399BF80124E7FA05F*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_25, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if ((((int32_t)L_24) < ((int32_t)L_26)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:150>
|
|
CallbackArray_1_t2E174CB79621C0FE4D9B251399BF80124E7FA05F* L_27 = ___0_callbacks;
|
|
(( void (*) (CallbackArray_1_t2E174CB79621C0FE4D9B251399BF80124E7FA05F*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)))(L_27, il2cpp_rgctx_method(method->rgctx_data, 8));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:152>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 26754
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DelegateHelpers_InvokeCallbacksSafe_AnyCallbackReturnsObject_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m695CA8D2CD111D355AAD672C09103F197A855B5D_gshared (CallbackArray_1_t1DE66A9CA012FC33E24057D6F82BD8DF1FD85D36* ___0_callbacks, Il2CppFullySharedGenericAny ___1_argument, String_t* ___2_callbackName, RuntimeObject* ___3_context, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
const uint32_t SizeOf_TValue_t00718B1CAE89F7B8D8BD30EA16CACB51472C742F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TValue_t00718B1CAE89F7B8D8BD30EA16CACB51472C742F);
|
|
const uint32_t SizeOf_TReturn_tDDBA78AB6A221D1C733F6CC08C5A9EA45913C645 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_TReturn_tDDBA78AB6A221D1C733F6CC08C5A9EA45913C645);
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
Exception_t* V_2 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:164>
|
|
CallbackArray_1_t1DE66A9CA012FC33E24057D6F82BD8DF1FD85D36* L_0 = ___0_callbacks;
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (CallbackArray_1_t1DE66A9CA012FC33E24057D6F82BD8DF1FD85D36*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if (L_1)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:165>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:168>
|
|
CallbackArray_1_t1DE66A9CA012FC33E24057D6F82BD8DF1FD85D36* L_2 = ___0_callbacks;
|
|
(( void (*) (CallbackArray_1_t1DE66A9CA012FC33E24057D6F82BD8DF1FD85D36*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_2, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:169>
|
|
V_0 = 0;
|
|
goto IL_0083;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
}
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:173>
|
|
CallbackArray_1_t1DE66A9CA012FC33E24057D6F82BD8DF1FD85D36* L_3 = ___0_callbacks;
|
|
int32_t L_4 = V_0;
|
|
Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0* L_5;
|
|
L_5 = (( Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0* (*) (CallbackArray_1_t1DE66A9CA012FC33E24057D6F82BD8DF1FD85D36*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(L_3, L_4, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___1_argument : &___1_argument), SizeOf_TValue_t00718B1CAE89F7B8D8BD30EA16CACB51472C742F);
|
|
NullCheck(L_5);
|
|
InvokerActionInvoker2< Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_6: *(void**)L_6), (Il2CppFullySharedGenericAny*)L_7);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:174>
|
|
bool L_8 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 8), L_7);
|
|
if (!L_8)
|
|
{
|
|
goto IL_0033_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:176>
|
|
CallbackArray_1_t1DE66A9CA012FC33E24057D6F82BD8DF1FD85D36* L_9 = ___0_callbacks;
|
|
(( void (*) (CallbackArray_1_t1DE66A9CA012FC33E24057D6F82BD8DF1FD85D36*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(L_9, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:178>
|
|
V_1 = (bool)1;
|
|
goto IL_0094;
|
|
}
|
|
|
|
IL_0033_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:180>
|
|
goto IL_007f;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
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_0035;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0035:
|
|
{
|
|
{
|
|
Exception_t* L_10 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:181>
|
|
V_2 = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:183>
|
|
Exception_t* L_11 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogException_mAB3F4DC7297ED8FBB49DAA718B70E59A6B0171B0(L_11, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:184>
|
|
RuntimeObject* L_12 = ___3_context;
|
|
if (!L_12)
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:185>
|
|
Exception_t* L_13 = V_2;
|
|
NullCheck(L_13);
|
|
Type_t* L_14;
|
|
L_14 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_13, NULL);
|
|
NullCheck((MemberInfo_t*)L_14);
|
|
String_t* L_15;
|
|
L_15 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_14);
|
|
String_t* L_16 = ___2_callbackName;
|
|
RuntimeObject* L_17 = ___3_context;
|
|
String_t* L_18;
|
|
L_18 = String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral278942CDEE22E9328A00EB31BC7DEC0BB8D328F1)), (RuntimeObject*)L_15, (RuntimeObject*)L_16, L_17, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_18, NULL);
|
|
goto IL_007d;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:187>
|
|
Exception_t* L_19 = V_2;
|
|
NullCheck(L_19);
|
|
Type_t* L_20;
|
|
L_20 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(L_19, NULL);
|
|
NullCheck((MemberInfo_t*)L_20);
|
|
String_t* L_21;
|
|
L_21 = VirtualFuncInvoker0< String_t* >::Invoke(7, (MemberInfo_t*)L_20);
|
|
String_t* L_22 = ___2_callbackName;
|
|
String_t* L_23;
|
|
L_23 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_21, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral29E9D8EEDD40E3ADE1579882DA345730D66B63B5)), L_22, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral77A73EBDA78185D665A8799738A9D6885E237CAD)), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_23, NULL);
|
|
}
|
|
|
|
IL_007d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:188>
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_007f;
|
|
}
|
|
}
|
|
|
|
IL_007f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:169>
|
|
int32_t L_24 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_24, 1));
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:169>
|
|
int32_t L_25 = V_0;
|
|
CallbackArray_1_t1DE66A9CA012FC33E24057D6F82BD8DF1FD85D36* L_26 = ___0_callbacks;
|
|
int32_t L_27;
|
|
L_27 = (( int32_t (*) (CallbackArray_1_t1DE66A9CA012FC33E24057D6F82BD8DF1FD85D36*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_26, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if ((((int32_t)L_25) < ((int32_t)L_27)))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:190>
|
|
CallbackArray_1_t1DE66A9CA012FC33E24057D6F82BD8DF1FD85D36* L_28 = ___0_callbacks;
|
|
(( void (*) (CallbackArray_1_t1DE66A9CA012FC33E24057D6F82BD8DF1FD85D36*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)))(L_28, il2cpp_rgctx_method(method->rgctx_data, 9));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:192>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/DelegateHelpers.cs:193>
|
|
bool L_29 = V_1;
|
|
return L_29;
|
|
}
|
|
}
|
|
// Method Definition Index: 10309
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D ConverterGroup_get_registry_m8995D579AD2B9B3F4C9668FDEAB0969422F5A754_inline (ConverterGroup_t2D7DEDAC22662EF5C020DE54231DC23CD0B5268A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TypeConverterRegistry_t0AE22A28B0B883638B53FE7494975F1FFEB8E11D L_0 = __this->___U3CregistryU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37834
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_inline (int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
int32_t L_1 = ___1_b;
|
|
if ((((int32_t)L_0) < ((int32_t)L_1)))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___1_b;
|
|
G_B3_0 = L_2;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
int32_t L_3 = ___0_a;
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
V_0 = G_B3_0;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 10266
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* BindingContext_get_dataSource_mF6CA0E5AED1F7DCA5619AEBA09F9F8F05D1CF504_inline (BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___m_DataSource;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 10265
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 BindingContext_get_dataSourcePath_m10A8B994ADD410BE92EAD7E0143C64C3A60B36BA_inline (BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 L_0 = __this->___m_DataSourcePath;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 10263
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* BindingContext_get_targetElement_m3E4F5FD912C4659E09308288F4F054457FB48691_inline (BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = __this->___m_TargetElement;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 10264
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E BindingContext_get_bindingId_m73A0DE3066DB8AE9C59B51128E1A164DAB4E7B80_inline (BindingContext_t778372EB4EF18CA90841DA499159C1A391D470E2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E L_0 = __this->___m_BindingId;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 13341
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventBase_set_elementTarget_m8BF8A4CD508F335210DB9FD2D034549A1EC084A8_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_value;
|
|
__this->___U3CelementTargetU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CelementTargetU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14225
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* DefaultEventSystem_get_focusedPanel_mC185C3CD2D2BBCBB46CABEE5873C883CD94BB3DF_inline (DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_0 = __this->___m_FocusedPanel;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37898
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_v, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_v;
|
|
float L_1 = L_0.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___0_v;
|
|
float L_3 = L_2.___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_4), L_1, L_3, NULL);
|
|
V_0 = L_4;
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
// Method Definition Index: 14848
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___m_IsFlat;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 601
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 72119
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int8_t TypeConverter_2_Invoke_m4DBD0B58BB7C3846B3A32B07F1771511AD3EB6FD_gshared_inline (TypeConverter_2_t370B4F69ADC2867DC21BE14FA947E12DD9BD0462* __this, double* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
typedef int8_t (*FunctionPointerType) (RuntimeObject*, double*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_value, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 35966
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int8_t* UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_mA9E079DFD763D84B8FA5593BDEAD16AAFC8BD546_gshared_inline (double* ___0_from, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
double* L_0 = ___0_from;
|
|
return (int8_t*)(L_0);
|
|
}
|
|
}
|
|
// Method Definition Index: 72327
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TypeTraits_1_get_IsValueType_mA4EC7C62F3D525F3046A4FECDE46919367925E98_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
bool L_0 = ((TypeTraits_1_t20DA141DBCABB7DD20C97D959B16E37210795E71_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___U3CIsValueTypeU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 72119
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float TypeConverter_2_Invoke_m24961A5FF38B2207EC3DED8E909E7F595C619E71_gshared_inline (TypeConverter_2_tBB893836100D5BA5086C7F2638C9D63D6FC61559* __this, double* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
typedef float (*FunctionPointerType) (RuntimeObject*, double*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_value, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 35966
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float* UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m78C79739929AAB266580F0DD602A59D776CE3467_gshared_inline (double* ___0_from, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
double* L_0 = ___0_from;
|
|
return (float*)(L_0);
|
|
}
|
|
}
|
|
// Method Definition Index: 72119
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint16_t TypeConverter_2_Invoke_mA6D015A5E76471F6A2D58F4E0C8AEC5058DCE134_gshared_inline (TypeConverter_2_tB736BA63BC9F9885972433F0B1D7232E2AAE0585* __this, double* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
typedef uint16_t (*FunctionPointerType) (RuntimeObject*, double*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_value, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 35966
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint16_t* UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisUInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_m1222A63B0F5D73BB7A0572CEE1D84313296D428C_gshared_inline (double* ___0_from, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
double* L_0 = ___0_from;
|
|
return (uint16_t*)(L_0);
|
|
}
|
|
}
|
|
// Method Definition Index: 72119
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t TypeConverter_2_Invoke_m20ADC0EA3465CE5CF733DD4244D30F2461F6BB2F_gshared_inline (TypeConverter_2_tA07ADAC5ACD7A76F41C95586D89B438C04D44409* __this, double* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, double*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_value, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 35966
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t* UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mCB835683A3E41B945C251D37F399CC838E245030_gshared_inline (double* ___0_from, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
double* L_0 = ___0_from;
|
|
return (uint32_t*)(L_0);
|
|
}
|
|
}
|
|
// Method Definition Index: 72119
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t TypeConverter_2_Invoke_mBF92648B15FEA94F0572738B7E0E2A849216DE4A_gshared_inline (TypeConverter_2_t794BDD9B9C3A12BF490C7710C609706E72EDABCD* __this, double* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
typedef uint64_t (*FunctionPointerType) (RuntimeObject*, double*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_value, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 35966
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t* UnsafeUtility_As_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mF1C1F5513615654E580D9CAE0338257FD7BC609F_gshared_inline (double* ___0_from, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
double* L_0 = ___0_from;
|
|
return (uint64_t*)(L_0);
|
|
}
|
|
}
|
|
// Method Definition Index: 35960
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 UnsafeUtility_ReadArrayElement_TisHash128_t93367F504B687578F893CDBCD13FB95AC8A87A40_m58AF406949C6230522BA3871914D69034FED4CFD_gshared_inline (void* ___0_source, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
void* L_0 = ___0_source;
|
|
int32_t L_1 = ___1_index;
|
|
uint32_t L_2 = sizeof(Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40);
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_3 = (*(Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40*)((void*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)((int64_t)il2cpp_codegen_multiply(((int64_t)L_1), ((int64_t)((int32_t)L_2))))))));
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 35962
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnsafeUtility_WriteArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m0DD1CC90B2F1EF5041F2F4E1DABB58224229F0D7_gshared_inline (void* ___0_destination, int32_t ___1_index, int32_t ___2_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
void* L_0 = ___0_destination;
|
|
int32_t L_1 = ___1_index;
|
|
uint32_t L_2 = sizeof(int32_t);
|
|
int32_t L_3 = ___2_value;
|
|
*(int32_t*)((void*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)((int64_t)il2cpp_codegen_multiply(((int64_t)L_1), ((int64_t)((int32_t)L_2))))))) = L_3;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 35960
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_ReadArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFBA66C06ECEB0A2BC1AAE634B6E6BB436F957084_gshared_inline (void* ___0_source, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
void* L_0 = ___0_source;
|
|
int32_t L_1 = ___1_index;
|
|
uint32_t L_2 = sizeof(int32_t);
|
|
int32_t L_3 = (*(int32_t*)((void*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)((int64_t)il2cpp_codegen_multiply(((int64_t)L_1), ((int64_t)((int32_t)L_2))))))));
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 35960
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t UnsafeUtility_ReadArrayElement_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mDA80BAFF55EA77496672B3B5B3804B55274B7E95_gshared_inline (void* ___0_source, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
void* L_0 = ___0_source;
|
|
int32_t L_1 = ___1_index;
|
|
uint32_t L_2 = sizeof(uint32_t);
|
|
uint32_t L_3 = (*(uint32_t*)((void*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)((int64_t)il2cpp_codegen_multiply(((int64_t)L_1), ((int64_t)((int32_t)L_2))))))));
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 35962
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnsafeUtility_WriteArrayElement_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m839FEB3192BEC0090FBA73A11E371E1A01C13ADF_gshared_inline (void* ___0_destination, int32_t ___1_index, uint32_t ___2_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
void* L_0 = ___0_destination;
|
|
int32_t L_1 = ___1_index;
|
|
uint32_t L_2 = sizeof(uint32_t);
|
|
uint32_t L_3 = ___2_value;
|
|
*(uint32_t*)((void*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)((int64_t)il2cpp_codegen_multiply(((int64_t)L_1), ((int64_t)((int32_t)L_2))))))) = L_3;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 35960
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t UnsafeUtility_ReadArrayElement_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m8F5B829A65BCE22A8B2364D1C303A1E2876A3898_gshared_inline (void* ___0_source, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
void* L_0 = ___0_source;
|
|
int32_t L_1 = ___1_index;
|
|
uint32_t L_2 = sizeof(uint64_t);
|
|
uint64_t L_3 = (*(uint64_t*)((void*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)((int64_t)il2cpp_codegen_multiply(((int64_t)L_1), ((int64_t)((int32_t)L_2))))))));
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 35962
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnsafeUtility_WriteArrayElement_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mC1C144C4AC4D9B3B2C30F06F88CB6E6AB475125E_gshared_inline (void* ___0_destination, int32_t ___1_index, uint64_t ___2_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
void* L_0 = ___0_destination;
|
|
int32_t L_1 = ___1_index;
|
|
uint32_t L_2 = sizeof(uint64_t);
|
|
uint64_t L_3 = ___2_value;
|
|
*(uint64_t*)((void*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)((int64_t)il2cpp_codegen_multiply(((int64_t)L_1), ((int64_t)((int32_t)L_2))))))) = L_3;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 9342
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->____current;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 621
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 621
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_m17C1551BBE6C31FD367700C8DFA6A388374E7340_gshared_inline (Func_2_t76D5132C86AC7B01299890F023D78FAE8F9D1A64* __this, ValueTuple_2_t84554798B99CE8D7914B5585AE53CEE950F43CE6 ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, ValueTuple_2_t84554798B99CE8D7914B5585AE53CEE950F43CE6, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 9282
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 621
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_mF9EF57C31660DC2A8E9B80FE393EEA410E60B360_gshared_inline (Func_2_t6F0DEE2A7ADE56265ED0100E7DF77076E5FDB85C* __this, ValueTuple_2_t9270F8474E554C7C106A7F7DE4F0D15C12802EAB ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, ValueTuple_2_t9270F8474E554C7C106A7F7DE4F0D15C12802EAB, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 621
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_m6F04759879DC781CA2B13942272986564257719F_gshared_inline (Func_2_t9E220F4AC78324D7D0D25DA747A006808EB3FCCD* __this, ValueTuple_3_t221FA8EA322AE1156326997DEA4F6D24BF1E5243 ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, ValueTuple_3_t221FA8EA322AE1156326997DEA4F6D24BF1E5243, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 621
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_m2F064BFB9502B2762574DC05F9D41A46C1FB90C8_gshared_inline (Func_2_tD7D2844A071B5C6280BB6380EFE3896CC538B77E* __this, ValueTuple_3_t90CF2FEF2703459E904C84694EEECB64D3F220C1 ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, ValueTuple_3_t90CF2FEF2703459E904C84694EEECB64D3F220C1, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 621
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_mE1A0781D1853CA8540B156BE1F43769FCCFD5318_gshared_inline (Func_2_tC50964E0E1320D21A73671534F60C1C2013148E5* __this, ValueTuple_3_t1214F2A1CCE3F3DE3E2DA1E6EC57E2DFEE17E613 ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, ValueTuple_3_t1214F2A1CCE3F3DE3E2DA1E6EC57E2DFEE17E613, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 621
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_m6953F3816EE803F64B21977608FFA48D59AB9272_gshared_inline (Func_2_tB8444326CD91502B291E0988F04448A82D0F6552* __this, int32_t ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, int32_t, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 623
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_3_Invoke_m36A4590C67B181D92E947D2ACB6735DCB0CD6674_gshared_inline (Func_3_t799252D9458F2AB207641E15DE8B7454B75CEA8F* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_t0830D9C281DA2A9A8B1564AB60C647F6DA504260 ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, ValueTuple_3_t0830D9C281DA2A9A8B1564AB60C647F6DA504260, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 13883
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventBase_1_get_pressedButtons_mD44593EB9F5A5992961586234A01D44B871A1F64_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CpressedButtonsU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 623
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_3_Invoke_mD09FD3F0808212D95417C357CC46040755C85E57_gshared_inline (Func_3_tE46795E42BBCE12AACFA5423D869FC080617614A* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_t5955F42FF36506750DBDF6E15B988AC705ACCEC6 ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, ValueTuple_3_t5955F42FF36506750DBDF6E15B988AC705ACCEC6, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 623
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_3_Invoke_m2BF5DCF45D3EF48839CD557A9FF7D650F1071E07_gshared_inline (Func_3_t9926DBF6281A1654219C4F2EBA82ECA603217AB3* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_tAF08A8B8A8BDFE5BD5BB3273D7077FC68E7DE439 ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, ValueTuple_3_tAF08A8B8A8BDFE5BD5BB3273D7077FC68E7DE439, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 623
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_3_Invoke_m271D202F8C2B215CAFA07750D2DF9D16122C7CF7_gshared_inline (Func_3_tA9B5A88DCB3DB2DE61C94876A083D9588C92C1F4* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_tC8BBB30E9E4977D3D5D3D770C29BC7D26F8D7340 ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, ValueTuple_3_tC8BBB30E9E4977D3D5D3D770C29BC7D26F8D7340, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 623
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_3_Invoke_mA041125511038BB3284216ADC8F3E4893EB259AF_gshared_inline (Func_3_tAFE936B287B527454DD2220949C128C7BDA3400E* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_tD815A2B59927FD0A0A8BC994BDDF93E1997053C4 ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, ValueTuple_3_tD815A2B59927FD0A0A8BC994BDDF93E1997053C4, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 623
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_3_Invoke_m722F564B38C81B33BC14F03C32E693EBBE2457C4_gshared_inline (Func_3_tA93E7480FC9A114D507BE035FA9F69D9BB56F914* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_t2C125774ADD00599458B6333E72F7533D3866597 ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, ValueTuple_3_t2C125774ADD00599458B6333E72F7533D3866597, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 623
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_3_Invoke_mF89F78BAB778FDA16A1DD3C8DF8C35343E0ACB96_gshared_inline (Func_3_t8BC9FC348AB48122C5017A7102263AE1045C5819* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_arg1, ValueTuple_3_t7710F86A623C8F578E76B4EAC47B05AA6EFE7B64 ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, ValueTuple_3_t7710F86A623C8F578E76B4EAC47B05AA6EFE7B64, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 603
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m30D56EDF2807EF309EEF182BA63A3F0EF0B08A15_gshared_inline (Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 603
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 603
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mC9D2864A52CF07F93C51935D9DCDF73E96FED543_gshared_inline (Action_1_tEB0353AA1A112B6F2D921B58DCC9D9D4C0498E6E* __this, CallbackContext_tB251EE41F509C6E8A6B05EC97C029A45DF4F5FA8 ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, CallbackContext_tB251EE41F509C6E8A6B05EC97C029A45DF4F5FA8, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 605
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m5CA7C522C42D2A1120BA23ED9913909EF92762C5_gshared_inline (Action_2_tD987B97B18D27B9920365359C46BC12702AD4F7D* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0, RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 605
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m3AE16EB1F624AEBB87FA2FC37FC6D58694C23434_gshared_inline (Action_2_t51C134DC0CD7F5ED5E83EE70AD1FE0FDFF6DDCCF* __this, RuntimeObject* ___0_arg1, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 605
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m3BFB5987F7235AEF25980B76D635DBD5B56B0F7A_gshared_inline (Action_2_t9C4E97D0565650F0AEF7C72077EB8A0F9326E40B* __this, RuntimeObject* ___0_arg1, int32_t ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, int32_t, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 37870
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___0_x, float ___1_y, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_x;
|
|
__this->___x = L_0;
|
|
float L_1 = ___1_y;
|
|
__this->___y = L_1;
|
|
return;
|
|
}
|
|
}
|