blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
ee4d1fa2840735987f77c6683e55a9c82523d4f6
60e85864b44c38a9ed1444a50393eac608994c52
/Tetris/Punkt.cpp
eeb26221bc36bf48eb09b03eccfa467d397354b5
[]
no_license
d-mateusz/Tetris
6e2bdbfe32403774db916bcbe0fba8bbf5ff623f
ed60b13a934763cf82997a3b9fcf17b33704b45d
refs/heads/master
2020-03-11T20:52:39.352188
2018-04-19T19:33:58
2018-04-19T19:33:58
130,248,846
0
0
null
null
null
null
UTF-8
C++
false
false
1,761
cpp
#include "Punkt.h" #include<iostream> Punkt::Punkt() { for (int i = 0; i < M; i++) for (int j = 0; j < N; j++) pole[i][j] = 0; } Punkt::~Punkt() { } bool Punkt::sprawdz() { for (int i = 0; i < 4; i++) if (a[i].x < 0 || a[i].x >= N || a[i].y >= M) return 0; else if (pole[a[i].y][a[i].x]) return 0; return 1; } void Punkt::przesun(int dodaj_x) { for (int i = 0; i < 4; i++) { b[i] = a[i]; a[i].x += dodaj_x; } if (!sprawdz()) for (int i = 0; i < 4; i++) a[i] = b[i]; } void Punkt::obrot() { int x1 = a[1].x; int y1 = a[1].y; for (int i = 0; i < 4; i++) { int x = a[i].y - y1; int y = a[i].x - x1; a[i].x = x1 - x; a[i].y = y1 + y; } if (!sprawdz()) for (int i = 0; i < 4; i++) a[i] = b[i]; } int Punkt::postaw(int kolorNumer) { for (int i = 0; i < 4; i++) { b[i] = a[i]; a[i].y += 1; } if (!sprawdz()) { for (int i = 0; i < 4; i++) pole[b[i].y][b[i].x] = kolorNumer; return 1; } return 0; } int Punkt::losuj(int kolorNumer) { if (!sprawdz()) { kolorNumer = 1 + rand() % 7; int n = rand() % 7; for (int i = 0; i < 4; i++) { a[i].x = figury[n][i] % 2; a[i].y = figury[n][i] / 2; } } return kolorNumer; } void Punkt::sprawdz_linie(int & wynik) { int k = M - 1; for (int i = M - 1; i > 0; i--) { int count = 0; for (int j = 0; j < N; j++) { if (pole[i][j]) count++; pole[k][j] = pole[i][j]; } if (count < N) k--; else wynik++; } } bool Punkt::koniec_gry() { for (int i = 0; i < 4; i++) if (a[i].y <= 1 && pole[a[i].y][a[i].x]) { return 0; } return 1; } int Punkt::sprawdz_pole(int i, int j) { return pole[i][j]; } int Punkt::sprawdz_punkt_x(int i) { return a[i].x; } int Punkt::sprawdz_punkt_y(int i) { return a[i].y; }
[ "jarek@onet.pl" ]
jarek@onet.pl
0f6d12bfd494c2176e7216ab7c69e1f01bbc534c
cbec1da2af510c963a6344cef190db773f03b7e4
/src/camera/Pinhole.cpp
9d29c8718ba3e9c167c7055463b6bbbae9d7b580
[]
no_license
qinzhiqiang163/RayTraceGroundUp
7bdd5a74c91ab27a90da1a8106e5a041b7c130cd
0a91a7752d4e804c633c13453eb7f49b834d8253
refs/heads/master
2020-04-04T18:41:03.252692
2018-08-05T13:50:07
2018-08-05T13:50:07
156,173,817
1
0
null
2018-11-05T06:57:36
2018-11-05T06:57:35
null
UTF-8
C++
false
false
2,751
cpp
// This file contains the definition of the Pinhole class #include "Constants.h" #include "Point3D.h" #include "Vector3D.h" #include "Pinhole.h" #include <math.h> #include <iostream> #include <fstream> using namespace std; // ----------------------------------------------------------------------------- default constructor Pinhole::Pinhole(void) : Camera(), d(500), zoom(1.0) {} // ----------------------------------------------------------------------------- copy constructor Pinhole::Pinhole(const Pinhole& c) : Camera(c), d(c.d), zoom(c.zoom) {} // ----------------------------------------------------------------------------- clone Camera* Pinhole::clone(void) const { return (new Pinhole(*this)); } // ----------------------------------------------------------------------------- assignment operator Pinhole& Pinhole::operator= (const Pinhole& rhs) { if (this == &rhs) return (*this); Camera::operator= (rhs); d = rhs.d; zoom = rhs.zoom; return (*this); } // ----------------------------------------------------------------------------- destructor Pinhole::~Pinhole(void) {} // ----------------------------------------------------------------------------- get_direction Vector3D Pinhole::get_direction(const Point2D& p) const { Vector3D dir = p.x * u + p.y * v - d * w; dir.normalize(); return(dir); } // ----------------------------------------------------------------------------- render_scene void Pinhole::render_scene(const World& w) { RGBColor L; ViewPlane vp(w.vp); Ray ray; int depth = 0; Point2D pp; // sample point on a pixel int n = (int)sqrt((float)vp.num_samples); vp.s /= zoom; ray.o = eye; ofstream outfile( "/Users/libingzeng/CG/RayTraceGroundUp/results/Scenes.txt", ios_base::out); outfile << "P3\n" << vp.hres << " " << vp.vres << "\n255\n"; std::cout << "P3\n" << vp.hres << " " << vp.vres << "\n255\n"; for (int r = 0; r < vp.vres; r++) // up for (int c = 0; c < vp.hres; c++) { // across L = black; for (int p = 0; p < n; p++) // up pixel for (int q = 0; q < n; q++) { // across pixel pp.x = vp.s * (c - 0.5 * vp.hres + (q + 0.5) / n); pp.y = -vp.s * (r - 0.5 * vp.vres + (p + 0.5) / n); ray.d = get_direction(pp); L += w.tracer_ptr->trace_ray(ray, depth); } L /= vp.num_samples; L *= exposure_time; L = w.max_to_one(L); int ir = int (255.99*L.r); int ig = int (255.99*L.g); int ib = int (255.99*L.b); outfile << ir << " " << ig << " " << ib << "\n"; std::cout << ir << " " << ig << " " << ib << "\n"; } }
[ "libingzeng123@gmail.com" ]
libingzeng123@gmail.com
3daf734d4a52c789d21f6a8a9b63078947262b20
43c707501fcfca85994d192a67bd9a0579c18704
/goodThings/R3gH4ck/DOS/R3gH4ck.cpp
5e8e83ef87c3485c380e3a4948fea05d0b2f2e82
[]
no_license
Urfoex/my-old-stuff
a6b6304e5a9052e63996a53f37d223dc06e1e596
e61a54107431d994831d082d453a721c204b04d5
refs/heads/master
2020-12-27T14:32:51.268552
2018-01-19T09:08:46
2018-01-19T09:08:46
237,937,031
0
0
null
null
null
null
ISO-8859-1
C++
false
false
32,492
cpp
//////////////////////////////////////////////////////////////////////// //********************************************************************// //********************************************************************// //** _____ _____ _____ _ _____ _____ **// //** | | | | | | | / | | | | / \ **// //** | | | | | | | / | | | | \ / **// //** |_____| ____| | |_____| / | |_____| __/ **// //** | \ | | ___ | | /___|__ | | | / **// //** | \ | | | | | | | | | / **// //** | \ | | | | | | | | | | / \ **// //** | \ _____| |_____| | | | |_____| | | \_____/ **// //** **// //** created 2004 by Manuel Bellersen Kakarott2003@yahoo.de **// //********************************************************************// //********************************************************************// //////////////////////////////////////////////////////////////////////// #include <iostream.h> #include <string.h> #include <fstream.h> #include <conio.h> void v_Komplet(); void v_Komplet() { } int main() { ofstream o_Reghack("R3gH4ck.reg"); //R3gH4ck.reg Datei anlegen char cFrage; int iJa=106; char cJa=iJa; char cText[300]; /////////////////////////////////// // Initialisierung von ä , ö , ü // /////////////////////////////////// int iUE=129; int iAE=132; int iOE=148; int iOOE=153; int iAAE=142; int iSZ=225; char OE; OE=iOOE; char sz; sz=iSZ; char ue; ue=iUE; char ae; ae=iAE; char Ae; Ae=iAAE; char oe; oe=iOE; ///////////////////////////////// // R3gH4ck-Eintrag in Registry // ///////////////////////////////// o_Reghack << "REGEDIT4" << endl << endl; o_Reghack << "[HKEY_CURRENT_USER\\Software\\R3gH4ck]" << endl ; o_Reghack << "\"Version\"=\"1.0\"" << endl ; o_Reghack << "\"Hersteller\"=\"Manuel Bellersen\"" << endl ; o_Reghack << "\"Datum\"=\"2004\"" << endl ; o_Reghack << "\"eMail\"=\"Kakarott2003@yahoo.de\"" << endl << endl ; ////////////////// // R3gH4ck-Bild // ////////////////// cout << "********************************************************************\n"; cout << "********************************************************************\n"; cout << "** _____ _____ _____ _ _____ _____ **\n"; cout << "** | | | | | | | / | | | | / \\ **\n"; cout << "** | | | | | | | / | | | | \\ / **\n"; cout << "** |_____| ____| | |_____| / | |_____| __/ **\n"; cout << "** | \\ | | ___ | | /___|__ | | | / **\n"; cout << "** | \\ | | | | | | | | | / **\n"; cout << "** | \\ | | | | | | | | | | / \\ **\n"; cout << "** | \\ _____| |_____| | | | |_____| | | \\_____/ **\n"; cout << "** **\n"; cout << "** created 2004 by Manuel Bellersen Kakarott2003@yahoo.de **\n"; cout << "********************************************************************\n"; cout << "********************************************************************\n"; cout << endl ; cout << "die Fragen beantworten mit\n"; cout << "(j)a -> an | (n)ein -> aus\n\n"; ////////////////////////////////////////// // Anfang der Registry-Einträge-Abfrage // ////////////////////////////////////////// //////////////////////////////////////////////////// // Registry EditierTools verbieten (auch regedit) // //////////////////////////////////////////////////// cout << "Registry EditierTools verbieten (auch regedit) : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"DisableRegistryTools\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"DisableRegistryTools\"=dword:0" << endl << endl; } ///////////////////////// // Suchen im Startmenü // ///////////////////////// cout << "\"Suchen\" im Startmen" << ue << " : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoFind\"=dword:0" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoFind\"=dword:1" << endl << endl; } ///////////////////////// // Ausführen im Startmenü // ///////////////////////// cout << "\"Ausf" << ue << "ren\" im Startmen" << ue << " : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoRun\"=dword:0" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoRun\"=dword:1" << endl << endl; } /////////////////////////////////// // Systemsteuerung im Startmenü // /////////////////////////////////// cout << "\"Systemsteuerung\" im Startmen" << ue << " : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoSetFolders\"=dword:0" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoSetFolders\"=dword:1" << endl << endl; } ///////////////////////////////////////////////////////////// // Taskleisteneinstellung in Systemsteuerung im Startmenü // ///////////////////////////////////////////////////////////// cout << "Taskleisteneinstellung in Systemsteuerung im Startmen" << ue << " : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoSetTaskbar\"=dword:0" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoSetTaskbar\"=dword:1" << endl << endl; } //////////////////////////// // Dokumente im Startmenü // //////////////////////////// cout << "\"Dokumente\" im Startmen" << ue << " : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoRecentDocsMenu\"=dword:0" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoRecentDocsMenu\"=dword:1" << endl << endl; } //////////////////////////////////////////////// // Dokumente im Startmenü bei Beenden löschen // //////////////////////////////////////////////// cout << "\"Dokumente\" im Startmen" << ue << " beim Beenden l" << oe << "schen : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"ClearRecentDocsOnExit\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"ClearRecentDocsOnExit\"=dword:0" << endl << endl; } ////////////////////////// // Beenden im Startmenü // ////////////////////////// cout << "\"Beenden\" im Startmen" << ue << " : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoClose\"=dword:0" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoClose\"=dword:1" << endl << endl; } /////////////////////////// // keine Systemsteuerung // /////////////////////////// cout << "keine Systemsteuerung : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NODispCPL\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NODispCPL\"=dword:0" << endl << endl; } /////////////////////////////////// // kein "Hintergrund" in Anzeige // /////////////////////////////////// cout << "kein \"Hintergrund\" in Anzeige : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoDispBackgroundPage\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoDispBackgroundPage\"=dword:0" << endl << endl; } ///////////////////////////////////////// // kein "Bildschirmschoner" in Anzeige // ///////////////////////////////////////// cout << "kein \"Bildschirmschoner\" in Anzeige : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoDispScrsavPage\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoDispScrsavPage\"=dword:0" << endl << endl; } /////////////////////////////////// // kein "Darstellung" in Anzeige // /////////////////////////////////// cout << "kein \"Darstellung\" in Anzeige : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoDispAppearancePage\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoDispAppearancePage\"=dword:0" << endl << endl; } /////////////////////////////////// // kein "Einstellung" in Anzeige // /////////////////////////////////// cout << "kein \"Einstellung\" in Anzeige : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoDispSettingsPage\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoDispSettingsPage\"=dword:0" << endl << endl; } ////////////////////////////////////////// // kein "Kennwörter" in Systemsteuerung // ////////////////////////////////////////// cout << "kein \"Kennw" << oe << "rter\" in Systemsteuerung : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoSecCPL\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoSecCPL\"=dword:0" << endl << endl; } //////////////////////////////////////// // kein "Kennwort ändern" in Kennwörter // //////////////////////////////////////// cout << "kein \"Kennwort " << ae << "ndern\" in Kennw" << oe << "rter : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoPwdPage\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoPwdPage\"=dword:0" << endl << endl; } ///////////////////////////////////////// // keine "Benutzerprofile" in Kennwörter // ///////////////////////////////////////// cout << "keine \"Benutzerprofile\" in Kennw" << oe << "rter : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoAdminPaqe\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoAdminPaqe\"=dword:0" << endl << endl; } ////////////////////////////////////// // kein "Benutzer" in Systemsteuerung // ////////////////////////////////////// cout << "kein \"Benutzer\" in Systemsteuerung : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoProfilePage\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoProfilePage\"=dword:0" << endl << endl; } //////////////////////////// // keine "Geräte" in System // //////////////////////////// cout << "keine \"Ger" << ae << "te\" in System : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoDevMgrPage\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoDevMgrPage\"=dword:0" << endl << endl; } ///////////////////////////////////// // keine Hardwareprofile in System // ///////////////////////////////////// cout << "keine \"Hardwareprofile\" in System : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoConfigPage\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoConfigPage\"=dword:0" << endl << endl; } ///////////////////////////////////// // kein Dateisystem in System // ///////////////////////////////////// cout << "kein \"Dateisystem\" in System : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoFileSysPage\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoFileSysPage\"=dword:0" << endl << endl; } //////////////////////////////////////// // kein virtueller Speicher in System // //////////////////////////////////////// cout << "kein \"virtueller Speicher\" in System : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoVirtMemPage\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System]" << endl; o_Reghack << "\"NoVirtMemPage\"=dword:0" << endl << endl; } ///////////////////////////////////////// // keine Zugriffssteuerung in Netzwerk // ///////////////////////////////////////// cout << "keine \"Zugriffssteuerung\" in Netzwerk : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Network]" << endl; o_Reghack << "\"NoNetSetupSecurityPage\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Network]" << endl; o_Reghack << "\"NoNetSetupSecurityPage\"=dword:0" << endl << endl; } ////////////////////////////////////// // kein Netzwerk in Systemsteuerung // ////////////////////////////////////// cout << "kein \"Netzwerk\" in Systemsteuerung : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Network]" << endl; o_Reghack << "\"NoNelSetup\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Network]" << endl; o_Reghack << "\"NoNelSetup\"=dword:0" << endl << endl; } ////////////////////////////////////// // keine Identifikation in Netzwerk // ////////////////////////////////////// cout << "kein \"Identifikation\" in Netzwerk : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Network]" << endl; o_Reghack << "\"NoNetSetupIDPage\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Network]" << endl; o_Reghack << "\"NoNetSetupIDPage\"=dword:0" << endl << endl; } ////////////////////////////////////// // keine Dateifreigabe in Netzwerk // ////////////////////////////////////// cout << "kein \"Dateifreingabe\" in Netzwerk : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Network]" << endl; o_Reghack << "\"NoFileSharingControl\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Network]" << endl; o_Reghack << "\"NoFileSharingControl\"=dword:0" << endl << endl; } ////////////////////////////////////// // keine Druckerfreigabe in Netzwerk // ////////////////////////////////////// cout << "kein \"Druckerfreingabe\" in Netzwerk : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Network]" << endl; o_Reghack << "\"NoPrintSharing\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Network]" << endl; o_Reghack << "\"NoPrintSharing\"=dword:0" << endl << endl; } //////////////////////// // keine MS-Dos Prompt // //////////////////////// cout << "kein MS-Dos Prompt : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\WinOldApp]" << endl; o_Reghack << "\"Disabled\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\WinOldApp]" << endl; o_Reghack << "\"Disabled\"=dword:0" << endl << endl; } //////////////////////// // keine MS-Dos Prompt // //////////////////////// cout << "kein MS-Dos Prompt : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\WinOldApp]" << endl; o_Reghack << "\"Disabled\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\WinOldApp]" << endl; o_Reghack << "\"Disabled\"=dword:0" << endl << endl; } ////////////////////////////// // keine Single-Mode MS-Dos // ////////////////////////////// cout << "kein Single-Mode MS-Dos : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\WinOldApp]" << endl; o_Reghack << "\"NoRealMode\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\WinOldApp]" << endl; o_Reghack << "\"NoRealMode\"=dword:0" << endl << endl; } //////////////////////////////////////// // Laufwerke im Arbeitsplatz anzeigen // //////////////////////////////////////// cout << "Laufwerke im Arbeitsplatz anzeigen : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoDrives\"=dword:0" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoDrives\"=dword:03ffffff" << endl << endl; } //////////////////////////////////////////////// // Netzwerklaufwerke auf dem Desktop anzeigen // //////////////////////////////////////////////// cout << "Netzwerklaufwerke auf dem Desktop anzeigen : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoNetHood\"=dword:0" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoNetHood\"=dword:1" << endl << endl; } /////////////////////////////////////// // Internet auf dem Desktop anzeigen // /////////////////////////////////////// cout << "Internet auf dem Desktop anzeigen : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"Nolnternetlcon\"=dword:0" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"Nolnternetlcon\"=dword:1" << endl << endl; } /////////////////////////////////// // Desktop speichern und sichern // /////////////////////////////////// cout << "Desktop speichern und sichern (keine " << Ae << "nderungen mehr m" << oe << "glichn) : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoSaveSettings\"=1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoSaveSettings\"=0" << endl << endl; } /////////////////////////// // Icons auf dem Desktop // /////////////////////////// cout << "Icons auf dem Desktop : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoDesktop\"=dword:0" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoDesktop\"=dword:1" << endl << endl; } /////////////////////////// // Explorer-Titel Ändern // /////////////////////////// cout << "Explorer-Titel " << Ae << "ndern : "; cin >> cFrage; if (cFrage==cJa) { cout << "neuen Titel eingeben (kein " << ae << " " << oe << " " << ue << " " << sz << " ) : "; cin.ignore(1,'\n'); cin.get(cText,299); o_Reghack << "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Internet Explorer\\Main]" << endl; o_Reghack << "\"Window Title\"=\"" << cText << "\"" << endl << endl; } else { o_Reghack << "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Internet Explorer\\Main]" << endl; o_Reghack << "\"Window Title\"=\"\"" << endl << endl; } ////////////////////////////////////// // Explorer geht nicht zu schließen // ////////////////////////////////////// cout << "Explorer geht nicht zu schlie" << sz << "en : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoRecentDocsMenu\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoRecentDocsMenu\"=dword:0" << endl << endl; } /////////////////////////////////////// // Explorer hat kein Rechtsklickmenü // /////////////////////////////////////// cout << "Explorer hat kein Rechtsklickmen" << ue << " : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoBrowserContextMenu\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoBrowserContextMenu\"=dword:0" << endl << endl; } /////////////////////////////////////////// // Explorer hat kein TOOL / Options Menü // /////////////////////////////////////////// cout << "Explorer hat kein Tool -> Optionsmen" << ue << " : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoBrowserOptions\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoBrowserOptions\"=dword:0" << endl << endl; } /////////////////////////////// // Explorer hat kein Save As // /////////////////////////////// cout << "Explorer hat kein Save As : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoBrowserSaveAs\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoBrowserSaveAs\"=dword:0" << endl << endl; } /////////////////////////////////// // Explorer hat keine Favorieten // /////////////////////////////////// cout << "Explorer hat keine Favorieten : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoFavorites\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoFavorites\"=dword:0" << endl << endl; } /////////////////////////////////// // Explorer hat kein Datei "Neu" // /////////////////////////////////// cout << "Explorer hat kein Datei -> NEU : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoFileNew\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoFileNew\"=dword:0" << endl << endl; } ////////////////////////////////////// // Explorer hat kein Datei "Öffnen" // ////////////////////////////////////// cout << "Explorer hat kein Datei ->" << OE << "ffnen : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoFileOpen\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoFileOpen\"=dword:0" << endl << endl; } ////////////////////////////// // Explorer hat kein Finden // ////////////////////////////// cout << "Explorer hat kein Finden : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoFindFiles\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoFindFiles\"=dword:0" << endl << endl; } ////////////////////////////////////////////// // Explorer hat kein Downloadziel auswählen // ////////////////////////////////////////////// cout << "Explorer hat kein Downloadziel ausw" << ae << "hlen : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoSelectDownloadDir\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoSelectDownloadDir\"=dword:0" << endl << endl; } ///////////////////////////////////////// // Explorer hat keine FullScreen Optin // ///////////////////////////////////////// cout << "Explorer hat keine FullScreen Option : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoTheaterMode\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Restrictions]" << endl; o_Reghack << "\"NoTheaterMode\"=dword:0" << endl << endl; } ///////////////////////////////////////////////////// // Vorhandene Drucker können nicht gelöscht werden // ///////////////////////////////////////////////////// cout << "vorhandene Drucker k" << oe << "nnen nicht gel" << oe << "scht werden : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoDeletePrinter\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoDeletePrinter\"=dword:0" << endl << endl; } ///////////////////////////////////////////// // Drucker können nicht hinzugefügt werden // ///////////////////////////////////////////// cout << "Drucker k" << oe << "nnen nicht hinzugef" << ue << "gt werden : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoAddPrinter\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer]" << endl; o_Reghack << "\"NoAddPrinter\"=dword:0" << endl << endl; } //////////////////////////// // CD-Autorun unterbinden // //////////////////////////// cout << "CD-Autorun unterbinden : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\CDRom]" << endl; o_Reghack << "\"Autorun\"=dword:1" << endl << endl; } else { o_Reghack << "[HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\CDRom]" << endl; o_Reghack << "\"Autorun\"=dword:1" << endl << endl; } ////////////////////// // BEEP bei Fehlern // ////////////////////// cout << "BEEP bei Fehlern : "; cin >> cFrage; if (cFrage==cJa) { o_Reghack << "[HKEY_CURRENT_USER\\Control Panel\\Sound]" << endl; o_Reghack << "\"Beep\"=\"yes\"" << endl << endl; } else { o_Reghack << "[HKEY_CURRENT_USER\\Control Panel\\Sound]" << endl; o_Reghack << "\"Beep\"=\"no\"" << endl << endl; } o_Reghack.close(); cout << "\n\nNun f" << ue << "hren sie bitte die R3gH4ck.reg aus und stimmen sie zu !\n"; cout << "Anschlie" << sz << "end m" << ue << "ssen sie Neustarten , damit sich alles " << ae << "ndert .\n"; cout << "OK ? [ (j)a / (n)ein ] "; cin >> cFrage; return 0; }
[ "BellersenM@googlemail.com" ]
BellersenM@googlemail.com
d94b5f5b5c6c492858fc41d0c37abe48306721b4
3c361e7ec0a308d7e8c2c250f7ccc6588ef40287
/krest/core/test/KwiverDetectionsSink.cpp
204d8a1da7dac7aefe52b3e857db57c31586cb1d
[ "BSD-3-Clause" ]
permissive
Kitware/krest
3768a9af50b2878b32f5d4be10981cb84623e0bb
8364ecb8e4f9734505cf01605d7f13815335ae96
refs/heads/master
2023-03-01T02:19:34.127697
2021-01-26T17:16:23
2021-01-26T17:16:23
329,328,763
1
2
BSD-3-Clause
2021-02-09T14:54:47
2021-01-13T14:12:54
C++
UTF-8
C++
false
false
4,576
cpp
/* This file is part of Krest, and is distributed under the OSI-approved BSD * 3-Clause License. See top-level LICENSE file or * https://github.com/Kitware/krest/blob/master/LICENSE for details. */ #include <krest/test/TestCore.hpp> #include <krest/core/test/TestCommon.hpp> #include <krest/core/test/TestTrackModel.hpp> #include <krest/core/test/TestTracks.hpp> #include <krest/core/test/TestVideoSource.hpp> #include <krest/core/KwiverDetectionsSink.hpp> #include <krest/core/VideoRequest.hpp> #include <QRegularExpression> #include <QTemporaryFile> #include <QUrlQuery> #include <QtTest> namespace kv = kwiver::vital; namespace krest { namespace core { namespace test { namespace // anonymous { // ---------------------------------------------------------------------------- void compareFiles(QIODevice& actual, QString const& expected, QRegularExpression const& ignoreLines) { QFile ef{expected}; QVERIFY(ef.open(QIODevice::ReadOnly)); actual.seek(0); while (!actual.atEnd()) { auto const& al = actual.readLine(); if (ignoreLines.match(al).hasMatch()) { continue; } QVERIFY(!ef.atEnd()); QCOMPARE(al, ef.readLine()); } QVERIFY(ef.atEnd()); } } // namespace <anonymous> // ============================================================================ class TestKwiverDetectionsSink : public QObject { Q_OBJECT private slots: void initTestCase(); void init(); void cleanup(); void kw18(); void csv(); private: std::unique_ptr<SimpleVideoSource> source; std::unique_ptr<SimpleTrackModel> model; }; // ---------------------------------------------------------------------------- void TestKwiverDetectionsSink::initTestCase() { loadKwiverPlugins(); } // ---------------------------------------------------------------------------- void TestKwiverDetectionsSink::init() { using vmd = core::VideoMetaData; this->source.reset(new SimpleVideoSource{{ {100, vmd{kv::timestamp{100, 1}, "frame0001.png"}}, {300, vmd{kv::timestamp{300, 3}, "frame0003.png"}}, {400, vmd{kv::timestamp{400, 4}, "frame0004.png"}}, {700, vmd{kv::timestamp{700, 7}, "frame0007.png"}}, {1100, vmd{kv::timestamp{1100, 11}, "frame0011.png"}}, {1300, vmd{kv::timestamp{1300, 13}, "frame0013.png"}}, {1800, vmd{kv::timestamp{1800, 18}, "frame0018.png"}}, {1900, vmd{kv::timestamp{1900, 19}, "frame0019.png"}}, {2000, vmd{kv::timestamp{2000, 20}, "frame0020.png"}}, {2200, vmd{kv::timestamp{2200, 22}, "frame0022.png"}}, }}); this->model.reset(new SimpleTrackModel{{ data::track1, data::track2, data::track3, data::track4, data::track5, }}); } // ---------------------------------------------------------------------------- void TestKwiverDetectionsSink::cleanup() { this->source.reset(); this->model.reset(); } // ---------------------------------------------------------------------------- void TestKwiverDetectionsSink::kw18() { KwiverDetectionsSink sink; connect(&sink, &AbstractDataSink::failed, this, [](QString const& message){ QFAIL(qPrintable(message)); }); QVERIFY(sink.setData(this->source.get(), this->model.get())); QTemporaryFile out; QVERIFY(out.open()); auto uri = QUrl::fromLocalFile(out.fileName()); auto params = QUrlQuery{}; params.addQueryItem("output:type", "kw18"); uri.setQuery(params); sink.writeData(uri); auto const& expected = KREST_TEST_DATA_PATH("KwiverDetectionsSink/expected.kw18"); compareFiles(out, expected, QRegularExpression{QStringLiteral("^#")}); } // ---------------------------------------------------------------------------- void TestKwiverDetectionsSink::csv() { KwiverDetectionsSink sink; connect(&sink, &AbstractDataSink::failed, this, [](QString const& message){ QFAIL(qPrintable(message)); }); QVERIFY(sink.setData(this->source.get(), this->model.get())); QTemporaryFile out; QVERIFY(out.open()); auto uri = QUrl::fromLocalFile(out.fileName()); auto params = QUrlQuery{}; params.addQueryItem("output:type", "csv"); uri.setQuery(params); sink.writeData(uri); auto const& expected = KREST_TEST_DATA_PATH("KwiverDetectionsSink/expected.csv"); compareFiles(out, expected, QRegularExpression{QStringLiteral("^#")}); } } // namespace test } // namespace core } // namespace krest // ---------------------------------------------------------------------------- QTEST_MAIN(krest::core::test::TestKwiverDetectionsSink) #include "KwiverDetectionsSink.moc"
[ "matthew.woehlke@kitware.com" ]
matthew.woehlke@kitware.com
e1b43a543d4237087cfd8e50b434ee1573c3967b
bb4c2678b689cce77b14362a72c3599698922ff6
/GrassRendering/shader_m.h
dfac807ff9ad13a6a412b6d80a1e81ded63dfe5c
[]
no_license
Milliekf/LearnOpengl
1e5d03fe74e9d6c3bbd1439c12ad94aa006cb379
f8fbba98f37b897aaed6d17f78fd104c524359a3
refs/heads/master
2022-12-07T00:49:16.335532
2020-08-31T01:17:21
2020-08-31T01:17:21
291,579,727
0
0
null
null
null
null
UTF-8
C++
false
false
6,641
h
#pragma once #pragma once #ifndef SHADER_H #define SHADER_H #include <glad/glad.h> #include <../glm/glm.hpp> #include <string> #include <fstream> #include <sstream> #include <iostream> class Shader { public: unsigned int ID; // constructor generates the shader on the fly // ------------------------------------------------------------------------ Shader(const char* vertexPath, const char* fragmentPath, const char* geometryPath = nullptr) { // 1. retrieve the vertex/fragment source code from filePath std::string vertexCode; std::string fragmentCode; std::string geometryCode; std::ifstream vShaderFile; std::ifstream fShaderFile; std::ifstream gShaderFile; // ensure ifstream objects can throw exceptions: vShaderFile.exceptions(std::ifstream::failbit | std::ifstream::badbit); fShaderFile.exceptions(std::ifstream::failbit | std::ifstream::badbit); gShaderFile.exceptions(std::ifstream::failbit | std::ifstream::badbit); try { // open files vShaderFile.open(vertexPath); fShaderFile.open(fragmentPath); std::stringstream vShaderStream, fShaderStream; // read file's buffer contents into streams vShaderStream << vShaderFile.rdbuf(); fShaderStream << fShaderFile.rdbuf(); // close file handlers vShaderFile.close(); fShaderFile.close(); // convert stream into string vertexCode = vShaderStream.str(); fragmentCode = fShaderStream.str(); // if geometry shader path is present, also load a geometry shader if (geometryPath != nullptr) { gShaderFile.open(geometryPath); std::stringstream gShaderStream; gShaderStream << gShaderFile.rdbuf(); gShaderFile.close(); geometryCode = gShaderStream.str(); } } catch (std::ifstream::failure e) { std::cout << "ERROR::SHADER::FILE_NOT_SUCCESFULLY_READ" << std::endl; } const char* vShaderCode = vertexCode.c_str(); const char * fShaderCode = fragmentCode.c_str(); // 2. compile shaders unsigned int vertex, fragment; // vertex shader vertex = glCreateShader(GL_VERTEX_SHADER); glShaderSource(vertex, 1, &vShaderCode, NULL); glCompileShader(vertex); checkCompileErrors(vertex, "VERTEX"); // fragment Shader fragment = glCreateShader(GL_FRAGMENT_SHADER); glShaderSource(fragment, 1, &fShaderCode, NULL); glCompileShader(fragment); checkCompileErrors(fragment, "FRAGMENT"); // if geometry shader is given, compile geometry shader unsigned int geometry; if (geometryPath != nullptr) { const char * gShaderCode = geometryCode.c_str(); geometry = glCreateShader(GL_GEOMETRY_SHADER); glShaderSource(geometry, 1, &gShaderCode, NULL); glCompileShader(geometry); checkCompileErrors(geometry, "GEOMETRY"); } // shader Program ID = glCreateProgram(); glAttachShader(ID, vertex); glAttachShader(ID, fragment); if (geometryPath != nullptr) glAttachShader(ID, geometry); glLinkProgram(ID); checkCompileErrors(ID, "PROGRAM"); // delete the shaders as they're linked into our program now and no longer necessery glDeleteShader(vertex); glDeleteShader(fragment); if (geometryPath != nullptr) glDeleteShader(geometry); } // activate the shader // ------------------------------------------------------------------------ void use() { glUseProgram(ID); } // utility uniform functions // ------------------------------------------------------------------------ void setBool(const std::string &name, bool value) const { glUniform1i(glGetUniformLocation(ID, name.c_str()), (int)value); } // ------------------------------------------------------------------------ void setInt(const std::string &name, int value) const { glUniform1i(glGetUniformLocation(ID, name.c_str()), value); } // ------------------------------------------------------------------------ void setFloat(const std::string &name, float value) const { glUniform1f(glGetUniformLocation(ID, name.c_str()), value); } // ------------------------------------------------------------------------ void setVec2(const std::string &name, const glm::vec2 &value) const { glUniform2fv(glGetUniformLocation(ID, name.c_str()), 1, &value[0]); } void setVec2(const std::string &name, float x, float y) const { glUniform2f(glGetUniformLocation(ID, name.c_str()), x, y); } // ------------------------------------------------------------------------ void setVec3(const std::string &name, const glm::vec3 &value) const { glUniform3fv(glGetUniformLocation(ID, name.c_str()), 1, &value[0]); } void setVec3(const std::string &name, float x, float y, float z) const { glUniform3f(glGetUniformLocation(ID, name.c_str()), x, y, z); } // ------------------------------------------------------------------------ void setVec4(const std::string &name, const glm::vec4 &value) const { glUniform4fv(glGetUniformLocation(ID, name.c_str()), 1, &value[0]); } void setVec4(const std::string &name, float x, float y, float z, float w) { glUniform4f(glGetUniformLocation(ID, name.c_str()), x, y, z, w); } // ------------------------------------------------------------------------ void setMat2(const std::string &name, const glm::mat2 &mat) const { glUniformMatrix2fv(glGetUniformLocation(ID, name.c_str()), 1, GL_FALSE, &mat[0][0]); } // ------------------------------------------------------------------------ void setMat3(const std::string &name, const glm::mat3 &mat) const { glUniformMatrix3fv(glGetUniformLocation(ID, name.c_str()), 1, GL_FALSE, &mat[0][0]); } // ------------------------------------------------------------------------ void setMat4(const std::string &name, const glm::mat4 &mat) const { glUniformMatrix4fv(glGetUniformLocation(ID, name.c_str()), 1, GL_FALSE, &mat[0][0]); } private: // utility function for checking shader compilation/linking errors. // ------------------------------------------------------------------------ void checkCompileErrors(GLuint shader, std::string type) { GLint success; GLchar infoLog[1024]; if (type != "PROGRAM") { glGetShaderiv(shader, GL_COMPILE_STATUS, &success); if (!success) { glGetShaderInfoLog(shader, 1024, NULL, infoLog); std::cout << "ERROR::SHADER_COMPILATION_ERROR of type: " << type << "\n" << infoLog << "\n -- --------------------------------------------------- -- " << std::endl; } } else { glGetProgramiv(shader, GL_LINK_STATUS, &success); if (!success) { glGetProgramInfoLog(shader, 1024, NULL, infoLog); std::cout << "ERROR::PROGRAM_LINKING_ERROR of type: " << type << "\n" << infoLog << "\n -- --------------------------------------------------- -- " << std::endl; } } } }; #endif
[ "1614435795@qq.com" ]
1614435795@qq.com
7d94b6455724d597c1d98e6312a46fe5edf4fe31
8d8655553382ca1630ddca86883be85dcfba84a3
/src/cheat_actor.cpp
970d78987dfd709d6f117e8e4b9f5d9a725b681d
[]
no_license
Krenizm/mod-s0beit-sa
a9aab1ee4d190de258bac6554ab3a06b7597fe4f
16c934afe36b4053e29764689c29003c88785489
refs/heads/master
2022-02-12T10:41:26.739214
2016-02-06T07:27:02
2016-02-06T07:27:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
42,103
cpp
/* PROJECT: mod_sa LICENSE: See LICENSE in the top level directory COPYRIGHT: Copyright we_sux, FYP mod_sa is available from http://code.google.com/p/m0d-s0beit-sa/ mod_sa is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. mod_sa is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with mod_sa. If not, see <http://www.gnu.org/licenses/>. */ #include "main.h" // new function to help converting from actor_info->base to CEntitySAInterface CEntitySAInterface *cheat_actor_GetCEntitySAInterface ( actor_info *ainfo ) { return (CEntitySAInterface *)ainfo; } //*p_CEntitySAInterface = (CEntitySAInterface*)ainfo->base; void cheat_actor_teleport ( struct actor_info *info, const float pos[3], int interior_id ) { if ( info == NULL ) return; vect3_zero( info->speed ); vect3_copy( pos, &info->base.matrix[4 * 3] ); gta_interior_id_set( interior_id ); } void cheat_handle_actor_autoaim ( struct actor_info *info, double time_diff ) { traceLastFunc( "cheat_handle_actor_autoaim()" ); // toggle aimbot on/off if ( KEY_PRESSED(set.key_autoaim_toggle) ) { cheat_state->actor.autoaim ^= 1; if ( set.use_gta_autoaim ) { if ( cheat_state->actor.autoaim == 1 ) { // set to default value, in case joypad aiming already activated *(char *)0x00B6EC2E = 1; *(char *)0x00BA6818 = 0; patcher_install( &patch_gta_auto_aim ); } else { patcher_remove( &patch_gta_auto_aim ); } } } if ( !set.use_gta_autoaim ) { // should we be trying to aim or not? bool isAimKeyDown = false; CControllerConfigManager *pPadConfig = pGameInterface->GetControllerConfigManager(); // doesnt seem to work in single player with pPadConfig and keyboard input? if ( pPadConfig->GetInputType() ) { // mouse + keyboard if ( KEY_DOWN(pPadConfig->GetControllerKeyAssociatedWithAction(FIRE, MOUSE)) ) { isAimKeyDown = true; } else if ( KEY_DOWN(pPadConfig->GetControllerKeyAssociatedWithAction(FIRE, KEYBOARD)) ) { isAimKeyDown = true; } } else { // gamepad if ( KEY_DOWN(pPadConfig->GetControllerKeyAssociatedWithAction(FIRE, JOYSTICK)) ) { isAimKeyDown = true; } } // let's aim, shall we? if ( cheat_state->actor.autoaim && isAimKeyDown ) { // only for certain weapons eWeaponSlot selfSlot = pPedSelf->GetCurrentWeaponSlot(); switch ( selfSlot ) { case WEAPONSLOT_TYPE_UNARMED: case WEAPONSLOT_TYPE_MELEE: case WEAPONSLOT_TYPE_THROWN: case WEAPONSLOT_TYPE_SPECIAL: case WEAPONSLOT_TYPE_GIFT: case WEAPONSLOT_TYPE_PARACHUTE: case WEAPONSLOT_TYPE_DETONATOR: // we don't want to aim for these weapons return; //case WEAPONSLOT_TYPE_HANDGUN: //case WEAPONSLOT_TYPE_SHOTGUN: //case WEAPONSLOT_TYPE_SMG: //case WEAPONSLOT_TYPE_MG: //case WEAPONSLOT_TYPE_RIFLE: //case WEAPONSLOT_TYPE_HEAVY: } /* // NEW OLD ASS AIM // settings float fRange = 300.0f; // variables CVector vecStart, vecTarget; // get the camera CCamera* pCamera = pGame->GetCamera (); //// Grab the active cam //CCam* pActive = pCamera->GetCam ( pCamera->GetActiveCam () ); //// Grab the camera matrix //CMatrix matCamera; //pCamera->GetMatrix ( &matCamera ); //ecStart = matCamera.vPos; //// Find the target position //CVector vecFront = *pActive->GetFront (); //vecFront.Normalize (); //vecTarget = *pActive->GetSource () + vecFront * fRange; // BONE_RIGHTHAND, BONE_RIGHTWRIST // Grab the gun muzzle position // this needs to also have the Z and left-right axis corrected and rotated // so the rear of the barrel is matched too eWeaponSlot eSlot = pPedSelf->GetCurrentWeaponSlot(); CWeapon* pPlayerWeapon = pPedSelf->GetWeapon( eSlot ); CWeaponInfo* pCurrentWeaponInfo = pPlayerWeapon->GetInfo(); CVector vecGunMuzzle = *pCurrentWeaponInfo->GetFireOffset(); pPedSelf->GetTransformedBonePosition( BONE_RIGHTWRIST, &vecGunMuzzle ); // Grab the target point //pCamera->Find3rdPersonCamTargetVector( fRange, &vecGunMuzzle, &vecStart, &vecTarget ); CVector vecRightWrist; pPedSelf->GetBonePosition( BONE_RIGHTWRIST, &vecRightWrist ); CVector vecAimMult = vecGunMuzzle - vecRightWrist; vecAimMult.Normalize(); CVector vecAimEnd = vecGunMuzzle + (vecAimMult * 40.0f); render->DrawLine( CVecToD3DXVEC(vecGunMuzzle), CVecToD3DXVEC(vecRightWrist), D3DCOLOR_ARGB(255, 0, 255, 0) ); render->DrawLine( CVecToD3DXVEC(vecGunMuzzle), CVecToD3DXVEC(vecAimEnd), D3DCOLOR_ARGB(255, 255, 0, 0) ); */ // OLD ASS AIM static int prev_id; static float adj_rx, adj_rz, prev_rx, prev_rz; float rx = *(float *)0x00B6F248; float rz = *(float *)0x00B6F258; int nearest_id = actor_find_nearest( ACTOR_ALIVE ); struct actor_info *nearest; float vect[3], ax, az; if ( nearest_id == -1 ) { cheat_state_text( "No players found; auto aim disabled." ); cheat_state->actor.autoaim = 0; return; } if ( nearest_id == prev_id ) { adj_rx += rx - prev_rx; adj_rz += rz - prev_rz; } prev_id = nearest_id; if ( (nearest = actor_info_get(nearest_id, ACTOR_ALIVE)) == NULL ) return; // won't happen //cheat_state_text("%.3f %.3f %d %d", adj_rx, adj_rz, nearest->state, nearest->state_running); // calculate distance vector vect3_vect3_sub( &nearest->base.matrix[4 * 3], &info->base.matrix[4 * 3], vect ); // z angle az = atan2f( vect[0], vect[1] ); // rotate around z axis vect[1] = sinf( az ) * vect[0] + cosf( az ) * vect[1]; // x angle ax = atan2f( vect[1], vect[2] ); ax = -ax + M_PI / 2.0f + adj_rx; az = -az - M_PI / 2.0f + adj_rz; if ( ax < -M_PI ) ax = -M_PI; else if ( ax > M_PI ) ax = M_PI; // XXX make function prev_rx = *(float *)0x00B6F248 = ax; prev_rz = *(float *)0x00B6F258 = az; /* sprintf( buf, "m_fTrueAlpha: %.4f", pSelfWeaponCam1->GetInterface()->m_fTrueAlpha ); pD3DFontFixed->PrintShadow(450, 50 + lineSpace, D3DCOLOR_XRGB(0, 200, 0), buf); lineSpace += 12; sprintf( buf, "m_fTrueBeta: %.4f", pSelfWeaponCam1->GetInterface()->m_fTrueBeta ); pD3DFontFixed->PrintShadow(450, 50 + lineSpace, D3DCOLOR_XRGB(0, 200, 0), buf); lineSpace += 12; */ } // if ( cheat_state->actor.autoaim ) } // if ( !set.use_gta_autoaim ) } void cheat_handle_actor_air_brake ( struct actor_info *info, double time_diff ) { traceLastFunc( "cheat_handle_actor_air_brake()" ); static float orig_pos[3]; static float fall_speed_mult; static int was_enabled; if ( set.air_brake_toggle ) { if ( KEY_PRESSED(set.key_air_brake_foot_mod) ) cheat_state->actor.air_brake ^= 1; if ( KEY_PRESSED(set.key_air_brake_mod2) && cheat_state->actor.air_brake ) cheat_state->actor.air_brake_slowmo ^= 1; } else { if ( KEY_PRESSED(set.key_air_brake_foot_mod) ) cheat_state->actor.air_brake = 1; else if ( KEY_RELEASED(set.key_air_brake_foot_mod) ) cheat_state->actor.air_brake = 0; if ( KEY_PRESSED(set.key_air_brake_mod2) && cheat_state->actor.air_brake ) cheat_state->actor.air_brake_slowmo = 1; else if ( KEY_RELEASED(set.key_air_brake_mod2) && cheat_state->actor.air_brake ) cheat_state->actor.air_brake_slowmo = 0; } if ( !was_enabled && cheat_state->actor.air_brake ) { vect3_copy( &info->base.matrix[4 * 3], orig_pos ); fall_speed_mult = 1.0f; was_enabled = 1; } if ( !cheat_state->actor.air_brake ) { was_enabled = 0; cheat_state->actor.air_brake_slowmo = 0; } else { float *matrix = info->base.matrix; // if there's no parachute if ( !(info->weapon_slot == 11 && info->weapon[11].id == 46) ) { vect3_copy( orig_pos, &info->base.matrix[4 * 3] ); vect3_zero( info->speed ); // new pedFlags info->pedFlags.bIsStanding = true; info->pedFlags.bWasStanding = true; info->pedFlags.bStayInSamePlace = true; static uint32_t time_start; float d[4] = { 0.0f, 0.0f, 0.0f, time_diff * set.air_brake_speed }; if ( cheat_state->actor.air_brake_slowmo ) d[3] /= 10.0f; if ( KEY_DOWN(set.key_air_brake_forward) ) d[0] += 1.0f; if ( KEY_DOWN(set.key_air_brake_backward) ) d[0] -= 1.0f; if ( KEY_DOWN(set.key_air_brake_left) ) d[1] += 1.0f; if ( KEY_DOWN(set.key_air_brake_right) ) d[1] -= 1.0f; if ( KEY_DOWN(set.key_air_brake_up) ) d[2] += 1.0f; if ( KEY_DOWN(set.key_air_brake_down) ) d[2] -= 1.0f; if ( !near_zero(set.air_brake_accel_time) ) { if ( !vect3_near_zero(d) ) time_start = ( time_start == 0 ) ? time_get() : time_start; else time_start = 0; /* no keys pressed */ /* acceleration */ if ( time_start != 0 ) { float t = TIME_TO_FLOAT( time_get() - time_start ); if ( t < set.air_brake_accel_time ) d[3] *= t / set.air_brake_accel_time; } } if ( !vect3_near_zero(d) ) { float vect[4] = { -d[1], d[0], d[2], 0.0f }; float out[4]; /* out = matrix * norm(d) */ vect3_normalize( vect, vect ); matrix_vect4_mult( matrix, vect, out ); matrix[4 * 3 + 0] += out[0] * d[3]; matrix[4 * 3 + 1] += out[1] * d[3]; matrix[4 * 3 + 2] += out[2] * d[3]; } } // parachute else { if ( KEY_DOWN(set.key_air_brake_up) ) fall_speed_mult += time_diff / 2.0f; if ( KEY_DOWN(set.key_air_brake_down) ) fall_speed_mult -= time_diff / 2.0f; if ( fall_speed_mult < 0.0f ) fall_speed_mult = 0.0f; else if ( fall_speed_mult > 2.0f ) fall_speed_mult = 2.0f; matrix[4 * 3 + 0] += info->speed[0] * time_diff * set.air_brake_speed; matrix[4 * 3 + 1] += info->speed[1] * time_diff * set.air_brake_speed; matrix[4 * 3 + 2] -= ( matrix[4 * 3 + 2] - orig_pos[2] ) * fall_speed_mult; } vect3_copy( &matrix[4 * 3], orig_pos ); // heh int gonadsMult = 1000; float strifeMult = 0.00001f; int gonads = rand() % gonadsMult; float strife = (double)gonads * strifeMult; if ( strife < strifeMult * gonadsMult / 2 ) strife -= strifeMult * gonadsMult; info->m_SpeedVec.fX = strife; gonads = rand() % gonadsMult; strife = (double)gonads * strifeMult; if ( strife < strifeMult * gonadsMult / 2 ) strife -= strifeMult * gonadsMult; info->m_SpeedVec.fY = strife; } } CVector cheat_actor_getPositionUnder ( actor_info *ainfo ) { traceLastFunc( "cheat_vehicle_getPositionUnder()" ); CVector offsetVector; float *matrix = ainfo->base.matrix; offsetVector.fX = 0 * matrix[0] + 0 * matrix[4] - 1 * matrix[8]; offsetVector.fY = 0 * matrix[1] + 0 * matrix[5] - 1 * matrix[9]; offsetVector.fZ = 0 * matrix[2] + 0 * matrix[6] - 1 * matrix[10]; return offsetVector; } /* static CMatrix_Padded * mat_SpiderFeetCollisionTransform = new CMatrix_Padded(); static CMatrix_Padded * mat_SpiderFeetCollisionTransform_Original = (CMatrix_Padded*)0x968988; uint8_t mat_SpiderFeetCollisionTransform_Offset[4] = { LOBYTE(LOWORD(&mat_SpiderFeetCollisionTransform)), HIBYTE(LOWORD(&mat_SpiderFeetCollisionTransform)), LOBYTE(HIWORD(&mat_SpiderFeetCollisionTransform)), HIBYTE(HIWORD(&mat_SpiderFeetCollisionTransform)) }; static struct patch_set patch_actor_SpiderFeetCollisionTransform = { "SpiderFeet Collision Transform", 0, 0, { // bottom { 4, (void *)0x004196D0, (uint8_t *)"\x88\x89\x96\x00", (uint8_t *)mat_SpiderFeetCollisionTransform_Offset, (uint8_t *)"\x88\x89\x96\x00" }, { 4, (void *)0x00419700, (uint8_t *)"\x88\x89\x96\x00", (uint8_t *)mat_SpiderFeetCollisionTransform_Offset, (uint8_t *)"\x88\x89\x96\x00" }, { 4, (void *)0x00418FB8, (uint8_t *)"\x88\x89\x96\x00", (uint8_t *)mat_SpiderFeetCollisionTransform_Offset, (uint8_t *)"\x88\x89\x96\x00" }, // up 1 { 4, (void *)0x0041874E, (uint8_t *)"\x88\x89\x96\x00", (uint8_t *)mat_SpiderFeetCollisionTransform_Offset, (uint8_t *)"\x88\x89\x96\x00" }, // up 2 { 4, (void *)0x004186AB, (uint8_t *)"\x88\x89\x96\x00", (uint8_t *)mat_SpiderFeetCollisionTransform_Offset, (uint8_t *)"\x88\x89\x96\x00" } //crash { 4, (void *)0x00418693 , (uint8_t *)"\x88\x89\x96\x00", (uint8_t *)mat_SpiderFeetCollisionTransform_Offset, (uint8_t *)"\x88\x89\x96\x00" }, //crash { 4, (void *)0x00418681, (uint8_t *)"\x88\x89\x96\x00", (uint8_t *)mat_SpiderFeetCollisionTransform_Offset, (uint8_t *)"\x88\x89\x96\x00" }, //crash { 4, (void *)0x00418672, (uint8_t *)"\x88\x89\x96\x00", (uint8_t *)mat_SpiderFeetCollisionTransform_Offset, (uint8_t *)"\x88\x89\x96\x00" } } }; // void cheat_handle_SpiderFeet ( struct actor_info *ainfo, double time_diff ) { traceLastFunc( "cheat_handle_SpiderFeet()" ); if ( KEY_PRESSED(set.key_spiderfeet) ) { // toggle the d-dang Ninjas if ( !cheat_state->actor.SpiderFeet_on ) { //patcher_install( &patch_actor_SpiderFeetCollisionTransform ); } cheat_state->actor.SpiderFeet_on ^= 1; } if ( cheat_state->actor.SpiderFeet_on ) //cheat_state->actor.NinjaMode_on) { // set SpiderFeet status cheat_state->actor.SpiderFeet_Enabled = true; // set NinjaMode enabler to on //ainfo->base.nImmunities = 0x0B; // get "down" facing vector CVector offsetVector = cheat_actor_getPositionUnder( ainfo ); // setup variables CVector vecOrigin, vecTarget; CColPoint *pCollision = NULL; CEntitySAInterface *pCollisionEntity = NULL; int checkDistanceMeters = 20; // get CEntitySAInterface pointer CEntitySAInterface *p_CEntitySAInterface = cheat_actor_GetCEntitySAInterface( ainfo ); // origin = our actor vecOrigin = p_CEntitySAInterface->Placeable.matrix->vPos; // target = vecOrigin + offsetVector * checkDistanceMeters vecTarget = offsetVector * checkDistanceMeters; vecTarget = vecTarget + vecOrigin; // for time/fps purposes float fTimeStep = *(float *)0xB7CB5C; // check for collision bool bCollision = GTAfunc_ProcessLineOfSight( &vecOrigin, &vecTarget, &pCollision, &pCollisionEntity, 1, 0, 0, 1, 1, 0, 0, 0 ); if ( bCollision ) { // set altered gravity vector float fTimeStep = *(float *)0xB7CB5C; CVector colGravTemp = -pCollision->GetInterface()->Normal; CVector vehGravTemp = cheat_state->actor.gravityVector; CVector newRotVector; newRotVector = colGravTemp - vehGravTemp; newRotVector *= 0.05f * fTimeStep; offsetVector = vehGravTemp + newRotVector; // for collision on ground CMatrix colTransformer; //CVector colPosOriginal; mat_SpiderFeetCollisionTransform_Original->ConvertToMatrix( colTransformer ); //colPosOriginal = colTransformer.vPos; CVector rotationAxis = colTransformer.vUp; rotationAxis.CrossProduct( &-colGravTemp ); float theta = colTransformer.vUp.DotProduct( &-colGravTemp ); // add check here for theta nearzero colTransformer = colTransformer.Rotate( &rotationAxis, -cos(theta) ); //colTransformer.vPos = colPosOriginal; mat_SpiderFeetCollisionTransform->SetFromMatrix( colTransformer ); pCollision->Destroy(); } else { // set normal gravity vector CVector colGravTemp; colGravTemp.fX = 0.0f; colGravTemp.fY = 0.0f; colGravTemp.fZ = -1.0f; CVector vehGravTemp = cheat_state->actor.gravityVector; CVector newRotVector; newRotVector = colGravTemp - vehGravTemp; newRotVector *= 0.05f * fTimeStep; offsetVector = vehGravTemp + newRotVector; } // set the gravity/camera cheat_actor_setGravity( ainfo, offsetVector ); //pPed->SetOrientation( offsetVector.fX, offsetVector.fY, offsetVector.fZ ); traceLastFunc( "cheat_handle_SpiderFeet()" ); // set up vector, can make it very easy to scale walls n such //pPed->SetWas( &-offsetVector ); // Ninjas know how to do awesome flips n shit if ( KEY_DOWN(set.key_ninjaflipfront) ) { //Log("1"); //CVector vecVelocity( pPedSelfSA->vecVelocity->fX, pPedSelfSA->vecVelocity->fY, pPedSelfSA->vecVelocity->fZ ); //Log("2"); //if ( vecVelocity.IsNearZero() ) //{ // //ds //} //else //{ // // prepare directional vector //} //vecVelocity.Normalize(); //vecVelocity *= 100.0f; //vecVelocity.ZeroNearZero(); if ( !isBadPtr_writeAny(pPedSelfSA, sizeof(CPedSAInterface)) ) { Log("good pPedSelfSA"); if ( !isBadPtr_writeAny(pPedSelfSA->vecSpinCollision, sizeof(CVector)) ) { Log("good pPedSelfSA->vecSpinCollision"); //if ( !isBadPtr_writeAny(&pPedSelfSA->vecSpinCollision->fX, sizeof(float)) ) //{ //ds //} //else // Log("bad pPedSelfSA->vecSpinCollision->fX"); } else Log("bad pPedSelfSA->vecSpinCollision"); } else Log("bad pPedSelfSA"); //pPedSelfSA->vecSpinCollision->fX = vecVelocity.fX; //memcpy_safe( pPedSelfSA->vecSpinCollision, &vecVelocity, sizeof(float[3]) ); */ /* // get matrix, backup original front vector for comparison CMatrix matPed; pPed->GetMatrix( &matPed ); CVector vecSpinOriginal; vecSpinOriginal.fX = matPed.vFront.fZ; vecSpinOriginal.fY = matPed.vRight.fZ; vecSpinOriginal.fZ = matPed.vUp.fZ; // rotate matrix on right axis float rotation_theta = M_PI / 2.0f; // add check for theta nearzero matPed = matPed.Rotate( &matPed.vRight, rotation_theta ); // compare CVector vecSpinCompare; vecSpinCompare.fX = matPed.vFront.fZ; vecSpinCompare.fY = matPed.vRight.fZ; vecSpinCompare.fZ = matPed.vUp.fZ; vecSpinCompare = (vecSpinOriginal - vecSpinCompare) * 10; // spin mother fucker, spin //pPedSA->vecSpinCollision = &(CVector)( vecSpinCompare ); pPedSA->vecSpin = &(CVector)( vecSpinCompare ); //pPed->SetDirection( vecSpinCompare ); //pPed->SetWas( //CVehicle blah; //blah.SetWas( vecSpinCompare ); */ /* } //key_ninjaflipfront //key_ninjaflipback //key_ninjajumpboost // if we're standing, rotate the CPed to match // TODO } else if ( cheat_state->actor.SpiderFeet_Enabled ) { //patcher_remove( &patch_actor_SpiderFeetCollisionTransform ); // set NinjaMode enabler to off //ainfo->base.nImmunities = 0x12; CVector offsetVector; // disable NinjaMode with normal gravity vector offsetVector.fX = 0.0f; offsetVector.fY = 0.0f; offsetVector.fZ = -1.0f; // set the gravity/camera cheat_actor_setGravity( ainfo, offsetVector ); // set NinjaMode disabled cheat_state->actor.SpiderFeet_Enabled = false; } } */ // used for cheat_handle_actor_fly() enum playerFly_keySpeedStates { speed_none, speed_accelerate, speed_decelerate }; enum playerFly_keyStrafeStates { strafe_none, strafe_left, strafe_right, strafe_up }; enum playerFly_animationStates { anim_Swim_Tread, anim_Swim_Breast, anim_SWIM_crawl, anim_FALL_skyDive, SHP_Jump_Land }; playerFly_keySpeedStates playerFly_lastKeySpeedState = speed_none; playerFly_keyStrafeStates playerFly_lastKeyStrafeStates = strafe_none; playerFly_animationStates playerFly_lastAnimationStates = SHP_Jump_Land; DWORD playerFly_animationStrafeStateTimer; bool playerFly_animationKeyStateSpeedDownChanged = false; bool playerFly_animationDirectionSpeedDownChanged = false; bool playerFly_animationDeceleration = false; CMatrix playerFly_lastPedRotation = CMatrix(); CVector upStrafeAxisBuffer; // used for smoothing up strafing over time void cheat_handle_actor_fly ( struct actor_info *ainfo, double time_diff ) { traceLastFunc( "cheat_handle_actor_fly()" ); // toggle if ( KEY_PRESSED(set.key_fly_player) ) { if ( !cheat_state->actor.fly_on ) { // init stuff } cheat_state->actor.fly_on ^= 1; } if ( cheat_state->actor.fly_on ) { // set fly status cheat_state->actor.fly_enabled = true; // get ground Z height float groundZHeight = pGame->GetWorld()->FindGroundZFor3DPosition(pPedSelf->GetPosition()); float playerZHeight = pPedSelf->GetPosition()->fZ; float playerFrontZOffset = abs(pPedSelfSA->Placeable.matrix->vFront.fZ); float playerRightZOffset = abs(pPedSelfSA->Placeable.matrix->vRight.fZ); // standing detection if ( cheat_state->actor.fly_active && ainfo->pedFlags.bIsStanding || !KEY_DOWN(set.key_fly_player_strafeUp) && cheat_state->actor.fly_active && groundZHeight + 1.4f > playerZHeight && groundZHeight - 1.4f < playerZHeight) { cheat_state->actor.fly_active = false; playerFly_lastKeySpeedState = speed_none; // remove up speed hard limiter patch if (patch_RemoveFlyUpSpeedLimit.installed) { patcher_remove(&patch_RemoveFlyUpSpeedLimit); } // remove fly soft limiters patch if (patch_RemoveFlyWindSpeedLimit.installed) { patcher_remove(&patch_RemoveFlyWindSpeedLimit); } // set gravity down pPedSelf->SetGravity( &-g_vecUpNormal ); // copy camera rotation to player ainfo->fCurrentRotation = -pGame->GetCamera()->GetCameraRotation(); ainfo->fTargetRotation = ainfo->fCurrentRotation; // play landing animation playerFly_lastAnimationStates = SHP_Jump_Land; GTAfunc_PerformAnimation("SHOP", "SHP_Jump_Land ", -1, 0, 1, 0, 0, 0, 0, 0); // correct for angle after landing if needed if (playerFrontZOffset > 0.4f || playerRightZOffset > 0.3f) { // get player matrix CMatrix matPed; pPedSelf->GetMatrix(&matPed); // tilt player upright CVector rotationAxis = g_vecUpNormal; rotationAxis.CrossProduct( &matPed.vUp ); float theta = ( matPed.vUp.DotProduct( &g_vecUpNormal ) ); if ( !near_zero(theta) ) { matPed = matPed.Rotate( &rotationAxis, cos(theta) ); // normalize everything matPed.vFront.Normalize(); matPed.vRight.Normalize(); matPed.vUp.Normalize(); // zero near zero matPed.vFront.ZeroNearZero(); matPed.vRight.ZeroNearZero(); matPed.vUp.ZeroNearZero(); // set player matrix pPedSelf->SetMatrix(&matPed); } } } else if ( ainfo->pedFlags.bIsStanding || !KEY_DOWN(set.key_fly_player_strafeUp) && groundZHeight + 1.6f > playerZHeight && groundZHeight - 1.6f < playerZHeight ) { // still standing // update the last matrix pPedSelf->GetMatrix(&playerFly_lastPedRotation); } else if ( time_diff < 1.0f ) // I believe I can fly... { // keys/buttons input playerFly_keySpeedStates keySpeedState; if ( KEY_DOWN(set.key_fly_player_accelerate) ) { keySpeedState = speed_accelerate; } else if ( KEY_DOWN(set.key_fly_player_decelerate) ) { keySpeedState = speed_decelerate; } else { keySpeedState = speed_none; } playerFly_keyStrafeStates keyStrafeState; if ( KEY_DOWN(set.key_fly_player_strafeLeft) && !KEY_DOWN(set.key_fly_player_strafeRight) ) { keyStrafeState = strafe_left; playerFly_animationStrafeStateTimer = GetTickCount(); } else if ( KEY_DOWN(set.key_fly_player_strafeRight) && !KEY_DOWN(set.key_fly_player_strafeLeft) ) { keyStrafeState = strafe_right; playerFly_animationStrafeStateTimer = GetTickCount(); } else if ( KEY_DOWN(set.key_fly_player_strafeUp) ) { keyStrafeState = strafe_up; playerFly_animationStrafeStateTimer = GetTickCount(); } else { keyStrafeState = strafe_none; } // activate fly mode if ( !cheat_state->actor.fly_active ) { cheat_state->actor.fly_active = true; // install up speed hard limiter patch if (!patch_RemoveFlyUpSpeedLimit.installed) { patcher_install(&patch_RemoveFlyUpSpeedLimit); } // install fly soft limiters patch if (!patch_RemoveFlyWindSpeedLimit.installed) { patcher_install(&patch_RemoveFlyWindSpeedLimit); } if ( keySpeedState == speed_none ) { // start fly animation GTAfunc_PerformAnimation("SWIM", "Swim_Tread", -1, 1, 1, 0, 0, 0, 1, 0); playerFly_lastAnimationStates = anim_Swim_Tread; } } // init variables // setup variables used through this function CVector vecSpeed, rotationAxis; float theta, thetaBase, rotationMultiplier; pPedSelf->GetMoveSpeed(&vecSpeed); float speed = vecSpeed.Length(); // copy camera rotation to player // this doesn't seem to be needed anymore //ainfo->fCurrentRotation = -pGame->GetCamera()->GetCameraRotation(); // get camera matrix CMatrix matCamera; pGame->GetCamera()->GetMatrix(&matCamera); matCamera.vRight = -matCamera.vRight; // for some reason this is inverted // normalize camera matCamera.vFront.Normalize(); matCamera.vRight.Normalize(); matCamera.vUp.Normalize(); // change animation if ( playerFly_lastKeyStrafeStates != keyStrafeState || playerFly_lastKeySpeedState != keySpeedState ) { playerFly_lastKeyStrafeStates = keyStrafeState; playerFly_lastKeySpeedState = keySpeedState; playerFly_animationDeceleration = false; switch ( keySpeedState ) { case speed_none: { if (playerFly_lastAnimationStates != anim_Swim_Breast) { playerFly_lastAnimationStates = anim_Swim_Breast; GTAfunc_PerformAnimation("SWIM", "Swim_Breast", -1, 1, 1, 0, 0, 0, 1, 0); } break; } case speed_accelerate: { if (playerFly_lastAnimationStates != anim_SWIM_crawl) { playerFly_lastAnimationStates = anim_SWIM_crawl; GTAfunc_PerformAnimation("SWIM", "SWIM_crawl", -1, 1, 1, 0, 0, 0, 1, 0); } break; } case speed_decelerate: { switch ( keyStrafeState ) { case strafe_none: case strafe_up: case strafe_left: case strafe_right: { if ( speed > 0.45f ) { if (playerFly_lastAnimationStates != anim_FALL_skyDive) { playerFly_lastAnimationStates = anim_FALL_skyDive; GTAfunc_PerformAnimation("PARACHUTE", "FALL_skyDive", -1, 1, 1, 0, 0, 0, 1, 0); } playerFly_animationDeceleration = true; } else if (playerFly_lastAnimationStates != anim_Swim_Tread) { playerFly_lastAnimationStates = anim_Swim_Tread; GTAfunc_PerformAnimation("SWIM", "Swim_Tread", -1, 1, 1, 0, 0, 0, 1, 0); } } break; default: { if (playerFly_lastAnimationStates != anim_Swim_Tread) { playerFly_lastAnimationStates = anim_Swim_Tread; GTAfunc_PerformAnimation("SWIM", "Swim_Tread", -1, 1, 1, 0, 0, 0, 1, 0); } break; } } break; } } playerFly_animationKeyStateSpeedDownChanged = false; } else if (!playerFly_animationKeyStateSpeedDownChanged) { switch ( keySpeedState ) { case speed_decelerate: { if ( speed < 0.45f ) { if (playerFly_lastAnimationStates != anim_Swim_Tread) { playerFly_lastAnimationStates = anim_Swim_Tread; GTAfunc_PerformAnimation("SWIM", "Swim_Tread", -1, 1, 1, 0, 0, 0, 1, 0); } playerFly_animationDeceleration = false; playerFly_animationKeyStateSpeedDownChanged = true; } break; } default: break; } } // acceleration/deceleration // acceleration float fly_speed_max; float fly_acceleration; float fly_speed = set.fly_player_speed; float fly_acceleration_multiplier = set.fly_player_accel_multiplier; float fly_deceleration_multiplier = set.fly_player_decel_multiplier; switch ( keySpeedState ) { case speed_accelerate: { if (fly_speed >= 1.0f) { fly_speed_max = 1.333f * (1.0f + (0.5f / fly_speed)) * fly_speed; fly_acceleration = time_diff * ((0.5f + (0.25f / (fly_speed / 4.0f))) * fly_speed) * fly_acceleration_multiplier; } else { fly_speed_max = 1.333f * (1.0f + (0.5f * fly_speed)) * fly_speed; fly_acceleration = time_diff * ((0.5f + fly_speed) * fly_speed) * fly_acceleration_multiplier; } if ( vecSpeed.Length() < fly_speed_max ) { vecSpeed += matCamera.vFront * fly_acceleration; } // don't have NearZero speeds if ( !vecSpeed.IsNearZero() ) { // set speed vector ainfo->m_SpeedVec = vecSpeed; } } break; case speed_none: { if (fly_speed >= 1.0f) { fly_speed_max = 0.1f; fly_acceleration = time_diff * 0.3f; } else { fly_speed_max = 0.1f * fly_speed; fly_acceleration = time_diff * (0.3f * fly_speed); } if ( vecSpeed.Length() < fly_speed_max ) { vecSpeed += matCamera.vFront * fly_acceleration; } // calculate wind resistance float windResistance; float windSpeedDivisor = 1.5f; if (fly_speed >= windSpeedDivisor) { windResistance = time_diff * ( ( (fly_speed * 0.023f) + (speed * (fly_speed / (fly_speed / windSpeedDivisor)) * 0.38f) ) / (fly_speed / windSpeedDivisor) ); } else if (fly_speed >= 1.0f) { windResistance = time_diff * ( ( (fly_speed * 0.023f) + (speed * (fly_speed / (fly_speed / windSpeedDivisor)) * 0.38f) ) * (fly_speed / windSpeedDivisor) ); } else { windResistance = time_diff * ( ( (fly_speed * 0.023f) + (speed * 0.38f) ) * fly_speed ); } vecSpeed -= vecSpeed * windResistance; // don't have NearZero speeds if ( !vecSpeed.IsNearZero() ) { // set speed vector ainfo->m_SpeedVec = vecSpeed; } } break; case speed_decelerate: { // this bit should be converted to mta-style code vect3_normalize( ainfo->speed, ainfo->speed ); speed -= time_diff * ((0.1f + speed) * (0.45f / (fly_speed / 2.0f)) * fly_speed) * fly_deceleration_multiplier; if ( speed < 0.0f ) speed = 0.0f; if ( vect3_near_zero(ainfo->speed) ) { vect3_zero( ainfo->speed ); } else { vect3_mult( ainfo->speed, speed, ainfo->speed ); } } break; } // set speed target // calculate the desired speed target CVector vecSpeedRotate = matCamera.vFront; switch ( keyStrafeState ) { case strafe_up: { vecSpeedRotate = matCamera.vUp; } break; case strafe_left: { CMatrix matTargetRotate; // rotate sideways matTargetRotate.vFront = vecSpeedRotate; rotationAxis = matCamera.vUp; theta = -1.57; matTargetRotate = matTargetRotate.Rotate( &rotationAxis, theta ); // rotate upward rotationAxis = matCamera.vFront; if (KEY_DOWN(set.key_fly_player_strafeUp)) { theta = -0.785; } else { theta = -0.05; } matTargetRotate = matTargetRotate.Rotate( &rotationAxis, theta ); // set the rotation target vecSpeedRotate = matTargetRotate.vFront; vecSpeedRotate.Normalize(); } break; case strafe_right: { CMatrix matTargetRotate; // rotate sideways matTargetRotate.vFront = vecSpeedRotate; rotationAxis = matCamera.vUp; theta = 1.57; matTargetRotate = matTargetRotate.Rotate( &rotationAxis, theta ); // rotate upward rotationAxis = matCamera.vFront; if (KEY_DOWN(set.key_fly_player_strafeUp)) { theta = 0.785; } else { theta = 0.05; } matTargetRotate = matTargetRotate.Rotate( &rotationAxis, theta ); // set the rotation target vecSpeedRotate = matTargetRotate.vFront; vecSpeedRotate.Normalize(); } break; case strafe_none: break; } // rotate the speed CVector frontCamOffsetTarget; float fCameraPanOffsetLength = gravCamPed_vecCameraFrontOffset.Length(); // rotate the speed vector slowly to face the desired target CMatrix matSpeedVecRotate; matSpeedVecRotate.vFront = vecSpeed; matSpeedVecRotate.vFront.Normalize(); // calculate rotation multiplier, time_diff * 69.0 is ideal for calculations, always time for 69 rotationMultiplier = (time_diff * 69.0f) / ( 32.0f + (vecSpeed.Length() * 5.0f) ); // calculate rotation rotationAxis = vecSpeedRotate;// + gravCamPed_vecCameraPanOffset; rotationAxis.Normalize(); // magic rotationAxis.CrossProduct( &matSpeedVecRotate.vFront ); // control thetaBase = abs(sinh(vecSpeedRotate.DotProduct(&matSpeedVecRotate.vFront)) - 1.175f) / 2.35f + 1.0f; theta = thetaBase * rotationMultiplier; if ( !near_zero(theta) ) { // rotate matSpeedVecRotate = matSpeedVecRotate.Rotate( &rotationAxis, theta ); // calculate new speed float speedReduction = time_diff * (vecSpeed.Length() * (thetaBase - 1.0f)); // set new speed vector matSpeedVecRotate.vFront.Normalize(); ainfo->m_SpeedVec = matSpeedVecRotate.vFront * ( ainfo->m_SpeedVec.Length() - speedReduction ); } // change animation when we're turning hard & not accelerating if ( thetaBase + (fCameraPanOffsetLength / 8.0f) > 1.15f && speed > 0.45f && keySpeedState == speed_none && !playerFly_animationDeceleration && ( keyStrafeState == strafe_none || keyStrafeState == strafe_up ) ) { if ( (GetTickCount() - 500) > playerFly_animationStrafeStateTimer ) { if (playerFly_lastAnimationStates != anim_FALL_skyDive) { playerFly_lastAnimationStates = anim_FALL_skyDive; GTAfunc_PerformAnimation("PARACHUTE", "FALL_skyDive", -1, 1, 1, 0, 0, 0, 1, 0); } playerFly_animationDeceleration = true; playerFly_animationDirectionSpeedDownChanged = false; } else if ( keyStrafeState == strafe_up ) { if (playerFly_lastAnimationStates != anim_FALL_skyDive) { playerFly_lastAnimationStates = anim_FALL_skyDive; GTAfunc_PerformAnimation("PARACHUTE", "FALL_skyDive", -1, 1, 1, 0, 0, 0, 1, 0); } playerFly_animationDeceleration = true; playerFly_animationDirectionSpeedDownChanged = false; } } else if ( !playerFly_animationDirectionSpeedDownChanged && ( speed < 0.45f || thetaBase + (fCameraPanOffsetLength / 8.0f) < 1.08f ) ) { if ( keySpeedState == speed_none ) { if (playerFly_lastAnimationStates != anim_Swim_Tread) { playerFly_lastAnimationStates = anim_Swim_Tread; GTAfunc_PerformAnimation("SWIM", "Swim_Tread", -1, 1, 1, 0, 0, 0, 1, 0); } playerFly_animationDeceleration = false; } playerFly_animationDirectionSpeedDownChanged = true; } // set the ped rotation target // copy speed and normalize, for initial direction CVector vecPedRotate = matSpeedVecRotate.vFront; // should use the rotated speed, not original speed vecPedRotate.Normalize(); CMatrix matPedTarget; matPedTarget.vFront = matCamera.vFront; matPedTarget.vRight = matCamera.vRight + (playerFly_lastPedRotation.vRight * 0.2f); matPedTarget.vRight.Normalize(); matPedTarget.vUp = matCamera.vUp; // rotate the ped rotation target to direction of speed if (!near_zero(vecSpeed.Length())) { // rotate target rotationAxis = g_vecUpNormal; rotationAxis.CrossProduct( &vecPedRotate ); thetaBase = vecSpeedRotate.DotProduct(&vecPedRotate); // drifting rotationMultiplier = (time_diff * 69.0f) / ( 18.0f + (vecSpeed.Length() * 1.75f) ); theta = cos(thetaBase * rotationMultiplier); if ( !near_zero(theta) ) { matPedTarget = matPedTarget.Rotate( &rotationAxis, theta ); } // recopy original front matPedTarget.vFront = vecPedRotate; // rotate the ped rotation target upward during deceleration // animation so that the animation is at the correct angle if (playerFly_animationDeceleration) { CVector upStrafeAxis = vecPedRotate; upStrafeAxis.CrossProduct(&matPedTarget.vUp); rotationMultiplier = (time_diff * 69.0f) / ( 1.0f + (vecSpeed.Length() * 0.25f) ); thetaBase = -1.5;// * rotationMultiplier; // 1.57 = 90 degrees theta = cos(thetaBase * rotationMultiplier); // rotate the ped rotation target to direction of speed if (!near_zero(vecSpeed.Length())) { matPedTarget = matPedTarget.Rotate( &upStrafeAxis, theta ); } //upStrafeAxis = upStrafeAxisBuffer; } } // invert right z during strafing if ( keyStrafeState == strafe_left || keyStrafeState == strafe_right ) { matPedTarget.vRight.fZ = -matPedTarget.vRight.fZ / 2.0f; } // normalize everything matPedTarget.Normalize(false); // sure, why not // rotate the ped // actual rotation of the ped to smooth movements rotationMultiplier = (time_diff * 69.0f) / ( 12.0f + (vecSpeed.Length() * 1.5f) ); // front camera offset rotationAxis = playerFly_lastPedRotation.vFront; frontCamOffsetTarget = playerFly_lastPedRotation.vFront + gravCamPed_vecCameraFrontOffset; frontCamOffsetTarget.Normalize(); rotationAxis.CrossProduct( &frontCamOffsetTarget ); thetaBase = playerFly_lastPedRotation.vFront.DotProduct(&frontCamOffsetTarget); theta = -cos(thetaBase) * ((time_diff * 69.0f) / 4.5f); if ( !near_zero(theta) ) { playerFly_lastPedRotation = playerFly_lastPedRotation.Rotate( &rotationAxis, theta ); matPedTarget = matPedTarget.Rotate( &rotationAxis, -theta ); } // front rotationAxis = playerFly_lastPedRotation.vFront; rotationAxis.CrossProduct( &matPedTarget.vFront ); thetaBase = playerFly_lastPedRotation.vFront.DotProduct(&matPedTarget.vFront); theta = -cos(thetaBase) * rotationMultiplier; if ( !near_zero(theta) ) { playerFly_lastPedRotation = playerFly_lastPedRotation.Rotate( &rotationAxis, theta ); matPedTarget = matPedTarget.Rotate( &rotationAxis, theta ); } // right rotationAxis = playerFly_lastPedRotation.vRight; rotationAxis.CrossProduct( &matPedTarget.vRight ); thetaBase = playerFly_lastPedRotation.vRight.DotProduct(&matPedTarget.vRight); theta = -cos(thetaBase) * (rotationMultiplier * 0.825f); if ( !near_zero(theta) ) { playerFly_lastPedRotation = playerFly_lastPedRotation.Rotate( &rotationAxis, theta ); matPedTarget = matPedTarget.Rotate( &rotationAxis, theta ); } // up rotationAxis = playerFly_lastPedRotation.vUp + (g_vecUpNormal / 1.4f); rotationAxis.Normalize(); rotationAxis.CrossProduct( &matPedTarget.vUp ); thetaBase = playerFly_lastPedRotation.vUp.DotProduct(&matPedTarget.vUp); theta = -cos(thetaBase) * (rotationMultiplier / 8.0f); if ( !near_zero(theta) ) { playerFly_lastPedRotation = playerFly_lastPedRotation.Rotate( &rotationAxis, theta ); //matPedTarget = matPedTarget.Rotate( &rotationAxis, theta ); } // normalize everything playerFly_lastPedRotation.vFront.Normalize(); playerFly_lastPedRotation.vRight.Normalize(); playerFly_lastPedRotation.vUp.Normalize(); // zero near zero playerFly_lastPedRotation.vFront.ZeroNearZero(); playerFly_lastPedRotation.vRight.ZeroNearZero(); playerFly_lastPedRotation.vUp.ZeroNearZero(); // set the position playerFly_lastPedRotation.vPos = pPedSelfSA->Placeable.matrix->vPos; // set player matrix pPedSelf->SetMatrix(&playerFly_lastPedRotation); // set the camera (our CPed gravity gets ignored while flying) // we should be setting it like this //CVector smoothedGrav = -playerFly_lastPedRotation.vUp + (g_vecUpNormal * 2.0f); //smoothedGrav.Normalize(); //pPedSelf->SetGravity( &smoothedGrav ); // -nf // but the function is hacked to hell to make it work, so since we're the only // thing using it so far, we'll just do this, and fudge the camera in the hook // -nf pPedSelf->SetGravity( &-playerFly_lastPedRotation.vUp ); // actually... the camera is doing quite a lot now which is flying specific, with some // logic to run when actually flying, so... just doing literal set gravity is appropriate for now. // -nf } // I believe I can touch the sky... } else if ( cheat_state->actor.fly_enabled ) { // set fly disabled cheat_state->actor.fly_enabled = false; if (cheat_state->actor.fly_active) { cheat_state->actor.fly_active = false; // set gravity down pPedSelf->SetGravity( &-g_vecUpNormal ); // remove up speed hard limiter patch if (patch_RemoveFlyUpSpeedLimit.installed) { patcher_remove(&patch_RemoveFlyUpSpeedLimit); } // remove fly soft limiters patch if (patch_RemoveFlyWindSpeedLimit.installed) { patcher_remove(&patch_RemoveFlyWindSpeedLimit); } // copy camera rotation to player ainfo->fCurrentRotation = -pGame->GetCamera()->GetCameraRotation(); ainfo->fTargetRotation = ainfo->fCurrentRotation; // stop animation playerFly_lastAnimationStates = SHP_Jump_Land; GTAfunc_PerformAnimation("SHOP", "SHP_Jump_Land ", -1, 0, 1, 0, 0, 0, 0, 0); } playerFly_lastKeySpeedState = speed_none; } }
[ "evgen113745@gmail.com" ]
evgen113745@gmail.com
fe86feff7f44d6f01141fcd13d03161e7dd8e99b
0655b68b66c3eb993dc3f2ac414ac9148066ce02
/Chapter1_DataStructure/1_5.cpp
73bc723db073c83929db07569de4923c85ac1198
[]
no_license
dosssman/CTCI
848d455ca71d9d4809163e9e0cbcec66fcebdbb8
af7390c33f1c696b67a86a6662e2897348f6bafe
refs/heads/master
2020-06-01T17:08:07.065600
2019-10-02T00:01:05
2019-10-02T00:01:05
190,860,232
0
0
null
null
null
null
UTF-8
C++
false
false
1,115
cpp
#include <iostream> #include <map> #include <string> #include <stdio.h> #include <stdlib.h> using namespace std; char *compStr( char *) ; #define MAX_SIZE 255 int main() { char str[MAX_SIZE] = "aabcaaacccabbba"; char *compedStr = compStr( str); cout << compedStr << endl; return 0; } char *compStr( char *str) { char lastChar = '\0'; int counter = 0; bool foundBigger = false; int strIdx = 0, compIdx = 0; char *compedStr = (char*) malloc( sizeof( char) *MAX_SIZE); while( str[strIdx] != '\0') { if( lastChar == '\0') { lastChar = str[strIdx]; compedStr[compIdx++] = str[strIdx++]; counter = 1; } else { if( lastChar == str[strIdx]) { counter++; if( counter >1 && !foundBigger) foundBigger = true; strIdx++; } else { lastChar ='\0'; sprintf( (compedStr+compIdx), "%d", counter); int counterLength = 1; while( counterLength /= 10) { counterLength++; } compIdx += counterLength+1; } } } if( foundBigger) return compedStr; return str; }
[ "dosssman@hotmail.fr" ]
dosssman@hotmail.fr
0c90168008e7ea557c6be47b4e778f16d93b0bab
634120df190b6262fccf699ac02538360fd9012d
/Develop/Server/GameServerOck/main/GSessionJobs.h
ab2ab7f1cdd5331496b0fe846b2c9eafe67c4c4e
[]
no_license
ktj007/Raiderz_Public
c906830cca5c644be384e68da205ee8abeb31369
a71421614ef5711740d154c961cbb3ba2a03f266
refs/heads/master
2021-06-08T03:37:10.065320
2016-11-28T07:50:57
2016-11-28T07:50:57
74,959,309
6
4
null
2016-11-28T09:53:49
2016-11-28T09:53:49
null
UTF-8
C++
false
false
2,785
h
#pragma once #include "GJob.h" class GSessionJob : public GJob { public: GSessionJob(): GJob(NULL) {} virtual bool OnStart() override { return true; } virtual bool IsSessionJob() override { return true; } }; class GJobS_Blocking: public GSessionJob, public MTestMemPool<GJobS_Blocking> { public: GJobS_Blocking(bool bEnable): m_bEnable(bEnable) {} DECLARE_JOB_ID(GJOB_SESSION_BLOCKING); bool IsEnable() { return m_bEnable; } virtual string GetParamString() const override { return m_bEnable?"Enable = true":"Enable = false"; } private: bool m_bEnable; }; class GJobS_Wait: public GSessionJob, public MTestMemPool<GJobS_Wait> { public: GJobS_Wait(float fDuration): m_fWaitTime(fDuration) {} DECLARE_JOB_ID(GJOB_SESSION_WAIT); float GetWaitTime() { return m_fWaitTime; } virtual string GetParamString() const override { char buff[512]; sprintf(buff, "WaitTime: %f", m_fWaitTime); return buff; } private: float m_fWaitTime; }; class GJobS_AddNPC: public GSessionJob, public MTestMemPool<GJobS_AddNPC> { public: GJobS_AddNPC(MUID uidNPC): m_uidNPC(uidNPC) {} DECLARE_JOB_ID(GJOB_SESSION_ADD_NPC); MUID GetNPCUID() { return m_uidNPC; } virtual string GetParamString() const override { char buff[512]; sprintf(buff, "uidNPC: %I64d", m_uidNPC.Value); return buff; } private: MUID m_uidNPC; }; class GJobS_RemoveNPC: public GSessionJob, public MTestMemPool<GJobS_RemoveNPC> { public: GJobS_RemoveNPC(MUID uidNPC): m_uidNPC(uidNPC) {} DECLARE_JOB_ID(GJOB_SESSION_REMOVE_NPC); MUID GetNPCUID() { return m_uidNPC; } virtual string GetParamString() const override { char buff[512]; sprintf(buff, "uidNPC: %I64d", m_uidNPC.Value); return buff; } private: MUID m_uidNPC; }; class GJobS_EndSession: public GSessionJob, public MTestMemPool<GJobS_EndSession> { public: GJobS_EndSession() {} DECLARE_JOB_ID(GJOB_SESSION_END); virtual string GetParamString() const override { return ""; } }; class GJobS_ChangeState: public GSessionJob, public MTestMemPool<GJobS_ChangeState> { public: GJobS_ChangeState(string strState): m_strState(strState) {} DECLARE_JOB_ID(GJOB_SESSION_CHANGE_STATE); string GetStateName() { return m_strState; } virtual string GetParamString() const override { return m_strState; } private: string m_strState; }; class GJobS_MakePeace: public GSessionJob, public MTestMemPool<GJobS_MakePeace> { public: GJobS_MakePeace() {} DECLARE_JOB_ID(GJOB_SESSION_MAKE_PEACE); virtual string GetParamString() const override { return ""; } }; class GJobS_MakeCombat: public GSessionJob, public MTestMemPool<GJobS_MakeCombat> { public: GJobS_MakeCombat() {} DECLARE_JOB_ID(GJOB_SESSION_MAKE_COMBAT); virtual string GetParamString() const override { return ""; } };
[ "espause0703@gmail.com" ]
espause0703@gmail.com
90288f9ddae82045e702122811af74d409a3f28e
a012f8bc05a4f2b54caf4e1f90bff34e3ec1ec4d
/6-11 Magnetometer_Angle and distance.ino
2f7614ac6b1d8332086b7525cd41588ea9328bf3
[]
no_license
kuragechan14/1062-IoT_course_Arduino
24ec0c92ece59946368bbb14d6703c319f2eb2d9
d06c135b369d5cb26c64d9e4f4cca2eb126c55d6
refs/heads/master
2021-04-03T02:02:21.332556
2018-04-26T07:52:08
2018-04-26T07:52:08
125,024,102
0
0
null
null
null
null
UTF-8
C++
false
false
2,026
ino
#include "Wire.h" #include "I2Cdev.h" #include "HMC5883L.h" #define echoPin 7 #define trigPin 8 #define BTN_PIN 2 long a,b,c; float da,db; HMC5883L mag; int16_t mx, my, mz; int state=0; int last=0; int counter=0; long getdistance() { long duration,distance; digitalWrite(trigPin,LOW); delayMicroseconds(2); digitalWrite(trigPin,HIGH); delayMicroseconds(10); digitalWrite(trigPin,LOW); duration=pulseIn(echoPin,HIGH); distance=duration/58.2; return distance; } void setup() { Wire.begin(); Serial.begin(38400); pinMode(trigPin,OUTPUT); pinMode(echoPin,INPUT); pinMode(BTN_PIN,INPUT); Serial.println("Initializing I2C devices..."); mag.initialize(); Serial.println("Testing device connections..."); Serial.println(mag.testConnection() ? "HMC5883L connection successful" : "HMC5883L connection failed"); // Conditional Operator } void loop() { mag.getHeading(&mx, &my, &mz); /* Serial.print("mag:\t"); Serial.print(mx); Serial.print("\t"); Serial.print(my); Serial.print("\t"); Serial.print(mz); Serial.print("\t"); */ float heading = atan2(my, mx); if(heading < 0) heading += 2 * M_PI; float d=heading * 180/M_PI; state=digitalRead(BTN_PIN); if(state!=last) { if(state==HIGH) { counter++; if(counter==1) { Serial.print("====AC====:"); b=getdistance(); da=d; Serial.print(b); Serial.print("\t"); Serial.println(da); } else if(counter==2) { Serial.print("====BC====:"); a=getdistance(); db=d; Serial.print(a); Serial.print("\t"); Serial.println(db); Serial.print("===AB===:"); float theta=abs(db-da); c=sqrt(pow(a,2)+pow(b,2)-2*a*b*cos(theta)); Serial.print(c); Serial.print("\t"); Serial.println(theta); } else if(counter==3) { Serial.println("====Clean===="); counter=0; } } delay(50); } last=state; delay(100); }
[ "noreply@github.com" ]
noreply@github.com
757b7604f933e86e80b0ad42c2c0592c15f84081
e037bb10c54ee4f60fbcfd99eddd3f486cd77fb1
/blaze/math/adaptors/symmetricmatrix/SparseNonNumeric.h
48c3a9aacf772ddeb18933f0fbb02d2c533a5f8f
[ "BSD-3-Clause" ]
permissive
nimerix/blaze
5361a69cebd63377d35aa0fe0fbdde6530464cd1
55424cc652a7d9af8daa93252e80e70d0581a319
refs/heads/master
2021-08-19T07:10:01.018036
2017-11-08T09:40:20
2017-11-08T09:40:20
111,974,363
0
0
null
null
null
null
UTF-8
C++
false
false
127,759
h
//================================================================================================= /*! // \file blaze/math/adaptors/symmetricmatrix/SparseNonNumeric.h // \brief SymmetricMatrix specialization for sparse matrices with non-numeric element type // // Copyright (C) 2012-2017 Klaus Iglberger - All Rights Reserved // // This file is part of the Blaze library. You can redistribute it and/or modify it under // the terms of the New (Revised) BSD License. Redistribution and use in source and binary // forms, with or without modification, are permitted provided that the following conditions // are met: // // 1. Redistributions of source code must retain the above copyright notice, this list of // conditions and the following disclaimer. // 2. Redistributions in binary form must reproduce the above copyright notice, this list // of conditions and the following disclaimer in the documentation and/or other materials // provided with the distribution. // 3. Neither the names of the Blaze development group nor the names of its contributors // may be used to endorse or promote products derived from this software without specific // prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT // SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED // TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR // BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH // DAMAGE. */ //================================================================================================= #ifndef _BLAZE_MATH_ADAPTORS_SYMMETRICMATRIX_SPARSENONNUMERIC_H_ #define _BLAZE_MATH_ADAPTORS_SYMMETRICMATRIX_SPARSENONNUMERIC_H_ //************************************************************************************************* // Includes //************************************************************************************************* #include <iterator> #include <utility> #include <vector> #include <blaze/math/adaptors/symmetricmatrix/BaseTemplate.h> #include <blaze/math/adaptors/symmetricmatrix/NonNumericProxy.h> #include <blaze/math/adaptors/symmetricmatrix/SharedValue.h> #include <blaze/math/Aliases.h> #include <blaze/math/constraints/Computation.h> #include <blaze/math/constraints/Hermitian.h> #include <blaze/math/constraints/Expression.h> #include <blaze/math/constraints/Lower.h> #include <blaze/math/constraints/Resizable.h> #include <blaze/math/constraints/SparseMatrix.h> #include <blaze/math/constraints/StorageOrder.h> #include <blaze/math/constraints/Symmetric.h> #include <blaze/math/constraints/Upper.h> #include <blaze/math/Exception.h> #include <blaze/math/expressions/SparseMatrix.h> #include <blaze/math/shims/Clear.h> #include <blaze/math/shims/Conjugate.h> #include <blaze/math/shims/IsDefault.h> #include <blaze/math/sparse/SparseElement.h> #include <blaze/math/sparse/SparseMatrix.h> #include <blaze/math/traits/AddTrait.h> #include <blaze/math/traits/MultTrait.h> #include <blaze/math/traits/SchurTrait.h> #include <blaze/math/traits/SubTrait.h> #include <blaze/math/typetraits/IsComputation.h> #include <blaze/math/typetraits/IsSquare.h> #include <blaze/math/typetraits/IsSymmetric.h> #include <blaze/math/typetraits/RemoveAdaptor.h> #include <blaze/math/typetraits/Size.h> #include <blaze/util/Assert.h> #include <blaze/util/constraints/Const.h> #include <blaze/util/constraints/Numeric.h> #include <blaze/util/constraints/Pointer.h> #include <blaze/util/constraints/Reference.h> #include <blaze/util/constraints/Volatile.h> #include <blaze/util/DisableIf.h> #include <blaze/util/EnableIf.h> #include <blaze/util/mpl/If.h> #include <blaze/util/StaticAssert.h> #include <blaze/util/typetraits/IsNumeric.h> #include <blaze/util/Types.h> #include <blaze/util/Unused.h> namespace blaze { //================================================================================================= // // CLASS TEMPLATE SPECIALIZATION FOR SPARSE MATRICES WITH NON-NUMERIC ELEMENT TYPE // //================================================================================================= //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Specialization of SymmetricMatrix for sparse matrices with non-numeric element type. // \ingroup symmetric_matrix // // This specialization of SymmetricMatrix adapts the class template to the requirements of sparse // matrices with non-numeric element type. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix class SymmetricMatrix<MT,SO,false,false> : public SparseMatrix< SymmetricMatrix<MT,SO,false,false>, SO > { private: //**Type definitions**************************************************************************** using OT = OppositeType_<MT>; //!< Opposite type of the sparse matrix. using TT = TransposeType_<MT>; //!< Transpose type of the sparse matrix. using ET = ElementType_<MT>; //!< Element type of the sparse matrix. //! Rebound matrix type for shared values. using MatrixType = typename MT::template Rebind< SharedValue<ET> >::Other; //********************************************************************************************** public: //**Type definitions**************************************************************************** using This = SymmetricMatrix<MT,SO,false,false>; //!< Type of this SymmetricMatrix instance. using BaseType = SparseMatrix<This,SO>; //!< Base type of this SymmetricMatrix instance. using ResultType = This; //!< Result type for expression template evaluations. using OppositeType = SymmetricMatrix<OT,!SO,false,false>; //!< Result type with opposite storage order for expression template evaluations. using TransposeType = SymmetricMatrix<TT,!SO,false,false>; //!< Transpose type for expression template evaluations. using ElementType = ET; //!< Type of the matrix elements. using ReturnType = ReturnType_<MT>; //!< Return type for expression template evaluations. using CompositeType = const This&; //!< Data type for composite expression templates. using Reference = NonNumericProxy<MatrixType>; //!< Reference to a non-constant matrix value. using ConstReference = ConstReference_<MT>; //!< Reference to a constant matrix value. //********************************************************************************************** //**Rebind struct definition******************************************************************** /*!\brief Rebind mechanism to obtain a SymmetricMatrix with different data/element type. */ template< typename NewType > // Data type of the other matrix struct Rebind { //! The type of the other SymmetricMatrix. using Other = SymmetricMatrix< typename MT::template Rebind<NewType>::Other >; }; //********************************************************************************************** //**Resize struct definition******************************************************************** /*!\brief Resize mechanism to obtain a SymmetricMatrix with different fixed dimensions. */ template< size_t NewM // Number of rows of the other matrix , size_t NewN > // Number of columns of the other matrix struct Resize { //! The type of the other SymmetricMatrix. using Other = SymmetricMatrix< typename MT::template Resize<NewM,NewN>::Other >; }; //********************************************************************************************** //**SharedElement class definition************************************************************** /*!\brief Access proxy for a specific shared element of the sparse symmetric matrix. */ template< typename IteratorType > // Type of the sparse matrix iterator class SharedElement : private SparseElement { public: //**Type definitions************************************************************************* using ValueType = ET; //!< The value type of the value-index-pair. using IndexType = size_t; //!< The index type of the value-index-pair. using Reference = ValueType&; //!< Reference return type. using ConstReference = const ValueType&; //!< Reference-to-const return type. using Pointer = SharedElement*; //!< Pointer return type. using ConstPointer = const SharedElement*; //!< Pointer-to-const return type. //******************************************************************************************* //**Constructor****************************************************************************** /*!\brief Constructor for the SharedElement class. // // \param pos Iterator to the current sparse symmetric matrix element. */ inline SharedElement( IteratorType pos ) : pos_( pos ) // Iterator to the current sparse symmetric matrix element {} //******************************************************************************************* //**Assignment operator********************************************************************** /*!\brief Assignment to the symmetric element. // // \param v The new v of the symmetric element. // \return Reference to the assigned symmetric element. */ template< typename T > inline SharedElement& operator=( const T& v ) { *pos_->value() = v; return *this; } //******************************************************************************************* //**Addition assignment operator************************************************************* /*!\brief Addition assignment to the symmetric element. // // \param v The right-hand side value for the addition. // \return Reference to the assigned symmetric element. */ template< typename T > inline SharedElement& operator+=( const T& v ) { *pos_->value() += v; return *this; } //******************************************************************************************* //**Subtraction assignment operator********************************************************** /*!\brief Subtraction assignment to the symmetric element. // // \param v The right-hand side value for the subtraction. // \return Reference to the assigned symmetric element. */ template< typename T > inline SharedElement& operator-=( const T& v ) { *pos_->value() -= v; return *this; } //******************************************************************************************* //**Multiplication assignment operator******************************************************* /*!\brief Multiplication assignment to the symmetric element. // // \param v The right-hand side value for the multiplication. // \return Reference to the assigned symmetric element. */ template< typename T > inline SharedElement& operator*=( const T& v ) { *pos_->value() *= v; return *this; } //******************************************************************************************* //**Division assignment operator************************************************************* /*!\brief Division assignment to the symmetric element. // // \param v The right-hand side value for the division. // \return Reference to the assigned symmetric element. */ template< typename T > inline SharedElement& operator/=( const T& v ) { *pos_->value() /= v; return *this; } //******************************************************************************************* //**Element access operator****************************************************************** /*!\brief Direct access to the symmetric element. // // \return Reference to the value of the symmetric element. */ inline Pointer operator->() { return this; } //******************************************************************************************* //**Element access operator****************************************************************** /*!\brief Direct access to the symmetric element. // // \return Reference to the value of the symmetric element. */ inline ConstPointer operator->() const { return this; } //******************************************************************************************* //**Value function*************************************************************************** /*!\brief Access to the current value of the symmetric element. // // \return The current value of the symmetric element. */ inline Reference value() { return *pos_->value(); } //******************************************************************************************* //**Value function*************************************************************************** /*!\brief Access to the current value of the symmetric element. // // \return The current value of the symmetric element. */ inline ConstReference value() const { return *pos_->value(); } //******************************************************************************************* //**Index function*************************************************************************** /*!\brief Access to the current index of the symmetric element. // // \return The current index of the symmetric element. */ inline IndexType index() const { return pos_->index(); } //******************************************************************************************* private: //**Member variables************************************************************************* IteratorType pos_; //!< Iterator to the current sparse symmetric matrix element. //******************************************************************************************* }; //********************************************************************************************** //**SharedIterator class definition************************************************************* /*!\brief Iterator over the elements of the sparse symmetric matrix. */ template< typename SparseElementType // Type of the underlying sparse elements. , typename IteratorType > // Type of the sparse matrix iterator class SharedIterator { public: //**Type definitions************************************************************************* using IteratorCategory = std::forward_iterator_tag; //!< The iterator category. using ValueType = SparseElementType; //!< Type of the underlying elements. using PointerType = SparseElementType; //!< Pointer return type. using ReferenceType = SparseElementType; //!< Reference return type. using DifferenceType = ptrdiff_t; //!< Difference between two iterators. // STL iterator requirements using iterator_category = IteratorCategory; //!< The iterator category. using value_type = ValueType; //!< Type of the underlying elements. using pointer = PointerType; //!< Pointer return type. using reference = ReferenceType; //!< Reference return type. using difference_type = DifferenceType; //!< Difference between two iterators. //******************************************************************************************* //**Default constructor********************************************************************** /*!\brief Default constructor for the SharedIterator class. */ inline SharedIterator() : pos_() // Iterator to the current sparse symmetric matrix element {} //******************************************************************************************* //**Constructor****************************************************************************** /*!\brief Constructor for the SharedIterator class. // // \param pos The initial position of the iterator. */ inline SharedIterator( IteratorType pos ) : pos_( pos ) // Iterator to the current sparse symmetric matrix element {} //******************************************************************************************* //**Constructor****************************************************************************** /*!\brief Conversion constructor from different SharedIterator instances. // // \param it The matrix iterator to be copied. */ template< typename SparseElementType2, typename IteratorType2 > inline SharedIterator( const SharedIterator<SparseElementType2,IteratorType2>& it ) : pos_( it.pos_ ) // Iterator to the current sparse symmetric matrix element {} //******************************************************************************************* //**Prefix increment operator**************************************************************** /*!\brief Pre-increment operator. // // \return Reference to the incremented iterator. */ inline SharedIterator& operator++() { ++pos_; return *this; } //******************************************************************************************* //**Postfix increment operator*************************************************************** /*!\brief Post-increment operator. // // \return The previous position of the iterator. */ inline const SharedIterator operator++( int ) { const SharedIterator tmp( *this ); ++(*this); return tmp; } //******************************************************************************************* //**Element access operator****************************************************************** /*!\brief Direct access to the current sparse matrix element. // // \return Reference to the current sparse matrix element. */ inline ReferenceType operator*() const { return ReferenceType( pos_ ); } //******************************************************************************************* //**Element access operator****************************************************************** /*!\brief Direct access to the current sparse matrix element. // // \return Pointer to the current sparse matrix element. */ inline PointerType operator->() const { return PointerType( pos_ ); } //******************************************************************************************* //**Equality operator************************************************************************ /*!\brief Equality comparison between two SharedIterator objects. // // \param rhs The right-hand side matrix iterator. // \return \a true if the iterators refer to the same element, \a false if not. */ inline bool operator==( const SharedIterator& rhs ) const { return pos_ == rhs.pos_; } //******************************************************************************************* //**Inequality operator********************************************************************** /*!\brief Inequality comparison between two SharedIterator objects. // // \param rhs The right-hand side matrix iterator. // \return \a true if the iterators don't refer to the same element, \a false if they do. */ inline bool operator!=( const SharedIterator& rhs ) const { return !( *this == rhs ); } //******************************************************************************************* //**Subtraction operator********************************************************************* /*!\brief Calculating the number of elements between two iterators. // // \param rhs The right-hand side iterator. // \return The number of elements between the two iterators. */ inline DifferenceType operator-( const SharedIterator& rhs ) const { return pos_ - rhs.pos_; } //******************************************************************************************* //**Base function**************************************************************************** /*!\brief Access to the current position of the iterator. // // \return The current position of the iterator. */ inline IteratorType base() const { return pos_; } //******************************************************************************************* private: //**Member variables************************************************************************* IteratorType pos_; //!< Iterator to the current sparse symmetric matrix element. //******************************************************************************************* //**Friend declarations********************************************************************** template< typename SparseElementType2, typename IteratorType2 > friend class SharedIterator; //******************************************************************************************* }; //********************************************************************************************** //**Type definitions**************************************************************************** //! Iterator over non-constant elements. using Iterator = SharedIterator< SharedElement< Iterator_<MatrixType> > , Iterator_<MatrixType> >; //! Iterator over constant elements. using ConstIterator = SharedIterator< const SharedElement< ConstIterator_<MatrixType> > , ConstIterator_<MatrixType> >; //********************************************************************************************** //**Compilation flags*************************************************************************** //! Compilation switch for the expression template assignment strategy. enum : bool { smpAssignable = false }; //********************************************************************************************** //**Constructors******************************************************************************** /*!\name Constructors */ //@{ explicit inline SymmetricMatrix(); explicit inline SymmetricMatrix( size_t n ); explicit inline SymmetricMatrix( size_t n, size_t nonzeros ); explicit inline SymmetricMatrix( size_t n, const std::vector<size_t>& nonzeros ); inline SymmetricMatrix( const SymmetricMatrix& m ); inline SymmetricMatrix( SymmetricMatrix&& m ) noexcept; template< typename MT2 > inline SymmetricMatrix( const Matrix<MT2,SO>& m ); template< typename MT2 > inline SymmetricMatrix( const Matrix<MT2,!SO>& m ); //@} //********************************************************************************************** //**Destructor********************************************************************************** // No explicitly declared destructor. //********************************************************************************************** //**Data access functions*********************************************************************** /*!\name Data access functions */ //@{ inline Reference operator()( size_t i, size_t j ); inline ConstReference operator()( size_t i, size_t j ) const; inline Reference at( size_t i, size_t j ); inline ConstReference at( size_t i, size_t j ) const; inline Iterator begin ( size_t i ); inline ConstIterator begin ( size_t i ) const; inline ConstIterator cbegin( size_t i ) const; inline Iterator end ( size_t i ); inline ConstIterator end ( size_t i ) const; inline ConstIterator cend ( size_t i ) const; //@} //********************************************************************************************** //**Assignment operators************************************************************************ /*!\name Assignment operators */ //@{ inline SymmetricMatrix& operator=( const SymmetricMatrix& rhs ); inline SymmetricMatrix& operator=( SymmetricMatrix&& rhs ) noexcept; template< typename MT2 > inline DisableIf_< IsComputation<MT2>, SymmetricMatrix& > operator=( const Matrix<MT2,SO>& rhs ); template< typename MT2 > inline EnableIf_< IsComputation<MT2>, SymmetricMatrix& > operator=( const Matrix<MT2,SO>& rhs ); template< typename MT2 > inline SymmetricMatrix& operator=( const Matrix<MT2,!SO>& rhs ); template< typename MT2 > inline SymmetricMatrix& operator+=( const Matrix<MT2,SO>& rhs ); template< typename MT2 > inline SymmetricMatrix& operator+=( const Matrix<MT2,!SO>& rhs ); template< typename MT2 > inline SymmetricMatrix& operator-=( const Matrix<MT2,SO>& rhs ); template< typename MT2 > inline SymmetricMatrix& operator-=( const Matrix<MT2,!SO>& rhs ); template< typename MT2 > inline SymmetricMatrix& operator%=( const Matrix<MT2,SO>& rhs ); template< typename MT2 > inline SymmetricMatrix& operator%=( const Matrix<MT2,!SO>& rhs ); template< typename Other > inline EnableIf_< IsNumeric<Other>, SymmetricMatrix >& operator*=( Other rhs ); template< typename Other > inline EnableIf_< IsNumeric<Other>, SymmetricMatrix >& operator/=( Other rhs ); //@} //********************************************************************************************** //**Utility functions*************************************************************************** /*!\name Utility functions */ //@{ inline size_t rows() const noexcept; inline size_t columns() const noexcept; inline size_t capacity() const noexcept; inline size_t capacity( size_t i ) const noexcept; inline size_t nonZeros() const; inline size_t nonZeros( size_t i ) const; inline void reset(); inline void reset( size_t i ); inline void clear(); inline void resize ( size_t n, bool preserve=true ); inline void reserve( size_t nonzeros ); inline void reserve( size_t i, size_t nonzeros ); inline void trim(); inline void trim( size_t i ); inline void shrinkToFit(); inline void swap( SymmetricMatrix& m ) noexcept; //@} //********************************************************************************************** //**Insertion functions************************************************************************* /*!\name Insertion functions */ //@{ inline Iterator set ( size_t i, size_t j, const ElementType& value ); inline Iterator insert ( size_t i, size_t j, const ElementType& value ); inline void append ( size_t i, size_t j, const ElementType& value, bool check=false ); inline void finalize( size_t i ); //@} //********************************************************************************************** //**Erase functions***************************************************************************** /*!\name Erase functions */ //@{ inline void erase( size_t i, size_t j ); inline Iterator erase( size_t i, Iterator pos ); inline Iterator erase( size_t i, Iterator first, Iterator last ); template< typename Pred > inline void erase( Pred predicate ); template< typename Pred > inline void erase( size_t i, Iterator first, Iterator last, Pred predicate ); //@} //********************************************************************************************** //**Lookup functions**************************************************************************** /*!\name Lookup functions */ //@{ inline Iterator find ( size_t i, size_t j ); inline ConstIterator find ( size_t i, size_t j ) const; inline Iterator lowerBound( size_t i, size_t j ); inline ConstIterator lowerBound( size_t i, size_t j ) const; inline Iterator upperBound( size_t i, size_t j ); inline ConstIterator upperBound( size_t i, size_t j ) const; //@} //********************************************************************************************** //**Numeric functions*************************************************************************** /*!\name Numeric functions */ //@{ inline SymmetricMatrix& transpose(); inline SymmetricMatrix& ctranspose(); template< typename Other > inline SymmetricMatrix& scale( const Other& scalar ); //@} //********************************************************************************************** //**Debugging functions************************************************************************* /*!\name Utility functions */ //@{ inline bool isIntact() const noexcept; //@} //********************************************************************************************** //**Expression template evaluation functions**************************************************** /*!\name Expression template evaluation functions */ //@{ template< typename Other > inline bool canAlias ( const Other* alias ) const noexcept; template< typename Other > inline bool isAliased( const Other* alias ) const noexcept; inline bool canSMPAssign() const noexcept; //@} //********************************************************************************************** private: //**Expression template evaluation functions**************************************************** /*!\name Expression template evaluation functions */ //@{ template< typename MT2 > void assign( DenseMatrix<MT2,SO>& rhs ); template< typename MT2 > void assign( const DenseMatrix<MT2,SO>& rhs ); template< typename MT2 > void assign( SparseMatrix<MT2,SO>& rhs ); template< typename MT2 > void assign( const SparseMatrix<MT2,SO>& rhs ); //@} //********************************************************************************************** //**Member variables**************************************************************************** /*!\name Member variables */ //@{ MatrixType matrix_; //!< The adapted sparse matrix. //@} //********************************************************************************************** //**Friend declarations************************************************************************* template< bool RF, typename MT2, bool SO2, bool DF2, bool NF2 > friend bool isDefault( const SymmetricMatrix<MT2,SO2,DF2,NF2>& m ); //********************************************************************************************** //**Compile time checks************************************************************************* BLAZE_CONSTRAINT_MUST_BE_SPARSE_MATRIX_TYPE ( MT ); BLAZE_CONSTRAINT_MUST_NOT_BE_REFERENCE_TYPE ( MT ); BLAZE_CONSTRAINT_MUST_NOT_BE_POINTER_TYPE ( MT ); BLAZE_CONSTRAINT_MUST_NOT_BE_CONST ( MT ); BLAZE_CONSTRAINT_MUST_NOT_BE_VOLATILE ( MT ); BLAZE_CONSTRAINT_MUST_NOT_BE_EXPRESSION_TYPE ( MT ); BLAZE_CONSTRAINT_MUST_NOT_BE_SYMMETRIC_MATRIX_TYPE( MT ); BLAZE_CONSTRAINT_MUST_NOT_BE_HERMITIAN_MATRIX_TYPE( MT ); BLAZE_CONSTRAINT_MUST_NOT_BE_LOWER_MATRIX_TYPE ( MT ); BLAZE_CONSTRAINT_MUST_NOT_BE_UPPER_MATRIX_TYPE ( MT ); BLAZE_CONSTRAINT_MUST_BE_MATRIX_WITH_STORAGE_ORDER( OT, !SO ); BLAZE_CONSTRAINT_MUST_BE_MATRIX_WITH_STORAGE_ORDER( TT, !SO ); BLAZE_CONSTRAINT_MUST_NOT_BE_NUMERIC_TYPE ( ElementType ); BLAZE_STATIC_ASSERT( ( Size<MT,0UL>::value == Size<MT,1UL>::value ) ); //********************************************************************************************** }; /*! \endcond */ //************************************************************************************************* //================================================================================================= // // CONSTRUCTORS // //================================================================================================= //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief The default constructor for SymmetricMatrix. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline SymmetricMatrix<MT,SO,false,false>::SymmetricMatrix() : matrix_() // The adapted sparse matrix { BLAZE_INTERNAL_ASSERT( isSquare( matrix_ ), "Non-square symmetric matrix detected" ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Constructor for a matrix of size \f$ n \times n \f$. // // \param n The number of rows and columns of the matrix. // // The matrix is initialized to the zero matrix and has no free capacity. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline SymmetricMatrix<MT,SO,false,false>::SymmetricMatrix( size_t n ) : matrix_( n, n ) // The adapted sparse matrix { BLAZE_CONSTRAINT_MUST_BE_RESIZABLE_TYPE( MT ); BLAZE_INTERNAL_ASSERT( isSquare( matrix_ ), "Non-square symmetric matrix detected" ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Constructor for a matrix of size \f$ n \times n \f$. // // \param n The number of rows and columns of the matrix. // \param nonzeros The number of expected non-zero elements. // // The matrix is initialized to the zero matrix. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline SymmetricMatrix<MT,SO,false,false>::SymmetricMatrix( size_t n, size_t nonzeros ) : matrix_( n, n, nonzeros ) // The adapted sparse matrix { BLAZE_CONSTRAINT_MUST_BE_RESIZABLE_TYPE( MT ); BLAZE_INTERNAL_ASSERT( isSquare( matrix_ ), "Non-square symmetric matrix detected" ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Constructor for a matrix of size \f$ n \times n \f$. // // \param n The number of rows and columns of the matrix. // \param nonzeros The expected number of non-zero elements in each row/column. // // The matrix is initialized to the zero matrix and will have the specified capacity in each // row/column. Note that in case of a row-major matrix the given vector must have at least // \a m elements, in case of a column-major matrix at least \a n elements. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline SymmetricMatrix<MT,SO,false,false>::SymmetricMatrix( size_t n, const std::vector<size_t>& nonzeros ) : matrix_( n, n, nonzeros ) // The adapted sparse matrix { BLAZE_CONSTRAINT_MUST_BE_RESIZABLE_TYPE( MT ); BLAZE_INTERNAL_ASSERT( isSquare( matrix_ ), "Non-square symmetric matrix detected" ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief The copy constructor for SymmetricMatrix. // // \param m The symmetric matrix to be copied. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline SymmetricMatrix<MT,SO,false,false>::SymmetricMatrix( const SymmetricMatrix& m ) : matrix_() // The adapted sparse matrix { using blaze::resize; resize( matrix_, m.rows(), m.columns() ); assign( m ); BLAZE_INTERNAL_ASSERT( isSquare( matrix_ ), "Non-square symmetric matrix detected" ); BLAZE_INTERNAL_ASSERT( isIntact(), "Broken invariant detected" ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief The move constructor for SymmetricMatrix. // // \param m The symmetric matrix to be moved into this instance. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline SymmetricMatrix<MT,SO,false,false>::SymmetricMatrix( SymmetricMatrix&& m ) noexcept : matrix_( std::move( m.matrix_ ) ) // The adapted sparse matrix { BLAZE_INTERNAL_ASSERT( isSquare( matrix_ ), "Non-square symmetric matrix detected" ); BLAZE_INTERNAL_ASSERT( isIntact(), "Broken invariant detected" ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Conversion constructor from different matrices with the same storage order. // // \param m Matrix to be copied. // \exception std::invalid_argument Invalid setup of symmetric matrix. // // This constructor initializes the symmetric matrix as a copy of the given matrix. In case the // given matrix is not a symmetric matrix, a \a std::invalid_argument exception is thrown. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename MT2 > // Type of the foreign matrix inline SymmetricMatrix<MT,SO,false,false>::SymmetricMatrix( const Matrix<MT2,SO>& m ) : matrix_() // The adapted sparse matrix { using blaze::resize; using RT = RemoveAdaptor_< ResultType_<MT2> >; using Tmp = If_< IsComputation<MT2>, RT, const MT2& >; Tmp tmp( ~m ); if( !IsSymmetric<MT2>::value && !isSymmetric( tmp ) ) { BLAZE_THROW_INVALID_ARGUMENT( "Invalid setup of symmetric matrix" ); } resize( matrix_, tmp.rows(), tmp.columns() ); assign( tmp ); BLAZE_INTERNAL_ASSERT( isSquare( matrix_ ), "Non-square symmetric matrix detected" ); BLAZE_INTERNAL_ASSERT( isIntact(), "Broken invariant detected" ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Conversion constructor from different matrices with opposite storage order. // // \param m Matrix to be copied. // \exception std::invalid_argument Invalid setup of symmetric matrix. // // This constructor initializes the symmetric matrix as a copy of the given matrix. In case the // given matrix is not a symmetric matrix, a \a std::invalid_argument exception is thrown. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename MT2 > // Type of the foreign matrix inline SymmetricMatrix<MT,SO,false,false>::SymmetricMatrix( const Matrix<MT2,!SO>& m ) : matrix_() // The adapted sparse matrix { using blaze::resize; using RT = RemoveAdaptor_< ResultType_<MT2> >; using Tmp = If_< IsComputation<MT2>, RT, const MT2& >; Tmp tmp( ~m ); if( !IsSymmetric<MT2>::value && !isSymmetric( tmp ) ) { BLAZE_THROW_INVALID_ARGUMENT( "Invalid setup of symmetric matrix" ); } resize( matrix_, tmp.rows(), tmp.columns() ); assign( trans( tmp ) ); BLAZE_INTERNAL_ASSERT( isSquare( matrix_ ), "Non-square symmetric matrix detected" ); BLAZE_INTERNAL_ASSERT( isIntact(), "Broken invariant detected" ); } /*! \endcond */ //************************************************************************************************* //================================================================================================= // // DATA ACCESS FUNCTIONS // //================================================================================================= //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief 2D-access to the matrix elements. // // \param i Access index for the row. The index has to be in the range \f$[0..N-1]\f$. // \param j Access index for the column. The index has to be in the range \f$[0..N-1]\f$. // \return Reference to the accessed value. // // The function call operator provides access to both elements \f$ a_{ij} \f$ and \f$ a_{ji} \f$. // In order to preserve the symmetry of the matrix, any modification to one of the elements will // also be applied to the other element. // // Note that this function only performs an index check in case BLAZE_USER_ASSERT() is active. In // contrast, the at() function is guaranteed to perform a check of the given access indices. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline typename SymmetricMatrix<MT,SO,false,false>::Reference SymmetricMatrix<MT,SO,false,false>::operator()( size_t i, size_t j ) { BLAZE_USER_ASSERT( i<rows() , "Invalid row access index" ); BLAZE_USER_ASSERT( j<columns(), "Invalid column access index" ); return Reference( matrix_, i, j ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief 2D-access to the matrix elements. // // \param i Access index for the row. The index has to be in the range \f$[0..N-1]\f$. // \param j Access index for the column. The index has to be in the range \f$[0..N-1]\f$. // \return Reference to the accessed value. // // The function call operator provides access to both elements \f$ a_{ij} \f$ and \f$ a_{ji} \f$. // In order to preserve the symmetry of the matrix, any modification to one of the elements will // also be applied to the other element. // // Note that this function only performs an index check in case BLAZE_USER_ASSERT() is active. In // contrast, the at() function is guaranteed to perform a check of the given access indices. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline typename SymmetricMatrix<MT,SO,false,false>::ConstReference SymmetricMatrix<MT,SO,false,false>::operator()( size_t i, size_t j ) const { BLAZE_USER_ASSERT( i<rows() , "Invalid row access index" ); BLAZE_USER_ASSERT( j<columns(), "Invalid column access index" ); return *matrix_(i,j); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Checked access to the matrix elements. // // \param i Access index for the row. The index has to be in the range \f$[0..N-1]\f$. // \param j Access index for the column. The index has to be in the range \f$[0..N-1]\f$. // \return Reference to the accessed value. // \exception std::out_of_range Invalid matrix access index. // // The function call operator provides access to both the elements at position (i,j) and (j,i). // In order to preserve the symmetry of the matrix, any modification to one of the elements will // also be applied to the other element. // // Note that in contrast to the subscript operator this function always performs a check of the // given access indices. */ template< typename MT // Type of the adapted dense matrix , bool SO > // Storage order of the adapted dense matrix inline typename SymmetricMatrix<MT,SO,false,false>::Reference SymmetricMatrix<MT,SO,false,false>::at( size_t i, size_t j ) { if( i >= rows() ) { BLAZE_THROW_OUT_OF_RANGE( "Invalid row access index" ); } if( j >= columns() ) { BLAZE_THROW_OUT_OF_RANGE( "Invalid column access index" ); } return (*this)(i,j); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Checked access to the matrix elements. // // \param i Access index for the row. The index has to be in the range \f$[0..N-1]\f$. // \param j Access index for the column. The index has to be in the range \f$[0..N-1]\f$. // \return Reference to the accessed value. // \exception std::out_of_range Invalid matrix access index. // // The function call operator provides access to both the elements at position (i,j) and (j,i). // In order to preserve the symmetry of the matrix, any modification to one of the elements will // also be applied to the other element. // // Note that in contrast to the subscript operator this function always performs a check of the // given access indices. */ template< typename MT // Type of the adapted dense matrix , bool SO > // Storage order of the adapted dense matrix inline typename SymmetricMatrix<MT,SO,false,false>::ConstReference SymmetricMatrix<MT,SO,false,false>::at( size_t i, size_t j ) const { if( i >= rows() ) { BLAZE_THROW_OUT_OF_RANGE( "Invalid row access index" ); } if( j >= columns() ) { BLAZE_THROW_OUT_OF_RANGE( "Invalid column access index" ); } return (*this)(i,j); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns an iterator to the first element of row/column \a i. // // \param i The row/column index. // \return Iterator to the first element of row/column \a i. // // This function returns a row/column iterator to the first element of row/column \a i. In case // the symmetric matrix adapts a \a rowMajor sparse matrix the function returns an iterator to // the first element of row \a i, in case it adapts a \a columnMajor sparse matrix the function // returns an iterator to the first element of column \a i. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline typename SymmetricMatrix<MT,SO,false,false>::Iterator SymmetricMatrix<MT,SO,false,false>::begin( size_t i ) { return Iterator( matrix_.begin(i) ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns an iterator to the first element of row/column \a i. // // \param i The row/column index. // \return Iterator to the first element of row/column \a i. // // This function returns a row/column iterator to the first element of row/column \a i. In case // the symmetric matrix adapts a \a rowMajor sparse matrix the function returns an iterator to // the first element of row \a i, in case it adapts a \a columnMajor sparse matrix the function // returns an iterator to the first element of column \a i. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline typename SymmetricMatrix<MT,SO,false,false>::ConstIterator SymmetricMatrix<MT,SO,false,false>::begin( size_t i ) const { return ConstIterator( matrix_.begin(i) ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns an iterator to the first element of row/column \a i. // // \param i The row/column index. // \return Iterator to the first element of row/column \a i. // // This function returns a row/column iterator to the first element of row/column \a i. In case // the symmetric matrix adapts a \a rowMajor sparse matrix the function returns an iterator to // the first element of row \a i, in case it adapts a \a columnMajor sparse matrix the function // returns an iterator to the first element of column \a i. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline typename SymmetricMatrix<MT,SO,false,false>::ConstIterator SymmetricMatrix<MT,SO,false,false>::cbegin( size_t i ) const { return ConstIterator( matrix_.cbegin(i) ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns an iterator just past the last element of row/column \a i. // // \param i The row/column index. // \return Iterator just past the last element of row/column \a i. // // This function returns an row/column iterator just past the last element of row/column \a i. // In case the symmetric matrix adapts a \a rowMajor sparse matrix the function returns an iterator // just past the last element of row \a i, in case it adapts a \a columnMajor sparse matrix the // function returns an iterator just past the last element of column \a i. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline typename SymmetricMatrix<MT,SO,false,false>::Iterator SymmetricMatrix<MT,SO,false,false>::end( size_t i ) { return Iterator( matrix_.end(i) ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns an iterator just past the last element of row/column \a i. // // \param i The row/column index. // \return Iterator just past the last element of row/column \a i. // // This function returns an row/column iterator just past the last element of row/column \a i. // In case the symmetric matrix adapts a \a rowMajor sparse matrix the function returns an iterator // just past the last element of row \a i, in case it adapts a \a columnMajor sparse matrix the // function returns an iterator just past the last element of column \a i. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline typename SymmetricMatrix<MT,SO,false,false>::ConstIterator SymmetricMatrix<MT,SO,false,false>::end( size_t i ) const { return ConstIterator( matrix_.end(i) ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns an iterator just past the last element of row/column \a i. // // \param i The row/column index. // \return Iterator just past the last element of row/column \a i. // // This function returns an row/column iterator just past the last element of row/column \a i. // In case the symmetric matrix adapts a \a rowMajor sparse matrix the function returns an iterator // just past the last element of row \a i, in case it adapts a \a columnMajor sparse matrix the // function returns an iterator just past the last element of column \a i. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline typename SymmetricMatrix<MT,SO,false,false>::ConstIterator SymmetricMatrix<MT,SO,false,false>::cend( size_t i ) const { return ConstIterator( matrix_.cend(i) ); } /*! \endcond */ //************************************************************************************************* //================================================================================================= // // ASSIGNMENT OPERATORS // //================================================================================================= //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Copy assignment operator for SymmetricMatrix. // // \param rhs Matrix to be copied. // \return Reference to the assigned matrix. // // If possible and necessary, the matrix is resized according to the given \f$ N \times N \f$ // matrix and initialized as a copy of this matrix. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline SymmetricMatrix<MT,SO,false,false>& SymmetricMatrix<MT,SO,false,false>::operator=( const SymmetricMatrix& rhs ) { using blaze::resize; if( &rhs == this ) return *this; resize( matrix_, rhs.rows(), rhs.columns() ); reset(); assign( rhs ); BLAZE_INTERNAL_ASSERT( isSquare( matrix_ ), "Non-square symmetric matrix detected" ); BLAZE_INTERNAL_ASSERT( isIntact(), "Broken invariant detected" ); return *this; } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Move assignment operator for SymmetricMatrix. // // \param rhs The matrix to be moved into this instance. // \return Reference to the assigned matrix. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline SymmetricMatrix<MT,SO,false,false>& SymmetricMatrix<MT,SO,false,false>::operator=( SymmetricMatrix&& rhs ) noexcept { matrix_ = std::move( rhs.matrix_ ); BLAZE_INTERNAL_ASSERT( isSquare( matrix_ ), "Non-square symmetric matrix detected" ); BLAZE_INTERNAL_ASSERT( isIntact(), "Broken invariant detected" ); return *this; } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Assignment operator for general matrices. // // \param rhs The general matrix to be copied. // \return Reference to the assigned matrix. // \exception std::invalid_argument Invalid assignment to symmetric matrix. // \exception std::invalid_argument Matrix sizes do not match. // // If possible and necessary, the matrix is resized according to the given \f$ N \times N \f$ // matrix and initialized as a copy of this matrix. If the matrix cannot be resized accordingly, // a \a std::invalid_argument exception is thrown. Also note that the given matrix must be a // symmetric matrix. Otherwise, a \a std::invalid_argument exception is thrown. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename MT2 > // Type of the right-hand side matrix inline DisableIf_< IsComputation<MT2>, SymmetricMatrix<MT,SO,false,false>& > SymmetricMatrix<MT,SO,false,false>::operator=( const Matrix<MT2,SO>& rhs ) { using blaze::resize; if( !IsSymmetric<MT2>::value && !isSymmetric( ~rhs ) ) { BLAZE_THROW_INVALID_ARGUMENT( "Invalid assignment to symmetric matrix" ); } if( (~rhs).canAlias( this ) ) { SymmetricMatrix tmp( ~rhs ); swap( tmp ); } else { resize( matrix_, (~rhs).rows(), (~rhs).columns() ); reset(); assign( ~rhs ); } BLAZE_INTERNAL_ASSERT( isSquare( matrix_ ), "Non-square symmetric matrix detected" ); BLAZE_INTERNAL_ASSERT( isIntact(), "Broken invariant detected" ); return *this; } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Assignment operator for matrix computations. // // \param rhs The matrix computation to be copied. // \return Reference to the assigned matrix. // \exception std::invalid_argument Invalid assignment to symmetric matrix. // \exception std::invalid_argument Matrix sizes do not match. // // If possible and necessary, the matrix is resized according to the given \f$ N \times N \f$ // matrix and initialized as a copy of this matrix. If the matrix cannot be resized accordingly, // a \a std::invalid_argument exception is thrown. Also note that the given matrix must be a // symmetric matrix. Otherwise, a \a std::invalid_argument exception is thrown. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename MT2 > // Type of the right-hand side matrix inline EnableIf_< IsComputation<MT2>, SymmetricMatrix<MT,SO,false,false>& > SymmetricMatrix<MT,SO,false,false>::operator=( const Matrix<MT2,SO>& rhs ) { using blaze::resize; if( !IsSquare<MT2>::value && !isSquare( ~rhs ) ) { BLAZE_THROW_INVALID_ARGUMENT( "Invalid assignment to symmetric matrix" ); } const ResultType_<MT2> tmp( ~rhs ); if( !IsSymmetric<MT2>::value && !isSymmetric( tmp ) ) { BLAZE_THROW_INVALID_ARGUMENT( "Invalid assignment to symmetric matrix" ); } resize( matrix_, tmp.rows(), tmp.columns() ); reset(); assign( tmp ); BLAZE_INTERNAL_ASSERT( isSquare( matrix_ ), "Non-square symmetric matrix detected" ); BLAZE_INTERNAL_ASSERT( isIntact(), "Broken invariant detected" ); return *this; } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Assignment operator for matrices with opposite storage order. // // \param rhs The right-hand side matrix to be copied. // \return Reference to the assigned matrix. // \exception std::invalid_argument Invalid assignment to symmetric matrix. // \exception std::invalid_argument Matrix sizes do not match. // // If possible and necessary, the matrix is resized according to the given \f$ N \times N \f$ // matrix and initialized as a copy of this matrix. If the matrix cannot be resized accordingly, // a \a std::invalid_argument exception is thrown. Also note that the given matrix must be a // symmetric matrix. Otherwise, a \a std::invalid_argument exception is thrown. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename MT2 > // Type of the right-hand side matrix inline SymmetricMatrix<MT,SO,false,false>& SymmetricMatrix<MT,SO,false,false>::operator=( const Matrix<MT2,!SO>& rhs ) { return this->operator=( trans( ~rhs ) ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Addition assignment operator for the addition of a matrix (\f$ A+=B \f$). // // \param rhs The right-hand side matrix to be added. // \return Reference to the matrix. // \exception std::invalid_argument Invalid assignment to symmetric matrix. // // In case the current sizes of the two matrices don't match, a \a std::invalid_argument exception // is thrown. Also note that the result of the addition operation must be a symmetric matrix, i.e. // the given matrix must be a symmetric matrix. In case the result is not a symmetric matrix, a // \a std::invalid_argument exception is thrown. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename MT2 > // Type of the right-hand side matrix inline SymmetricMatrix<MT,SO,false,false>& SymmetricMatrix<MT,SO,false,false>::operator+=( const Matrix<MT2,SO>& rhs ) { using blaze::resize; using Tmp = AddTrait_< MT, ResultType_<MT2> >; if( !IsSquare<MT2>::value && !isSquare( ~rhs ) ) { BLAZE_THROW_INVALID_ARGUMENT( "Invalid assignment to symmetric matrix" ); } Tmp tmp( (*this) + ~rhs ); if( !IsSymmetric<Tmp>::value && !isSymmetric( tmp ) ) { BLAZE_THROW_INVALID_ARGUMENT( "Invalid assignment to symmetric matrix" ); } resize( matrix_, tmp.rows(), tmp.columns() ); reset(); assign( tmp ); BLAZE_INTERNAL_ASSERT( isSquare( matrix_ ), "Non-square symmetric matrix detected" ); BLAZE_INTERNAL_ASSERT( isIntact(), "Broken invariant detected" ); return *this; } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Addition assignment operator for the addition of a matrix with opposite storage order // (\f$ A+=B \f$). // // \param rhs The right-hand side matrix to be added. // \return Reference to the matrix. // \exception std::invalid_argument Invalid assignment to symmetric matrix. // // In case the current sizes of the two matrices don't match, a \a std::invalid_argument exception // is thrown. Also note that the result of the addition operation must be a symmetric matrix, i.e. // the given matrix must be a symmetric matrix. In case the result is not a symmetric matrix, a // \a std::invalid_argument exception is thrown. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename MT2 > // Type of the right-hand side matrix inline SymmetricMatrix<MT,SO,false,false>& SymmetricMatrix<MT,SO,false,false>::operator+=( const Matrix<MT2,!SO>& rhs ) { return this->operator+=( trans( ~rhs ) ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Subtraction assignment operator for the subtraction of a matrix (\f$ A-=B \f$). // // \param rhs The right-hand side matrix to be subtracted. // \return Reference to the matrix. // \exception std::invalid_argument Invalid assignment to symmetric matrix. // // In case the current sizes of the two matrices don't match, a \a std::invalid_argument exception // is thrown. Also note that the result of the subtraction operation must be a symmetric matrix, // i.e. the given matrix must be a symmetric matrix. In case the result is not a symmetric matrix, // a \a std::invalid_argument exception is thrown. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename MT2 > // Type of the right-hand side matrix inline SymmetricMatrix<MT,SO,false,false>& SymmetricMatrix<MT,SO,false,false>::operator-=( const Matrix<MT2,SO>& rhs ) { using blaze::resize; using Tmp = SubTrait_< MT, ResultType_<MT2> >; if( !IsSquare<MT2>::value && !isSquare( ~rhs ) ) { BLAZE_THROW_INVALID_ARGUMENT( "Invalid assignment to symmetric matrix" ); } Tmp tmp( (*this) - ~rhs ); if( !IsSymmetric<Tmp>::value && !isSymmetric( tmp ) ) { BLAZE_THROW_INVALID_ARGUMENT( "Invalid assignment to symmetric matrix" ); } resize( matrix_, tmp.rows(), tmp.columns() ); reset(); assign( tmp ); BLAZE_INTERNAL_ASSERT( isSquare( matrix_ ), "Non-square symmetric matrix detected" ); BLAZE_INTERNAL_ASSERT( isIntact(), "Broken invariant detected" ); return *this; } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Subtraction assignment operator for the subtraction of a matrix with opposite storage // order (\f$ A-=B \f$). // // \param rhs The right-hand side matrix to be subtracted. // \return Reference to the matrix. // \exception std::invalid_argument Invalid assignment to symmetric matrix. // // In case the current sizes of the two matrices don't match, a \a std::invalid_argument exception // is thrown. Also note that the result of the subtraction operation must be a symmetric matrix, // i.e. the given matrix must be a symmetric matrix. In case the result is not a symmetric matrix, // a \a std::invalid_argument exception is thrown. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename MT2 > // Type of the right-hand side matrix inline SymmetricMatrix<MT,SO,false,false>& SymmetricMatrix<MT,SO,false,false>::operator-=( const Matrix<MT2,!SO>& rhs ) { return this->operator-=( trans( ~rhs ) ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Schur product assignment operator for the multiplication of a matrix (\f$ A\circ=B \f$). // // \param rhs The right-hand side matrix for the Schur product. // \return Reference to the matrix. // \exception std::invalid_argument Invalid assignment to symmetric matrix. // // In case the current sizes of the two matrices don't match, a \a std::invalid_argument exception // is thrown. Also note that the result of the Schur product operation must be a symmetric matrix, // i.e. the given matrix must be a symmetric matrix. In case the result is not a symmetric matrix, // a \a std::invalid_argument exception is thrown. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename MT2 > // Type of the right-hand side matrix inline SymmetricMatrix<MT,SO,false,false>& SymmetricMatrix<MT,SO,false,false>::operator%=( const Matrix<MT2,SO>& rhs ) { using blaze::resize; using Tmp = SchurTrait_< MT, ResultType_<MT2> >; if( !IsSquare<MT2>::value && !isSquare( ~rhs ) ) { BLAZE_THROW_INVALID_ARGUMENT( "Invalid assignment to symmetric matrix" ); } Tmp tmp( (*this) % ~rhs ); if( !IsSymmetric<Tmp>::value && !isSymmetric( tmp ) ) { BLAZE_THROW_INVALID_ARGUMENT( "Invalid assignment to symmetric matrix" ); } resize( matrix_, tmp.rows(), tmp.columns() ); reset(); assign( tmp ); BLAZE_INTERNAL_ASSERT( isSquare( matrix_ ), "Non-square symmetric matrix detected" ); BLAZE_INTERNAL_ASSERT( isIntact(), "Broken invariant detected" ); return *this; } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Schur product assignment operator for the multiplication of a matrix with opposite // storage order (\f$ A\circ=B \f$). // // \param rhs The right-hand side matrix for the Schur product. // \return Reference to the matrix. // \exception std::invalid_argument Invalid assignment to symmetric matrix. // // In case the current sizes of the two matrices don't match, a \a std::invalid_argument exception // is thrown. Also note that the result of the Schur product operation must be a symmetric matrix, // i.e. the given matrix must be a symmetric matrix. In case the result is not a symmetric matrix, // a \a std::invalid_argument exception is thrown. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename MT2 > // Type of the right-hand side matrix inline SymmetricMatrix<MT,SO,false,false>& SymmetricMatrix<MT,SO,false,false>::operator%=( const Matrix<MT2,!SO>& rhs ) { return this->operator%=( trans( ~rhs ) ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Multiplication assignment operator for the multiplication between a matrix and // a scalar value (\f$ A*=s \f$). // // \param rhs The right-hand side scalar value for the multiplication. // \return Reference to the matrix. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename Other > // Data type of the right-hand side scalar inline EnableIf_< IsNumeric<Other>, SymmetricMatrix<MT,SO,false,false> >& SymmetricMatrix<MT,SO,false,false>::operator*=( Other rhs ) { for( size_t i=0UL; i<rows(); ++i ) { const Iterator_<MatrixType> last( matrix_.upperBound(i,i) ); for( Iterator_<MatrixType> element=matrix_.begin(i); element!=last; ++element ) *element->value() *= rhs; } return *this; } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Division assignment operator for the division of a matrix by a scalar value // (\f$ A/=s \f$). // // \param rhs The right-hand side scalar value for the division. // \return Reference to the matrix. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename Other > // Data type of the right-hand side scalar inline EnableIf_< IsNumeric<Other>, SymmetricMatrix<MT,SO,false,false> >& SymmetricMatrix<MT,SO,false,false>::operator/=( Other rhs ) { BLAZE_USER_ASSERT( rhs != Other(0), "Division by zero detected" ); for( size_t i=0UL; i<rows(); ++i ) { const Iterator_<MatrixType> last( matrix_.upperBound(i,i) ); for( Iterator_<MatrixType> element=matrix_.begin(i); element!=last; ++element ) *element->value() /= rhs; } return *this; } /*! \endcond */ //************************************************************************************************* //================================================================================================= // // UTILITY FUNCTIONS // //================================================================================================= //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns the current number of rows of the matrix. // // \return The number of rows of the matrix. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline size_t SymmetricMatrix<MT,SO,false,false>::rows() const noexcept { return matrix_.rows(); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns the current number of columns of the matrix. // // \return The number of columns of the matrix. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline size_t SymmetricMatrix<MT,SO,false,false>::columns() const noexcept { return matrix_.columns(); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns the maximum capacity of the matrix. // // \return The capacity of the matrix. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline size_t SymmetricMatrix<MT,SO,false,false>::capacity() const noexcept { return matrix_.capacity(); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns the current capacity of the specified row/column. // // \param i The index of the row/column. // \return The current capacity of row/column \a i. // // This function returns the current capacity of the specified row/column. In case the symmetric // matrix adapts a \a rowMajor sparse matrix the function returns the capacity of row \a i, in // case it adapts a \a columnMajor sparse matrix the function returns the capacity of column \a i. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline size_t SymmetricMatrix<MT,SO,false,false>::capacity( size_t i ) const noexcept { return matrix_.capacity(i); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns the total number of non-zero elements in the matrix // // \return The number of non-zero elements in the symmetric matrix. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline size_t SymmetricMatrix<MT,SO,false,false>::nonZeros() const { return matrix_.nonZeros(); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns the number of non-zero elements in the specified row/column. // // \param i The index of the row/column. // \return The number of non-zero elements of row/column \a i. // // This function returns the current number of non-zero elements in the specified row/column. In // case the symmetric matrix adapts a \a rowMajor sparse matrix the function returns the number of // non-zero elements in row \a i, in case it adapts a to \a columnMajor sparse matrix the function // returns the number of non-zero elements in column \a i. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline size_t SymmetricMatrix<MT,SO,false,false>::nonZeros( size_t i ) const { return matrix_.nonZeros(i); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Reset to the default initial values. // // \return void */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline void SymmetricMatrix<MT,SO,false,false>::reset() { matrix_.reset(); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Reset the specified row \b and column to the default initial values. // // \param i The index of the row/column. // \return void // \exception std::invalid_argument Invalid row/column access index. // // This function resets the values in the specified row \b and column to their default value. // The following example demonstrates this by means of a \f$ 5 \times 5 \f$ symmetric matrix: \code using blaze::CompressedMatrix; using blaze::StaticVector; using blaze::SymmetricMatrix; SymmetricMatrix< CompressedMatrix< StaticVector<int,1UL> > > A; // Initializing the symmetric matrix A to // // ( ( ) ( 2 ) ( 5 ) ( -4 ) ( ) ) // ( ( 2 ) ( 1 ) ( -3 ) ( 7 ) ( ) ) // A = ( ( 5 ) ( -3 ) ( 8 ) ( -1 ) ( -2 ) ) // ( ( -4 ) ( 7 ) ( -1 ) ( ) ( -6 ) ) // ( ( ) ( 0 ) ( -2 ) ( -6 ) ( 1 ) ) // ... // Resetting the 1st row/column results in the matrix // // ( ( ) ( ) ( 5 ) ( -4 ) ( ) ) // ( ( ) ( ) ( ) ( ) ( ) ) // A = ( ( 5 ) ( ) ( 8 ) ( -1 ) ( -2 ) ) // ( ( -4 ) ( ) ( -1 ) ( ) ( -6 ) ) // ( ( ) ( ) ( -2 ) ( -6 ) ( 1 ) ) // A.reset( 1UL ); \endcode // Note that the reset() function has no impact on the capacity of the matrix or row/column. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline void SymmetricMatrix<MT,SO,false,false>::reset( size_t i ) { for( Iterator_<MatrixType> it=matrix_.begin(i); it!=matrix_.end(i); ++it ) { const size_t j( it->index() ); if( i == j ) continue; if( SO ) { const Iterator_<MatrixType> pos( matrix_.find( i, j ) ); BLAZE_INTERNAL_ASSERT( pos != matrix_.end( j ), "Missing element detected" ); matrix_.erase( j, pos ); } else { const Iterator_<MatrixType> pos( matrix_.find( j, i ) ); BLAZE_INTERNAL_ASSERT( pos != matrix_.end( j ), "Missing element detected" ); matrix_.erase( j, pos ); } } matrix_.reset( i ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Clearing the symmetric matrix. // // \return void // // This function clears the symmetric matrix and returns it to its default state. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline void SymmetricMatrix<MT,SO,false,false>::clear() { using blaze::clear; clear( matrix_ ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Changing the size of the symmetric matrix. // // \param n The new number of rows and columns of the matrix. // \param preserve \a true if the old values of the matrix should be preserved, \a false if not. // \return void // // This function resizes the matrix using the given size to \f$ m \times n \f$. During this // operation, new dynamic memory may be allocated in case the capacity of the matrix is too // small. Note that this function may invalidate all existing views (submatrices, rows, columns, // ...) on the matrix if it is used to shrink the matrix. Additionally, the resize operation // potentially changes all matrix elements. In order to preserve the old matrix values, the // \a preserve flag can be set to \a true. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix void SymmetricMatrix<MT,SO,false,false>::resize( size_t n, bool preserve ) { BLAZE_CONSTRAINT_MUST_BE_RESIZABLE_TYPE( MT ); UNUSED_PARAMETER( preserve ); BLAZE_INTERNAL_ASSERT( isSquare( matrix_ ), "Non-square symmetric matrix detected" ); matrix_.resize( n, n, true ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Setting the minimum capacity of the symmetric matrix. // // \param nonzeros The new minimum capacity of the symmetric matrix. // \return void // // This function increases the capacity of the symmetric matrix to at least \a nonzeros elements. // The current values of the matrix elements and the individual capacities of the matrix rows // are preserved. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline void SymmetricMatrix<MT,SO,false,false>::reserve( size_t nonzeros ) { matrix_.reserve( nonzeros ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Setting the minimum capacity of a specific row/column of the symmetric matrix. // // \param i The row/column index \f$[0..N-1]\f$. // \param nonzeros The new minimum capacity of the specified row/column. // \return void // // This function increases the capacity of row/column \a i of the symmetric matrix to at least // \a nonzeros elements. The current values of the symmetric matrix and all other individual // row/column capacities are preserved. In case the storage order is set to \a rowMajor, the // function reserves capacity for row \a i. In case the storage order is set to \a columnMajor, // the function reserves capacity for column \a i. The index has to be in the range \f$[0..N-1]\f$. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline void SymmetricMatrix<MT,SO,false,false>::reserve( size_t i, size_t nonzeros ) { matrix_.reserve( i, nonzeros ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Removing all excessive capacity from all rows/columns. // // \return void // // The trim() function can be used to reverse the effect of all row/column-specific reserve() // calls. The function removes all excessive capacity from all rows (in case of a rowMajor // matrix) or columns (in case of a columnMajor matrix). Note that this function does not // remove the overall capacity but only reduces the capacity per row/column. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline void SymmetricMatrix<MT,SO,false,false>::trim() { matrix_.trim(); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Removing all excessive capacity of a specific row/column of the symmetric matrix. // // \param i The index of the row/column to be trimmed \f$[0..N-1]\f$. // \return void // // This function can be used to reverse the effect of a row/column-specific reserve() call. // It removes all excessive capacity from the specified row (in case of a rowMajor matrix) // or column (in case of a columnMajor matrix). The excessive capacity is assigned to the // subsequent row/column. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline void SymmetricMatrix<MT,SO,false,false>::trim( size_t i ) { matrix_.trim( i ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Requesting the removal of unused capacity. // // \return void // // This function minimizes the capacity of the matrix by removing unused capacity. Please note // that in case a reallocation occurs, all iterators (including end() iterators), all pointers // and references to elements of this matrix are invalidated. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline void SymmetricMatrix<MT,SO,false,false>::shrinkToFit() { matrix_.shrinkToFit(); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Swapping the contents of two matrices. // // \param m The matrix to be swapped. // \return void */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline void SymmetricMatrix<MT,SO,false,false>::swap( SymmetricMatrix& m ) noexcept { using std::swap; swap( matrix_, m.matrix_ ); } /*! \endcond */ //************************************************************************************************* //================================================================================================= // // INSERTION FUNCTIONS // //================================================================================================= //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Setting elements of the symmetric matrix. // // \param i The row index of the new element. The index has to be in the range \f$[0..N-1]\f$. // \param j The column index of the new element. The index has to be in the range \f$[0..N-1]\f$. // \param value The value of the element to be set. // \return Iterator to the set element. // // This function sets the value of both the elements \f$ a_{ij} \f$ and \f$ a_{ji} \f$ of the // symmetric matrix and returns an iterator to the successfully set element \f$ a_{ij} \f$. In // case the symmetric matrix already contains the two elements with index \a i and \a j their // values are modified, else two new elements with the given \a value are inserted. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline typename SymmetricMatrix<MT,SO,false,false>::Iterator SymmetricMatrix<MT,SO,false,false>::set( size_t i, size_t j, const ElementType& value ) { SharedValue<ET> shared( value ); if( i != j ) matrix_.set( j, i, shared ); return Iterator( matrix_.set( i, j, shared ) ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Inserting elements into the symmetric matrix. // // \param i The row index of the new element. The index has to be in the range \f$[0..N-1]\f$. // \param j The column index of the new element. The index has to be in the range \f$[0..N-1]\f$. // \param value The value of the element to be inserted. // \return Iterator to the newly inserted element. // \exception std::invalid_argument Invalid sparse matrix access index. // // This function inserts both the elements \f$ a_{ij} \f$ and \f$ a_{ji} \f$ into the symmetric // matrix and returns an iterator to the successfully inserted element \f$ a_{ij} \f$. However, // duplicate elements are not allowed. In case the symmetric matrix an element with row index // \a i and column index \a j, a \a std::invalid_argument exception is thrown. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline typename SymmetricMatrix<MT,SO,false,false>::Iterator SymmetricMatrix<MT,SO,false,false>::insert( size_t i, size_t j, const ElementType& value ) { SharedValue<ET> shared( value ); if( i != j ) matrix_.insert( j, i, shared ); return Iterator( matrix_.insert( i, j, shared ) ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Appending elements to the specified row/column of the symmetric matrix. // // \param i The row index of the new element. The index has to be in the range \f$[0..N-1]\f$. // \param j The column index of the new element. The index has to be in the range \f$[0..N-1]\f$. // \param value The value of the element to be appended. // \param check \a true if the new value should be checked for default values, \a false if not. // \return void // // This function both appends the element \f$ a_{ij} \f$ to the specified row/column and inserts // its according counterpart \f$ a_{ji} \f$ into the symmetric matrix. Since element \f$ a_{ij} \f$ // is appended without any additional memory allocation, it is strictly necessary to keep the // following preconditions in mind: // // - the index of the new element must be strictly larger than the largest index of non-zero // elements in the specified row/column of the sparse matrix // - the current number of non-zero elements in the matrix must be smaller than the capacity // of the matrix // // Ignoring these preconditions might result in undefined behavior! The optional \a check // parameter specifies whether the new value should be tested for a default value. If the new // value is a default value (for instance 0 in case of an integral element type) the value is // not appended. Per default the values are not tested. // // Although in addition to element \f$ a_{ij} \f$ a second element \f$ a_{ji} \f$ is inserted into // the matrix, this function still provides the most efficient way to fill a symmetric matrix with // values. However, in order to achieve maximum efficiency, the matrix has to be specifically // prepared with reserve() calls: \code using blaze::CompressedMatrix; using blaze::SymmetricMatrix; using blaze::rowMajor; // Setup of the symmetric matrix // // ( 0 1 3 ) // A = ( 1 2 0 ) // ( 3 0 0 ) SymmetricMatrix< CompressedMatrix<double,rowMajor> > A( 3 ); A.reserve( 5 ); // Reserving enough capacity for 5 non-zero elements A.reserve( 0, 2 ); // Reserving two non-zero elements in the first row A.reserve( 1, 2 ); // Reserving two non-zero elements in the second row A.reserve( 2, 1 ); // Reserving a single non-zero element in the third row A.append( 0, 1, 1.0 ); // Appending the value 1 at position (0,1) and (1,0) A.append( 1, 1, 2.0 ); // Appending the value 2 at position (1,1) A.append( 2, 0, 3.0 ); // Appending the value 3 at position (2,0) and (0,2) \endcode // \note Although append() does not allocate new memory, it still invalidates all iterators // returned by the end() functions! */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline void SymmetricMatrix<MT,SO,false,false>::append( size_t i, size_t j, const ElementType& value, bool check ) { SharedValue<ET> shared( value ); matrix_.append( i, j, shared, check ); if( i != j && ( !check || !isDefault<strict>( value ) ) ) matrix_.insert( j, i, shared ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Finalizing the element insertion of a row/column. // // \param i The index of the row/column to be finalized \f$[0..N-1]\f$. // \return void // // This function is part of the low-level interface to efficiently fill a matrix with elements. // After completion of row/column \a i via the append() function, this function can be called to // finalize row/column \a i and prepare the next row/column for insertion process via append(). // // \note Although finalize() does not allocate new memory, it still invalidates all iterators // returned by the end() functions! */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline void SymmetricMatrix<MT,SO,false,false>::finalize( size_t i ) { matrix_.trim( i ); } /*! \endcond */ //************************************************************************************************* //================================================================================================= // // ERASE FUNCTIONS // //================================================================================================= //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Erasing elements from the symmetric matrix. // // \param i The row index of the element to be erased. The index has to be in the range \f$[0..N-1]\f$. // \param j The column index of the element to be erased. The index has to be in the range \f$[0..N-1]\f$. // \return void // // This function erases both elements \f$ a_{ij} \f$ and \f$ a_{ji} \f$ from the symmetric matrix. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline void SymmetricMatrix<MT,SO,false,false>::erase( size_t i, size_t j ) { matrix_.erase( i, j ); if( i != j ) matrix_.erase( j, i ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Erasing elements from the symmetric matrix. // // \param i The row/column index of the element to be erased. The index has to be in the range \f$[0..N-1]\f$. // \param pos Iterator to the element to be erased. // \return Iterator to the element after the erased element. // // This function erases both the specified element and its according symmetric counterpart from // the symmetric matrix. In case the storage order is set to \a rowMajor the given index \a i // refers to a row, in case the storage flag is set to \a columnMajor \a i refers to a column. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline typename SymmetricMatrix<MT,SO,false,false>::Iterator SymmetricMatrix<MT,SO,false,false>::erase( size_t i, Iterator pos ) { if( pos == end( i ) ) return pos; const size_t j( pos->index() ); if( i == j ) return Iterator( matrix_.erase( i, pos.base() ) ); if( SO ) { BLAZE_INTERNAL_ASSERT( matrix_.find( i, j ) != matrix_.end( j ), "Missing element detected" ); matrix_.erase( j, matrix_.find( i, j ) ); return Iterator( matrix_.erase( i, pos.base() ) ); } else { BLAZE_INTERNAL_ASSERT( matrix_.find( j, i ) != matrix_.end( j ), "Missing element detected" ); matrix_.erase( j, matrix_.find( j, i ) ); return Iterator( matrix_.erase( i, pos.base() ) ); } } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Erasing a range of elements from the symmetric matrix. // // \param i The row/column index of the element to be erased. The index has to be in the range \f$[0..N-1]\f$. // \param first Iterator to first element to be erased. // \param last Iterator just past the last element to be erased. // \return Iterator to the element after the erased element. // // This function erases both the range of elements specified by the iterator pair \a first and // \a last and their according symmetric counterparts from the symmetric matrix. In case the // storage order is set to \a rowMajor the given index \a i refers to a row, in case the storage // flag is set to \a columnMajor \a i refers to a column. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline typename SymmetricMatrix<MT,SO,false,false>::Iterator SymmetricMatrix<MT,SO,false,false>::erase( size_t i, Iterator first, Iterator last ) { for( Iterator it=first; it!=last; ++it ) { const size_t j( it->index() ); if( i == j ) continue; if( SO ) { BLAZE_INTERNAL_ASSERT( matrix_.find( i, j ) != matrix_.end( j ), "Missing element detected" ); matrix_.erase( i, j ); } else { BLAZE_INTERNAL_ASSERT( matrix_.find( j, i ) != matrix_.end( j ), "Missing element detected" ); matrix_.erase( j, i ); } } return Iterator( matrix_.erase( i, first.base(), last.base() ) ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Erasing specific elements from the symmetric matrix. // // \param predicate The unary predicate for the element selection. // \return void. // // This function erases specific elements from the symmetric matrix. The elements are selected // by the given unary predicate \a predicate, which is expected to accept a single argument of // the type of the elements and to be pure. // // \note The predicate is required to be pure, i.e. to produce deterministic results for elements // with the same value. The attempt to use an impure predicate leads to undefined behavior! */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename Pred > // Type of the unary predicate inline void SymmetricMatrix<MT,SO,false,false>::erase( Pred predicate ) { matrix_.erase( [predicate=predicate]( const SharedValue<ET>& value ) { return predicate( *value ); } ); BLAZE_INTERNAL_ASSERT( isIntact(), "Broken invariant detected" ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Erasing specific elements from a range of the symmetric matrix. // // \param i The row/column index of the elements to be erased. The index has to be in the range \f$[0..M-1]\f$. // \param first Iterator to first element of the range. // \param last Iterator just past the last element of the range. // \param predicate The unary predicate for the element selection. // \return void // // This function erases specific elements from a range of elements of the symmetric matrix. The // elements are selected by the given unary predicate \a predicate, which is expected to accept // a single argument of the type of the elements and to be pure. In case the storage order is // set to \a rowMajor the function erases a range of elements from row \a i, in case the storage // flag is set to \a columnMajor the function erases a range of elements from column \a i. // // \note The predicate is required to be pure, i.e. to produce deterministic results for elements // with the same value. The attempt to use an impure predicate leads to undefined behavior! */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename Pred > // Type of the unary predicate inline void SymmetricMatrix<MT,SO,false,false>::erase( size_t i, Iterator first, Iterator last, Pred predicate ) { for( Iterator it=first; it!=last; ++it ) { const size_t j( it->index() ); if( i != j && predicate( it->value() ) ) { if( SO ) matrix_.erase( i, j ); else matrix_.erase( j, i ); } } matrix_.erase( i, first.base(), last.base(), [predicate=predicate]( const SharedValue<ET>& value ) { return predicate( *value ); } ); BLAZE_INTERNAL_ASSERT( isIntact(), "Broken invariant detected" ); } /*! \endcond */ //************************************************************************************************* //================================================================================================= // // LOOKUP FUNCTIONS // //================================================================================================= //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Searches for a specific matrix element. // // \param i The row index of the search element. The index has to be in the range \f$[0..N-1]\f$. // \param j The column index of the search element. The index has to be in the range \f$[0..N-1]\f$. // \return Iterator to the element in case the index is found, end() iterator otherwise. // // This function can be used to check whether a specific element is contained in the symmetric // matrix. It specifically searches for the element with row index \a i and column index \a j. // In case the element is found, the function returns an row/column iterator to the element. // Otherwise an iterator just past the last non-zero element of row \a i or column \a j (the // end() iterator) is returned. Note that the returned symmetric matrix iterator is subject // to invalidation due to inserting operations via the function call operator or the insert() // function! */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline typename SymmetricMatrix<MT,SO,false,false>::Iterator SymmetricMatrix<MT,SO,false,false>::find( size_t i, size_t j ) { return Iterator( matrix_.find( i, j ) ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Searches for a specific matrix element. // // \param i The row index of the search element. The index has to be in the range \f$[0..N-1]\f$. // \param j The column index of the search element. The index has to be in the range \f$[0..N-1]\f$. // \return Iterator to the element in case the index is found, end() iterator otherwise. // // This function can be used to check whether a specific element is contained in the symmetric // matrix. It specifically searches for the element with row index \a i and column index \a j. // In case the element is found, the function returns an row/column iterator to the element. // Otherwise an iterator just past the last non-zero element of row \a i or column \a j (the // end() iterator) is returned. Note that the returned symmetric matrix iterator is subject // to invalidation due to inserting operations via the function call operator or the insert() // function! */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline typename SymmetricMatrix<MT,SO,false,false>::ConstIterator SymmetricMatrix<MT,SO,false,false>::find( size_t i, size_t j ) const { return ConstIterator( matrix_.find( i, j ) ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns an iterator to the first index not less then the given index. // // \param i The row index of the search element. The index has to be in the range \f$[0..N-1]\f$. // \param j The column index of the search element. The index has to be in the range \f$[0..N-1]\f$. // \return Iterator to the first index not less then the given index, end() iterator otherwise. // // In case of a row-major matrix, this function returns a row iterator to the first element with // an index not less then the given column index. In case of a column-major matrix, the function // returns a column iterator to the first element with an index not less then the given row // index. In combination with the upperBound() function this function can be used to create a // pair of iterators specifying a range of indices. Note that the returned symmetric matrix // iterator is subject to invalidation due to inserting operations via the function call operator // or the insert() function! */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline typename SymmetricMatrix<MT,SO,false,false>::Iterator SymmetricMatrix<MT,SO,false,false>::lowerBound( size_t i, size_t j ) { return Iterator( matrix_.lowerBound( i, j ) ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns an iterator to the first index not less then the given index. // // \param i The row index of the search element. The index has to be in the range \f$[0..N-1]\f$. // \param j The column index of the search element. The index has to be in the range \f$[0..N-1]\f$. // \return Iterator to the first index not less then the given index, end() iterator otherwise. // // In case of a row-major matrix, this function returns a row iterator to the first element with // an index not less then the given column index. In case of a column-major matrix, the function // returns a column iterator to the first element with an index not less then the given row // index. In combination with the upperBound() function this function can be used to create a // pair of iterators specifying a range of indices. Note that the returned symmetric matrix // iterator is subject to invalidation due to inserting operations via the function call operator // or the insert() function! */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline typename SymmetricMatrix<MT,SO,false,false>::ConstIterator SymmetricMatrix<MT,SO,false,false>::lowerBound( size_t i, size_t j ) const { return ConstIterator( matrix_.lowerBound( i, j ) ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns an iterator to the first index greater then the given index. // // \param i The row index of the search element. The index has to be in the range \f$[0..N-1]\f$. // \param j The column index of the search element. The index has to be in the range \f$[0..N-1]\f$. // \return Iterator to the first index greater then the given index, end() iterator otherwise. // // In case of a row-major matrix, this function returns a row iterator to the first element with // an index greater then the given column index. In case of a column-major matrix, the function // returns a column iterator to the first element with an index greater then the given row // index. In combination with the upperBound() function this function can be used to create a // pair of iterators specifying a range of indices. Note that the returned symmetric matrix // iterator is subject to invalidation due to inserting operations via the function call operator // or the insert() function! */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline typename SymmetricMatrix<MT,SO,false,false>::Iterator SymmetricMatrix<MT,SO,false,false>::upperBound( size_t i, size_t j ) { return Iterator( matrix_.upperBound( i, j ) ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns an iterator to the first index greater then the given index. // // \param i The row index of the search element. The index has to be in the range \f$[0..N-1]\f$. // \param j The column index of the search element. The index has to be in the range \f$[0..N-1]\f$. // \return Iterator to the first index greater then the given index, end() iterator otherwise. // // In case of a row-major matrix, this function returns a row iterator to the first element with // an index greater then the given column index. In case of a column-major matrix, the function // returns a column iterator to the first element with an index greater then the given row // index. In combination with the upperBound() function this function can be used to create a // pair of iterators specifying a range of indices. Note that the returned symmetric matrix // iterator is subject to invalidation due to inserting operations via the function call operator // or the insert() function! */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline typename SymmetricMatrix<MT,SO,false,false>::ConstIterator SymmetricMatrix<MT,SO,false,false>::upperBound( size_t i, size_t j ) const { return ConstIterator( matrix_.upperBound( i, j ) ); } /*! \endcond */ //************************************************************************************************* //================================================================================================= // // NUMERIC FUNCTIONS // //================================================================================================= //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief In-place transpose of the symmetric matrix. // // \return Reference to the transposed matrix. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline SymmetricMatrix<MT,SO,false,false>& SymmetricMatrix<MT,SO,false,false>::transpose() { return *this; } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief In-place conjugate transpose of the symmetric matrix. // // \return Reference to the transposed matrix. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline SymmetricMatrix<MT,SO,false,false>& SymmetricMatrix<MT,SO,false,false>::ctranspose() { for( size_t i=0UL; i<rows(); ++i ) { const Iterator_<MatrixType> last( matrix_.upperBound(i,i) ); for( Iterator_<MatrixType> element=matrix_.begin(i); element!=last; ++element ) conjugate( *element->value() ); } return *this; } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Scaling of the matrix by the scalar value \a scalar (\f$ A=B*s \f$). // // \param scalar The scalar value for the matrix scaling. // \return Reference to the matrix. // // This function scales the matrix by applying the given scalar value \a scalar to each element // of the matrix. For built-in and \c complex data types it has the same effect as using the // multiplication assignment operator: \code blaze::SymmetricMatrix< blaze::CompressedMatrix< blaze::StaticVector<int,1UL> > > A; // ... Resizing and initialization A *= 4; // Scaling of the matrix A.scale( 4 ); // Same effect as above \endcode */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename Other > // Data type of the scalar value inline SymmetricMatrix<MT,SO,false,false>& SymmetricMatrix<MT,SO,false,false>::scale( const Other& scalar ) { for( size_t i=0UL; i<rows(); ++i ) { const Iterator_<MatrixType> last( matrix_.upperBound(i,i) ); for( Iterator_<MatrixType> element=matrix_.begin(i); element!=last; ++element ) ( *element->value() ).scale( scalar ); } return *this; } /*! \endcond */ //************************************************************************************************* //================================================================================================= // // DEBUGGING FUNCTIONS // //================================================================================================= //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns whether the invariants of the symmetric matrix are intact. // // \return \a true in case the symmetric matrix's invariants are intact, \a false otherwise. // // This function checks whether the invariants of the symmetric matrix are intact, i.e. if its // state is valid. In case the invariants are intact, the function returns \a true, else it // will return \a false. */ template< typename MT // Type of the adapted dense matrix , bool SO > // Storage order of the adapted dense matrix inline bool SymmetricMatrix<MT,SO,false,false>::isIntact() const noexcept { using blaze::isIntact; return ( isIntact( matrix_ ) && isSymmetric( matrix_ ) ); } /*! \endcond */ //************************************************************************************************* //================================================================================================= // // EXPRESSION TEMPLATE EVALUATION FUNCTIONS // //================================================================================================= //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns whether the matrix can alias with the given address \a alias. // // \param alias The alias to be checked. // \return \a true in case the alias corresponds to this matrix, \a false if not. // // This function returns whether the given address can alias with the matrix. In contrast // to the isAliased() function this function is allowed to use compile time expressions // to optimize the evaluation. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename Other > // Data type of the foreign expression inline bool SymmetricMatrix<MT,SO,false,false>::canAlias( const Other* alias ) const noexcept { return matrix_.canAlias( alias ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns whether the matrix is aliased with the given address \a alias. // // \param alias The alias to be checked. // \return \a true in case the alias corresponds to this matrix, \a false if not. // // This function returns whether the given address is aliased with the matrix. In contrast // to the canAlias() function this function is not allowed to use compile time expressions // to optimize the evaluation. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename Other > // Data type of the foreign expression inline bool SymmetricMatrix<MT,SO,false,false>::isAliased( const Other* alias ) const noexcept { return matrix_.isAliased( alias ); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Returns whether the matrix can be used in SMP assignments. // // \return \a true in case the matrix can be used in SMP assignments, \a false if not. // // This function returns whether the matrix can be used in SMP assignments. In contrast to the // \a smpAssignable member enumeration, which is based solely on compile time information, this // function additionally provides runtime information (as for instance the current number of // rows and/or columns of the matrix). */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix inline bool SymmetricMatrix<MT,SO,false,false>::canSMPAssign() const noexcept { return matrix_.canSMPAssign(); } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Optimized implementation of the assignment of a temporary dense matrix. // // \param rhs The right-hand side dense matrix to be assigned. // \return void // // This function must \b NOT be called explicitly! It is used internally for the performance // optimized evaluation of expression templates. Calling this function explicitly might result // in erroneous results and/or in compilation errors. Instead of using this function use the // assignment operator. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename MT2 > // Type of the right-hand side dense matrix void SymmetricMatrix<MT,SO,false,false>::assign( DenseMatrix<MT2,SO>& rhs ) { BLAZE_CONSTRAINT_MUST_NOT_BE_COMPUTATION_TYPE( MT2 ); BLAZE_INTERNAL_ASSERT( rows() == (~rhs).rows() , "Invalid number of rows" ); BLAZE_INTERNAL_ASSERT( columns() == (~rhs).columns(), "Invalid number of columns" ); std::vector<size_t> nonzeros( rows(), 0UL ); size_t sum( 0UL ); for( size_t i=0UL; i<rows(); ++i ) { nonzeros[i] = (~rhs).nonZeros(i); sum += nonzeros[i]; } matrix_.reserve( sum ); for( size_t i=0UL; i<rows(); ++i ) { matrix_.reserve( i, nonzeros[i] ); } for( size_t i=0UL; i<rows(); ++i ) { for( size_t j=i; j<columns(); ++j ) { if( !isDefault( (~rhs)(i,j) ) ) { SharedValue<ET> shared; *shared = std::move( (~rhs)(i,j) ); matrix_.append( i, j, shared, false ); if( i != j ) matrix_.append( j, i, shared, false ); } } } } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Default implementation of the assignment of a dense matrix. // // \param rhs The right-hand side dense matrix to be assigned. // \return void // // This function must \b NOT be called explicitly! It is used internally for the performance // optimized evaluation of expression templates. Calling this function explicitly might result // in erroneous results and/or in compilation errors. Instead of using this function use the // assignment operator. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename MT2 > // Type of the right-hand side dense matrix void SymmetricMatrix<MT,SO,false,false>::assign( const DenseMatrix<MT2,SO>& rhs ) { BLAZE_CONSTRAINT_MUST_NOT_BE_COMPUTATION_TYPE( MT2 ); BLAZE_INTERNAL_ASSERT( rows() == (~rhs).rows() , "Invalid number of rows" ); BLAZE_INTERNAL_ASSERT( columns() == (~rhs).columns(), "Invalid number of columns" ); std::vector<size_t> nonzeros( rows(), 0UL ); size_t sum( 0UL ); for( size_t i=0UL; i<rows(); ++i ) { nonzeros[i] = (~rhs).nonZeros(i); sum += nonzeros[i]; } matrix_.reserve( sum ); for( size_t i=0UL; i<rows(); ++i ) { matrix_.reserve( i, nonzeros[i] ); } for( size_t i=0UL; i<rows(); ++i ) { for( size_t j=i; j<columns(); ++j ) { if( !isDefault( (~rhs)(i,j) ) ) { const SharedValue<ET> shared( (~rhs)(i,j) ); matrix_.append( i, j, shared, false ); if( i != j ) matrix_.append( j, i, shared, false ); } } } } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Optimized implementation of the assignment of a temporary sparse matrix. // // \param rhs The right-hand side sparse matrix to be assigned. // \return void // // This function must \b NOT be called explicitly! It is used internally for the performance // optimized evaluation of expression templates. Calling this function explicitly might result // in erroneous results and/or in compilation errors. Instead of using this function use the // assignment operator. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename MT2 > // Type of the right-hand side sparse matrix void SymmetricMatrix<MT,SO,false,false>::assign( SparseMatrix<MT2,SO>& rhs ) { BLAZE_CONSTRAINT_MUST_NOT_BE_COMPUTATION_TYPE( MT2 ); BLAZE_INTERNAL_ASSERT( rows() == (~rhs).rows() , "Invalid number of rows" ); BLAZE_INTERNAL_ASSERT( columns() == (~rhs).columns(), "Invalid number of columns" ); std::vector<size_t> nonzeros( rows(), 0UL ); size_t sum( 0UL ); for( size_t i=0UL; i<rows(); ++i ) { nonzeros[i] = (~rhs).nonZeros(i); sum += nonzeros[i]; } matrix_.reserve( sum ); for( size_t i=0UL; i<rows(); ++i ) { matrix_.reserve( i, nonzeros[i] ); } for( size_t i=0UL; i<rows(); ++i ) { for( Iterator_<MT2> it=(~rhs).lowerBound(i,i); it!=(~rhs).end(i); ++it ) { if( !isDefault( it->value() ) ) { SharedValue<ET> shared; *shared = std::move( it->value() ); matrix_.append( i, it->index(), shared, false ); if( i != it->index() ) matrix_.append( it->index(), i, shared, false ); } } } } /*! \endcond */ //************************************************************************************************* //************************************************************************************************* /*! \cond BLAZE_INTERNAL */ /*!\brief Default implementation of the assignment of a sparse matrix. // // \param rhs The right-hand side sparse matrix to be assigned. // \return void // // This function must \b NOT be called explicitly! It is used internally for the performance // optimized evaluation of expression templates. Calling this function explicitly might result // in erroneous results and/or in compilation errors. Instead of using this function use the // assignment operator. */ template< typename MT // Type of the adapted sparse matrix , bool SO > // Storage order of the adapted sparse matrix template< typename MT2 > // Type of the right-hand side sparse matrix void SymmetricMatrix<MT,SO,false,false>::assign( const SparseMatrix<MT2,SO>& rhs ) { BLAZE_CONSTRAINT_MUST_NOT_BE_COMPUTATION_TYPE( MT2 ); BLAZE_INTERNAL_ASSERT( rows() == (~rhs).rows() , "Invalid number of rows" ); BLAZE_INTERNAL_ASSERT( columns() == (~rhs).columns(), "Invalid number of columns" ); std::vector<size_t> nonzeros( rows(), 0UL ); size_t sum( 0UL ); for( size_t i=0UL; i<rows(); ++i ) { nonzeros[i] = (~rhs).nonZeros(i); sum += nonzeros[i]; } matrix_.reserve( sum ); for( size_t i=0UL; i<rows(); ++i ) { matrix_.reserve( i, nonzeros[i] ); } for( size_t i=0UL; i<rows(); ++i ) { for( ConstIterator_<MT2> it=(~rhs).lowerBound(i,i); it!=(~rhs).end(i); ++it ) { if( !isDefault( it->value() ) ) { const SharedValue<ET> shared( it->value() ); matrix_.append( i, it->index(), shared, false ); if( i != it->index() ) matrix_.append( it->index(), i, shared, false ); } } } } /*! \endcond */ //************************************************************************************************* } // namespace blaze #endif
[ "klaus.iglberger@gmail.com" ]
klaus.iglberger@gmail.com
d11ffc937c8e28524e23fb03125e221963fdd818
2f9345e319741fd12efec160f942ada7cf50c812
/trioasm/whatshap/src/entry.cpp
3d4b81f8c615ae41c12795d655d5d852ab81cf3b
[ "MIT" ]
permissive
shilpagarg/WHdenovo
8ac6563f9024e1b0155f9c17fce281c885daabae
7a03798397ee0f131f100402d12ad53eab4334dc
refs/heads/master
2021-07-15T03:27:04.450178
2020-06-21T14:54:05
2020-06-21T14:54:05
167,023,490
45
8
null
2019-05-06T22:11:37
2019-01-22T16:04:32
C++
UTF-8
C++
false
false
774
cpp
#include <cassert> #include "entry.h" Entry::Entry(unsigned int r, int m, std::vector<unsigned int> p) { read_id = r; allele = m; phred_score = p; } unsigned int Entry::get_read_id() const { return read_id; } int Entry::get_allele_type() const { return allele; } std::vector<unsigned int> Entry::get_phred_score() const { return phred_score; } void Entry::set_read_id(unsigned int r) { read_id = r; } void Entry::set_allele_type(int m) { allele = m; } void Entry::set_phred_score(std::vector<unsigned int> p) { phred_score = p; } std::ostream& operator<<(std::ostream& out, const Entry& e) { out << "Entry(" << e.read_id ; out << ","<< e.allele << ","; for (int i=0; i< e.phred_score.size(); i++){ out << e.phred_score.at(i); } out << ")"; }
[ "shilpa.garg2k7@gmail.com" ]
shilpa.garg2k7@gmail.com
8ed753eea22e7de7e8765b91665e25beb8a78c6d
a40348d657a3622dbd4c46aad4af9e4d22f95e3f
/maxOfArrayErrorTest.cpp
f78165936310c741857f75b6c8d49c7f363b049e
[]
no_license
TylerHattori/lab04
bb61b514b503ba1e3be94b7ac85d2dd3d0828aa6
da51f71ea201dd154be141ca9aa256eee52ad68c
refs/heads/master
2022-06-05T15:45:57.919870
2020-05-04T06:47:56
2020-05-04T06:47:56
261,082,301
0
0
null
null
null
null
UTF-8
C++
false
false
247
cpp
#include "arrayFuncs.h" #include "tddFuncs.h" int main() { int empty[] = {}; // expect this function to result in message to cerr and exit(1); assertEquals(0, maxOfArray(empty,0), "maxOfArray(empty,0)" ); return 0; }
[ "noreply@github.com" ]
noreply@github.com
9cd63df074b26591539ae409ce18972d66443499
12cc19461c3c4f2cac0105ada2baae26bd58bc9e
/src/pneumatica/ugello_controllato_RA.h
8ea114b7c74ad87ff8bd089aa5ddc63559519bb4
[ "BSD-3-Clause" ]
permissive
giovannifortese/chrono
b3fc96882ace6fdf0ff1a9fc266a553e90d05e41
16204177fd72b48c2eb7cc3f7a0e702e831d6234
refs/heads/develop
2021-01-16T21:38:57.995094
2015-02-03T22:41:02
2015-02-03T22:41:02
30,302,090
1
0
null
2015-02-04T14:17:47
2015-02-04T14:17:46
null
UTF-8
C++
false
false
1,106
h
#ifndef _UGELLO_CONTROLLATO_RA_H //***** #define _UGELLO_CONTROLLATO_RA_H //***** /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// // File : ugello_controllato_RA.h // // Descrizione : RA -> dallo scarico all'utilizzatore // // // // Autore : Hermes Giberti // Data : Marzo 2002 /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// #include "ugello_controllato_PA.h" namespace chrono { namespace pneumatics { /// Class defining pneumatic nozzles (outro). class ugello_controllato_RA : public ugello_controllato_PA { protected: public: ugello_controllato_RA() {}; virtual ~ugello_controllato_RA() {}; virtual double ConduttanzaIn(); virtual double ConduttanzaOut(); virtual double BetaIn(); virtual double BetaOut(); // Funzioni che definiscono la conduttanza e il beta }; } // END_OF_NAMESPACE____ } // END_OF_NAMESPACE____ #endif //*****
[ "tasora@ied.unipr.it" ]
tasora@ied.unipr.it
7d399b282b701837cb2e3311fa79038406fb6b60
180f861112f5e1d81aead21402d5cebc2abcc266
/lab9_q6.cpp
372c4a8296b0fc3a8e38ffccf123a93e28682788
[]
no_license
akumarsinha/Lab9
e365a7878ef48e47326c4421a83cb6a3009ecd6d
b84025bbb894127e2a665cfac4cab0e807089f56
refs/heads/master
2020-04-05T09:44:17.893183
2018-11-09T16:56:30
2018-11-09T16:56:30
156,771,841
0
0
null
null
null
null
UTF-8
C++
false
false
512
cpp
//including the library #include<iostream> using namespace std; int countEven(int *p,int size) { int count=0; int i=0; while(i<size) { if((*p)%2==0) { count++; } p++; i++; } return count; } int main() { int size; cout<<"Enter size of the array: "; cin>>size; int arr[size]; for(int i=0;i<size;i++) { cout<<"Enter value: "; cin>>arr[i]; } int *p=arr; cout<<countEven(p,size); }
[ "noreply@github.com" ]
noreply@github.com
365fdd9d50ae21c0038d53b741cde2ff01ffb36a
e017afbf7f077682694b6926a333850b0eb3e4a4
/server/src/Entity/Boss.hpp
1f6884a0f2a6d1022d30f6400cf65e6668f40a2d
[]
no_license
zheck/rtype
a1540b8c4dc9e818fa499c1328042caf2075b728
c4b3fbb23c3d7556052aee182b2d531b515e5e98
refs/heads/master
2021-01-10T01:48:20.049694
2015-10-01T15:05:42
2015-10-01T15:05:42
43,503,054
0
0
null
null
null
null
UTF-8
C++
false
false
817
hpp
// // Boss.h // R-TypeServer // // Created by Zhou Fong on 11/19/13. // Copyright (c) 2013 Zhou Fong. All rights reserved. // #ifndef __R_TypeServer__Boss__ #define __R_TypeServer__Boss__ #include <iostream> #include <list> #include "Entity.hpp" #include "Game.hpp" class Boss : public Entity { int _life; Game * _delegate; Vect2 _direction; std::list<int> _behaviours; int _cooldown; int _lastFired; int _lifeTime; int _movedTime; public: Boss(Vect2 const & position, Game * delegate); Boss(Boss const & rhs); virtual ~Boss(); Boss & operator=(Boss const & rhs); virtual void update(int gameTime); virtual void attack(Entity * e, int gameTime); virtual void takeDamage(int gameTime); }; #endif /* defined(__R_TypeServer__Boss__) */
[ "fong.zhou@wassa.fr" ]
fong.zhou@wassa.fr
a518beb0f2acb927e0082d468c0231f4f2923498
c96d120c8fb387eb6df187dbdc3b8614c8fe1e58
/libraries/chain/transaction_metadata.cpp
7a6d4bfb379e466a28c194ebc11cded1839fcdee
[ "MIT", "BSD-3-Clause", "Apache-2.0" ]
permissive
shok2004/Acute-Angle-Chain
a5096460a01de749e8964f9dc10c8a2f9884e022
175bccc4e83a29147f6f4ac2ff494614d0d5b000
refs/heads/master
2020-03-21T10:05:59.397599
2018-06-20T08:11:30
2018-06-20T08:11:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
822
cpp
#include <aacio/chain/transaction_metadata.hpp> #include <aacio/chain/merkle.hpp> #include <fc/io/raw.hpp> namespace aacio { namespace chain { transaction_metadata::transaction_metadata( const packed_transaction& t, chain_id_type chainid, const time_point& published, const optional<time_point>& processing_deadline, bool implicit ) :raw_trx(t.get_raw_transaction()) ,decompressed_trx(fc::raw::unpack<transaction>(*raw_trx)) ,context_free_data(t.get_context_free_data()) ,id(decompressed_trx->id()) ,billable_packed_size( t.get_billable_size() ) ,signature_count(t.signatures.size()) ,published(published) ,packed_digest(t.packed_digest()) ,raw_data(raw_trx->data()) ,raw_size(raw_trx->size()) ,is_implicit(implicit) ,processing_deadline(processing_deadline) { } } } // aacio::chain
[ "caokun_8341@caokundeMacBook-Pro.local" ]
caokun_8341@caokundeMacBook-Pro.local
441427cf46686f9e31c300ca3e8111725e99cced
25be1d6a55ea7361267ae0572ac2963f649ab18c
/TrainingFramework/src/GameStates/GSMenu.cpp
193e2d0d3f2ac194ccb6b31ad67c33004601906a
[]
no_license
ckocank/cisum
a5b8519c140885c6319eed68f961a98f77de193b
67a55ab885ed696a99552fcbdf35808247b7d7a1
refs/heads/master
2020-07-27T14:19:25.723108
2019-09-20T06:03:05
2019-09-20T06:03:05
209,120,991
0
0
null
null
null
null
UTF-8
C++
false
false
4,703
cpp
#include "GSMenu.h" extern int screenWidth; //need get on Graphic engine extern int screenHeight; //need get on Graphic engine extern float scale; SoLoud::Soloud* GSMenu::soloud = new SoLoud::Soloud; SoLoud::Wav* GSMenu::menusong = new SoLoud::Wav; static int handle; GSMenu::GSMenu() { } GSMenu::~GSMenu() { //delete soloud; } void GSMenu::Init() { //menu song soloud->init(); menusong->load("../Data/sfx/straight.mp3"); menusong->setLooping(1); handle = soloud->play(*menusong); auto model = ResourceManagers::GetInstance()->GetModel("Sprite2D"); auto texture = ResourceManagers::GetInstance()->GetTexture("bg-menu-01"); //BackGround auto shader = ResourceManagers::GetInstance()->GetShader("TextureShader"); m_BackGround = std::make_shared<Sprite2D>(model, shader, texture); m_BackGround->Set2DPosition(screenWidth / 2, screenHeight / 2); m_BackGround->SetSize(screenWidth, screenHeight); //banner texture = ResourceManagers::GetInstance()->GetTexture("banner"); banner = std::make_shared<Sprite2D>(model, shader, texture); banner->Set2DPosition(screenWidth / 2, screenHeight - 30); banner->SetSize(400, 100); //MUTE button texture = ResourceManagers::GetInstance()->GetTexture("speaker1"); std::shared_ptr<GameButton> button = std::make_shared<GameButton>(model, shader, texture); button->Set2DPosition(screenWidth -30, 30); button->SetSize(50, 50); button->SetOnClick([]() { float v = soloud->getVolume(handle); soloud->setVolume(handle, 0.0f); }); m_listButton.push_back(button); //UNMUTE button texture = ResourceManagers::GetInstance()->GetTexture("speaker"); button = std::make_shared<GameButton>(model, shader, texture); button->Set2DPosition(30, 30); button->SetSize(50, 50); button->SetOnClick([]() { float v = soloud->getVolume(handle); soloud->setVolume(handle, 1.0f); }); m_listButton.push_back(button); //play button texture = ResourceManagers::GetInstance()->GetTexture("bt_ply"); button = std::make_shared<GameButton>(model, shader, texture); button->Set2DPosition(screenWidth / 2 , 450 * scale); button->SetSize(372 * scale, 153 * scale); button->SetOnClick([]() { float v = soloud->getVolume(handle); soloud->setVolume(handle, 0.0f); //soloud->stopAudioSource(*menusong); GameStateMachine::GetInstance()->ChangeState(StateTypes::STATE_Play); }); m_listButton.push_back(button); //credit button texture = ResourceManagers::GetInstance()->GetTexture("bt_st"); button = std::make_shared<GameButton>(model, shader, texture); button->Set2DPosition(screenWidth / 2, 850 * scale); button->SetSize(372 *scale, 153 * scale); button->SetOnClick([]() { GameStateMachine::GetInstance()->ChangeState(StateTypes::STATE_Credit); }); m_listButton.push_back(button); //scores button texture = ResourceManagers::GetInstance()->GetTexture("bt_scr"); button = std::make_shared<GameButton>(model, shader, texture); button->Set2DPosition(screenWidth / 2, 650 * scale); button->SetSize(368 * scale, 151 * scale); button->SetOnClick([]() { GameStateMachine::GetInstance()->ChangeState(StateTypes::STATE_Score); }); m_listButton.push_back(button); //delete banner button texture = ResourceManagers::GetInstance()->GetTexture("delete"); delbutton = std::make_shared<GameButton>(model, shader, texture); delbutton->Set2DPosition(screenWidth -22, screenHeight - 66); delbutton->SetSize(20, 20); delbutton->SetOnClick([]() { }); //text game title shader = ResourceManagers::GetInstance()->GetShader("TextShader"); std::shared_ptr<Font> font = ResourceManagers::GetInstance()->GetFont("arialbd"); m_Text_gameName = std::make_shared< Text>(shader, font, "", TEXT_COLOR::GREEN, 1.0); m_Text_gameName->Set2DPosition(Vector2(screenWidth / 2 - 80, 120)); } void GSMenu::Exit() { } void GSMenu::Pause() { } void GSMenu::Resume() { float v = soloud->getVolume(handle); soloud->setVolume(handle, 1.0f); } void GSMenu::HandleEvents() { } void GSMenu::HandleKeyEvents(int key, bool bIsPressed) { } void GSMenu::HandleTouchEvents(int x, int y, bool bIsPressed) { for (auto it : m_listButton) { (it)->HandleTouchEvents(x, y, bIsPressed); if ((it)->IsHandle()) break; } delbutton->HandleTouchEvents(x, y, bIsPressed); if (delbutton->IsHandle()) { delbutton->SetSize(0, 0); banner->SetSize(0, 0); } } void GSMenu::Update(float deltaTime) { m_BackGround->Update(deltaTime); banner->Update(deltaTime); delbutton->Update(deltaTime); for (auto it : m_listButton) { it->Update(deltaTime); } } void GSMenu::Draw() { m_BackGround->Draw(); banner->Draw(); delbutton->Draw(); for (auto it : m_listButton) { it->Draw(); } m_Text_gameName->Draw(); }
[ "chihuahua.iu.sica@gmail.com" ]
chihuahua.iu.sica@gmail.com
dafefcbf4d444210c790b20bd874369a14145f7c
044e258ef6f0c499e6408083281b1d4429a6df37
/MotorDePasso.cpp
b20694f18368b2be2a92382fe2f33ce1066c30ec
[]
no_license
engineerIOT/TestMotors
ef4905cd26e6ef84c324b6e9dd84973cdea9bd26
8865dd5c53d6d2748910231602c401239a88bf38
refs/heads/master
2021-05-20T13:13:54.432962
2020-04-05T23:28:53
2020-04-05T23:28:53
252,312,384
0
0
null
null
null
null
UTF-8
C++
false
false
6,432
cpp
#include "MotorDePasso.h" #include <Arduino.h> #include "Pin.h" using namespace std; MotorDePasso::MotorDePasso() { } void MotorDePasso::definePinosMotor1(int ledPin_1, int ledPin_2, int ledPin_3, int ledPin_4) { this->ledPin_1 = Pin(ledPin_1); this->ledPin_2 = Pin(ledPin_2); this->ledPin_3 = Pin(ledPin_3); this->ledPin_4 = Pin(ledPin_4); pinMode(ledPin_1, OUTPUT); pinMode(ledPin_2, OUTPUT); pinMode(ledPin_3, OUTPUT); pinMode(ledPin_4, OUTPUT); } void MotorDePasso::definePinosMotor2(int ledPin_5, int ledPin_6, int ledPin_7, int ledPin_8) { this->ledPin_5 = Pin(ledPin_5); this->ledPin_6 = Pin(ledPin_6); this->ledPin_7 = Pin(ledPin_7); this->ledPin_8 = Pin(ledPin_8); pinMode(ledPin_5, OUTPUT); pinMode(ledPin_6, OUTPUT); pinMode(ledPin_7, OUTPUT); pinMode(ledPin_8, OUTPUT); } void MotorDePasso::passoDisableMotor1(int ledPin_1, int ledPin_2, int ledPin_3, int ledPin_4) { digitalWrite(ledPin_1,HIGH); digitalWrite(ledPin_2,HIGH); digitalWrite(ledPin_3,HIGH); digitalWrite(ledPin_4,LOW); Serial.println("PASSO DISABLE MOTOR 1"); Serial.println(ledPin_1); Serial.println(ledPin_2); Serial.println(ledPin_3); Serial.println(ledPin_4); } void MotorDePasso::passoDisableMotor2(int ledPin_5, int ledPin_6, int ledPin_7, int ledPin_8) { Serial.println("PASSO DISABLE MOTOR 2"); Serial.println(ledPin_5); Serial.println(ledPin_6); Serial.println(ledPin_7); Serial.println(ledPin_8); } void MotorDePasso::passo_0_Motor1(int ledPin_1, int ledPin_2, int ledPin_3, int ledPin_4) { Serial.println("PASSO 0 MOTOR 1"); Serial.println(ledPin_1); Serial.println(ledPin_2); Serial.println(ledPin_3); Serial.println(ledPin_4); } void MotorDePasso::passo_0_Motor2(int ledPin_5, int ledPin_6, int ledPin_7, int ledPin_8) { Serial.println("PASSO 0 MOTOR 2"); Serial.println(ledPin_5); Serial.println(ledPin_6); Serial.println(ledPin_7); Serial.println(ledPin_8); } void MotorDePasso::passo_1_Motor1(int ledPin_1, int ledPin_2, int ledPin_3, int ledPin_4) { Serial.println("PASSO 1 MOTOR 1"); Serial.println(ledPin_1); Serial.println(ledPin_2); Serial.println(ledPin_3); Serial.println(ledPin_4); } void MotorDePasso::passo_1_Motor2(int ledPin_5, int ledPin_6, int ledPin_7, int ledPin_8) { Serial.println("PASSO 1 MOTOR 2"); Serial.println(ledPin_5); Serial.println(ledPin_6); Serial.println(ledPin_7); Serial.println(ledPin_8); } void MotorDePasso::passo_2_Motor1(int ledPin_1, int ledPin_2, int ledPin_3, int ledPin_4) { Serial.println("PASSO 2 MOTOR 1"); Serial.println(ledPin_1); Serial.println(ledPin_2); Serial.println(ledPin_3); Serial.println(ledPin_4); } void MotorDePasso::passo_2_Motor2(int ledPin_5, int ledPin_6, int ledPin_7, int ledPin_8) { Serial.println("PASSO 2 MOTOR 2"); Serial.println(ledPin_5); Serial.println(ledPin_6); Serial.println(ledPin_7); Serial.println(ledPin_8); } void MotorDePasso::passo_3_Motor1(int ledPin_1, int ledPin_2, int ledPin_3, int ledPin_4) { Serial.println("PASSO 3 MOTOR 1"); Serial.println(ledPin_1); Serial.println(ledPin_2); Serial.println(ledPin_3); Serial.println(ledPin_4); } void MotorDePasso::passo_3_Motor2(int ledPin_5, int ledPin_6, int ledPin_7, int ledPin_8) { Serial.println("PASSO 3 MOTOR 2"); Serial.println(ledPin_5); Serial.println(ledPin_6); Serial.println(ledPin_7); Serial.println(ledPin_8); } void MotorDePasso::passo_4_Motor1(int ledPin_1, int ledPin_2, int ledPin_3, int ledPin_4) { Serial.println("PASSO 4 MOTOR 1"); Serial.println(ledPin_1); Serial.println(ledPin_2); Serial.println(ledPin_3); Serial.println(ledPin_4); } void MotorDePasso::passo_4_Motor2(int ledPin_5, int ledPin_6, int ledPin_7, int ledPin_8) { Serial.println("PASSO 4 MOTOR 2"); Serial.println(ledPin_5); Serial.println(ledPin_6); Serial.println(ledPin_7); Serial.println(ledPin_8); } void MotorDePasso::passoBipolarParaleloMotor1(int direcao, int tempoDePasso, int passosMaximo) { Serial.println("MODO BIPOLAR PARALELO MOTOR 1"); delay(tempoDePasso); MotorDePasso::passo_0_Motor1(LOW, LOW, LOW, LOW); delay(tempoDePasso); MotorDePasso::passo_1_Motor1(LOW, LOW, LOW, HIGH); delay(tempoDePasso); MotorDePasso::passo_2_Motor1(HIGH, HIGH, LOW, LOW); delay(tempoDePasso); MotorDePasso::passo_3_Motor1(LOW, HIGH, HIGH, LOW); delay(tempoDePasso); MotorDePasso::passo_4_Motor1(LOW, LOW, HIGH, HIGH); delay(tempoDePasso); } void MotorDePasso::passoBipolarParaleloMotor2(int direcao, int tempoDePasso, int passosMaximo) { Serial.println("MODO BIPOLAR PARALELO MOTOR 2"); delayMicroseconds(tempoDePasso); MotorDePasso::passo_0_Motor2(0, 0, 0, 0); delayMicroseconds(tempoDePasso); MotorDePasso::passo_1_Motor2(1, 0, 0, 1); delayMicroseconds(tempoDePasso); MotorDePasso::passo_2_Motor2(1, 1, 0, 0); delayMicroseconds(tempoDePasso); MotorDePasso::passo_3_Motor2(0, 1, 1, 0); delayMicroseconds(tempoDePasso); MotorDePasso::passo_4_Motor2(0, 0, 1, 1); delayMicroseconds(tempoDePasso); } void MotorDePasso::passoBipolarSerieMotor1(int direcao, int tempoDePasso, int passosMaximo) { Serial.println("MODO BIPOLAR SÉRIE MOTOR 1"); MotorDePasso::passo_0_Motor1(0, 0, 0, 0); delayMicroseconds(tempoDePasso); MotorDePasso::passo_1_Motor1(1, 0, 0, 1); delayMicroseconds(tempoDePasso); MotorDePasso::passo_2_Motor1(0, 1, 0, 1); delayMicroseconds(tempoDePasso); MotorDePasso::passo_3_Motor1(0, 1, 1, 1); delayMicroseconds(tempoDePasso); MotorDePasso::passo_4_Motor1(1, 0, 1, 0); delayMicroseconds(tempoDePasso); } void MotorDePasso::passoBipolarSerieMotor2(int direcao, int tempoDePasso, int passosMaximo) { Serial.println("MODO BIPOLAR SÉRIE MOTOR 2"); MotorDePasso::passo_0_Motor2(0, 0, 0, 0); delayMicroseconds(tempoDePasso); MotorDePasso::passo_1_Motor2(1, 0, 0, 1); delayMicroseconds(tempoDePasso); MotorDePasso::passo_2_Motor2(0, 1, 0, 1); delayMicroseconds(tempoDePasso); MotorDePasso::passo_3_Motor2(0, 1, 1, 1); delayMicroseconds(tempoDePasso); MotorDePasso::passo_4_Motor2(1, 0, 1, 0); delayMicroseconds(tempoDePasso); } MotorDePasso::~MotorDePasso() { // TODO Auto-generated destructor stub }
[ "noreply@github.com" ]
noreply@github.com
29c8923281cc248629dd3ab83119c90e1539cef8
308c27456d1649e5cfda0bf947102147e9de2b42
/Sec15/RedefiningMethods/SavingsAccount.h
81c3781d5e2362a25ce8b60bcefaf953ac46b796
[]
no_license
jonona/beginning-cpp
f7839e7555a6fa0df7a86c4b293a3e602082b0af
ef8f413cc58ef10967cc92b279930d6d1b17b2bd
refs/heads/master
2022-12-20T17:57:57.714428
2020-09-20T22:48:31
2020-09-20T22:48:31
287,312,149
0
0
null
null
null
null
UTF-8
C++
false
false
365
h
#pragma once #include "Account.h" class SavingsAccount : public Account { friend std::ostream &operator<<(std::ostream &os, const SavingsAccount &account); protected: double int_rate; public: SavingsAccount(); SavingsAccount(double balance, double int_rate); void deposit(double amount); // withdraw is inherited ~SavingsAccount(); };
[ "jonona@macbook-pro.localdomain" ]
jonona@macbook-pro.localdomain
92f96a9cc539934a3e56bb7209b2d40a85b2ddc2
75c0a6e20d86811151a9ac855ce780576e541ec1
/Beginning_Algorithm_Contests/Volume 6. Mathematical Concepts and Methods/Uvaoj 10006 Carmichael Numbers/Uvaoj 10006 Carmichael Numbers.cpp
b42c15e9fe4277426b557c6949a7a01fa20df6cd
[]
no_license
liketheflower/icpc-Rujia-Liu
71e8c74125a8613b20f322710302cc5c5287d032
bc2eb6e1f7421614a320f6534bd8800337f63931
refs/heads/master
2020-09-08T05:23:11.414741
2017-01-23T22:39:03
2017-01-23T22:39:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
906
cpp
#include <cstdio> #include <cmath> #include <cstring> using namespace std; const int maxn = 65010; int n; bool v[maxn]; void pre() { memset(v,0,sizeof(v)); int m = sqrt(maxn+0.5); for(int i=2;i<m;i++) if(!v[i]) for(int j=i*i;j<maxn;j+=i) v[j] = true; } long long power(int a, int p, int mod) { if(p==0) return 1; if(p==1) return a%mod; if(p%2) return (power(a,p/2,mod)*power(a,p/2,mod)*a)%mod; return (power(a,p/2,mod)*power(a,p/2,mod))%mod; } bool check(int k) { if(!v[k]) return false; for(int i=2;i<k;i++) { long long h = power(i,k,k); //printf("k:%d\n",k); //printf("h:%lld i:%d\n",h,i); if(h!=i) return false; } return true; } int main() { //freopen("data.txt","r",stdin); pre(); while(scanf("%d",&n)==1&&n) { bool ok = check(n); if(ok) printf("The number %d is a Carmichael number.\n",n); else printf("%d is normal.\n",n); } return 0; }
[ "fywfanyewen@163.com" ]
fywfanyewen@163.com
d0f41e28ab381d591fa501cac8e471b4191709e7
c6a877fb5eb035f0821abd559db1d7a1ba71b63d
/Tools/CLX000/Source/CLX000_LIN_Exporter.h
0cb5c7c176a07594d39b2e7af4a3727f510c89ff
[ "Zlib", "MIT", "ISC", "BSL-1.0", "BSD-2-Clause" ]
permissive
AutomotiveDevOps/mdf4-converters
8f4e11ee5703db5196c30c5b70be7a3986b1937e
5c6624ca0a56317ce296233cb3fc80362b07a175
refs/heads/master
2022-12-03T20:34:43.940888
2020-08-14T22:31:39
2020-08-14T22:31:39
287,635,711
0
0
MIT
2020-08-14T22:30:37
2020-08-14T22:30:36
null
UTF-8
C++
false
false
1,942
h
#ifndef TOOLS_CLX000_LIN_EXPORTER_H #define TOOLS_CLX000_LIN_EXPORTER_H #include <ctime> #include <sstream> #include <string_view> #include "GenericRecordExporter.h" #include "CLX000_Configuration.h" #include "CommonOptions.h" #include "LINRecord.h" #include "FileInfo.h" namespace ts = mdf::tools::shared; namespace mdf::tools::clx { class CLX000_LIN_Exporter : public ts::GenericRecordExporter<LINRecord> { public: explicit CLX000_LIN_Exporter( std::ostream& output, FileInfo const& fileInfo, uint8_t busChannel, CLX000_Configuration const& configuration, tools::shared::DisplayTimeFormat displayLocalTime ); void writeHeader() override; void writeRecord(LINRecord const& record) override; void correctHeader(); private: std::string convertTimestampWithYear(std::time_t const& timeStamp); std::stringstream timeStream; std::string convertTimestampToFormat(std::time_t const& timeStamp); void convertTimestampToFormat0(std::time_t const& timeStamp); void convertTimestampToFormat1(std::time_t const& timeStamp); void convertTimestampToFormat2(std::time_t const& timeStamp); void convertTimestampToFormat3(std::time_t const& timeStamp); void convertTimestampToFormat4(std::time_t const& timeStamp); void convertTimestampToFormat5(std::time_t const& timeStamp); void convertTimestampToFormat6(std::time_t const& timeStamp); uint8_t const busChannel; std::string_view const delimiter; FileInfo const& fileInfo; std::fpos<mbstate_t> datePosition; time_t headerTimeStamp; bool timeStampSet = false; CLX000_Configuration const& configuration; std::stringstream timeStampStream; tools::shared::DisplayTimeFormat displayLocalTime; }; } #endif //TOOLS_CLX000_LIN_EXPORTER_H
[ "mf@csselectronics.com" ]
mf@csselectronics.com
5c640857d7b7f40e51ce180096a3c87b5c9a6d76
6f0e8452b02dec257b478cb8f3927f96875a7aa0
/tools/videm-tools/ftcb/UnitTest/ftStringTest.cpp
9409efa13c02c050d576bc5f80e9ede3c017b1b1
[]
no_license
epheien/videm
485be0046819ba04d1f8cf69e63acbd15eca2107
050f1e2c1779091111c14117c2158d34004c3431
refs/heads/master
2023-07-26T08:08:05.198917
2023-07-15T14:41:44
2023-07-15T14:41:44
17,709,745
7
1
null
null
null
null
UTF-8
C++
false
false
9,738
cpp
#include <gtest/gtest.h> #include "ftString.h" #include "ftCMacro.h" #define assertTrue(x)\ {\ if ( !(x) )\ {\ printf("%s:%d, assert failed:\n\t%s\n", __FILE__, __LINE__, #x);\ }\ } #define assertFalse(x) assertTrue(!(x)) // 老代码,直接移植 void testStrSplit() { char szBuf[BUFSIZ]; char szMinBuf[1]; StrIter iter; const char *psz1 = " aB\t Cd "; StrIterSplitBySpaceInit(&iter, psz1, STR_MAX_SPLIT); StrIterSplitBySpaceNext(&iter, szBuf, sizeof(szBuf)); assertTrue(StrIsEqual(szBuf, "aB")); StrIterSplitBySpaceNext(&iter, szBuf, sizeof(szBuf)); assertTrue(StrIsEqual(szBuf, "Cd")); assertFalse(StrIterSplitBySpaceNext(&iter, szBuf, sizeof(szBuf))); StrIterSplitInit(&iter, psz1, STR_MAX_SPLIT); StrIterSplitNext(&iter, "aB", szBuf, sizeof(szBuf)); assertTrue(StrIsEqual(szBuf, " ")); StrIterSplitNext(&iter, "aB", szBuf, sizeof(szBuf)); assertTrue(StrIsEqual(szBuf, "\t Cd ")); assertFalse(StrIterSplitNext(&iter, "aB", szBuf, sizeof(szBuf))); strcpy(szBuf, psz1); StrSwapCaseMod(szBuf); assertTrue(StrIsEqual(szBuf, " Ab\t cD ")); strcpy(szBuf, psz1); StrUpperMod(szBuf); assertTrue(StrIsEqual(szBuf, " AB\t CD ")); strcpy(szBuf, psz1); StrLowerMod(szBuf); assertTrue(StrIsEqual(szBuf, " ab\t cd ")); StrReplace2(psz1, "aB", "XXX", STR_MAX_REPLACE, szBuf, sizeof(szBuf)); assertTrue(StrIsEqual(szBuf, " XXX\t Cd ")); StrReplace2(psz1, " ", "", STR_MAX_REPLACE, szBuf, sizeof(szBuf)); assertTrue(StrIsEqual(szBuf, "aB\tCd")); /* ===== 溢出测试 START ===== */ StrReplace2(psz1, " aB\t Cd ", "", STR_MAX_REPLACE, szMinBuf, sizeof(szMinBuf)); assertTrue(szMinBuf[0] == '\0'); StrReplace2(psz1, " aB\t Cd ", " ", STR_MAX_REPLACE, szMinBuf, sizeof(szMinBuf)); assertTrue(szMinBuf[0] == ' '); StrReplace2(psz1, " ", "", STR_MAX_REPLACE, szMinBuf, sizeof(szMinBuf)); assertTrue(szMinBuf[0] == 'a'); StrReplace2(psz1, "", "xx", STR_MAX_REPLACE, szMinBuf, sizeof(szMinBuf)); assertTrue(szMinBuf[0] == ' '); StrReplace2(psz1, "xx", "xxx", STR_MAX_REPLACE, szMinBuf, sizeof(szMinBuf)); assertTrue(szMinBuf[0] == ' '); /* ===== 溢出测试 END ===== */ } TEST(ftStringTest, StrSplit) { int i; char szBuf[BUFSIZ]; char szBuf2[BUFSIZ]; StrIter iter; const char *psz = "\t# define Ma_01 xyz abc"; testStrSplit(); strcpy(szBuf, psz); StrLStripMod(szBuf, " \t#"); strcpy(szBuf2, szBuf); StrIterSplitBySpaceInit(&iter, szBuf2, 2); StrIterSplitBySpaceNext(&iter, szBuf, sizeof(szBuf)); EXPECT_TRUE(StrIsEqual(szBuf, "define")); StrIterSplitBySpaceNext(&iter, szBuf, sizeof(szBuf)); EXPECT_TRUE(StrIsEqual(szBuf, "Ma_01")); StrIterSplitBySpaceNext(&iter, szBuf, sizeof(szBuf)); EXPECT_TRUE(StrIsEqual(szBuf, "xyz abc")); EXPECT_FALSE(StrIterSplitBySpaceNext(&iter, szBuf, sizeof(szBuf))); const char *ppszResult[] = {"#", "define", "Ma_01", "xyz", "abc"}; StrIterSplitBySpaceInit(&iter, psz, STR_MAX_SPLIT); i = 0; while ( StrIterSplitBySpaceNext(&iter, szBuf, sizeof(szBuf)) ) { //puts(szBuf); EXPECT_TRUE(StrIsEqual(szBuf, ppszResult[i])); i++; } StrIterSplitBySpaceInit(&iter, psz, 2); StrIterSplitBySpaceNext(&iter, szBuf, sizeof(szBuf)); EXPECT_TRUE(StrIsEqual(szBuf, ppszResult[0])); StrIterSplitBySpaceNext(&iter, szBuf, sizeof(szBuf)); EXPECT_TRUE(StrIsEqual(szBuf, ppszResult[1])); StrIterSplitBySpaceNext(&iter, szBuf, sizeof(szBuf)); EXPECT_TRUE(StrIsEqual(szBuf, "Ma_01 xyz abc")); EXPECT_FALSE(StrIterSplitBySpaceNext(&iter, szBuf, sizeof(szBuf))); StrIterSplitInit(&iter, psz, 4); StrIterSplitNext(&iter, " ", szBuf, sizeof(szBuf)); EXPECT_TRUE(StrIsEqual(szBuf, "\t#")); StrIterSplitNext(&iter, " ", szBuf, sizeof(szBuf)); EXPECT_TRUE(StrIsEqual(szBuf, "define")); StrIterSplitNext(&iter, " ", szBuf, sizeof(szBuf)); EXPECT_TRUE(StrIsEqual(szBuf, "Ma_01")); StrIterSplitNext(&iter, " ", szBuf, sizeof(szBuf)); EXPECT_TRUE(StrIsEqual(szBuf, "")); StrIterSplitNext(&iter, " ", szBuf, sizeof(szBuf)); EXPECT_TRUE(StrIsEqual(szBuf, "xyz abc")); strcpy(szBuf, " abc bcd ce "); StrCharsReplaceMod(szBuf, " \t", ' '); EXPECT_TRUE(StrIsEqual(szBuf, " abc bcd ce ")); strcpy(szBuf, "\t "); StrCharsReplaceMod(szBuf, " \t", 'c'); EXPECT_TRUE(StrIsEqual(szBuf, "c")); } TEST(ftStringTest, StrLRStrip) { ASSERT_TRUE(1); } TEST(ftStringTest, SplitMacroArgs) { #if 0 char szBuf[BUFSIZ]; const char *psz = "xx, yy, zz"; StrIter iter; StrIterSplitInit(&iter, psz, STR_MAX_SPLIT); while ( StrIterSplitNext(&iter, ",", szBuf, sizeof(szBuf)) ) { StrStripSpaceMod(szBuf); puts(szBuf); } #endif } TEST(ftStringTest, StrIterSplitCCode) { char c; size_t uStart, uEnd, i; char szBuf[BUFSIZ]; const char *pszCode = " AAA \"##\" X ## /* ## \" ' */ x1 # x1 ## x2 '##' // ## Y '##'"; const char *psz; const char *ppszSplitCCodeRes[] = { " AAA \"##\" X ", " /* ## \" ' */ x1 # x1 ", " x2 '##' // ## Y '##'", }; const char *pszIterCCharRes = " AAA \"##\" X ## x1 # x1 ## x2 '##' "; /* "AAA \"##\" X##x1#x1##x2Y '##'" */ StrIter iter; i = 0; StrIterSplitCCodeInit(&iter, pszCode, STR_MAX_SPLIT); while ( StrIterSplitCCodeNext(&iter, "##", szBuf, sizeof(szBuf)) ) { //puts(szBuf); EXPECT_TRUE(StrIsEqual(szBuf, ppszSplitCCodeRes[i])); i++; } EXPECT_TRUE(i == 3); //puts("=========="); i = 0; StrIterCCharInit(&iter, pszCode); while ( StrIterCCharNext(&iter, &c) ) { //printf("%c\n", c); EXPECT_TRUE(c == pszIterCCharRes[i]); i++; } EXPECT_TRUE( i == strlen(pszIterCCharRes)); //puts("=========="); psz = pszCode; const char *ppszRes[] = { "AAA", "X", "x1", "x1", "x2", }; i = 0; while ( StrSearchCId(psz, &uStart, &uEnd) ) { strncpy(szBuf, psz + uStart, uEnd - uStart); szBuf[uEnd - uStart] = '\0'; psz += uEnd; //puts(szBuf); EXPECT_TRUE(StrIsEqual(szBuf, ppszRes[i])); i++; } EXPECT_EQ(5, i); const char *psz2 = "x1LL 234 1X LL 'xy.# "; // LL xy psz = psz2; i = 0; while ( StrSearchCId(psz, &uStart, &uEnd) ) { strncpy(szBuf, psz + uStart, uEnd - uStart); szBuf[uEnd - uStart] = '\0'; psz += uEnd; puts(szBuf); i++; } } TEST(ftStringTest, MacroReplace) { StrIter iter; char szBuf[BUFSIZ] = {'\0'}; char szRes[BUFSIZ] = {'\0'}; /* x1 -> "XX", x2 - > "YY" */ const char *ppMacroArgv[] = {"x1", "x2"}; const char *ppRealArgv[] = {"XX", "YY"}; const char *pszCode = " AAA \"##\" X ## x1 # x1 Y ## x2 ## Y '##' "; const char *pszRes = "AAA \"##\" XXX \"XX\" YYYY '##'"; //StrExpandCMacroValue(pszCode, szBuf, sizeof(szBuf), 2, ppMacroArgv, ppRealArgv); CMacro_ExpandCMacroValueArgs(pszCode, 2, ppMacroArgv, ppRealArgv, szBuf, sizeof(szBuf)); EXPECT_TRUE(StrIsEqual(szBuf, pszRes)); StrIterSplitCCodeInit(&iter, pszCode, STR_MAX_SPLIT); while ( StrIterSplitCCodeNext(&iter, "##", szBuf, sizeof(szBuf)) ) { //puts(szBuf); } } TEST(ftStringTest, SkipToXXX) { const char *p1 = "\"aa\\\"bb\\\"cc\"ok"; const char *p2 = "'aa\\'bbcc'ok"; const char *p3 = "( \")(aa\\\"bb\\\"cc\"ok ( ')(aa\\'bbcc'ok ) )ok"; const char *p4 = " \n ok"; EXPECT_STREQ("ok", StrSkipCString(p1 + 1)); EXPECT_STREQ("ok", StrSkipCChar(p2 + 1)); EXPECT_STREQ("ok", StrSkipCMatch(p3 + 1, "()")); EXPECT_STREQ("ok", StrSkipToNonSpace(p4)); } TEST(ftStringTest, PreProcessString) { StrIter iter; char szBuf[BUFSIZ] = {'\0'}; char szRes[BUFSIZ] = {'\0'}; size_t uStart, uEnd; const char *psz = NULL; char *pszContinue; const char *pszCode = " _XXX (XX, YY) template<typename T> class Cls : _STD basic_string<char> {} "; // #define _STD std:: HashTable *pCMacroTable = HashTable_Create(HASHTABLE_DEFAULT_SIZE); CMacro m; m.bIsFuncLike = False; m.pszMacroID = "_STD"; m.pszMacroValue = "std::"; m.uArgc = 0; m.ppszArgv = NULL; CMacro m2; m2.bIsFuncLike = True; m2.pszMacroID = "_XXX"; m2.pszMacroValue = " AAA \"##\" X ## x1 # x1 Y ## x2 ## Y '##' "; m2.uArgc = 2; m2.ppszArgv = (char **)malloc(sizeof(char *) * m2.uArgc); m2.ppszArgv[0] = "x1"; m2.ppszArgv[1] = "x2"; HashTable_Insert(pCMacroTable, (void *)&m, CMacro_Hash, NULL, NULL); HashTable_Insert(pCMacroTable, (void *)&m2, CMacro_Hash, NULL, NULL); CMacro_PreProcessString(pszCode, pCMacroTable, NULL, szRes, sizeof(szRes), &pszContinue); puts(pszCode); puts(szRes); pszCode = " AAA \"##\" X ## x1 # x1 Y ## x2 ## Y '##' "; #if 0 psz = pszCode; while ( StrSearchCId(psz, &uStart, &uEnd) ) { strncpy(szBuf, psz + uStart, uEnd - uStart); szBuf[uEnd - uStart] = '\0'; psz += uEnd; puts(szBuf); } #endif free(m2.ppszArgv); HashTable_Destroy(pCMacroTable, NULL); } TEST(ftStringTest, StrCCharsReplaceMod) { char psz[] = " \" \\\" \" ' \\\' ' "; StrCCharsReplaceMod(psz, " ", 'x'); EXPECT_TRUE(StrIsEqual(psz, "x\" \\\" \"x' \\\' 'x")); } TEST(ftStringTest, StrEscapeChars) { const char *psz = " abc ' \" e \" \\ "; const char *pszRes = " abc \\\' \\\" e \\\" \\\\ "; char szBuf[BUFSIZ]; //puts(psz); StrEscapeChars(psz, "'\"\\", szBuf, sizeof(szBuf)); EXPECT_TRUE(StrIsEqual(szBuf, pszRes)); //puts(szBuf); } TEST(ftStringTest, StrStripCAllComment) { char psz[] = "x, y /* */, // \n z /* */;"; //puts(psz); StrStripCAllComment(psz); EXPECT_STREQ("x, y , \n z ;", psz); //puts(psz); }
[ "epheien@163.com" ]
epheien@163.com
2313f0df4b34ebac7bbb17b47f98989c2b37e316
965a16790675725561504105a37f35b9e3c56a7c
/UVa Online Judge/10000/10010_Where_s_Waldorf.cpp
f97faf734e66544f20f30f5571fc58ce93596e9a
[]
no_license
johanjerger/onlineJudges
79a7f7c0b35fae8730cd4af6822fa68a992764d5
da0de1ac55f88ae488f4a88b5d6307d61582234b
refs/heads/master
2021-08-30T16:00:42.470960
2017-12-18T14:50:30
2017-12-18T14:50:30
109,990,789
0
0
null
null
null
null
UTF-8
C++
false
false
2,370
cpp
#include <iostream> #include <vector> #include <algorithm> #include <string> using namespace std; bool can_find(const string word, vector<string> grid, int i, int j, int ltr, int iplus, int jplus) { if(word[ltr] == grid[i][j]) ltr++; else return false; if(word.size() == ltr) return true; else if((i+iplus > -1 && i+iplus < grid.size()) && (j+jplus > -1 && j+jplus < grid[i+iplus].size())) return can_find(word, grid, i+iplus, j+jplus, ltr, iplus, jplus); else return false; } pair<int,int> find(const string word, vector<string> grid) { for (int i=0; i < grid.size(); i++) { for (int j = 0; j < grid[i].size(); j++) { if(grid[i][j] == word[0]) { if (word.size() == 1) return {i+1, j+1}; if (grid.size() - i >= word.size()) { if ((i+1 < grid.size() && j+1 < grid[i+1].size()) && can_find(word, grid, i, j, 0, 1, 1)) return {i+1,j+1}; else if ((i+1 < grid.size()) && can_find(word, grid, i, j, 0, 1, 0)) return {i+1,j+1}; else if ((i+1 < grid.size() && j-1 > -1) && can_find(word, grid, i, j, 0, 1, -1)) return {i+1,j+1}; } if ((j+1 < grid[i].size()) && can_find(word, grid, i, j, 0, 0, 1)) return {i+1,j+1}; else if ((j-1 > -1) && can_find(word, grid, i, j, 0, 0, -1)) return {i+1,j+1}; if (i+1 >= word.size()) { if ((i-1 > -1) && can_find(word, grid, i, j, 0, -1, 0)) return {i+1,j+1}; else if ((i-1 > -1 && j+1 < grid[i-1].size()) && can_find(word, grid, i, j, 0, -1, 1)) return {i+1,j+1}; else if ((i-1 > -1 && j-1 > -1) && can_find(word, grid, i, j, 0, -1, -1)) return {i+1,j+1}; } } } } } int main () { int test_cases, rows, columns, word_count; string word; vector<string> grid; cin >> test_cases, cin.ignore(); while (test_cases--) { cin.ignore(); cin >> rows >> columns, cin.ignore(); while(rows--) { cin >> word, cin.ignore(); std::transform(word.begin(), word.end(), word.begin(), ::tolower); grid.push_back(word); } cin >> word_count, cin.ignore(); while (word_count--) { getline(cin, word); std::transform(word.begin(), word.end(), word.begin(), ::tolower); pair<int,int> res = find(word, grid); cout << res.first << ' ' << res.second << endl; } if (test_cases != 0) cout << endl; grid.clear(); } return 0; }
[ "ocamposjuancruz23@gmail.com" ]
ocamposjuancruz23@gmail.com
76a36ea85bf51cde8f671a33f0f2cfb4b390077e
613b71718d6bfe9bdb6d960124f488a95f736e98
/Homework/Assignment_2/Gaddis_7thEd_Chap3_Prob1_MilesPerGallon/main.cpp
084baf8e1bef6f0f144e5a6c4eae9c7267134da1
[]
no_license
gaitee1/TanvirGaiteeara_48102
95ba7c79afd9fe1667cf77a33571e85945242069
72109e47a497f1a87ff742580f32aba9aea5fe70
refs/heads/master
2021-01-21T08:29:48.702928
2016-10-21T00:32:24
2016-10-21T00:32:24
68,318,481
0
0
null
null
null
null
UTF-8
C++
false
false
1,002
cpp
/* File: main Author: Gaitee Ara Tanvir Created on September 24, 2016, 9:41 AM Purpose: Calculate miles per gallon of gas */ //System Libraries #include <iostream> //Input/Output objects #include <iomanip> //Format Library using namespace std; //Name-space used in the System Library //User Libraries //Global Constants //Function prototypes //Execution Begins Here! int main(int argc, char** argv) { //Declaration of Variables float gall,miles,mpg; //Gallons of gas, Miles, Miles Per Gallon //Input values cout<<"Enter the number of gallons of gas the car holds ="; cin>>gall; cout<<"Enter the number of miles the car can drive on a full tank ="; cin>>miles; //Process values -> Map inputs to Outputs mpg=miles/gall; //Display Output cout<<fixed<<showpoint<<setprecision(2); cout<<"The number of miles the car can drive per gallon ="<<mpg<<endl; //Exit Program return 0; }
[ "gtanvir@student.rcc.edu" ]
gtanvir@student.rcc.edu
5c9cf9cabefd554b54a0db912e0e82f9bd135c80
418f38e11cc3b2cb405c9fa168e306894588857a
/onnxruntime/core/optimizer/qdq_transformer/qdq_transformer.cc
6a3da050ebc655ebcce9f6b1942e5a47e8fa9ba5
[ "MIT" ]
permissive
MichaelJayW/onnxruntime
147a2bbe34f13d04785a7a1daf2e1581b0b6d282
2fcd69d644f4fb9a8e4eaa2981c0e74b32577b39
refs/heads/master
2023-04-05T01:38:47.615735
2021-04-06T01:49:29
2021-04-06T01:49:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,790
cc
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include <deque> #include <vector> #include "core/graph/graph_utils.h" #include "core/optimizer/initializer.h" #include "core/optimizer/qdq_transformer/qdq_transformer.h" #include "core/optimizer/qdq_transformer/qdq_op_transformer.h" #include "core/optimizer/qdq_transformer/registry.h" #include "core/optimizer/utils.h" using namespace ONNX_NAMESPACE; using namespace ::onnxruntime::common; namespace onnxruntime { class QDQTransformerImpl { public: QDQTransformerImpl(Graph& graph) noexcept : graph_(graph) {} void Transform(Node& node) { // extract DequantizeLinear from parents and QuantizeLinear in children std::vector<const Node*> parents = graph_utils::FindParentsByType(node, DQOPTypeName); std::vector<const Node*> children = graph_utils::FindChildrenByType(node, QOPTypeName); if (parents.size() == 0) { return; } // track dq output edges count for (auto parent_node : parents) { if (!dq_output_edges_count_.count(parent_node)) { dq_output_edges_count_[parent_node] = parent_node->GetOutputEdgesCount(); } } std::unique_ptr<QDQOperatorTransformer> op_trans = QDQRegistry::CreateQDQTransformer(node, graph_); if (op_trans && op_trans->Transform(parents, children)) { for (auto parent_node : parents) { dq_output_edges_count_[parent_node]--; } UpdateNodesToRemove(parents); UpdateNodesToRemove(children); if (!op_trans->KeepNode()) { nodes_to_remove_.insert(node.Index()); } } } void Finalize(bool& modified) { for (auto node_idx : nodes_to_remove_) { graph_utils::RemoveNodeOutputEdges(graph_, *graph_.GetNode(node_idx)); graph_.RemoveNode(node_idx); } modified = true; } private: void UpdateNodesToRemove(const std::vector<const Node*>& nodes) { for (auto node : nodes) { if (dq_output_edges_count_[node] == 0 && !nodes_to_remove_.count(node->Index())) { nodes_to_remove_.insert(node->Index()); } } } Graph& graph_; std::unordered_map<const Node*, size_t> dq_output_edges_count_; std::set<NodeIndex> nodes_to_remove_; }; Status QDQTransformer::ApplyImpl(Graph& graph, bool& modified, int graph_level, const logging::Logger& logger) const { QDQTransformerImpl impl(graph); GraphViewer graph_viewer(graph); for (auto index : graph_viewer.GetNodesInTopologicalOrder()) { auto& node = *graph.GetNode(index); ORT_RETURN_IF_ERROR(Recurse(node, modified, graph_level, logger)); if (node.GetExecutionProviderType() == kCpuExecutionProvider) { impl.Transform(node); } } impl.Finalize(modified); return Status::OK(); } } // namespace onnxruntime
[ "noreply@github.com" ]
noreply@github.com
f19085854d471cfb5fb119f69844e32dfd42cf95
b4d1fc90b1c88f355c0cc165d73eebca4727d09b
/libcef/common/drag_data_impl.cc
cfb18fa9046670d43fe6a5496fe6c72cc83a903c
[ "BSD-3-Clause" ]
permissive
chromiumembedded/cef
f03bee5fbd8745500490ac90fcba45616a29be6e
f808926fbda17c7678e21f1403d6f996e9a95138
refs/heads/master
2023-09-01T20:37:38.750882
2023-08-31T17:16:46
2023-08-31T17:28:27
87,006,077
2,600
454
NOASSERTION
2023-07-21T11:39:49
2017-04-02T18:19:23
C++
UTF-8
C++
false
false
5,910
cc
// Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights // reserved. Use of this source code is governed by a BSD-style license that // can be found in the LICENSE file. #include <string> #include "base/files/file_path.h" #include "libcef/browser/stream_impl.h" #include "libcef/common/drag_data_impl.h" #define CHECK_READONLY_RETURN_VOID() \ if (read_only_) { \ DCHECK(false) << "object is read only"; \ return; \ } CefDragDataImpl::CefDragDataImpl(const content::DropData& data) : data_(data), read_only_(false) {} CefDragDataImpl::CefDragDataImpl(const content::DropData& data, CefRefPtr<CefImage> image, const CefPoint& image_hotspot) : data_(data), image_(image), image_hotspot_(image_hotspot), read_only_(false) {} CefDragDataImpl::CefDragDataImpl() : read_only_(false) {} CefRefPtr<CefDragData> CefDragData::Create() { return new CefDragDataImpl(); } CefRefPtr<CefDragData> CefDragDataImpl::Clone() { CefDragDataImpl* drag_data = nullptr; { base::AutoLock lock_scope(lock_); drag_data = new CefDragDataImpl(data_, image_, image_hotspot_); } return drag_data; } bool CefDragDataImpl::IsReadOnly() { base::AutoLock lock_scope(lock_); return read_only_; } bool CefDragDataImpl::IsLink() { base::AutoLock lock_scope(lock_); return (data_.url.is_valid() && data_.file_contents_content_disposition.empty()); } bool CefDragDataImpl::IsFragment() { base::AutoLock lock_scope(lock_); return (!data_.url.is_valid() && data_.file_contents_content_disposition.empty() && data_.filenames.empty()); } bool CefDragDataImpl::IsFile() { base::AutoLock lock_scope(lock_); return (!data_.file_contents_content_disposition.empty() || !data_.filenames.empty()); } CefString CefDragDataImpl::GetLinkURL() { base::AutoLock lock_scope(lock_); return data_.url.spec(); } CefString CefDragDataImpl::GetLinkTitle() { base::AutoLock lock_scope(lock_); return data_.url_title; } CefString CefDragDataImpl::GetLinkMetadata() { base::AutoLock lock_scope(lock_); return data_.download_metadata; } CefString CefDragDataImpl::GetFragmentText() { base::AutoLock lock_scope(lock_); return data_.text ? CefString(*data_.text) : CefString(); } CefString CefDragDataImpl::GetFragmentHtml() { base::AutoLock lock_scope(lock_); return data_.html ? CefString(*data_.html) : CefString(); } CefString CefDragDataImpl::GetFragmentBaseURL() { base::AutoLock lock_scope(lock_); return data_.html_base_url.spec(); } CefString CefDragDataImpl::GetFileName() { base::AutoLock lock_scope(lock_); auto filename = data_.GetSafeFilenameForImageFileContents(); return filename ? CefString(filename->value()) : CefString(); } size_t CefDragDataImpl::GetFileContents(CefRefPtr<CefStreamWriter> writer) { base::AutoLock lock_scope(lock_); if (data_.file_contents.empty()) { return 0; } char* data = const_cast<char*>(data_.file_contents.c_str()); size_t size = data_.file_contents.size(); if (!writer.get()) { return size; } return writer->Write(data, 1, size); } bool CefDragDataImpl::GetFileNames(std::vector<CefString>& names) { base::AutoLock lock_scope(lock_); if (data_.filenames.empty()) { return false; } std::vector<ui::FileInfo>::const_iterator it = data_.filenames.begin(); for (; it != data_.filenames.end(); ++it) { auto name = it->display_name.value(); if (name.empty()) { name = it->path.value(); } names.push_back(name); } return true; } void CefDragDataImpl::SetLinkURL(const CefString& url) { base::AutoLock lock_scope(lock_); CHECK_READONLY_RETURN_VOID(); data_.url = GURL(url.ToString()); } void CefDragDataImpl::SetLinkTitle(const CefString& title) { base::AutoLock lock_scope(lock_); CHECK_READONLY_RETURN_VOID(); data_.url_title = title.ToString16(); } void CefDragDataImpl::SetLinkMetadata(const CefString& data) { base::AutoLock lock_scope(lock_); CHECK_READONLY_RETURN_VOID(); data_.download_metadata = data.ToString16(); } void CefDragDataImpl::SetFragmentText(const CefString& text) { base::AutoLock lock_scope(lock_); CHECK_READONLY_RETURN_VOID(); data_.text = text.ToString16(); } void CefDragDataImpl::SetFragmentHtml(const CefString& fragment) { base::AutoLock lock_scope(lock_); CHECK_READONLY_RETURN_VOID(); data_.html = fragment.ToString16(); } void CefDragDataImpl::SetFragmentBaseURL(const CefString& fragment) { base::AutoLock lock_scope(lock_); CHECK_READONLY_RETURN_VOID(); data_.html_base_url = GURL(fragment.ToString()); } void CefDragDataImpl::ResetFileContents() { base::AutoLock lock_scope(lock_); CHECK_READONLY_RETURN_VOID(); data_.file_contents.erase(); data_.file_contents_source_url = GURL(); data_.file_contents_filename_extension.erase(); data_.file_contents_content_disposition.erase(); } void CefDragDataImpl::AddFile(const CefString& path, const CefString& display_name) { base::AutoLock lock_scope(lock_); CHECK_READONLY_RETURN_VOID(); data_.filenames.push_back( ui::FileInfo(base::FilePath(path), base::FilePath(display_name))); } void CefDragDataImpl::ClearFilenames() { base::AutoLock lock_scope(lock_); data_.filenames.clear(); } void CefDragDataImpl::SetReadOnly(bool read_only) { base::AutoLock lock_scope(lock_); if (read_only_ == read_only) { return; } read_only_ = read_only; } CefRefPtr<CefImage> CefDragDataImpl::GetImage() { base::AutoLock lock_scope(lock_); return image_; } CefPoint CefDragDataImpl::GetImageHotspot() { base::AutoLock lock_scope(lock_); return image_hotspot_; } bool CefDragDataImpl::HasImage() { base::AutoLock lock_scope(lock_); return image_ ? true : false; }
[ "magreenblatt@gmail.com" ]
magreenblatt@gmail.com
6706b3ed379bbb74fa683c9c057c4128e9e18789
ba26bdffa89daf91a59b8e7159aed35ad1be2f29
/ClothingSizeCalc/ClothingSizeCalc/ClothingSizeCalc.cpp
7044c4ca68b9db4560c6a08dce68ebbbe9e6aa48
[]
no_license
ceflin/CS200
159698e31d61b6ebd79582c6bc855dff46b336d6
961a17678916fc8feaaf2aad0b12d2c22ccc9007
refs/heads/master
2020-04-21T09:18:46.109352
2019-05-14T22:35:02
2019-05-14T22:35:02
169,444,539
0
0
null
null
null
null
UTF-8
C++
false
false
2,388
cpp
/*Author: Chris Eflin Program: ClothingSizeCalc.cpp*/ #include <iostream>; using namespace std; const double JACKET_ADJUSTMENT = 1 / 8.0; void getInput(double& height, double& weight, int& age); double calcHatSize(double height, double weight); double calcJacketSize(double height, double weight, int age); double calcWaistSize(double weight, int age); void showResults(double hatSize, double jacketSize, double waistSize); int main() { double height, weight, hatSize, jacketSize, waistSize; int age; getInput(height, weight, age); hatSize = calcHatSize(height, weight); jacketSize = calcJacketSize(height, weight, age); waistSize = calcWaistSize(weight, age); showResults(hatSize, jacketSize, waistSize); system("pause"); return 0; } void getInput(double& height, double& weight, int& age) { bool validHeight = true; bool validWeight = true; bool validAge = true; do { cout << "Please enter your height in inches: "; cin >> height; if (height > 24 && height < 107) validHeight = true; else validHeight = false; } while (validHeight == false); do { cout << "Please enter your weight in pounds: "; cin >> weight; if (weight > 25 && weight < 400) validWeight = true; else validWeight = false; } while (validWeight == false); do { cout << "Please enter your age: "; cin >> age; if (age > 5 && age < 110) validAge = true; else validAge = false; } while (validAge == false); } double calcHatSize(double height, double weight) { return (weight / height) * 2.9; } double calcJacketSize(double height, double weight, int age) { int numYears = age / 10; double jacketSize = (height * weight) / 288; for (int i = 0; i < numYears; i++) { jacketSize += JACKET_ADJUSTMENT; } return jacketSize; } double calcWaistSize(double weight, int age) { int numYears = age / 10; double waistSize = weight / 5.7; return waistSize; } void showResults(double hatSize, double jacketSize, double waistSize) { cout << "Presently your clothing sizes are:" << endl << "\tHat: " << hatSize << endl << "\tJacket: " << jacketSize << endl << "\tWaist: " << waistSize << endl; }
[ "ceflin@stumail.jccc.edu" ]
ceflin@stumail.jccc.edu
d89fe33dbd9e4f2e9ec64d87ad28226dc6ca0558
6ff0f6ca8df7193e28d5925c2d8fe12996b6b896
/giotto/externals/hera/bottleneck/bound_match.h
770c7dfe03d991f72acb3d79d4055bcb3a9a9cf6
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
L2F-abelganz/giotto-learn
dbea155985978a0e80c4cff316152df0a24f496e
c290c70fa0c2f05d543633b78e297b506e36e4de
refs/heads/master
2020-08-15T08:44:26.361846
2019-10-15T10:05:34
2019-10-15T10:05:34
215,310,773
1
0
Apache-2.0
2019-10-15T13:50:11
2019-10-15T13:50:10
null
UTF-8
C++
false
false
4,578
h
/* Copyright (c) 2015, M. Kerber, D. Morozov, A. Nigmetov All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. You are under no obligation whatsoever to provide any bug fixes, patches, or upgrades to the features, functionality or performance of the source code (Enhancements) to anyone; however, if you choose to make your Enhancements available either publicly, or directly to copyright holder, without imposing a separate written license agreement for such Enhancements, then you hereby grant the following license: a non-exclusive, royalty-free perpetual license to install, use, modify, prepare derivative works, incorporate into other computer software, distribute, and sublicense such enhancements or derivative works thereof, in binary and source code form. */ #ifndef HERA_BOUND_MATCH_H #define HERA_BOUND_MATCH_H #include <unordered_map> #include <memory> #include "basic_defs_bt.h" #include "neighb_oracle.h" namespace hera { namespace bt { template<class Real = double> class Matching { public: using DgmPoint = DiagramPoint<Real>; using DgmPointSet = DiagramPointSet<Real>; using DgmPointHash = DiagramPointHash<Real>; using Path = std::vector<DgmPoint>; Matching(const DgmPointSet& AA, const DgmPointSet& BB) : A(AA), B(BB) {}; DgmPointSet getExposedVertices(bool forA = true) const ; bool isExposed(const DgmPoint& p) const; void getAllAdjacentVertices(const DgmPointSet& setIn, DgmPointSet& setOut, bool forA = true) const; void increase(const Path& augmentingPath); void checkAugPath(const Path& augPath) const; bool getMatchedVertex(const DgmPoint& p, DgmPoint& result) const; bool isPerfect() const; void trimMatching(const Real newThreshold); #ifndef FOR_R_TDA template<class R> friend std::ostream& operator<<(std::ostream& output, const Matching<R>& m); #endif private: DgmPointSet A; DgmPointSet B; std::unordered_map<DgmPoint, DgmPoint, DgmPointHash> AToB, BToA; void matchVertices(const DgmPoint& pA, const DgmPoint& pB); void sanityCheck() const; }; template<class Real_ = double, class NeighbOracle_ = NeighbOracleDnn<Real_>> class BoundMatchOracle { public: using Real = Real_; using NeighbOracle = NeighbOracle_; using DgmPoint = DiagramPoint<Real>; using DgmPointSet = DiagramPointSet<Real>; using Path = std::vector<DgmPoint>; BoundMatchOracle(DgmPointSet psA, DgmPointSet psB, Real dEps, bool useRS = true); bool isMatchLess(Real r); bool buildMatchingForThreshold(const Real r); private: DgmPointSet A, B; Matching<Real> M; void printLayerGraph(); void buildLayerGraph(Real r); void buildLayerOracles(Real r); bool buildAugmentingPath(const DgmPoint startVertex, Path& result); void removeFromLayer(const DgmPoint& p, const int layerIdx); std::unique_ptr<NeighbOracle> neighbOracle; bool augPathExist; std::vector<DgmPointSet> layerGraph; std::vector<std::unique_ptr<NeighbOracle>> layerOracles; Real distEpsilon; bool useRangeSearch; Real prevQueryValue; }; } // end namespace bt } // end namespace hera #include "bound_match.hpp" #endif // HERA_BOUND_MATCH_H
[ "g.tauzin@l2f.ch" ]
g.tauzin@l2f.ch
ba103030b719c59a42621ecc595cada26350697b
e6769524d7a8776f19df0c78e62c7357609695e8
/branches/v0.5-GenericTunneling/retroshare-gui/src/gui/Identity/IdDialog.cpp
f8639399d357863fe919a7aa20c26a01c1f53d81
[]
no_license
autoscatto/retroshare
025020d92084f9bc1ca24da97379242886277779
e0d85c7aac0a590d5839512af8a1e3abce97ca6f
refs/heads/master
2020-04-09T11:14:01.836308
2013-06-30T13:58:17
2013-06-30T13:58:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,879
cpp
/* * Retroshare Identity. * * Copyright 2012-2012 by Robert Fernie. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License Version 2.1 as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA. * * Please report all bugs and problems to "retroshare@lunamutt.com". * */ #include "IdDialog.h" #include <retroshare/rspeers.h> #include <retroshare/rsidentity.h> #include "retroshare/rsgxsflags.h" #include <iostream> #include <sstream> #include <QTimer> /****** * #define ID_DEBUG 1 *****/ // Data Requests. #define IDDIALOG_IDLIST 1 #define IDDIALOG_IDDETAILS 2 /**************************************************************** */ #define RSID_COL_NICKNAME 0 #define RSID_COL_KEYID 1 #define RSID_COL_IDTYPE 2 #define RSID_REQ_IDLIST 1 #define RSID_REQ_IDDETAILS 2 #define RSID_REQ_IDLISTDATA 3 #define RSID_REQ_IDEDIT 4 /** Constructor */ IdDialog::IdDialog(QWidget *parent) : MainPage(parent) { ui.setupUi(this); mEditDialog = NULL; //mPulseSelected = NULL; ui.radioButton_ListAll->setChecked(true); connect( ui.pushButton_NewId, SIGNAL(clicked()), this, SLOT(OpenOrShowAddDialog())); connect( ui.pushButton_EditId, SIGNAL(clicked()), this, SLOT(OpenOrShowEditDialog())); connect( ui.treeWidget_IdList, SIGNAL(itemSelectionChanged()), this, SLOT(updateSelection())); connect( ui.radioButton_ListYourself, SIGNAL(toggled( bool ) ), this, SLOT(ListTypeToggled( bool ) ) ); connect( ui.radioButton_ListFriends, SIGNAL(toggled( bool ) ), this, SLOT(ListTypeToggled( bool ) ) ); connect( ui.radioButton_ListOthers, SIGNAL(toggled( bool ) ), this, SLOT(ListTypeToggled( bool ) ) ); connect( ui.radioButton_ListPseudo, SIGNAL(toggled( bool ) ), this, SLOT(ListTypeToggled( bool ) ) ); connect( ui.radioButton_ListAll, SIGNAL(toggled( bool ) ), this, SLOT(ListTypeToggled( bool ) ) ); QTimer *timer = new QTimer(this); timer->connect(timer, SIGNAL(timeout()), this, SLOT(checkUpdate())); timer->start(1000); mIdQueue = new TokenQueue(rsIdentity->getTokenService(), this); } void IdDialog::ListTypeToggled(bool checked) { if (checked) { requestIdList(); } } void IdDialog::updateSelection() { /* */ QTreeWidgetItem *item = ui.treeWidget_IdList->currentItem(); if (!item) { blankSelection(); } else { std::string id = item->text(RSID_COL_KEYID).toStdString(); requestIdDetails(id); } } void IdDialog::blankSelection() { /* blank it all - and fix buttons */ ui.lineEdit_Nickname->setText(""); ui.lineEdit_KeyId->setText(""); ui.lineEdit_GpgHash->setText(""); ui.lineEdit_GpgId->setText(""); ui.lineEdit_GpgName->setText(""); ui.lineEdit_GpgEmail->setText(""); ui.pushButton_Reputation->setEnabled(false); ui.pushButton_Delete->setEnabled(false); ui.pushButton_EditId->setEnabled(false); ui.pushButton_NewId->setEnabled(true); } void IdDialog::requestIdDetails(std::string &id) { RsTokReqOptions opts; opts.mReqType = GXS_REQUEST_TYPE_GROUP_DATA; uint32_t token; std::list<std::string> groupIds; groupIds.push_back(id); mIdQueue->requestGroupInfo(token, RS_TOKREQ_ANSTYPE_DATA, opts, groupIds, IDDIALOG_IDDETAILS); } void IdDialog::insertIdDetails(uint32_t token) { /* get details from libretroshare */ RsGxsIdGroup data; std::vector<RsGxsIdGroup> datavector; if (!rsIdentity->getGroupData(token, datavector)) { ui.lineEdit_KeyId->setText("ERROR GETTING KEY!"); return; } if (datavector.size() != 1) { std::cerr << "IdDialog::insertIdDetails() Invalid datavector size"; ui.lineEdit_KeyId->setText("INVALID DV SIZE"); return; } data = datavector[0]; /* get GPG Details from rsPeers */ std::string ownPgpId = rsPeers->getGPGOwnId(); ui.lineEdit_Nickname->setText(QString::fromStdString(data.mMeta.mGroupName)); ui.lineEdit_KeyId->setText(QString::fromStdString(data.mMeta.mGroupId)); ui.lineEdit_GpgHash->setText(QString::fromStdString(data.mPgpIdHash)); ui.lineEdit_GpgId->setText(QString::fromStdString(data.mPgpId)); if (data.mPgpKnown) { RsPeerDetails details; rsPeers->getGPGDetails(data.mPgpId, details); ui.lineEdit_GpgName->setText(QString::fromStdString(details.name)); ui.lineEdit_GpgEmail->setText(QString::fromStdString(details.email)); } else { if (data.mMeta.mGroupFlags & RSGXSID_GROUPFLAG_REALID) { ui.lineEdit_GpgName->setText("Unknown Real Name"); ui.lineEdit_GpgEmail->setText("Unknown Email"); } else { ui.lineEdit_GpgName->setText("Anonymous Id"); ui.lineEdit_GpgEmail->setText("-- N/A --"); } } bool isOwnId = (data.mPgpKnown && (data.mPgpId == ownPgpId)) || (data.mMeta.mSubscribeFlags & GXS_SERV::GROUP_SUBSCRIBE_ADMIN); if (isOwnId) { ui.radioButton_IdYourself->setChecked(true); } else if (data.mMeta.mGroupFlags & RSGXSID_GROUPFLAG_REALID) { if (data.mPgpKnown) { if (rsPeers->isGPGAccepted(data.mPgpId)) { ui.radioButton_IdFriend->setChecked(true); } else { ui.radioButton_IdFOF->setChecked(true); } } else { ui.radioButton_IdOther->setChecked(true); } } else { ui.radioButton_IdPseudo->setChecked(true); } ui.pushButton_NewId->setEnabled(true); if (isOwnId) { ui.pushButton_Reputation->setEnabled(false); ui.pushButton_Delete->setEnabled(true); // No Editing Ids yet! //ui.pushButton_EditId->setEnabled(true); } else { ui.pushButton_Reputation->setEnabled(true); ui.pushButton_Delete->setEnabled(false); ui.pushButton_EditId->setEnabled(false); } } void IdDialog::checkUpdate() { /* update */ if (!rsIdentity) return; if (rsIdentity->updated()) { requestIdList(); } return; } void IdDialog::OpenOrShowAddDialog() { if (!mEditDialog) { mEditDialog = new IdEditDialog(NULL); } bool pseudo = false; mEditDialog->setupNewId(pseudo); mEditDialog->show(); } void IdDialog::OpenOrShowEditDialog() { if (!mEditDialog) { mEditDialog = new IdEditDialog(NULL); } /* */ QTreeWidgetItem *item = ui.treeWidget_IdList->currentItem(); if (!item) { std::cerr << "IdDialog::OpenOrShowEditDialog() Invalid item"; std::cerr << std::endl; return; } std::string keyId = item->text(RSID_COL_KEYID).toStdString(); if (mEditDialog) { mEditDialog->setupExistingId(keyId); mEditDialog->show(); } } void IdDialog::requestIdList() { RsTokReqOptions opts; opts.mReqType = GXS_REQUEST_TYPE_GROUP_DATA; uint32_t token; std::list<std::string> groupIds; //mIdQueue->requestGroupInfo(token, RS_TOKREQ_ANSTYPE_DATA, opts, groupIds, IDDIALOG_IDLIST); mIdQueue->requestGroupInfo(token, RS_TOKREQ_ANSTYPE_DATA, opts, IDDIALOG_IDLIST); } void IdDialog::insertIdList(uint32_t token) { QTreeWidget *tree = ui.treeWidget_IdList; tree->clear(); std::list<std::string> ids; std::list<std::string>::iterator it; bool acceptAll = ui.radioButton_ListAll->isChecked(); bool acceptPseudo = ui.radioButton_ListPseudo->isChecked(); bool acceptYourself = ui.radioButton_ListYourself->isChecked(); bool acceptFriends = ui.radioButton_ListFriends->isChecked(); bool acceptOthers = ui.radioButton_ListOthers->isChecked(); RsGxsIdGroup data; std::vector<RsGxsIdGroup> datavector; std::vector<RsGxsIdGroup>::iterator vit; if (!rsIdentity->getGroupData(token, datavector)) { std::cerr << "IdDialog::insertIdList() Error getting GroupData"; std::cerr << std::endl; return; } std::string ownPgpId = rsPeers->getGPGOwnId(); for(vit = datavector.begin(); vit != datavector.end(); vit++) { data = (*vit); bool isOwnId = (data.mPgpKnown && (data.mPgpId == ownPgpId)) || (data.mMeta.mSubscribeFlags & GXS_SERV::GROUP_SUBSCRIBE_ADMIN); /* do filtering */ bool ok = false; if (acceptAll) { ok = true; } else if (data.mMeta.mGroupFlags & RSGXSID_GROUPFLAG_REALID) { if (isOwnId && acceptYourself) { ok = true; } else { if (data.mPgpKnown) { if (acceptFriends) { ok = true; } } else { if (acceptOthers) { ok = true; } } } } else { if (acceptPseudo) { ok = true; } if (isOwnId && acceptYourself) { ok = true; } } if (!ok) { continue; } QTreeWidgetItem *item = new QTreeWidgetItem(); item->setText(RSID_COL_NICKNAME, QString::fromStdString(data.mMeta.mGroupName)); item->setText(RSID_COL_KEYID, QString::fromStdString(data.mMeta.mGroupId)); if (data.mMeta.mGroupFlags & RSGXSID_GROUPFLAG_REALID) { if (data.mPgpKnown) { RsPeerDetails details; rsPeers->getGPGDetails(data.mPgpId, details); item->setText(RSID_COL_IDTYPE, QString::fromStdString(details.name)); } else { item->setText(RSID_COL_IDTYPE, "PGP Linked Id"); } } else { item->setText(RSID_COL_IDTYPE, "Anon Id"); } tree->addTopLevelItem(item); } // fix up buttons. updateSelection(); } void IdDialog::loadRequest(const TokenQueue *queue, const TokenRequest &req) { std::cerr << "IdDialog::loadRequest() UserType: " << req.mUserType; std::cerr << std::endl; switch(req.mUserType) { case IDDIALOG_IDLIST: insertIdList(req.mToken); break; case IDDIALOG_IDDETAILS: insertIdDetails(req.mToken); break; default: std::cerr << "IdDialog::loadRequest() ERROR"; std::cerr << std::endl; break; } }
[ "csoler@b45a01b8-16f6-495d-af2f-9b41ad6348cc" ]
csoler@b45a01b8-16f6-495d-af2f-9b41ad6348cc
ee15bc5790a119f577b29e5bb6455416a2cf0dfa
249c44351fda57645e4b76fce2bd71c80fd0ffc4
/src/opaque_types.cpp
7de41090b0044182c7bd493c23a3946a7fcb23ba
[ "MIT" ]
permissive
jd28/pynwn
08cec224fcb176ebeea283eccb75686a72fcc637
431f975caa0dd294250017b53830a1e9c2b58126
refs/heads/main
2023-01-12T11:03:20.401557
2022-10-24T00:18:03
2022-10-24T00:18:03
7,310,439
8
6
MIT
2022-12-26T21:56:26
2012-12-24T18:33:12
Python
UTF-8
C++
false
false
1,781
cpp
#include "opaque_types.hpp" #include <nw/components/Item.hpp> namespace py = pybind11; void bind_opaque_types(py::module& m) { py::bind_vector<std::vector<int64_t>>(m, "Int64Vector"); py::bind_vector<std::vector<int32_t>>(m, "Int32Vector"); py::bind_vector<std::vector<int16_t>>(m, "Int16Vector"); py::bind_vector<std::vector<int8_t>>(m, "Int8Vector"); py::bind_vector<std::vector<uint64_t>>(m, "UInt64Vector"); py::bind_vector<std::vector<uint32_t>>(m, "UInt32Vector"); py::bind_vector<std::vector<uint16_t>>(m, "UInt16Vector"); py::bind_vector<std::vector<uint8_t>>(m, "UInt8Vector"); py::bind_vector<std::vector<std::string>>(m, "StringVector"); py::bind_vector<std::vector<glm::vec3>>(m, "Vec3Vector"); py::bind_vector<std::vector<nw::InventoryItem>>(m, "InvetoryItemVector"); py::bind_vector<std::vector<nw::Resref>>(m, "ResrefVector"); py::bind_vector<std::vector<nw::Resource>>(m, "ResourceVector"); py::bind_vector<std::vector<nw::ResourceDescriptor>>(m, "ResourceDescriptorVector"); py::bind_vector<std::vector<nw::Tile>>(m, "TileVector"); py::bind_vector<std::vector<nw::Area*>>(m, "AreaVector"); py::bind_vector<std::vector<nw::Creature*>>(m, "CreatureVector"); py::bind_vector<std::vector<nw::Door*>>(m, "DoorVector"); py::bind_vector<std::vector<nw::Encounter*>>(m, "EncounterVector"); py::bind_vector<std::vector<nw::Item*>>(m, "ItemVector"); py::bind_vector<std::vector<nw::Placeable*>>(m, "PlaceableVector"); py::bind_vector<std::vector<nw::Sound*>>(m, "SoundVector"); py::bind_vector<std::vector<nw::Store*>>(m, "StoreVector"); py::bind_vector<std::vector<nw::Trigger*>>(m, "TriggerVector"); py::bind_vector<std::vector<nw::Waypoint*>>(m, "WaypointVector"); }
[ "joshua.m.dean@gmail.com" ]
joshua.m.dean@gmail.com
d227c635f91e860de204bfd686647be220931fac
09a4962b93c196f2f8a70c2384757142793612fd
/company/build/iOS/Preview1/src/Outracks.Simulator.Runtime.UxProperty-1.cpp
f7345edf0954cab46e97cfc9ee72e56a69c821b4
[]
no_license
JimmyRodriguez/apps-fuse
169779ff2827a6e35be91d9ff17e0c444ba7f8cd
14114328c3cea08c1fd766bf085bbf5a67f698ae
refs/heads/master
2020-12-03T09:25:26.566750
2016-09-24T14:24:49
2016-09-24T14:24:49
65,154,944
0
0
null
null
null
null
UTF-8
C++
false
false
5,652
cpp
// This file was generated based on '/Users/jimmysidney/workspace/apps-fuse/company/build/iOS/Preview1/preamble/$.uno'. // WARNING: Changes might be lost if you edit this file directly. #include <Outracks.Simulator.Runtime.UxProperty-1.h> #include <Uno.Action-2.h> #include <Uno.Bool.h> #include <Uno.Func-1.h> #include <Uno.String.h> #include <Uno.UX.IPropertyListener.h> #include <Uno.UX.PropertyObject.h> #include <Uno.UX.Selector.h> namespace g{ namespace Outracks{ namespace Simulator{ namespace Runtime{ // public sealed class UxProperty<T> :39 // { static void UxProperty_build(uType* type) { type->SetFields(1, ::g::Uno::Func_typeof()->MakeType(uObject_typeof()), offsetof(::g::Outracks::Simulator::Runtime::UxProperty, _getter), 0, ::g::Uno::UX::PropertyObject_typeof(), offsetof(::g::Outracks::Simulator::Runtime::UxProperty, _obj), 0, ::g::Uno::Action2_typeof()->MakeType(uObject_typeof(), uObject_typeof()), offsetof(::g::Outracks::Simulator::Runtime::UxProperty, _setter), 0, ::g::Uno::Bool_typeof(), offsetof(::g::Outracks::Simulator::Runtime::UxProperty, _supportsOriginSetter), 0); type->Reflection.SetFunctions(1, new uFunction(".ctor", type, (void*)UxProperty__New1_fn, 0, true, type, 5, ::g::Uno::Action2_typeof()->MakeType(uObject_typeof(), uObject_typeof()), ::g::Uno::Func_typeof()->MakeType(uObject_typeof()), ::g::Uno::UX::PropertyObject_typeof(), ::g::Uno::String_typeof(), ::g::Uno::Bool_typeof())); } ::g::Uno::UX::Property1_type* UxProperty_typeof() { static uSStrong< ::g::Uno::UX::Property1_type*> type; if (type != NULL) return type; uTypeOptions options; options.FieldCount = 5; options.GenericCount = 1; options.ObjectSize = sizeof(UxProperty); options.TypeSize = sizeof(::g::Uno::UX::Property1_type); type = (::g::Uno::UX::Property1_type*)uClassType::New("Outracks.Simulator.Runtime.UxProperty`1", options); type->SetBase(::g::Uno::UX::Property1_typeof()->MakeType(type->T(0))); type->fp_build_ = UxProperty_build; type->fp_Get = (void(*)(::g::Uno::UX::Property1*, uTRef))UxProperty__Get_fn; type->fp_get_Object = (void(*)(::g::Uno::UX::Property*, ::g::Uno::UX::PropertyObject**))UxProperty__get_Object_fn; type->fp_Set = (void(*)(::g::Uno::UX::Property1*, void*, uObject*))UxProperty__Set_fn; type->fp_get_SupportsOriginSetter = (void(*)(::g::Uno::UX::Property*, bool*))UxProperty__get_SupportsOriginSetter_fn; return type; } // public UxProperty(Uno.Action<object, object> setter, Uno.Func<object> getter, Uno.UX.PropertyObject obj, string name, bool supportsOriginSetter) :46 void UxProperty__ctor_2_fn(UxProperty* __this, uDelegate* setter, uDelegate* getter, ::g::Uno::UX::PropertyObject* obj, uString* name, bool* supportsOriginSetter) { __this->ctor_2(setter, getter, obj, name, *supportsOriginSetter); } // public override sealed T Get() :62 void UxProperty__Get_fn(UxProperty* __this, uTRef __retval) { uStackFrame __("Outracks.Simulator.Runtime.UxProperty`1", "Get()"); return __retval.Store(__this->__type->T(0), uUnboxAny(__this->__type->T(0), uPtr(__this->_getter)->Invoke())), void(); } // public UxProperty New(Uno.Action<object, object> setter, Uno.Func<object> getter, Uno.UX.PropertyObject obj, string name, bool supportsOriginSetter) :46 void UxProperty__New1_fn(uType* __type, uDelegate* setter, uDelegate* getter, ::g::Uno::UX::PropertyObject* obj, uString* name, bool* supportsOriginSetter, UxProperty** __retval) { *__retval = UxProperty::New1(__type, setter, getter, obj, name, *supportsOriginSetter); } // public override sealed Uno.UX.PropertyObject get_Object() :56 void UxProperty__get_Object_fn(UxProperty* __this, ::g::Uno::UX::PropertyObject** __retval) { uStackFrame __("Outracks.Simulator.Runtime.UxProperty`1", "get_Object()"); return *__retval = __this->_obj, void(); } // public override sealed void Set(T value, Uno.UX.IPropertyListener origin) :56 void UxProperty__Set_fn(UxProperty* __this, void* value, uObject* origin) { uStackFrame __("Outracks.Simulator.Runtime.UxProperty`1", "Set(T,Uno.UX.IPropertyListener)"); uPtr(__this->_setter)->Invoke(2, uBoxPtr(__this->__type->T(0), value), origin); } // public override sealed bool get_SupportsOriginSetter() :56 void UxProperty__get_SupportsOriginSetter_fn(UxProperty* __this, bool* __retval) { uStackFrame __("Outracks.Simulator.Runtime.UxProperty`1", "get_SupportsOriginSetter()"); return *__retval = __this->_supportsOriginSetter, void(); } // public UxProperty(Uno.Action<object, object> setter, Uno.Func<object> getter, Uno.UX.PropertyObject obj, string name, bool supportsOriginSetter) [instance] :46 void UxProperty::ctor_2(uDelegate* setter, uDelegate* getter, ::g::Uno::UX::PropertyObject* obj, uString* name, bool supportsOriginSetter) { uStackFrame __("Outracks.Simulator.Runtime.UxProperty`1", ".ctor(Uno.Action<object, object>,Uno.Func<object>,Uno.UX.PropertyObject,string,bool)"); ctor_1(::g::Uno::UX::Selector__New1(name)); _setter = setter; _getter = getter; _obj = obj; _supportsOriginSetter = supportsOriginSetter; } // public UxProperty New(Uno.Action<object, object> setter, Uno.Func<object> getter, Uno.UX.PropertyObject obj, string name, bool supportsOriginSetter) [static] :46 UxProperty* UxProperty::New1(uType* __type, uDelegate* setter, uDelegate* getter, ::g::Uno::UX::PropertyObject* obj, uString* name, bool supportsOriginSetter) { UxProperty* obj1 = (UxProperty*)uNew(__type); obj1->ctor_2(setter, getter, obj, name, supportsOriginSetter); return obj1; } // } }}}} // ::g::Outracks::Simulator::Runtime
[ "jimmysidney@jimmysidney.local" ]
jimmysidney@jimmysidney.local
0d7247fe6da900b8670a11806c36f70b3830ee45
48d4cc56a3494276df563013e46cc29c22931bcf
/vs2017/control/clouddisk/Controls/ProgressingItem.cpp
89917e13c16013ffff230f93aa8ddce17a25496e
[ "MIT" ]
permissive
cheechang/cppcc
8e8fde9eedc84641b3bc64efac116a32471ffa1d
0292e9a9b27e0579970c83b4f6a75dcdae1558bf
refs/heads/main
2023-03-16T23:09:56.725184
2021-03-05T09:46:28
2021-03-05T09:46:28
344,737,972
0
2
null
null
null
null
GB18030
C++
false
false
2,343
cpp
#include "ProgressingItem.h" #include "QClickLabel.h" #include "PushButton.h" #include "MyLineEdit.h" #include <QHBoxLayout> #include <QLineEdit> #include <QEvent> #include <QKeyEvent> #include <QProgressBar> #include "MyMessageBox.h" #include <QFileInfo> #include <QDesktopServices> #include <QDir> #include <QFileDialog> #include <QProcess> namespace ui{ ProgressingItem::ProgressingItem(QWidget *parent) :QWidget(parent) , m_progress(nullptr) , m_pauseBtn(nullptr) , m_cancelBtn(nullptr) ,m_row(-1) , m_pro(0) , m_localId(0) { setMouseTracking(true); //m_pauseBtn = new PushButton(this); m_cancelBtn = new PushButton(this); m_mainlayout = new QHBoxLayout(this); m_progress = new QProgressBar(this); m_progress->setFixedSize(120,16); m_progress->setMinimum(0); m_progress->setMaximum(100); m_progress->setTextVisible(true); //m_pauseBtn->setPicName(QString(":/img/pause")); m_cancelBtn->setPicName(QString(":/img/quit")); //m_pauseBtn->setToolTip(QString::fromUtf8("暂停")); //上传 m_cancelBtn->setToolTip(tr("取消")); //取消 //m_pauseBtn->setObjectName("pausebtn"); m_cancelBtn->setObjectName("quitbtn"); m_mainlayout->setSpacing(5); m_mainlayout->setContentsMargins(3, 0, 3, 0); m_mainlayout->setAlignment(Qt::AlignCenter); m_mainlayout->addWidget(m_progress); m_mainlayout->addWidget(m_cancelBtn); m_mainlayout->addStretch(); this->setLayout(m_mainlayout); connect(m_cancelBtn, SIGNAL(clicked()), this, SLOT(onCancel())); //取消 } ProgressingItem::~ProgressingItem(){ } void ProgressingItem::setItemRow(int row){ m_row = row; } int ProgressingItem::getItemRow()const{ return m_row; } void ProgressingItem::setProgress(int32 pro, int64 localId, std::string& filename){ if (!m_localId){ m_localId = localId; } if (m_localId == localId){ m_progress->setValue(pro); if (pro == 100){ //m_pauseBtn->setVisible(false); m_cancelBtn->setVisible(false); if (!filename.empty()){ emit signalPath(QString::fromStdString(filename), localId); emit display(2, localId); } } } } void ProgressingItem::onProgress(int32 proval, int64 localid, std::string& filename){ setProgress(proval, localid, filename); } void ProgressingItem::onCancel(){ emit signalCancel(m_localId); emit display(1, m_localId); } }
[ "zhangq1001@chinaunicom.cn" ]
zhangq1001@chinaunicom.cn
2b3c3ff7ffddf9edde0675e2f44c6f07aeab29ce
eadbc34985d7fdf46891007838508023fea42c53
/core/raycaster.hpp
2fdc6f17ba00cfd098a9f5c995a083f84c95b0ff
[ "MIT" ]
permissive
danielesteban/opengl
beea764a994ff22297c503cbf0c25f4c48f9fd41
00204a8dc2cb506e1bd5ce3be68d4684325a75ff
refs/heads/master
2020-12-05T15:23:36.246743
2020-01-26T22:12:09
2020-01-26T22:12:09
232,154,753
5
0
null
null
null
null
UTF-8
C++
false
false
391
hpp
#pragma once #include <glad/glad.h> #include <GLFW/glfw3.h> #include <glm/glm.hpp> #include "camera.hpp" #include "input.hpp" class Raycaster { public: Raycaster(); struct { glm::vec3 origin; glm::vec3 direction; } ray; bool intersectsSphere(const glm::vec3 &origin, const GLfloat radius); void setFromCamera(const Camera &camera, const Input &input); };
[ "dani@gatunes.com" ]
dani@gatunes.com
8d69899af712b09193f428669e1cbdd01ca29ad3
a33aac97878b2cb15677be26e308cbc46e2862d2
/program_data/PKU_raw/49/326.c
408f8fb1a83043abb1c491d97562c027ca72877b
[]
no_license
GabeOchieng/ggnn.tensorflow
f5d7d0bca52258336fc12c9de6ae38223f28f786
7c62c0e8427bea6c8bec2cebf157b6f1ea70a213
refs/heads/master
2022-05-30T11:17:42.278048
2020-05-02T11:33:31
2020-05-02T11:33:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
366
c
int main() { char a[501]; char *p,*t,*m; cin>>a; int la,i,flag=1; la=strlen(a); for(i=1;i<la;i++) { for(p=a+i;p<a+la;p++) { flag=1; for(t=p-i,m=p;t<=m;t++,m--) { if(*t!=*m) { flag=0; break; } } if(flag) { for(t=p-i;t<=p;t++) cout<<*t; cout<<endl; } } } return 0; }
[ "bdqnghi@gmail.com" ]
bdqnghi@gmail.com
22a2cc1b662f26309ec1ff56a74837a5e2b8a76f
bf73d6b73d5f7d7fc5dce453bdad96532b8378ad
/ECE 416/shift cypher decrypter/cypherchar.h
4c472c8e111c3a8b0ce483bf0b129158b1ffd26f
[]
no_license
candr002/CS361
81822f135f2dec2a7b7da50135e8db56d645ffcd
98e7d89231198b2cd19ffb9ff934d47a9976a304
refs/heads/master
2021-01-11T15:45:59.074473
2017-09-12T18:04:09
2017-09-12T18:04:09
79,926,765
0
0
null
null
null
null
UTF-8
C++
false
false
454
h
#include "libraries.h" class cypherchar { public: cypherchar() {plaintext = '-';} cypherchar(char x) {cyphertext = x; plaintext = '-';} char getcychar() {return cyphertext;} void setcychar(char x) {cyphertext = x;} char getplchar() {return plaintext;} void setplchar(char x) {plaintext = x;} private: char cyphertext, plaintext; };
[ "noreply@github.com" ]
noreply@github.com
89cfa910cc6cb32e6a5d634bd8d2d37fb4e81e3f
9ad19567a82730a733f59f26f5e886aaa5d1e2e5
/vkshader.cpp
5bbd719ada3c0d8f01063052d4f9cb71d623f740
[ "MIT" ]
permissive
HorstBaerbel/vsvr
8c48474a20f334de571db025f14590b5d1b6db51
ec761b74a91b496561e4654ec23d6c6546eac7c1
refs/heads/master
2021-01-02T18:35:53.664801
2020-04-09T15:15:10
2020-04-09T15:15:10
239,745,870
0
0
null
null
null
null
UTF-8
C++
false
false
2,076
cpp
#include "vkshader.h" #include "vkutils.h" #include <stdexcept> #include <fstream> namespace vsvr { DEVICERESOURCE_FUNCTIONS_CPP(Shader) Shader & Shader::operator=(Shader &&other) { if (&other != this) { DeviceResource::operator=(std::move(other)); m_module = std::move(other.m_module); other.m_module = nullptr; m_stage = std::move(other.m_stage); m_entryPoint = std::move(other.m_entryPoint); } return *this; } void Shader::create(vk::Device logicalDevice, const std::vector<char> &code, vk::ShaderStageFlagBits stage, const std::string &entryPoint) { if (isValid()) { throw std::runtime_error("Shader already created!"); } m_module = createShader(logicalDevice, code); m_stage = stage; m_entryPoint = entryPoint; setCreated(logicalDevice); } void Shader::create(vk::Device logicalDevice, const std::string &fileName, vk::ShaderStageFlagBits stage, const std::string &entryPoint) { std::ifstream file(fileName, std::ios::ate | std::ios::binary); if (!file.is_open()) { throw std::runtime_error("Failed to open shader file!"); } size_t fileSize = (size_t)file.tellg(); std::vector<char> buffer(fileSize); file.seekg(0); file.read(buffer.data(), fileSize); file.close(); create(logicalDevice, buffer, stage, entryPoint); } void Shader::destroyResource() { logicalDevice().destroyShaderModule(m_module); m_module = nullptr; } const vk::ShaderModule Shader::module() const { return m_module; } vk::ShaderStageFlagBits Shader::stage() const { return m_stage; } const std::string &Shader::entryPoint() const { return m_entryPoint; } vk::ShaderModule Shader::createShader(vk::Device logicalDevice, const std::vector<char> &code) { vk::ShaderModuleCreateInfo createInfo; createInfo.codeSize = code.size(); createInfo.pCode = reinterpret_cast<const uint32_t *>(code.data()); vk::ShaderModule shaderModule; shaderModule = logicalDevice.createShaderModule(createInfo); return shaderModule; } } // namespace vsvr
[ "bim.overbohm@googlemail.com" ]
bim.overbohm@googlemail.com
93b65c1543cd91a9f22e8adc30946474171f8961
6ce8ea71d7571bcce4d9c777d78710db3c0f808a
/C&C++/PAT/code/AdvancedLevel/1048.cpp
aa8f2fe91f7b40e875a5c9801fb800026211b5d0
[]
no_license
Drrany/Algorithms_Code
550057888dcf3c3c3797a6004590c00ea4baf65f
c68de942f9f46fae0b42bd8c3293846e6a7e2be3
refs/heads/master
2023-03-23T09:33:46.097869
2021-03-15T12:48:57
2021-03-15T12:48:57
289,410,041
1
0
null
null
null
null
UTF-8
C++
false
false
535
cpp
#include <bits/stdc++.h> using namespace std; int mp[510]{}; int main() { int n, m, co; cin >> n >> m; vector<int> coins; for (int i = 0; i < n; ++i) { cin >> co; coins.push_back(co); mp[co]++; } sort(coins.begin(), coins.end()); for (const auto &e:coins) { if ((m - e) >= 0 && (m - e) <= 510 && mp[m - e] > 0) { if (m == 2 * e && mp[e] == 1) continue; cout << e << " " << m - e; return 0; } } cout << "No Solution"; }
[ "deelhu370@gmail.com" ]
deelhu370@gmail.com
1228d1cbaed891d5a7970904ba9b8f62da3884ac
d9c1c4ae9e03d9e2782d8a898e518a3b8bf6ff58
/DesignModeSln/Visitor/CommonEmployee.cpp
30114b732c2a9d9f37e76c9ca15b6fa170fb45f6
[]
no_license
zhaohongqiang/Codes
753166b168a081d679e474ad0b0062d463a06096
f28c860a65afc81ba19d1f49e1edbda719f44f03
refs/heads/master
2021-03-04T16:11:47.299084
2019-11-02T06:12:39
2019-11-02T06:12:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
348
cpp
#include "StdAfx.h" #include "CommonEmployee.h" CCommonEmployee::CCommonEmployee(void) { m_job = ""; } CCommonEmployee::~CCommonEmployee(void) { } void CCommonEmployee::SetJob( string job ) { m_job = job; } void CCommonEmployee::Accept( IVisitor *pVisitor ) { pVisitor->Visit(*this); } string CCommonEmployee::GetJob() { return m_job; }
[ "jc1402080216@163.com" ]
jc1402080216@163.com
bf227dd89252929c47084145eb2a6950b8f4a48c
8bad714c830d611ecc771a16a6d6393534f36da0
/6. Fungsi/01.cpp
c2aa7746681f5f4995e95b860113249b3751cbbc
[]
no_license
arfian-rp/cpp-dasar
3c93b460875bbc2a5d61220b263e5673b36d4a58
0a20cbf495a7d8b0455757b8b50ac36aaa542bd6
refs/heads/main
2023-05-30T18:09:20.337996
2021-06-02T01:47:48
2021-06-02T01:47:48
373,020,108
1
0
null
null
null
null
UTF-8
C++
false
false
3,552
cpp
#include <iostream> #include <cstdarg> #include <cstdlib> using namespace std; #define FUNGSI_INLINE(a,b)((a>b)?a:b) int maks(int n, ...){ int nilai, maks; va_list v1; va_start(v1, n); maks = va_arg(v1, int); for(int i{0};i<n;i++){ nilai = va_arg(v1, int); maks = (nilai > maks) ? nilai : maks; } va_end(v1); return maks; } void spasi(){ cout<<endl; for(int spasi=0;spasi<=30;spasi++){ cout<<"="; } cout<<endl; for(int spasi=0;spasi<=30;spasi++){ cout<<"="; } cout<<endl; } void tanpa_return(string a){ cout<<a<<endl; } int dengan_return(int a, int b){ int result = a*b; return result; } void param_default(string a, bool baris_baru=false){ cout<<a; if(baris_baru){ cout<<endl; } } void increment(int& a){ ++a; } void tukar1(int a, int b){ int c=a; a=b; b=c; } void tukar2(int& a, int& b){ int c=a; a=b; b=c; } int fOverload(int k, int y){ return k+y; } void fOverload(string k, string y, bool ijin=false){ if(ijin){ cout<<k<<" "<<y<<endl; } else if(!ijin){ cout<<k<<y<<endl; } } int rekursifFaktorial(int n){ if(n<0){ cout<<"nilai tidak boleh negatif"<<endl; exit(1); //atau exit(EXIT_FAILURE) } if(n<=1) return 1; return n*rekursifFaktorial(n-1); //memanggil dirinya sendiri } auto Fgayabaru(int a, int b)->int{ return a*b; } int main(int argc, char const *argv[]) { spasi(); cout<<"FUNGSI TANPA RETURN"<<endl; tanpa_return("Fungsi Dipanggil"); spasi(); cout<<"FUNGSI DENGAN RETURN"<<endl; int hasil=dengan_return(9,16); cout<<hasil<<endl; spasi(); cout<<"PARAMETER DENGAN NILAI DEFAULT"<<endl; param_default("Hello gais"); spasi(); cout<<"PARAMETER MASUKAN KELUARAN"<<endl; int x{7}; increment(x); cout<<x<<endl; spasi(); cout<<"PASS BY VALUE"<<endl; int x1{10}, y1{30}; cout<<"sebelum ditukar"<<endl; cout<<"x = "<<x1<<endl; cout<<"y = "<<y1<<endl; cout<<"memanggil fungsi tukar"<<endl; tukar1(x1,y1); cout<<"setelah ditukar"<<endl; cout<<"x = "<<x1<<endl; cout<<"y = "<<y1<<endl; spasi(); cout<<"PASS BY REFERENCE"<<endl; int x2{10}, y2{30}; cout<<"sebelum ditukar"<<endl; cout<<"x = "<<x2<<endl; cout<<"y = "<<y2<<endl; cout<<"memanggil fungsi tukar"<<endl; tukar2(x2,y2); cout<<"setelah ditukar"<<endl; cout<<"x = "<<x2<<endl; cout<<"y = "<<y2<<endl; spasi(); cout<<"PARAMETER DINAMIS: VARIABLE ARGUMENTS LIST"<<endl; cout<<"Nilai Maks 1: "<<maks(4,5,62,32,634)<<endl; cout<<"Nilai Maks 2: "<<maks(4,5,62,32,634,315132,315)<<endl; cout<<"Nilai Maks 3: "<<maks(4,5,62,32,634,12,351,21341)<<endl; spasi(); cout<<"PARAMETER ARGC DAN ARGV PADA MAIN()"<<endl; for(int i{0};i<argc;i++){ cout<<"argumen ke-"<<i<<": "<<argv[i]<<endl; } spasi(); cout<<"FUNGSI INLINE"<<endl; cout<<"var 1 = "<<14<<endl; cout<<"var 2 = "<<90<<endl; cout<<"var terbesar = "<<FUNGSI_INLINE(14,90)<<endl; spasi(); cout<<"FUNGSI OVERLOADING"<<endl; cout<<fOverload(82,42)<<endl; fOverload("fungsi","overloading"); cout<<"kedua fungsi menggunakan nama yg sama"<<endl; spasi(); cout<<"FUNGSI REKURSIF"<<endl; int t{5},f; f=rekursifFaktorial(t); cout<<t<<"! = "<<f<<endl; spasi(); cout<<"FUNGSI GAYA BARU"<<endl; cout<<Fgayabaru(9,6)<<endl; spasi(); cout<<"MEMBUAT FUNGSI TANPA NAMA"<<endl; double d1{5.0},d2{6.0},vol1{0.0},vol2{0.0}; vol1=[](double a)->double{ return a*a*a;}(d1); vol2=[](double a)->double{ return a*a*a;}(d2); cout<<"vol 1 = "<<vol1<<endl; cout<<"vol 2 = "<<vol2<<endl; spasi(); cout<<"MENAMAI EKSPRESI LAMDA"<<endl; auto kali=[](int a,int b)->int{ return a*b;}; cout<<"76 * 6 = "<<kali(76,6)<<endl; cin.get(); return 0; }
[ "arfianrafi77@gmail.com" ]
arfianrafi77@gmail.com
8c5002562993c2ec1232117c7754e0bc351043a8
b6f083a00a9e185c069d36720db8ffa0be90dffb
/cuda/bitscan_cpu.cpp
8adf18636e554f417d85ef2e039f6c75f46ce0c3
[]
no_license
theseusyang/gpudb
94288ab63ca2ad0cadbf1635d887947e2dac66bf
6c549150780f513c84ace27669379b37e2e4829a
refs/heads/master
2020-03-31T05:42:24.184797
2018-04-01T12:47:52
2018-04-01T12:47:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
672
cpp
#include <iostream> #include <cstdio> #include <cstring> #include <cstdlib> using namespace std; #define utype long long int main(int argc, char ** argv){ freopen("scan.in","r",stdin); freopen("scan.out","w",stdout); int n = 32; scanf("%d",&n); utype bytes = n * sizeof(utype); utype *a; a = (utype*)malloc(bytes ); for (int i = 0; i < n; i++) if(sizeof(utype)==4)scanf("%d",a+i); else scanf("%lld",a+i); utype constC=0; int test_num = 0; scanf("%d",&test_num); for(int i = 1;i<=test_num;i++) if(sizeof(utype)==4)scanf("%d", &constC); else scanf("%lld",&constC); for(int i=0;i<n;i++) if(a[i]<constC) printf("%d\n",1); else printf("%d\n",0); }
[ "14307130159@fudan.edu.cn" ]
14307130159@fudan.edu.cn
ede620b5367bbd853f8df3e30f23eccbbdabc8a3
37e5b58d0087fbd3c3270752615ab3ff7f18b214
/subcommands.h
974b232fe233855171fb6fc597e8e54635568d0d
[]
no_license
zprong/Graph-Register-Machine
6c04dfdcbacc0b62abcb118ae3f1b9c1541cf9f0
6f332d403e4f060fbef75ab97f7dc13fa3c79965
refs/heads/master
2020-04-19T07:20:57.631126
2019-01-28T21:59:53
2019-01-28T21:59:53
168,044,273
0
0
null
null
null
null
UTF-8
C++
false
false
810
h
#ifndef SUBCOMMANDS_H #define SUBCOMMANDS_H #include "commands.h" #if defined DBUG class create : public commands { public: void execute(std::vector<std::string>& words, graph reg[]); create(); }; class print : public commands { public: void execute(std::vector<std::string>& words, graph reg[]); void trav_list(it start, it finish); print(); }; class arc : public commands{ public: void execute(std::vector<std::string>& words, graph reg[]); arc(); }; class biarc : public commands { public: void execute(std::vector<std::string>& words, graph reg[]); biarc(); }; class bfs_command : public commands{ public: void execute(std::vector<std::string>& words, graph reg[]); void bfs(graph& g, int start, int target); bfs_command(); }; #endif #endif
[ "noreply@github.com" ]
noreply@github.com
0605500c5fa1261de97ed87ad80007a4e641bbff
d572eaec356b02d2f8eee85d3b8e75e1a8994159
/Libs/MRML/vtkMRMLUnstructuredGridStorageNode.cxx
631e8ac373c3c41cacc03872dfffb37285f87a4d
[ "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-3dslicer-1.0", "BSD-3-Clause" ]
permissive
KongCang/Slicer4
8dea8180ff78c98c6a9c3b433c5850a2adf3614e
1fff370f943560811ba82450e547714e98a360a1
refs/heads/master
2021-01-11T09:00:54.632479
2010-12-03T22:00:48
2010-12-03T22:00:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,902
cxx
/*=auto========================================================================= Portions (c) Copyright 2005 Brigham and Women's Hospital (BWH) All Rights Reserved. See Doc/copyright/copyright.txt or http://www.slicer.org/copyright/copyright.txt for details. Program: 3D Slicer Module: $RCSfile: vtkMRMLUnstructuredGridStorageNode.cxx,v $ Date: $Date: 2006/03/17 15:10:09 $ Version: $Revision: 1.2 $ =========================================================================auto=*/ #include <string> #include <iostream> #include <sstream> #include "itksys/SystemTools.hxx" #include "vtkObjectFactory.h" #include "vtkMRMLUnstructuredGridStorageNode.h" #include "vtkMRMLScene.h" #include "vtkUnstructuredGridReader.h" #include "vtkUnstructuredGridWriter.h" #include "vtkStringArray.h" //------------------------------------------------------------------------------ vtkMRMLUnstructuredGridStorageNode* vtkMRMLUnstructuredGridStorageNode::New() { // First try to create the object from the vtkObjectFactory vtkObject* ret = vtkObjectFactory::CreateInstance("vtkMRMLUnstructuredGridStorageNode"); if(ret) { return (vtkMRMLUnstructuredGridStorageNode*)ret; } // If the factory was unable to create the object, then create it here. return new vtkMRMLUnstructuredGridStorageNode; } //---------------------------------------------------------------------------- vtkMRMLNode* vtkMRMLUnstructuredGridStorageNode::CreateNodeInstance() { // First try to create the object from the vtkObjectFactory vtkObject* ret = vtkObjectFactory::CreateInstance("vtkMRMLUnstructuredGridStorageNode"); if(ret) { return (vtkMRMLUnstructuredGridStorageNode*)ret; } // If the factory was unable to create the object, then create it here. return new vtkMRMLUnstructuredGridStorageNode; } //---------------------------------------------------------------------------- void vtkMRMLUnstructuredGridStorageNode::ProcessParentNode(vtkMRMLNode *parentNode) { this->ReadData(parentNode); } //---------------------------------------------------------------------------- int vtkMRMLUnstructuredGridStorageNode::ReadData(vtkMRMLNode *refNode) { if (refNode == NULL) { vtkErrorMacro("ReadData: can't read into a null node"); return 0; } // do not read if if we are not in the scene (for example inside snapshot) if ( !refNode->GetAddToScene() ) { return 1; } if (!refNode->IsA("vtkMRMLUnstructuredGridNode") ) { //vtkErrorMacro("Reference node is not a vtkMRMLUnstructuredGridNode"); return 0; } Superclass::StageReadData(refNode); if ( this->GetReadState() != this->TransferDone ) { // remote file download hasn't finished return 0; } vtkMRMLUnstructuredGridNode *modelNode = vtkMRMLUnstructuredGridNode::SafeDownCast (refNode); std::string fullName = this->GetFullNameFromFileName(); if (fullName == std::string("")) { vtkErrorMacro("ReadData: File name not specified"); return 0; } // compute file prefix std::string name(fullName); std::string::size_type loc = name.find("."); if( loc == std::string::npos ) { vtkErrorMacro("ReadData: no file extension specified: " << name.c_str()); return 0; } std::string extension = name.substr(loc); vtkDebugMacro("ReadData: extension = " << extension.c_str()); int result = 1; try { if (extension == std::string(".vtk")) { vtkUnstructuredGridReader *reader = vtkUnstructuredGridReader::New(); reader->SetFileName(fullName.c_str()); reader->Update(); if (reader->GetOutput() == NULL) { vtkErrorMacro("Unable to read file " << fullName.c_str()); result = 0; } else { modelNode->SetAndObserveUnstructuredGrid(reader->GetOutput()); } reader->Delete(); } else { vtkWarningMacro("Cannot read model file '" << name.c_str() << "' (extension = " << extension.c_str() << ")"); return 0; } } catch (...) { result = 0; } this->SetReadStateIdle(); if (modelNode->GetUnstructuredGrid() != NULL) { modelNode->GetUnstructuredGrid()->Modified(); } modelNode->SetModifiedSinceRead(0); return result; } //---------------------------------------------------------------------------- int vtkMRMLUnstructuredGridStorageNode::WriteData(vtkMRMLNode *refNode) { if (refNode == NULL) { vtkErrorMacro("WriteData: can't write, input node is null"); return 0; } // test whether refNode is a valid node to hold a model if (!refNode->IsA("vtkMRMLUnstructuredGridNode") ) { vtkErrorMacro("Reference node is not a vtkMRMLUnstructuredGridNode"); return 0; } vtkMRMLUnstructuredGridNode *modelNode = vtkMRMLUnstructuredGridNode::SafeDownCast(refNode); std::string fullName = this->GetFullNameFromFileName(); if (fullName == std::string("")) { vtkErrorMacro("vtkMRMLModelNode: File name not specified"); return 0; } std::string extension = itksys::SystemTools::GetFilenameLastExtension(fullName); int result = 1; if (extension == ".vtk") { vtkUnstructuredGridWriter *writer = vtkUnstructuredGridWriter::New(); writer->SetFileName(fullName.c_str()); writer->SetInput( modelNode->GetUnstructuredGrid() ); try { writer->Write(); } catch (...) { result = 0; } writer->Delete(); } else { result = 0; vtkErrorMacro( << "No file extension recognized: " << fullName.c_str() ); } if (result != 0) { Superclass::StageWriteData(refNode); } return result; } //---------------------------------------------------------------------------- int vtkMRMLUnstructuredGridStorageNode::SupportedFileType(const char *fileName) { // check to see which file name we need to check std::string name; if (fileName) { name = std::string(fileName); } else if (this->FileName != NULL) { name = std::string(this->FileName); } else if (this->URI != NULL) { name = std::string(this->URI); } else { vtkWarningMacro("SupportedFileType: no file name to check"); return 0; } std::string::size_type loc = name.find_last_of("."); if( loc == std::string::npos ) { vtkErrorMacro("SupportedFileType: no file extension specified"); return 0; } std::string extension = name.substr(loc); vtkDebugMacro("SupportedFileType: extension = " << extension.c_str()); if (extension.compare(".vtk") == 0) { return 1; } else { return 0; } } //---------------------------------------------------------------------------- void vtkMRMLUnstructuredGridStorageNode::InitializeSupportedWriteFileTypes() { this->SupportedWriteFileTypes->InsertNextValue( "Unstructured Grid (.vtk)"); }
[ "jcfr@3bd1e089-480b-0410-8dfb-8563597acbee" ]
jcfr@3bd1e089-480b-0410-8dfb-8563597acbee
0d2d527f89467a351dd2dced1d875109675fe293
4d31cccd4ef81252f2ccda50638f348d71d202a4
/Team_Training/03、2013-2014 NEERC Northern Subregional/code/e.cpp
3d0e7c24611b66e9a93e96e1a120604a038809a5
[]
no_license
FZU-GummyBear/Dream
9a104b917d32d6d333811a2311b5d2c976d51d10
460cfc3db912e38f4ef9dc447238cfcc60fe0b01
refs/heads/master
2020-04-28T00:48:17.089644
2020-04-19T12:22:20
2020-04-19T12:22:20
174,829,686
18
7
null
null
null
null
UTF-8
C++
false
false
963
cpp
#include<bits/stdc++.h> using namespace std; #define fi first #define se second #define pb push_back #define mp make_pair #define rep(i, a, b) for(int i = (a); i < (b); ++i) #define per(i, a, b) for(int i = (b) - 1; i >= (a); --i) #define sz(a) (int)a.size() #define de(a) cout << #a << " = " << a << endl #define dd(a) cout << #a << " = " << a << " " #define all(a) a.begin(), a.end() #define pw(x) (1ll << (x)) #define endl '\n' typedef long long ll; typedef double db; typedef pair<int, int> pii; typedef vector<int> vi; int main() { freopen("energy.in", "r", stdin); freopen("energy.out", "w", stdout); std::ios::sync_with_stdio(0); std::cin.tie(0); int n; string s; cin >> n >> s; int m = 0; int cnt[3] = {0}; ll ans = 0; rep(i, 0, sz(s)) { if(s[i] == '1') { if(n == m && cnt[2]) --cnt[2], m -= 2; if(n != m) ++cnt[1], ++m; } else { if(n - m >= 2) ++cnt[2], m += 2; } ans += cnt[1] + cnt[2]; } cout << ans << endl; return 0; }
[ "jslijin2016@qq.com" ]
jslijin2016@qq.com
64c7d1ab4b512e86ec7453df7f8edb2ec4b3e2de
52a3c93c38bef127eaee4420f36a89d929a321c5
/SDK/SoT_BP_MerchantCrate_Commodity_SpiceCrate_Proxy_classes.hpp
258362cbd85876a623515a1b764681b04937b632
[]
no_license
RDTCREW/SoT-SDK_2_0_7_reserv
8e921275508d09e5f81b10f9a43e47597223cb35
db6a5fc4cdb9348ddfda88121ebe809047aa404a
refs/heads/master
2020-07-24T17:18:40.537329
2019-09-11T18:53:58
2019-09-11T18:53:58
207,991,316
0
0
null
null
null
null
UTF-8
C++
false
false
1,093
hpp
#pragma once // Sea of Thieves (2.0) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "SoT_BP_MerchantCrate_Commodity_SpiceCrate_Proxy_structs.hpp" namespace SDK { //--------------------------------------------------------------------------- //Classes //--------------------------------------------------------------------------- // BlueprintGeneratedClass BP_MerchantCrate_Commodity_SpiceCrate_Proxy.BP_MerchantCrate_Commodity_SpiceCrate_Proxy_C // 0x0008 (0x0858 - 0x0850) class ABP_MerchantCrate_Commodity_SpiceCrate_Proxy_C : public ABP_MerchantCrate_Commodity_Base_Proxy_C { public: class UInteractableComponent* Interactable; // 0x0850(0x0008) (BlueprintVisible, ZeroConstructor, IsPlainOldData) static UClass* StaticClass() { static auto ptr = UObject::FindObject<UClass>(_xor_("BlueprintGeneratedClass BP_MerchantCrate_Commodity_SpiceCrate_Proxy.BP_MerchantCrate_Commodity_SpiceCrate_Proxy_C")); return ptr; } void UserConstructionScript(); }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "igromanru@yahoo.de" ]
igromanru@yahoo.de
f5ca2c7a3502652fb40bfa6976a2e6362a03664f
da51d2d5f10751f7dd9fd09333c0e4c7e5f3f7a6
/src/kernel.cpp
24f8f0d93dc2060c81cf27219e8299a9d6e2aa0e
[ "MIT" ]
permissive
cryptoghass/MasterCoinV2
75e24a326489ff84270de5723b48d5a9045f693f
b55f134f6190edf0dc0f035754079cbdb852553b
refs/heads/master
2020-03-27T20:53:02.533375
2018-08-29T09:13:18
2018-08-29T09:13:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
14,408
cpp
// Copyright (c) 2012-2013 The PPCoin developers // Copyright (c) 2014 The MasterCoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <boost/assign/list_of.hpp> #include "kernel.h" #include "txdb.h" using namespace std; extern bool IsConfirmedInNPrevBlocks(const CTxIndex& txindex, const CBlockIndex* pindexFrom, int nMaxDepth, int& nActualDepth); // Get time weight int64_t GetWeight(int64_t nIntervalBeginning, int64_t nIntervalEnd) { // Kernel hash weight starts from 0 at the min age // this change increases active coins participating the hash and helps // to secure the network when proof-of-stake difficulty is low return nIntervalEnd - nIntervalBeginning - nStakeMinAge; } // Get the last stake modifier and its generation time from a given block static bool GetLastStakeModifier(const CBlockIndex* pindex, uint64_t& nStakeModifier, int64_t& nModifierTime) { if (!pindex) return error("GetLastStakeModifier: null pindex"); while (pindex && pindex->pprev && !pindex->GeneratedStakeModifier()) pindex = pindex->pprev; if (!pindex->GeneratedStakeModifier()) return error("GetLastStakeModifier: no generation at genesis block"); nStakeModifier = pindex->nStakeModifier; nModifierTime = pindex->GetBlockTime(); return true; } // Get selection interval section (in seconds) static int64_t GetStakeModifierSelectionIntervalSection(int nSection) { assert (nSection >= 0 && nSection < 64); return (nModifierInterval * 63 / (63 + ((63 - nSection) * (MODIFIER_INTERVAL_RATIO - 1)))); } // Get stake modifier selection interval (in seconds) static int64_t GetStakeModifierSelectionInterval() { int64_t nSelectionInterval = 0; for (int nSection=0; nSection<64; nSection++) nSelectionInterval += GetStakeModifierSelectionIntervalSection(nSection); return nSelectionInterval; } // select a block from the candidate blocks in vSortedByTimestamp, excluding // already selected blocks in vSelectedBlocks, and with timestamp up to // nSelectionIntervalStop. static bool SelectBlockFromCandidates(vector<pair<int64_t, uint256> >& vSortedByTimestamp, map<uint256, const CBlockIndex*>& mapSelectedBlocks, int64_t nSelectionIntervalStop, uint64_t nStakeModifierPrev, const CBlockIndex** pindexSelected) { bool fSelected = false; uint256 hashBest = 0; *pindexSelected = (const CBlockIndex*) 0; BOOST_FOREACH(const PAIRTYPE(int64_t, uint256)& item, vSortedByTimestamp) { if (!mapBlockIndex.count(item.second)) return error("SelectBlockFromCandidates: failed to find block index for candidate block %s", item.second.ToString()); const CBlockIndex* pindex = mapBlockIndex[item.second]; if (fSelected && pindex->GetBlockTime() > nSelectionIntervalStop) break; if (mapSelectedBlocks.count(pindex->GetBlockHash()) > 0) continue; // compute the selection hash by hashing its proof-hash and the // previous proof-of-stake modifier CDataStream ss(SER_GETHASH, 0); ss << pindex->hashProof << nStakeModifierPrev; uint256 hashSelection = Hash(ss.begin(), ss.end()); // the selection hash is divided by 2**32 so that proof-of-stake block // is always favored over proof-of-work block. this is to preserve // the energy efficiency property if (pindex->IsProofOfStake()) hashSelection >>= 32; if (fSelected && hashSelection < hashBest) { hashBest = hashSelection; *pindexSelected = (const CBlockIndex*) pindex; } else if (!fSelected) { fSelected = true; hashBest = hashSelection; *pindexSelected = (const CBlockIndex*) pindex; } } LogPrint("stakemodifier", "SelectBlockFromCandidates: selection hash=%s\n", hashBest.ToString()); return fSelected; } // Stake Modifier (hash modifier of proof-of-stake): // The purpose of stake modifier is to prevent a txout (coin) owner from // computing future proof-of-stake generated by this txout at the time // of transaction confirmation. To meet kernel protocol, the txout // must hash with a future stake modifier to generate the proof. // Stake modifier consists of bits each of which is contributed from a // selected block of a given block group in the past. // The selection of a block is based on a hash of the block's proof-hash and // the previous stake modifier. // Stake modifier is recomputed at a fixed time interval instead of every // block. This is to make it difficult for an attacker to gain control of // additional bits in the stake modifier, even after generating a chain of // blocks. bool ComputeNextStakeModifier(const CBlockIndex* pindexPrev, uint64_t& nStakeModifier, bool& fGeneratedStakeModifier) { nStakeModifier = 0; fGeneratedStakeModifier = false; if (!pindexPrev) { fGeneratedStakeModifier = true; return true; // genesis block's modifier is 0 } // First find current stake modifier and its generation block time // if it's not old enough, return the same stake modifier int64_t nModifierTime = 0; if (!GetLastStakeModifier(pindexPrev, nStakeModifier, nModifierTime)) return error("ComputeNextStakeModifier: unable to get last modifier"); LogPrint("stakemodifier", "ComputeNextStakeModifier: prev modifier=0x%016x time=%s\n", nStakeModifier, DateTimeStrFormat(nModifierTime)); if (nModifierTime / nModifierInterval >= pindexPrev->GetBlockTime() / nModifierInterval) return true; // Sort candidate blocks by timestamp vector<pair<int64_t, uint256> > vSortedByTimestamp; vSortedByTimestamp.reserve(64 * nModifierInterval / TARGET_SPACING); int64_t nSelectionInterval = GetStakeModifierSelectionInterval(); int64_t nSelectionIntervalStart = (pindexPrev->GetBlockTime() / nModifierInterval) * nModifierInterval - nSelectionInterval; const CBlockIndex* pindex = pindexPrev; while (pindex && pindex->GetBlockTime() >= nSelectionIntervalStart) { vSortedByTimestamp.push_back(make_pair(pindex->GetBlockTime(), pindex->GetBlockHash())); pindex = pindex->pprev; } int nHeightFirstCandidate = pindex ? (pindex->nHeight + 1) : 0; reverse(vSortedByTimestamp.begin(), vSortedByTimestamp.end()); sort(vSortedByTimestamp.begin(), vSortedByTimestamp.end()); // Select 64 blocks from candidate blocks to generate stake modifier uint64_t nStakeModifierNew = 0; int64_t nSelectionIntervalStop = nSelectionIntervalStart; map<uint256, const CBlockIndex*> mapSelectedBlocks; for (int nRound=0; nRound<min(64, (int)vSortedByTimestamp.size()); nRound++) { // add an interval section to the current selection round nSelectionIntervalStop += GetStakeModifierSelectionIntervalSection(nRound); // select a block from the candidates of current round if (!SelectBlockFromCandidates(vSortedByTimestamp, mapSelectedBlocks, nSelectionIntervalStop, nStakeModifier, &pindex)) return error("ComputeNextStakeModifier: unable to select block at round %d", nRound); // write the entropy bit of the selected block nStakeModifierNew |= (((uint64_t)pindex->GetStakeEntropyBit()) << nRound); // add the selected block from candidates to selected list mapSelectedBlocks.insert(make_pair(pindex->GetBlockHash(), pindex)); LogPrint("stakemodifier", "ComputeNextStakeModifier: selected round %d stop=%s height=%d bit=%d\n", nRound, DateTimeStrFormat(nSelectionIntervalStop), pindex->nHeight, pindex->GetStakeEntropyBit()); } // Print selection map for visualization of the selected blocks if (LogAcceptCategory("stakemodifier")) { string strSelectionMap = ""; // '-' indicates proof-of-work blocks not selected strSelectionMap.insert(0, pindexPrev->nHeight - nHeightFirstCandidate + 1, '-'); pindex = pindexPrev; while (pindex && pindex->nHeight >= nHeightFirstCandidate) { // '=' indicates proof-of-stake blocks not selected if (pindex->IsProofOfStake()) strSelectionMap.replace(pindex->nHeight - nHeightFirstCandidate, 1, "="); pindex = pindex->pprev; } BOOST_FOREACH(const PAIRTYPE(uint256, const CBlockIndex*)& item, mapSelectedBlocks) { // 'S' indicates selected proof-of-stake blocks // 'W' indicates selected proof-of-work blocks strSelectionMap.replace(item.second->nHeight - nHeightFirstCandidate, 1, item.second->IsProofOfStake()? "S" : "W"); } LogPrintf("ComputeNextStakeModifier: selection height [%d, %d] map %s\n", nHeightFirstCandidate, pindexPrev->nHeight, strSelectionMap); } LogPrint("stakemodifier", "ComputeNextStakeModifier: new modifier=0x%016x time=%s\n", nStakeModifierNew, DateTimeStrFormat(pindexPrev->GetBlockTime())); nStakeModifier = nStakeModifierNew; fGeneratedStakeModifier = true; return true; } bool CheckStakeKernelHash(CBlockIndex* pindexPrev, unsigned int nBits, unsigned int nTimeBlockFrom, const CTransaction& txPrev, const COutPoint& prevout, unsigned int nTimeTx, uint256& hashProofOfStake, uint256& targetProofOfStake, bool fPrintProofOfStake) { if (nTimeTx < txPrev.nTime) // Transaction timestamp violation return error("CheckStakeKernelHash() : nTime violation"); if (nTimeBlockFrom + nStakeMinAge > nTimeTx) // Min age requirement return error("CheckStakeKernelHash() : min age violation"); // Base target CBigNum bnTarget; bnTarget.SetCompact(nBits); // Weighted target int64_t nValueIn = txPrev.vout[prevout.n].nValue; CBigNum bnWeight = CBigNum(nValueIn); bnTarget *= bnWeight; targetProofOfStake = bnTarget.getuint256(); uint64_t nStakeModifier = pindexPrev->nStakeModifier; int nStakeModifierHeight = pindexPrev->nHeight; int64_t nStakeModifierTime = pindexPrev->nTime; // Calculate hash CDataStream ss(SER_GETHASH, 0); ss << nStakeModifier << nTimeBlockFrom << txPrev.nTime << prevout.hash << prevout.n << nTimeTx; hashProofOfStake = Hash(ss.begin(), ss.end()); if (fPrintProofOfStake) { LogPrintf("CheckStakeKernelHash() : using modifier 0x%016x at height=%d timestamp=%s for block from timestamp=%s\n", nStakeModifier, nStakeModifierHeight, DateTimeStrFormat(nStakeModifierTime), DateTimeStrFormat(nTimeBlockFrom)); LogPrintf("CheckStakeKernelHash() : check modifier=0x%016x nTimeBlockFrom=%u nTimeTxPrev=%u nPrevout=%u nTimeTx=%u hashProof=%s\n", nStakeModifier, nTimeBlockFrom, txPrev.nTime, prevout.n, nTimeTx, hashProofOfStake.ToString()); } // Now check if proof-of-stake hash meets target protocol if (CBigNum(hashProofOfStake) > bnTarget){ return false; } if (fDebug && !fPrintProofOfStake) { LogPrintf("CheckStakeKernelHash() : using modifier 0x%016x at height=%d timestamp=%s for block from timestamp=%s\n", nStakeModifier, nStakeModifierHeight, DateTimeStrFormat(nStakeModifierTime), DateTimeStrFormat(nTimeBlockFrom)); LogPrintf("CheckStakeKernelHash() : pass modifier=0x%016x nTimeBlockFrom=%u nTimeTxPrev=%u nPrevout=%u nTimeTx=%u hashProof=%s\n", nStakeModifier, nTimeBlockFrom, txPrev.nTime, prevout.n, nTimeTx, hashProofOfStake.ToString()); } return true; } // Check kernel hash target and coinstake signature bool CheckProofOfStake(CBlockIndex* pindexPrev, const CTransaction& tx, unsigned int nBits, uint256& hashProofOfStake, uint256& targetProofOfStake) { if (!tx.IsCoinStake()) return error("CheckProofOfStake() : called on non-coinstake %s", tx.GetHash().ToString()); // Kernel (input 0) must match the stake hash target per coin age (nBits) const CTxIn& txin = tx.vin[0]; // First try finding the previous transaction in database CTxDB txdb("r"); CTransaction txPrev; CTxIndex txindex; if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex)) return tx.DoS(1, error("CheckProofOfStake() : INFO: read txPrev failed")); // previous transaction not in main chain, may occur during initial download // Verify signature if (!VerifySignature(txPrev, tx, 0, SCRIPT_VERIFY_NONE, 0)) return tx.DoS(100, error("CheckProofOfStake() : VerifySignature failed on coinstake %s", tx.GetHash().ToString())); // Read block header CBlock block; if (!block.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos, false)) return fDebug? error("CheckProofOfStake() : read block failed") : false; // unable to read block of previous transaction if (!CheckStakeKernelHash(pindexPrev, nBits, block.GetBlockTime(), txPrev, txin.prevout, tx.nTime, hashProofOfStake, targetProofOfStake, fDebug)) return tx.DoS(1, error("CheckProofOfStake() : INFO: check kernel failed on coinstake %s, hashProof=%s", tx.GetHash().ToString(), hashProofOfStake.ToString())); // may occur during initial download or if behind on block chain sync return true; } // Check whether the coinstake timestamp meets protocol bool CheckCoinStakeTimestamp(int nHeight, int64_t nTimeBlock, int64_t nTimeTx) { return (nTimeBlock == nTimeTx) && ((nTimeTx & STAKE_TIMESTAMP_MASK) == 0); } bool CheckKernel(CBlockIndex* pindexPrev, unsigned int nBits, int64_t nTime, const COutPoint& prevout, int64_t* pBlockTime) { uint256 hashProofOfStake, targetProofOfStake; CTxDB txdb("r"); CTransaction txPrev; CTxIndex txindex; if (!txPrev.ReadFromDisk(txdb, prevout, txindex)) return false; // Read block header CBlock block; if (!block.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos, false)) return false; if (block.GetBlockTime() + nStakeMinAge > nTime) return false; // only count coins meeting min age requirement if (pBlockTime) *pBlockTime = block.GetBlockTime(); return CheckStakeKernelHash(pindexPrev, nBits, block.GetBlockTime(), txPrev, prevout, nTime, hashProofOfStake, targetProofOfStake); }
[ "contact@mastercoin.one" ]
contact@mastercoin.one
afde55829c7f8db4d43313a5a82b43007d248488
b2164e5ec870188bded52a4e7971877d6d031d55
/X10/x10/stdlib/include/x10/util/foreach/Bisect__Reducer.h
655c27df3bb9f633dfab47eafd225b9539f0a609
[]
no_license
BuzzHari/hp-assignments
bf4c6f71d4fd7fd074ec1436e53ded0c8a40ba54
d1a38b8362ad8891a37c085123112a54533f3cb6
refs/heads/master
2022-07-17T13:41:37.759497
2020-05-18T14:13:14
2020-05-18T14:13:14
256,981,213
0
0
null
null
null
null
UTF-8
C++
false
false
36,713
h
#ifndef __X10_UTIL_FOREACH_BISECT__REDUCER_H #define __X10_UTIL_FOREACH_BISECT__REDUCER_H #include <x10rt.h> namespace x10 { namespace lang { template<class TPMGL(T)> class Cell; } } namespace x10 { namespace lang { template<class TPMGL(Z1), class TPMGL(Z2), class TPMGL(U)> class Fun_0_2; } } namespace x10 { namespace util { namespace foreach { class ReduceNotReady; } } } namespace x10 { namespace compiler { class Inline; } } namespace x10 { namespace lang { template<class TPMGL(T)> class Reducible; } } namespace x10 { namespace lang { class LongRange; } } namespace x10 { namespace lang { template<class TPMGL(Z1), class TPMGL(U)> class Fun_0_1; } } namespace x10 { namespace xrx { class Runtime; } } namespace x10 { namespace util { namespace foreach { class Bisect; } } } namespace x10 { namespace array { class DenseIterationSpace_2; } } namespace x10 { namespace lang { template<class TPMGL(Z1), class TPMGL(Z2), class TPMGL(Z3), class TPMGL(Z4), class TPMGL(U)> class Fun_0_4; } } namespace x10 { namespace compiler { class Synthetic; } } namespace x10 { namespace util { namespace foreach { template<class TPMGL(T)> class Bisect__Reducer; template <> class Bisect__Reducer<void>; template<class TPMGL(T)> class Bisect__Reducer : public ::x10::lang::X10Class { public: RTT_H_DECLS_CLASS ::x10::lang::Cell<TPMGL(T)>* FMGL(result); ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>* FMGL(reduce); TPMGL(T) FMGL(identity); virtual TPMGL(T) value(); void _constructor(::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>* reduce, TPMGL(T) identity); static ::x10::util::foreach::Bisect__Reducer<TPMGL(T)>* _make( ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>* reduce, TPMGL(T) identity); void _constructor(::x10::lang::Reducible<TPMGL(T)>* red); static ::x10::util::foreach::Bisect__Reducer<TPMGL(T)>* _make( ::x10::lang::Reducible<TPMGL(T)>* red); virtual TPMGL(T) _kwd__for(::x10::lang::LongRange range, ::x10::lang::Fun_0_1<x10_long, TPMGL(T)>* body); virtual TPMGL(T) _kwd__for(::x10::array::DenseIterationSpace_2* space, ::x10::lang::Fun_0_2<x10_long, x10_long, TPMGL(T)>* body); virtual ::x10::util::foreach::Bisect__Reducer<TPMGL(T)>* x10__util__foreach__Bisect__Reducer____this__x10__util__foreach__Bisect__Reducer( ); virtual void __fieldInitializers_x10_util_foreach_Bisect_Reducer( ); // Serialization public: static const ::x10aux::serialization_id_t _serialization_id; public: ::x10aux::serialization_id_t _get_serialization_id() { return _serialization_id; } public: virtual void _serialize_body(::x10aux::serialization_buffer& buf); public: static ::x10::lang::Reference* _deserializer(::x10aux::deserialization_buffer& buf); public: void _deserialize_body(::x10aux::deserialization_buffer& buf); }; template<class TPMGL(T)> ::x10aux::RuntimeType x10::util::foreach::Bisect__Reducer<TPMGL(T)>::rtt; template<class TPMGL(T)> void x10::util::foreach::Bisect__Reducer<TPMGL(T)>::_initRTT() { const ::x10aux::RuntimeType *canonical = ::x10aux::getRTT< ::x10::util::foreach::Bisect__Reducer<void> >(); if (rtt.initStageOne(canonical)) return; const ::x10aux::RuntimeType** parents = NULL; const ::x10aux::RuntimeType* params[1] = { ::x10aux::getRTT<TPMGL(T)>()}; ::x10aux::RuntimeType::Variance variances[1] = { ::x10aux::RuntimeType::invariant}; const char *baseName = "x10.util.foreach.Bisect.Reducer"; rtt.initStageTwo(baseName, ::x10aux::RuntimeType::class_kind, 0, parents, 1, params, variances); } template <> class Bisect__Reducer<void> : public ::x10::lang::X10Class { public: static ::x10aux::RuntimeType rtt; static const ::x10aux::RuntimeType* getRTT() { return & rtt; } }; } } } #endif // X10_UTIL_FOREACH_BISECT__REDUCER_H namespace x10 { namespace util { namespace foreach { template<class TPMGL(T)> class Bisect__Reducer; } } } #ifndef X10_UTIL_FOREACH_BISECT__REDUCER_H_NODEPS #define X10_UTIL_FOREACH_BISECT__REDUCER_H_NODEPS #include <x10/lang/Cell.h> #include <x10/lang/Fun_0_2.h> #include <x10/util/foreach/ReduceNotReady.h> #include <x10/compiler/Inline.h> #include <x10/lang/Reducible.h> #include <x10/lang/LongRange.h> #include <x10/lang/Fun_0_1.h> #include <x10/lang/Long.h> #include <x10/lang/Int.h> #include <x10/xrx/Runtime.h> #include <x10/lang/Boolean.h> #include <x10/util/foreach/Bisect.h> #include <x10/array/DenseIterationSpace_2.h> #include <x10/lang/Fun_0_4.h> #include <x10/compiler/Synthetic.h> #ifndef X10_UTIL_FOREACH_BISECT__REDUCER_H_GENERICS #define X10_UTIL_FOREACH_BISECT__REDUCER_H_GENERICS #endif // X10_UTIL_FOREACH_BISECT__REDUCER_H_GENERICS #ifndef X10_UTIL_FOREACH_BISECT__REDUCER_H_IMPLEMENTATION #define X10_UTIL_FOREACH_BISECT__REDUCER_H_IMPLEMENTATION #include <x10/util/foreach/Bisect__Reducer.h> #ifndef X10_UTIL_FOREACH_BISECT__REDUCER__CLOSURE__15_CLOSURE #define X10_UTIL_FOREACH_BISECT__REDUCER__CLOSURE__15_CLOSURE #include <x10/lang/Closure.h> #include <x10/lang/Fun_0_2.h> template<class TPMGL(T)> class x10_util_foreach_Bisect__Reducer__closure__15 : public ::x10::lang::Closure { public: static typename ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>::template itable <x10_util_foreach_Bisect__Reducer__closure__15<TPMGL(T) > > _itable; static ::x10aux::itable_entry _itables[2]; virtual ::x10aux::itable_entry* _getITables() { return _itables; } TPMGL(T) __apply(TPMGL(T) a, TPMGL(T) b){ return ::x10::lang::Reducible<TPMGL(T)>::__apply(::x10aux::nullCheck(red), a, b); } // captured environment ::x10::lang::Reducible<TPMGL(T)>* red; ::x10aux::serialization_id_t _get_serialization_id() { return _serialization_id; } void _serialize_body(::x10aux::serialization_buffer &buf) { buf.write(this->red); } static x10::lang::Reference* _deserialize(::x10aux::deserialization_buffer &buf) { x10_util_foreach_Bisect__Reducer__closure__15<TPMGL(T) >* storage = ::x10aux::alloc_z<x10_util_foreach_Bisect__Reducer__closure__15<TPMGL(T) > >(); buf.record_reference(storage); ::x10::lang::Reducible<TPMGL(T)>* that_red = buf.read< ::x10::lang::Reducible<TPMGL(T)>*>(); x10_util_foreach_Bisect__Reducer__closure__15<TPMGL(T) >* this_ = new (storage) x10_util_foreach_Bisect__Reducer__closure__15<TPMGL(T) >(that_red); return this_; } x10_util_foreach_Bisect__Reducer__closure__15(::x10::lang::Reducible<TPMGL(T)>* red) : red(red) { } static const ::x10aux::serialization_id_t _serialization_id; static const ::x10aux::RuntimeType* getRTT() { return ::x10aux::getRTT< ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)> >(); } virtual const ::x10aux::RuntimeType *_type() const { return ::x10aux::getRTT< ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)> >(); } const char* toNativeString() { return "x10/util/foreach/Bisect.x10:390"; } }; template<class TPMGL(T)> typename ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>::template itable <x10_util_foreach_Bisect__Reducer__closure__15<TPMGL(T) > >x10_util_foreach_Bisect__Reducer__closure__15<TPMGL(T) >::_itable(&::x10::lang::Reference::equals, &::x10::lang::Closure::hashCode, &x10_util_foreach_Bisect__Reducer__closure__15<TPMGL(T) >::__apply, &x10_util_foreach_Bisect__Reducer__closure__15<TPMGL(T) >::toString, &::x10::lang::Closure::typeName); template<class TPMGL(T)> ::x10aux::itable_entry x10_util_foreach_Bisect__Reducer__closure__15<TPMGL(T) >::_itables[2] = {::x10aux::itable_entry(&::x10aux::getRTT< ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)> >, &x10_util_foreach_Bisect__Reducer__closure__15<TPMGL(T) >::_itable),::x10aux::itable_entry(NULL, NULL)}; template<class TPMGL(T)> const ::x10aux::serialization_id_t x10_util_foreach_Bisect__Reducer__closure__15<TPMGL(T) >::_serialization_id = ::x10aux::DeserializationDispatcher::addDeserializer(x10_util_foreach_Bisect__Reducer__closure__15<TPMGL(T) >::_deserialize); #endif // X10_UTIL_FOREACH_BISECT__REDUCER__CLOSURE__15_CLOSURE #ifndef X10_UTIL_FOREACH_BISECT__REDUCER__CLOSURE__16_CLOSURE #define X10_UTIL_FOREACH_BISECT__REDUCER__CLOSURE__16_CLOSURE #include <x10/lang/Closure.h> #include <x10/lang/Fun_0_1.h> template<class TPMGL(T)> class x10_util_foreach_Bisect__Reducer__closure__16 : public ::x10::lang::Closure { public: static typename ::x10::lang::Fun_0_1< ::x10::lang::LongRange, TPMGL(T)>::template itable <x10_util_foreach_Bisect__Reducer__closure__16<TPMGL(T) > > _itable; static ::x10aux::itable_entry _itables[2]; virtual ::x10aux::itable_entry* _getITables() { return _itables; } TPMGL(T) __apply(::x10::lang::LongRange range__138749){ //#line 115 "x10/util/foreach/Bisect.x10" TPMGL(T) myRes__138750 = identity__138411; //#line 116 "x10/util/foreach/Bisect.x10" x10_long i__138033min__138736 = range__138749->FMGL(min); x10_long i__138033max__138737 = range__138749->FMGL(max); { x10_long i__138738; for (i__138738 = i__138033min__138736; ((i__138738) <= (i__138033max__138737)); i__138738 = ((i__138738) + (((x10_long)1ll)))) { //#line 117 "x10/util/foreach/Bisect.x10" myRes__138750 = ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>::__apply(::x10aux::nullCheck(reduce__138410), myRes__138750, ::x10::lang::Fun_0_1<x10_long, TPMGL(T)>::__apply(::x10aux::nullCheck(body__138412), i__138738)); } } //#line 119 "x10/util/foreach/Bisect.x10" return myRes__138750; } // captured environment TPMGL(T) identity__138411; ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>* reduce__138410; ::x10::lang::Fun_0_1<x10_long, TPMGL(T)>* body__138412; ::x10aux::serialization_id_t _get_serialization_id() { return _serialization_id; } void _serialize_body(::x10aux::serialization_buffer &buf) { buf.write(this->identity__138411); buf.write(this->reduce__138410); buf.write(this->body__138412); } static x10::lang::Reference* _deserialize(::x10aux::deserialization_buffer &buf) { x10_util_foreach_Bisect__Reducer__closure__16<TPMGL(T) >* storage = ::x10aux::alloc_z<x10_util_foreach_Bisect__Reducer__closure__16<TPMGL(T) > >(); buf.record_reference(storage); TPMGL(T) that_identity__138411 = buf.read<TPMGL(T)>(); ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>* that_reduce__138410 = buf.read< ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>*>(); ::x10::lang::Fun_0_1<x10_long, TPMGL(T)>* that_body__138412 = buf.read< ::x10::lang::Fun_0_1<x10_long, TPMGL(T)>*>(); x10_util_foreach_Bisect__Reducer__closure__16<TPMGL(T) >* this_ = new (storage) x10_util_foreach_Bisect__Reducer__closure__16<TPMGL(T) >(that_identity__138411, that_reduce__138410, that_body__138412); return this_; } x10_util_foreach_Bisect__Reducer__closure__16(TPMGL(T) identity__138411, ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>* reduce__138410, ::x10::lang::Fun_0_1<x10_long, TPMGL(T)>* body__138412) : identity__138411(identity__138411), reduce__138410(reduce__138410), body__138412(body__138412) { } static const ::x10aux::serialization_id_t _serialization_id; static const ::x10aux::RuntimeType* getRTT() { return ::x10aux::getRTT< ::x10::lang::Fun_0_1< ::x10::lang::LongRange, TPMGL(T)> >(); } virtual const ::x10aux::RuntimeType *_type() const { return ::x10aux::getRTT< ::x10::lang::Fun_0_1< ::x10::lang::LongRange, TPMGL(T)> >(); } const char* toNativeString() { return "x10/util/foreach/Bisect.x10:114-120"; } }; template<class TPMGL(T)> typename ::x10::lang::Fun_0_1< ::x10::lang::LongRange, TPMGL(T)>::template itable <x10_util_foreach_Bisect__Reducer__closure__16<TPMGL(T) > >x10_util_foreach_Bisect__Reducer__closure__16<TPMGL(T) >::_itable(&::x10::lang::Reference::equals, &::x10::lang::Closure::hashCode, &x10_util_foreach_Bisect__Reducer__closure__16<TPMGL(T) >::__apply, &x10_util_foreach_Bisect__Reducer__closure__16<TPMGL(T) >::toString, &::x10::lang::Closure::typeName); template<class TPMGL(T)> ::x10aux::itable_entry x10_util_foreach_Bisect__Reducer__closure__16<TPMGL(T) >::_itables[2] = {::x10aux::itable_entry(&::x10aux::getRTT< ::x10::lang::Fun_0_1< ::x10::lang::LongRange, TPMGL(T)> >, &x10_util_foreach_Bisect__Reducer__closure__16<TPMGL(T) >::_itable),::x10aux::itable_entry(NULL, NULL)}; template<class TPMGL(T)> const ::x10aux::serialization_id_t x10_util_foreach_Bisect__Reducer__closure__16<TPMGL(T) >::_serialization_id = ::x10aux::DeserializationDispatcher::addDeserializer(x10_util_foreach_Bisect__Reducer__closure__16<TPMGL(T) >::_deserialize); #endif // X10_UTIL_FOREACH_BISECT__REDUCER__CLOSURE__16_CLOSURE #ifndef X10_UTIL_FOREACH_BISECT__REDUCER__CLOSURE__17_CLOSURE #define X10_UTIL_FOREACH_BISECT__REDUCER__CLOSURE__17_CLOSURE #include <x10/lang/Closure.h> #include <x10/lang/Fun_0_4.h> template<class TPMGL(T)> class x10_util_foreach_Bisect__Reducer__closure__17 : public ::x10::lang::Closure { public: static typename ::x10::lang::Fun_0_4<x10_long, x10_long, x10_long, x10_long, TPMGL(T)>::template itable <x10_util_foreach_Bisect__Reducer__closure__17<TPMGL(T) > > _itable; static ::x10aux::itable_entry _itables[2]; virtual ::x10aux::itable_entry* _getITables() { return _itables; } TPMGL(T) __apply(x10_long min__138464, x10_long max__138465, x10_long min__138466, x10_long max__138467){ //#line 316 "x10/util/foreach/Bisect.x10" TPMGL(T) myResult__138468 = identity__138461; //#line 317 "x10/util/foreach/Bisect.x10" { x10_long i__138767; for (i__138767 = min__138464; ((i__138767) <= (max__138465)); i__138767 = ((i__138767) + (((x10_long)1ll)))) { //#line 318 "x10/util/foreach/Bisect.x10" { x10_long i__138763; for (i__138763 = min__138466; ((i__138763) <= (max__138467)); i__138763 = ((i__138763) + (((x10_long)1ll)))) { //#line 319 "x10/util/foreach/Bisect.x10" myResult__138468 = ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>::__apply(::x10aux::nullCheck(reduce__138460), myResult__138468, ::x10::lang::Fun_0_2<x10_long, x10_long, TPMGL(T)>::__apply(::x10aux::nullCheck(body__138462), i__138767, i__138763)); } } } } //#line 322 "x10/util/foreach/Bisect.x10" return myResult__138468; } // captured environment TPMGL(T) identity__138461; ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>* reduce__138460; ::x10::lang::Fun_0_2<x10_long, x10_long, TPMGL(T)>* body__138462; ::x10aux::serialization_id_t _get_serialization_id() { return _serialization_id; } void _serialize_body(::x10aux::serialization_buffer &buf) { buf.write(this->identity__138461); buf.write(this->reduce__138460); buf.write(this->body__138462); } static x10::lang::Reference* _deserialize(::x10aux::deserialization_buffer &buf) { x10_util_foreach_Bisect__Reducer__closure__17<TPMGL(T) >* storage = ::x10aux::alloc_z<x10_util_foreach_Bisect__Reducer__closure__17<TPMGL(T) > >(); buf.record_reference(storage); TPMGL(T) that_identity__138461 = buf.read<TPMGL(T)>(); ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>* that_reduce__138460 = buf.read< ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>*>(); ::x10::lang::Fun_0_2<x10_long, x10_long, TPMGL(T)>* that_body__138462 = buf.read< ::x10::lang::Fun_0_2<x10_long, x10_long, TPMGL(T)>*>(); x10_util_foreach_Bisect__Reducer__closure__17<TPMGL(T) >* this_ = new (storage) x10_util_foreach_Bisect__Reducer__closure__17<TPMGL(T) >(that_identity__138461, that_reduce__138460, that_body__138462); return this_; } x10_util_foreach_Bisect__Reducer__closure__17(TPMGL(T) identity__138461, ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>* reduce__138460, ::x10::lang::Fun_0_2<x10_long, x10_long, TPMGL(T)>* body__138462) : identity__138461(identity__138461), reduce__138460(reduce__138460), body__138462(body__138462) { } static const ::x10aux::serialization_id_t _serialization_id; static const ::x10aux::RuntimeType* getRTT() { return ::x10aux::getRTT< ::x10::lang::Fun_0_4<x10_long, x10_long, x10_long, x10_long, TPMGL(T)> >(); } virtual const ::x10aux::RuntimeType *_type() const { return ::x10aux::getRTT< ::x10::lang::Fun_0_4<x10_long, x10_long, x10_long, x10_long, TPMGL(T)> >(); } const char* toNativeString() { return "x10/util/foreach/Bisect.x10:315-323"; } }; template<class TPMGL(T)> typename ::x10::lang::Fun_0_4<x10_long, x10_long, x10_long, x10_long, TPMGL(T)>::template itable <x10_util_foreach_Bisect__Reducer__closure__17<TPMGL(T) > >x10_util_foreach_Bisect__Reducer__closure__17<TPMGL(T) >::_itable(&::x10::lang::Reference::equals, &::x10::lang::Closure::hashCode, &x10_util_foreach_Bisect__Reducer__closure__17<TPMGL(T) >::__apply, &x10_util_foreach_Bisect__Reducer__closure__17<TPMGL(T) >::toString, &::x10::lang::Closure::typeName); template<class TPMGL(T)> ::x10aux::itable_entry x10_util_foreach_Bisect__Reducer__closure__17<TPMGL(T) >::_itables[2] = {::x10aux::itable_entry(&::x10aux::getRTT< ::x10::lang::Fun_0_4<x10_long, x10_long, x10_long, x10_long, TPMGL(T)> >, &x10_util_foreach_Bisect__Reducer__closure__17<TPMGL(T) >::_itable),::x10aux::itable_entry(NULL, NULL)}; template<class TPMGL(T)> const ::x10aux::serialization_id_t x10_util_foreach_Bisect__Reducer__closure__17<TPMGL(T) >::_serialization_id = ::x10aux::DeserializationDispatcher::addDeserializer(x10_util_foreach_Bisect__Reducer__closure__17<TPMGL(T) >::_deserialize); #endif // X10_UTIL_FOREACH_BISECT__REDUCER__CLOSURE__17_CLOSURE //#line 352 "x10/util/foreach/Bisect.x10" //#line 357 "x10/util/foreach/Bisect.x10" /** * The reduction operation. */ //#line 362 "x10/util/foreach/Bisect.x10" /** * The identity value for the reduction operation such that reduce(identity,f)=f. */ //#line 370 "x10/util/foreach/Bisect.x10" /** * Access to the result of the last reduction. It may * raise <code>ReduceNotReady</code> if no result has been * computed yet. */ template<class TPMGL(T)> TPMGL(T) x10::util::foreach::Bisect__Reducer<TPMGL(T)>::value( ) { //#line 371 "x10/util/foreach/Bisect.x10" if ((::x10aux::struct_equals(this->FMGL(result), reinterpret_cast< ::x10::lang::NullType*>(X10_NULL)))) { ::x10aux::throwException(::x10aux::nullCheck(::x10::util::foreach::ReduceNotReady::_make())); } //#line 372 "x10/util/foreach/Bisect.x10" ::x10::lang::Cell<TPMGL(T)>* this__138727 = this->FMGL(result); return ::x10aux::nullCheck(this__138727)->FMGL(value); } //#line 380 "x10/util/foreach/Bisect.x10" /** * Constructor for collecting loop with reducer. * @param reduce the reduction operation * @param identity the identity value for the reduction operation such that reduce(identity,f)=f */ template<class TPMGL(T)> void x10::util::foreach::Bisect__Reducer<TPMGL(T)>::_constructor( ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>* reduce, TPMGL(T) identity) { //#line 351 "x10/util/foreach/Bisect.x10" ::x10::util::foreach::Bisect__Reducer<TPMGL(T)>* this__138728 = this; ::x10aux::nullCheck(this__138728)->FMGL(result) = (::x10aux::class_cast_unchecked< ::x10::lang::Cell<TPMGL(T)>*>(reinterpret_cast< ::x10::lang::NullType*>(X10_NULL))); //#line 381 "x10/util/foreach/Bisect.x10" this->FMGL(reduce) = (reduce); //#line 382 "x10/util/foreach/Bisect.x10" this->FMGL(identity) = identity; } template<class TPMGL(T)> ::x10::util::foreach::Bisect__Reducer<TPMGL(T)>* x10::util::foreach::Bisect__Reducer<TPMGL(T)>::_make( ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>* reduce, TPMGL(T) identity) { ::x10::util::foreach::Bisect__Reducer<TPMGL(T)>* this_ = new (::x10aux::alloc_z< ::x10::util::foreach::Bisect__Reducer<TPMGL(T)> >()) ::x10::util::foreach::Bisect__Reducer<TPMGL(T)>(); this_->_constructor(reduce, identity); return this_; } //#line 389 "x10/util/foreach/Bisect.x10" /** * Constructor for collecting loop with reducer. * @param red the reduction operation */ template<class TPMGL(T)> void x10::util::foreach::Bisect__Reducer<TPMGL(T)>::_constructor( ::x10::lang::Reducible<TPMGL(T)>* red) { //#line 351 "x10/util/foreach/Bisect.x10" ::x10::util::foreach::Bisect__Reducer<TPMGL(T)>* this__138729 = this; ::x10aux::nullCheck(this__138729)->FMGL(result) = (::x10aux::class_cast_unchecked< ::x10::lang::Cell<TPMGL(T)>*>(reinterpret_cast< ::x10::lang::NullType*>(X10_NULL))); //#line 390 "x10/util/foreach/Bisect.x10" this->FMGL(reduce) = reinterpret_cast< ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>*>((new (::x10aux::alloc< ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)> >(sizeof(x10_util_foreach_Bisect__Reducer__closure__15<TPMGL(T)>)))x10_util_foreach_Bisect__Reducer__closure__15<TPMGL(T)>(red))); //#line 391 "x10/util/foreach/Bisect.x10" this->FMGL(identity) = ::x10::lang::Reducible<TPMGL(T)>::zero(::x10aux::nullCheck(red)); } template<class TPMGL(T)> ::x10::util::foreach::Bisect__Reducer<TPMGL(T)>* x10::util::foreach::Bisect__Reducer<TPMGL(T)>::_make( ::x10::lang::Reducible<TPMGL(T)>* red) { ::x10::util::foreach::Bisect__Reducer<TPMGL(T)>* this_ = new (::x10aux::alloc_z< ::x10::util::foreach::Bisect__Reducer<TPMGL(T)> >()) ::x10::util::foreach::Bisect__Reducer<TPMGL(T)>(); this_->_constructor(red); return this_; } //#line 399 "x10/util/foreach/Bisect.x10" /** * Reduce over a range of indices in parallel using recursive bisection. * @param range the iteration space * @param body a closure that executes over a single value of the index */ template<class TPMGL(T)> TPMGL(T) x10::util::foreach::Bisect__Reducer<TPMGL(T)>::_kwd__for( ::x10::lang::LongRange range, ::x10::lang::Fun_0_1<x10_long, TPMGL(T)>* body) { //#line 401 "x10/util/foreach/Bisect.x10" TPMGL(T) res = (__extension__ ({ ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>* reduce__138400 = this->FMGL(reduce); TPMGL(T) identity__138401 = this->FMGL(identity); //#line 167 "x10/util/foreach/Bisect.x10" x10_long grainSize__138403 = (__extension__ ({ x10_long b__138406 = ((((range->FMGL(max)) - (range->FMGL(min)))) / ::x10aux::zeroCheck(((((x10_long)(::x10::xrx::Runtime::FMGL(NTHREADS__get)()))) * (((x10_long)8ll))))); ((((x10_long)1ll)) < (b__138406)) ? (b__138406) : (((x10_long)1ll)); })) ; (__extension__ ({ //#line 168 "x10/util/foreach/Bisect.x10" ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>* reduce__138410 = reduce__138400; TPMGL(T) identity__138411 = identity__138401; ::x10::lang::Fun_0_1<x10_long, TPMGL(T)>* body__138412 = body; //#line 109 "x10/util/foreach/Bisect.x10" TPMGL(T) ret__138421; (__extension__ ({ //#line 132 "x10/util/foreach/Bisect.x10" TPMGL(T) ret__138743; goto __ret__138744; __ret__138744: { { //#line 136 "x10/util/foreach/Bisect.x10" if ((::x10aux::struct_equals(::x10::xrx::Runtime::FMGL(NTHREADS__get)(), ((x10_int)1)))) { //#line 137 "x10/util/foreach/Bisect.x10" ret__138743 = (__extension__ ({ //#line 115 "x10/util/foreach/Bisect.x10" TPMGL(T) myRes__138748 = identity__138401; //#line 116 "x10/util/foreach/Bisect.x10" x10_long i__138033min__138731 = range->FMGL(min); x10_long i__138033max__138732 = range->FMGL(max); { x10_long i__138733; for (i__138733 = i__138033min__138731; ((i__138733) <= (i__138033max__138732)); i__138733 = ((i__138733) + (((x10_long)1ll)))) { //#line 117 "x10/util/foreach/Bisect.x10" myRes__138748 = ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>::__apply(::x10aux::nullCheck(reduce__138400), myRes__138748, ::x10::lang::Fun_0_1<x10_long, TPMGL(T)>::__apply(::x10aux::nullCheck(body), i__138733)); } } myRes__138748; })) ; goto __ret__138744_end_; } else { //#line 139 "x10/util/foreach/Bisect.x10" ret__138743 = ::x10::util::foreach::Bisect::template doBisectReduce1D< TPMGL(T) >( range->FMGL(min), ((range->FMGL(max)) + (((x10_long)1ll))), grainSize__138403, reduce__138400, reinterpret_cast< ::x10::lang::Fun_0_1< ::x10::lang::LongRange, TPMGL(T)>*>((new (::x10aux::alloc< ::x10::lang::Fun_0_1< ::x10::lang::LongRange, TPMGL(T)> >(sizeof(x10_util_foreach_Bisect__Reducer__closure__16<TPMGL(T)>)))x10_util_foreach_Bisect__Reducer__closure__16<TPMGL(T)>(identity__138411, reduce__138410, body__138412)))); goto __ret__138744_end_; } }goto __ret__138744_end_; __ret__138744_end_: ; } ret__138743; })) ; })) ; })) ; //#line 402 "x10/util/foreach/Bisect.x10" this->FMGL(result) = (__extension__ ({ ::x10::lang::Cell<TPMGL(T)>* alloc__138011 = (new (::x10aux::alloc_z< ::x10::lang::Cell<TPMGL(T)> >()) ::x10::lang::Cell<TPMGL(T)>()); //#line 33 "x10/lang/Cell.x10" alloc__138011->FMGL(value) = res; alloc__138011; })) ; //#line 403 "x10/util/foreach/Bisect.x10" return res; } //#line 412 "x10/util/foreach/Bisect.x10" /** * Reduce over a dense rectangular set of indices in parallel using * two-dimensional recursive bisection. * @param space the 2D dense space over which to reduce * @param body a closure that executes over a single index [i,j] */ template<class TPMGL(T)> TPMGL(T) x10::util::foreach::Bisect__Reducer<TPMGL(T)>::_kwd__for( ::x10::array::DenseIterationSpace_2* space, ::x10::lang::Fun_0_2<x10_long, x10_long, TPMGL(T)>* body) { //#line 414 "x10/util/foreach/Bisect.x10" TPMGL(T) res = (__extension__ ({ ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>* reduce__138445 = this->FMGL(reduce); TPMGL(T) identity__138446 = this->FMGL(identity); //#line 343 "x10/util/foreach/Bisect.x10" x10_long grainSize__138448 = (__extension__ ({ x10_long b__138452 = ((((::x10aux::nullCheck(space)->FMGL(max0)) - (::x10aux::nullCheck(space)->FMGL(min0)))) / ::x10aux::zeroCheck(((x10_long)(::x10::xrx::Runtime::FMGL(NTHREADS__get)())))); ((((x10_long)1ll)) < (b__138452)) ? (b__138452) : (((x10_long)1ll)); })) ; //#line 344 "x10/util/foreach/Bisect.x10" x10_long grainSize__138449 = (__extension__ ({ x10_long b__138455 = ((((::x10aux::nullCheck(space)->FMGL(max1)) - (::x10aux::nullCheck(space)->FMGL(min1)))) / ::x10aux::zeroCheck(((x10_long)(::x10::xrx::Runtime::FMGL(NTHREADS__get)())))); ((((x10_long)1ll)) < (b__138455)) ? (b__138455) : (((x10_long)1ll)); })) ; (__extension__ ({ //#line 345 "x10/util/foreach/Bisect.x10" ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>* reduce__138460 = reduce__138445; TPMGL(T) identity__138461 = identity__138446; ::x10::lang::Fun_0_2<x10_long, x10_long, TPMGL(T)>* body__138462 = body; //#line 307 "x10/util/foreach/Bisect.x10" TPMGL(T) ret__138477; goto __ret__138478; __ret__138478: { { //#line 311 "x10/util/foreach/Bisect.x10" if ((::x10aux::struct_equals(::x10::xrx::Runtime::FMGL(NTHREADS__get)(), ((x10_int)1)))) { //#line 312 "x10/util/foreach/Bisect.x10" ret__138477 = (__extension__ ({ //#line 88 "x10/util/foreach/Sequential.x10" TPMGL(T) myRes__138483 = identity__138446; //#line 89 "x10/util/foreach/Sequential.x10" x10_long j__137263min__138753 = ::x10aux::nullCheck(space)->x10::array::DenseIterationSpace_2::min( ((x10_long)1ll)); x10_long j__137263max__138754 = ::x10aux::nullCheck(space)->x10::array::DenseIterationSpace_2::max( ((x10_long)1ll)); x10_long i__137294min__138755 = ::x10aux::nullCheck(space)->x10::array::DenseIterationSpace_2::min( ((x10_long)0ll)); x10_long i__137294max__138756 = ::x10aux::nullCheck(space)->x10::array::DenseIterationSpace_2::max( ((x10_long)0ll)); { x10_long i__138757; for (i__138757 = i__137294min__138755; ((i__138757) <= (i__137294max__138756)); i__138757 = ((i__138757) + (((x10_long)1ll)))) { { x10_long j__138759; for (j__138759 = j__137263min__138753; ((j__138759) <= (j__137263max__138754)); j__138759 = ((j__138759) + (((x10_long)1ll)))) { //#line 90 "x10/util/foreach/Sequential.x10" myRes__138483 = ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>::__apply(::x10aux::nullCheck(reduce__138445), myRes__138483, ::x10::lang::Fun_0_2<x10_long, x10_long, TPMGL(T)>::__apply(::x10aux::nullCheck(body), i__138757, j__138759)); } } } } myRes__138483; })) ; goto __ret__138478_end_; } else { //#line 324 "x10/util/foreach/Bisect.x10" ret__138477 = ::x10::util::foreach::Bisect::template doBisectReduce2D< TPMGL(T) >( ::x10aux::nullCheck(space)->FMGL(min0), ((::x10aux::nullCheck(space)->FMGL(max0)) + (((x10_long)1ll))), ::x10aux::nullCheck(space)->FMGL(min1), ((::x10aux::nullCheck(space)->FMGL(max1)) + (((x10_long)1ll))), grainSize__138448, grainSize__138449, reduce__138445, reinterpret_cast< ::x10::lang::Fun_0_4<x10_long, x10_long, x10_long, x10_long, TPMGL(T)>*>((new (::x10aux::alloc< ::x10::lang::Fun_0_4<x10_long, x10_long, x10_long, x10_long, TPMGL(T)> >(sizeof(x10_util_foreach_Bisect__Reducer__closure__17<TPMGL(T)>)))x10_util_foreach_Bisect__Reducer__closure__17<TPMGL(T)>(identity__138461, reduce__138460, body__138462)))); goto __ret__138478_end_; } }goto __ret__138478_end_; __ret__138478_end_: ; } ret__138477; })) ; })) ; //#line 415 "x10/util/foreach/Bisect.x10" this->FMGL(result) = (__extension__ ({ ::x10::lang::Cell<TPMGL(T)>* alloc__138012 = (new (::x10aux::alloc_z< ::x10::lang::Cell<TPMGL(T)> >()) ::x10::lang::Cell<TPMGL(T)>()); //#line 33 "x10/lang/Cell.x10" alloc__138012->FMGL(value) = res; alloc__138012; })) ; //#line 416 "x10/util/foreach/Bisect.x10" return res; } //#line 351 "x10/util/foreach/Bisect.x10" template<class TPMGL(T)> ::x10::util::foreach::Bisect__Reducer<TPMGL(T)>* x10::util::foreach::Bisect__Reducer<TPMGL(T)>::x10__util__foreach__Bisect__Reducer____this__x10__util__foreach__Bisect__Reducer( ) { return this; } template<class TPMGL(T)> void x10::util::foreach::Bisect__Reducer<TPMGL(T)>::__fieldInitializers_x10_util_foreach_Bisect_Reducer( ) { this->FMGL(result) = (::x10aux::class_cast_unchecked< ::x10::lang::Cell<TPMGL(T)>*>(reinterpret_cast< ::x10::lang::NullType*>(X10_NULL))); } template<class TPMGL(T)> const ::x10aux::serialization_id_t x10::util::foreach::Bisect__Reducer<TPMGL(T)>::_serialization_id = ::x10aux::DeserializationDispatcher::addDeserializer(::x10::util::foreach::Bisect__Reducer<TPMGL(T)>::_deserializer); template<class TPMGL(T)> void x10::util::foreach::Bisect__Reducer<TPMGL(T)>::_serialize_body(::x10aux::serialization_buffer& buf) { buf.write(this->FMGL(result)); buf.write(this->FMGL(reduce)); buf.write(this->FMGL(identity)); } template<class TPMGL(T)> ::x10::lang::Reference* ::x10::util::foreach::Bisect__Reducer<TPMGL(T)>::_deserializer(::x10aux::deserialization_buffer& buf) { ::x10::util::foreach::Bisect__Reducer<TPMGL(T)>* this_ = new (::x10aux::alloc_z< ::x10::util::foreach::Bisect__Reducer<TPMGL(T)> >()) ::x10::util::foreach::Bisect__Reducer<TPMGL(T)>(); buf.record_reference(this_); this_->_deserialize_body(buf); return this_; } template<class TPMGL(T)> void x10::util::foreach::Bisect__Reducer<TPMGL(T)>::_deserialize_body(::x10aux::deserialization_buffer& buf) { FMGL(result) = buf.read< ::x10::lang::Cell<TPMGL(T)>*>(); FMGL(reduce) = buf.read< ::x10::lang::Fun_0_2<TPMGL(T), TPMGL(T), TPMGL(T)>*>(); FMGL(identity) = buf.read<TPMGL(T)>(); } #endif // X10_UTIL_FOREACH_BISECT__REDUCER_H_IMPLEMENTATION #endif // __X10_UTIL_FOREACH_BISECT__REDUCER_H_NODEPS
[ "buzz.hari@gmail.com" ]
buzz.hari@gmail.com
269d7cd362a2da5de727d994f2db1da48ace5fc9
d1cc8770839f711bfb67bf80d9bddbe1d74da134
/groups/bsl/bsl+stdhdrs/sstream.SUNWCCh
cc91d84e26d3a01c84a9986874ac53ddd07dba77
[ "Apache-2.0" ]
permissive
phalpern/bde-allocator-benchmarks
9024db005e648c128559fd87d190a50e2a6a4a0d
3d231b2444aa50b85ab4c8dea13f7a23421b7a17
refs/heads/master
2022-04-30T19:29:45.740990
2022-03-10T21:33:34
2022-03-10T21:33:34
174,750,415
1
0
Apache-2.0
2019-03-09T21:55:05
2019-03-09T21:55:05
null
UTF-8
C++
false
false
2,415
sunwcch
// sstream -*-C++-*- #ifndef INCLUDED_NATIVE_SSTREAM #define INCLUDED_NATIVE_SSTREAM #ifndef INCLUDED_BSLS_IDENT #include <bsls_ident.h> #endif BSLS_IDENT("$Id: $") //@PURPOSE: Provide functionality of the corresponding C++ Standard header. // //@SEE_ALSO: package bsl+stdhdrs // //@DESCRIPTION: Provide functionality of the corresponding C++ standard // header. This file includes the compiler provided native standard header. // In addition, in 'bde-stl' mode (used by Bloomberg managed code, see // 'bsl+stdhdrs.txt' for more information) include the corresponding header in // 'bsl+bslhdrs' as well as 'bsl_stdhdrs_prologue.h' and // 'bsl_stdhdrs_epilogue.h'. This includes the respective 'bsl' types and // places them in the 'std' namespace. #ifndef BSL_OVERRIDES_STD # ifndef INCLUDED_BSL_STDHDRS_INCPATH # include <bsl_stdhdrs_incpaths.h> # endif # include BSL_NATIVE_CPP_LIB_HEADER(sstream) #else // defined(BSL_OVERRIDES_STD) # ifndef BSL_STDHDRS_PROLOGUE_IN_EFFECT # include <bsl_stdhdrs_prologue.h> # endif # ifndef BSL_STDHDRS_RUN_EPILOGUE # define BSL_STDHDRS_RUN_EPILOGUE # define BSL_STDHDRS_EPILOGUE_RUN_BY_sstream # endif # ifndef INCLUDED_BSL_STDHDRS_INCPATH # include <bsl_stdhdrs_incpaths.h> # endif # include BSL_NATIVE_CPP_LIB_HEADER(sstream) # ifndef BSL_INCLUDE_BSL_SSTREAM # define BSL_INCLUDE_BSL_SSTREAM # endif # ifdef BSL_STDHDRS_EPILOGUE_RUN_BY_sstream # undef BSL_STDHDRS_EPILOGUE_RUN_BY_sstream # include <bsl_stdhdrs_epilogue.h> # endif #endif // BSL_OVERRIDES_STD #endif // INCLUDED_NATIVE_SSTREAM // ---------------------------------------------------------------------------- // Copyright 2013 Bloomberg Finance L.P. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // ----------------------------- END-OF-FILE ----------------------------------
[ "abeels@bloomberg.net" ]
abeels@bloomberg.net
f58f386e83032946d06e26674c9784eee2fcec8f
236b17c421a5afc7e33945ca1459a9ad7a3e3cd9
/vendor/cache/ruby/2.5.0/gems/capybara-webkit-1.15.0/src/build/moc_GetWindowHandle.cpp
e8109b1e867c7d0861b66b80206bb7f8096adda7
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
bondar5471/qna
2f9e54993d22e5537571cba0c4466b83eccf6a10
d103ead66b7a599b0b8484e386c0d2e52106b791
refs/heads/master
2020-03-24T00:12:38.940780
2018-10-12T07:08:32
2018-10-12T07:08:32
142,279,357
0
0
null
2018-10-04T08:28:57
2018-07-25T09:38:17
Ruby
UTF-8
C++
false
false
2,420
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'GetWindowHandle.h' ** ** Created by: The Qt Meta Object Compiler version 63 (Qt 4.8.7) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include "../GetWindowHandle.h" #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'GetWindowHandle.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 63 #error "This file was generated using the moc from 4.8.7. It" #error "cannot be used with the include files from this version of Qt." #error "(The moc has changed too much.)" #endif QT_BEGIN_MOC_NAMESPACE static const uint qt_meta_data_GetWindowHandle[] = { // content: 6, // revision 0, // classname 0, 0, // classinfo 0, 0, // methods 0, 0, // properties 0, 0, // enums/sets 0, 0, // constructors 0, // flags 0, // signalCount 0 // eod }; static const char qt_meta_stringdata_GetWindowHandle[] = { "GetWindowHandle\0" }; void GetWindowHandle::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) { Q_UNUSED(_o); Q_UNUSED(_id); Q_UNUSED(_c); Q_UNUSED(_a); } const QMetaObjectExtraData GetWindowHandle::staticMetaObjectExtraData = { 0, qt_static_metacall }; const QMetaObject GetWindowHandle::staticMetaObject = { { &SocketCommand::staticMetaObject, qt_meta_stringdata_GetWindowHandle, qt_meta_data_GetWindowHandle, &staticMetaObjectExtraData } }; #ifdef Q_NO_DATA_RELOCATION const QMetaObject &GetWindowHandle::getStaticMetaObject() { return staticMetaObject; } #endif //Q_NO_DATA_RELOCATION const QMetaObject *GetWindowHandle::metaObject() const { return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject; } void *GetWindowHandle::qt_metacast(const char *_clname) { if (!_clname) return 0; if (!strcmp(_clname, qt_meta_stringdata_GetWindowHandle)) return static_cast<void*>(const_cast< GetWindowHandle*>(this)); return SocketCommand::qt_metacast(_clname); } int GetWindowHandle::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = SocketCommand::qt_metacall(_c, _id, _a); if (_id < 0) return _id; return _id; } QT_END_MOC_NAMESPACE
[ "bondar54711745@gmail.com" ]
bondar54711745@gmail.com
6a057331af6784c015bd766f2ec12bc69585f90d
66862c422fda8b0de8c4a6f9d24eced028805283
/slambook2/3rdparty/opencv-3.3.0/modules/stitching/include/opencv2/stitching/detail/motion_estimators.hpp
a0e690083864883f2b8c0e79b32559880d93fbf1
[ "BSD-3-Clause", "MIT" ]
permissive
zhh2005757/slambook2_in_Docker
57ed4af958b730e6f767cd202717e28144107cdb
f0e71327d196cdad3b3c10d96eacdf95240d528b
refs/heads/main
2023-09-01T03:26:37.542232
2021-10-27T11:45:47
2021-10-27T11:45:47
416,666,234
17
6
MIT
2021-10-13T09:51:00
2021-10-13T09:12:15
null
UTF-8
C++
false
false
12,471
hpp
/*M/////////////////////////////////////////////////////////////////////////////////////// // // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. // // By downloading, copying, installing or using the software you agree to this license. // If you do not agree to this license, do not download, install, // copy or use the software. // // // License Agreement // For Open Source Computer Vision Library // // Copyright (C) 2000-2008, Intel Corporation, all rights reserved. // Copyright (C) 2009, Willow Garage Inc., all rights reserved. // Third party copyrights are property of their respective owners. // // Redistribution and use in source and binary forms, with or without modification, // are permitted provided that the following conditions are met: // // * Redistribution's of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // // * Redistribution's in binary form must reproduce the above copyright notice, // this list of conditions and the following disclaimer in the documentation // and/or other materials provided with the distribution. // // * The name of the copyright holders may not be used to endorse or promote products // derived from this software without specific prior written permission. // // This software is provided by the copyright holders and contributors "as is" and // any express or implied warranties, including, but not limited to, the implied // warranties of merchantability and fitness for a particular purpose are disclaimed. // In no event shall the Intel Corporation or contributors be liable for any direct, // indirect, incidental, special, exemplary, or consequential damages // (including, but not limited to, procurement of substitute goods or services; // loss of use, data, or profits; or business interruption) however caused // and on any theory of liability, whether in contract, strict liability, // or tort (including negligence or otherwise) arising in any way out of // the use of this software, even if advised of the possibility of such damage. // //M*/ #ifndef OPENCV_STITCHING_MOTION_ESTIMATORS_HPP #define OPENCV_STITCHING_MOTION_ESTIMATORS_HPP #include "opencv2/core.hpp" #include "matchers.hpp" #include "util.hpp" #include "camera.hpp" namespace cv { namespace detail { //! @addtogroup stitching_rotation //! @{ /** @brief Rotation estimator base class. It takes features of all images, pairwise matches between all images and estimates rotations of all cameras. @note The coordinate system origin is implementation-dependent, but you can always normalize the rotations in respect to the first camera, for instance. : */ class CV_EXPORTS Estimator { public: virtual ~Estimator() {} /** @brief Estimates camera parameters. @param features Features of images @param pairwise_matches Pairwise matches of images @param cameras Estimated camera parameters @return True in case of success, false otherwise */ bool operator ()(const std::vector<ImageFeatures> &features, const std::vector<MatchesInfo> &pairwise_matches, std::vector<CameraParams> &cameras) { return estimate(features, pairwise_matches, cameras); } protected: /** @brief This method must implement camera parameters estimation logic in order to make the wrapper detail::Estimator::operator()_ work. @param features Features of images @param pairwise_matches Pairwise matches of images @param cameras Estimated camera parameters @return True in case of success, false otherwise */ virtual bool estimate(const std::vector<ImageFeatures> &features, const std::vector<MatchesInfo> &pairwise_matches, std::vector<CameraParams> &cameras) = 0; }; /** @brief Homography based rotation estimator. */ class CV_EXPORTS HomographyBasedEstimator : public Estimator { public: HomographyBasedEstimator(bool is_focals_estimated = false) : is_focals_estimated_(is_focals_estimated) {} private: virtual bool estimate(const std::vector<ImageFeatures> &features, const std::vector<MatchesInfo> &pairwise_matches, std::vector<CameraParams> &cameras); bool is_focals_estimated_; }; /** @brief Affine transformation based estimator. This estimator uses pairwise tranformations estimated by matcher to estimate final transformation for each camera. @sa cv::detail::HomographyBasedEstimator */ class CV_EXPORTS AffineBasedEstimator : public Estimator { private: virtual bool estimate(const std::vector<ImageFeatures> &features, const std::vector<MatchesInfo> &pairwise_matches, std::vector<CameraParams> &cameras); }; /** @brief Base class for all camera parameters refinement methods. */ class CV_EXPORTS BundleAdjusterBase : public Estimator { public: const Mat refinementMask() const { return refinement_mask_.clone(); } void setRefinementMask(const Mat &mask) { CV_Assert(mask.type() == CV_8U && mask.size() == Size(3, 3)); refinement_mask_ = mask.clone(); } double confThresh() const { return conf_thresh_; } void setConfThresh(double conf_thresh) { conf_thresh_ = conf_thresh; } TermCriteria termCriteria() { return term_criteria_; } void setTermCriteria(const TermCriteria& term_criteria) { term_criteria_ = term_criteria; } protected: /** @brief Construct a bundle adjuster base instance. @param num_params_per_cam Number of parameters per camera @param num_errs_per_measurement Number of error terms (components) per match */ BundleAdjusterBase(int num_params_per_cam, int num_errs_per_measurement) : num_images_(0), total_num_matches_(0), num_params_per_cam_(num_params_per_cam), num_errs_per_measurement_(num_errs_per_measurement), features_(0), pairwise_matches_(0), conf_thresh_(0) { setRefinementMask(Mat::ones(3, 3, CV_8U)); setConfThresh(1.); setTermCriteria(TermCriteria(TermCriteria::EPS + TermCriteria::COUNT, 1000, DBL_EPSILON)); } // Runs bundle adjustment virtual bool estimate(const std::vector<ImageFeatures> &features, const std::vector<MatchesInfo> &pairwise_matches, std::vector<CameraParams> &cameras); /** @brief Sets initial camera parameter to refine. @param cameras Camera parameters */ virtual void setUpInitialCameraParams(const std::vector<CameraParams> &cameras) = 0; /** @brief Gets the refined camera parameters. @param cameras Refined camera parameters */ virtual void obtainRefinedCameraParams(std::vector<CameraParams> &cameras) const = 0; /** @brief Calculates error vector. @param err Error column-vector of length total_num_matches \* num_errs_per_measurement */ virtual void calcError(Mat &err) = 0; /** @brief Calculates the cost function jacobian. @param jac Jacobian matrix of dimensions (total_num_matches \* num_errs_per_measurement) x (num_images \* num_params_per_cam) */ virtual void calcJacobian(Mat &jac) = 0; // 3x3 8U mask, where 0 means don't refine respective parameter, != 0 means refine Mat refinement_mask_; int num_images_; int total_num_matches_; int num_params_per_cam_; int num_errs_per_measurement_; const ImageFeatures *features_; const MatchesInfo *pairwise_matches_; // Threshold to filter out poorly matched image pairs double conf_thresh_; //Levenberg-Marquardt algorithm termination criteria TermCriteria term_criteria_; // Camera parameters matrix (CV_64F) Mat cam_params_; // Connected images pairs std::vector<std::pair<int,int> > edges_; }; /** @brief Stub bundle adjuster that does nothing. */ class CV_EXPORTS NoBundleAdjuster : public BundleAdjusterBase { public: NoBundleAdjuster() : BundleAdjusterBase(0, 0) {} private: bool estimate(const std::vector<ImageFeatures> &, const std::vector<MatchesInfo> &, std::vector<CameraParams> &) { return true; } void setUpInitialCameraParams(const std::vector<CameraParams> &) {} void obtainRefinedCameraParams(std::vector<CameraParams> &) const {} void calcError(Mat &) {} void calcJacobian(Mat &) {} }; /** @brief Implementation of the camera parameters refinement algorithm which minimizes sum of the reprojection error squares It can estimate focal length, aspect ratio, principal point. You can affect only on them via the refinement mask. */ class CV_EXPORTS BundleAdjusterReproj : public BundleAdjusterBase { public: BundleAdjusterReproj() : BundleAdjusterBase(7, 2) {} private: void setUpInitialCameraParams(const std::vector<CameraParams> &cameras); void obtainRefinedCameraParams(std::vector<CameraParams> &cameras) const; void calcError(Mat &err); void calcJacobian(Mat &jac); Mat err1_, err2_; }; /** @brief Implementation of the camera parameters refinement algorithm which minimizes sum of the distances between the rays passing through the camera center and a feature. : It can estimate focal length. It ignores the refinement mask for now. */ class CV_EXPORTS BundleAdjusterRay : public BundleAdjusterBase { public: BundleAdjusterRay() : BundleAdjusterBase(4, 3) {} private: void setUpInitialCameraParams(const std::vector<CameraParams> &cameras); void obtainRefinedCameraParams(std::vector<CameraParams> &cameras) const; void calcError(Mat &err); void calcJacobian(Mat &jac); Mat err1_, err2_; }; /** @brief Bundle adjuster that expects affine transformation represented in homogeneous coordinates in R for each camera param. Implements camera parameters refinement algorithm which minimizes sum of the reprojection error squares It estimates all transformation parameters. Refinement mask is ignored. @sa AffineBasedEstimator AffineBestOf2NearestMatcher BundleAdjusterAffinePartial */ class CV_EXPORTS BundleAdjusterAffine : public BundleAdjusterBase { public: BundleAdjusterAffine() : BundleAdjusterBase(6, 2) {} private: void setUpInitialCameraParams(const std::vector<CameraParams> &cameras); void obtainRefinedCameraParams(std::vector<CameraParams> &cameras) const; void calcError(Mat &err); void calcJacobian(Mat &jac); Mat err1_, err2_; }; /** @brief Bundle adjuster that expects affine transformation with 4 DOF represented in homogeneous coordinates in R for each camera param. Implements camera parameters refinement algorithm which minimizes sum of the reprojection error squares It estimates all transformation parameters. Refinement mask is ignored. @sa AffineBasedEstimator AffineBestOf2NearestMatcher BundleAdjusterAffine */ class CV_EXPORTS BundleAdjusterAffinePartial : public BundleAdjusterBase { public: BundleAdjusterAffinePartial() : BundleAdjusterBase(4, 2) {} private: void setUpInitialCameraParams(const std::vector<CameraParams> &cameras); void obtainRefinedCameraParams(std::vector<CameraParams> &cameras) const; void calcError(Mat &err); void calcJacobian(Mat &jac); Mat err1_, err2_; }; enum WaveCorrectKind { WAVE_CORRECT_HORIZ, WAVE_CORRECT_VERT }; /** @brief Tries to make panorama more horizontal (or vertical). @param rmats Camera rotation matrices. @param kind Correction kind, see detail::WaveCorrectKind. */ void CV_EXPORTS waveCorrect(std::vector<Mat> &rmats, WaveCorrectKind kind); ////////////////////////////////////////////////////////////////////////////// // Auxiliary functions // Returns matches graph representation in DOT language String CV_EXPORTS matchesGraphAsString(std::vector<String> &pathes, std::vector<MatchesInfo> &pairwise_matches, float conf_threshold); std::vector<int> CV_EXPORTS leaveBiggestComponent( std::vector<ImageFeatures> &features, std::vector<MatchesInfo> &pairwise_matches, float conf_threshold); void CV_EXPORTS findMaxSpanningTree( int num_images, const std::vector<MatchesInfo> &pairwise_matches, Graph &span_tree, std::vector<int> &centers); //! @} stitching_rotation } // namespace detail } // namespace cv #endif // OPENCV_STITCHING_MOTION_ESTIMATORS_HPP
[ "594353397@qq.com" ]
594353397@qq.com
f2ef6d8f4b18cb8f756c521e4479081c9ec28b7f
f400074fdfc28381deed99f43519aba8257ad106
/csc/342/2012/required_submissions/01/code.h
15fab630e0a53770ff4219558c4c5883ee08908b
[]
no_license
Glavin001/Scobey2
e1c1681dc914f99238c1f354e37a3bd78a6d70f0
226c8fab2515ac1b3cd7904b4d8e58c9d4e130d9
refs/heads/master
2023-08-06T18:09:02.891986
2014-01-10T17:25:08
2014-01-10T17:25:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,922
h
//code.h #ifndef CODE_H #define CODE_H #include <string> using namespace std; #include "utilities.h" using Scobey::RandomGenerator; #include "score.h" /** A class of 4-digit codes for use in a guessing game that pits the computer as codebreaker against the user as codemaker. */ class Code { friend istream& operator>> ( istream& inputStream, //inout Code& code //out ); /**< Reads a Code object from the input stream. @param inputStream The stream from which the Code object is to be read. @param code The receiving variable for the Code object. @pre inputStream is open and ready for reading. @post An object of type Code has been read in and <tt>inputStream</tt> is still open. */ friend ostream& operator<< ( ostream& outputStream, //inout const Code& code //in ); /**< Writes a Code object to an output stream. @param outputStream The stream to which the Code object is to be written. @param code The variable containing the Code object to be written. @pre outputStream is open and ready for writing. @post An object of type Code has been written out and <tt>outputStream</tt> is still open. */ public: Code(); /**< Default constructor. Creates an empty Code object. */ Code ( const string& s ); /**< Constructor. Creates a Code object containing the digits in s. No error checking for code validity is performed during construction but isValid() can be used after the fact to ascertain validity. */ void initialize(); /**< Permits the user to enter a Code object (to be used as a starting guess, for example) or chooses one at random if the user opts not to enter one. A randomly generated code is guaranteed to be valid. A code entered by the user may or may not be valid. @pre None. @post The following prompt has been displayed: <pre> Enter starting guess here, or just press Enter to generate a random one: </pre> A code has been entered by the user, or randomly generated. */ bool isValid() const; /**< Returns <tt>true</tt> if this Code object represents a valid code, and <tt>false</tt> otherwise. A valid code is one containing exactly 4 digits, each one in the range 1..8, with repetition allowed. */ Score scoreAgainst ( const Code& otherCode //in ) const; /**< Computes and returns a Score object representing the score of this Code object when scored against the <tt>otherCode</tt> object. @return The score when this code is scored agains <tt>otherCode</tt>. @param otherCode The other code against which this code is being scored. @pre <tt>otherCode</tt> has been initialized. @post The score of this Code object against <tt>otherCode</tt> has been returned. */ void increment(); /**< Changes the value of this Code object to the value following this Code object, with 8888 wrapping to 1111. */ void decrement(); /**< Changes the value of this Code object to the value preceding this Code object, with 1111 wrapping to 8888. */ bool operator== ( const Code& otherCode //in ) const; /**< Tests whether this Code object is the same as the <tt>otherCode</tt> object. That is, tests whether each Code object contains 4 digits, and those digits are the same and in the same order in each Code object. */ bool operator< ( const Code& otherCode //in ) const; /**< Tests whether this Code object precedes the <tt>otherCode</tt> object. This is determined by the lexicograpic (alphabetic) ordering of the digit strings in the two Code objects. */ private: static const int CODE_SIZE = 4; string digits; RandomGenerator g; }; #endif
[ "Glavin.Wiechert@gmail.com" ]
Glavin.Wiechert@gmail.com
cced7ef96dbc134e29c0c72cc66ee1fd18f74e0b
9a1d372f2279056907c4d0f2af8c5ca84618e228
/Data Structures/Queue/Queue/Queue/CircularQueue.cpp
197c41590496cb116a80c024557421d3e940c92d
[]
no_license
psspratik/NCRAssignment
1f746d3b9b7ea83ac24973f0de38f789d0742101
0d8d8c17644404df80c6f255207cb60be35e39ef
refs/heads/master
2020-04-21T07:23:46.900710
2019-04-10T05:41:40
2019-04-10T05:41:40
169,391,544
0
1
null
null
null
null
UTF-8
C++
false
false
1,587
cpp
#include "stdafx.h" #include<iostream> using namespace std; struct cir_queue_data{ int *data; int front; int rear; int size; }; class cir_queue{ cir_queue_data q; public: cir_queue() { q.rear = q.front = -1; q.data = NULL; q.size = 0; } void getsize(int n) { q.size = n; q.data = new int[n]; } bool isFull() { if ((q.front == 0 && q.rear == q.size - 1) || (q.rear == (q.front - 1) % (q.size - 1))) { return true; } else return false; } bool isEmpty() { if (q.front == -1) { return true; } else return false; } void cir_Enqueue(int ele) { if (isFull()) { cout << "\nQueue is Full"; return; } else if (q.front == -1) { q.front = q.rear = 0; q.data[q.rear] = ele; } else if (q.rear == q.size - 1 && q.front != 0) { q.rear = 0; q.data[q.rear] = ele; } else { q.rear++; q.data[q.rear] = ele; } } int cir_Dequeue() { if (isEmpty()) { printf("\nQueue is Empty"); return INT_MIN; } int ele = q.data[q.front]; if (q.front == q.rear) { q.front = -1; q.rear = -1; } else if (q.front == q.size - 1) q.front = 0; else q.front++; return ele; } void Display() { if (isEmpty()) { printf("\nQueue is Empty"); return; } printf("\nElements in Circular Queue are: "); if (q.rear >= q.front) { for (int i = q.front; i <= q.rear; i++) printf("%d ", q.data[i]); } else { for (int i = q.front; i < q.size; i++) printf("%d ", q.data[i]); for (int i = 0; i <= q.rear; i++) printf("%d ", q.data[i]); } } };
[ "psspratik@gmail.com" ]
psspratik@gmail.com
a69ca69beae4c29e32162a32d801f94f9f6a10bd
ff52eda8983195c334df9d895eee3cbdff5f060e
/qpx/qpx/stdafx.h
4575a0ddd4edb54f571634d285220c72f01ca341
[]
no_license
freesense/qserver
8a7d88b6bd9985903dde3574659ab296f501cbdb
7e2738da90679224db51525580bc66a67288ae41
refs/heads/master
2020-04-26T16:32:42.677317
2019-03-04T05:59:03
2019-03-04T05:59:03
173,682,829
0
0
null
null
null
null
GB18030
C++
false
false
1,722
h
// stdafx.h : 标准系统包含文件的包含文件, // 或是经常使用但不常更改的 // 特定于项目的包含文件 // #pragma once #define MN "qpx" #define WIN32_LEAN_AND_MEAN // 从 Windows 头中排除极少使用的资料 #include <stdio.h> #include <tchar.h> #include <map> #include <string> #include "../../public/commx/commxapi.h" #include "../../public/commx/report.h" #include "../../public/commx/synch.h" #include "../../public/commx/mery.h" #ifdef _DEBUG //for memory leak check #define _CRTDBG_MAP_ALLOC //使生成的内存dump包含内存块分配的具体代码为止 #include <stdlib.h> #include <crtdbg.h> #define CheckMemoryLeak _CrtSetDbgFlag( _CrtSetDbgFlag( _CRTDBG_REPORT_FLAG )| _CRTDBG_LEAK_CHECK_DF) #endif #include "condef.h" #ifdef _DEBUG #pragma comment(lib, "../../public/lib/commxd") #else #pragma comment(lib, "../../public/lib/commxr") #endif // _DEBUG extern std::string strQuoteAddress, strHostAddress; class C2cc; extern unsigned short g_serialno; extern std::map<unsigned short, C2cc*> g_mapClient; extern LockSingle g_lockClients; extern unsigned short onRequest(C2cc *pClient); extern C2cc* onAnswer(unsigned short serialno); extern void onRelease(C2cc *pClient); #pragma warning(disable:4819) #define QPXVER "$Qpx#2.1.9$" extern std::map<unsigned short, char*> g_mapCltData; extern void InsertCltData(unsigned short nSerialNo, char* pData); extern char* RemoveCltData(unsigned short nSerialNo); #define RPT_HEARTBEAT 0xAA //心跳日志,用来监控线程 #define RPT_ADDI_INFO 0x90 //附加信息,可以报告设备的状态等信息 // TODO: 在此处引用程序需要的其他头文件
[ "freesense@126.com" ]
freesense@126.com
1aeb416ef0876f6ef73125230337c2cc36843b61
2b8d0631df3b4acf7a978611a378a1b85af9397d
/cpp/leetcode/Binary_tree_paths_257.cpp
a824b5e8c144ee92189bdd6b1f4c4faf49f5f1f8
[]
no_license
sanyinchen/algorithm
ab110ae95c9af480d22407e17cc7b1a9fb4a05d5
c7e143e082d0f6008bdafde9570f6ab81a0b165e
refs/heads/master
2022-10-28T11:41:12.335971
2022-10-19T14:07:15
2022-10-19T14:07:15
88,053,211
1
0
null
null
null
null
UTF-8
C++
false
false
967
cpp
// // Created by Administrator on 2020年04月06日, 0006. // #include <TreeNode.h> #include <iostream> #include <vector> using namespace std; class Solution { public: vector<string> res; void binaryTreePathsHelper(TreeNode *root, vector<int> paths) { if (root == nullptr) { return; } if (root->left == nullptr && root->right == nullptr) { string temp; for (int i = 0; i < paths.size(); i++) { int item = paths[i]; temp += (to_string(item) + "->"); } temp += to_string(root->val); res.push_back(temp); return; } paths.push_back(root->val); binaryTreePathsHelper(root->left, paths); binaryTreePathsHelper(root->right, paths); } vector<string> binaryTreePaths(TreeNode *root) { vector<int> paths; binaryTreePathsHelper(root, paths); return res; } };
[ "1554194922@qq.com" ]
1554194922@qq.com
5f901700ff0dc1ce15603c5f5ea8b87fabac3a29
8cb589d1124d9637c2f05d589b65c2cc6b0d518d
/src/bit_io.hxx
fb6c770b609a7dad9cb8dbc1ecfbe1c00b073c9f
[]
no_license
nu-ipd/ipd14a-3
f01e23c66891da331b65b0f6da5e44306fdd735d
119e90b896b772e927528466cdf7e279e1ca2a0a
refs/heads/master
2022-12-19T04:04:17.981368
2020-09-25T19:49:13
2020-09-25T19:49:13
297,486,494
0
2
null
null
null
null
UTF-8
C++
false
false
9,536
hxx
#pragma once /* * bit_io.h: classes for reading and writing files one bit (or more) * at a time. * * The main idea is that we create a bit input or output stream as a * layer over a file that we open for reading or writing. The library * maintains a buffer of bits so that the client can view the file as a * simple sequence of bits rather than bytes. */ #include <cstdint> #include <istream> #include <ostream> #include <fstream> #include <vector> #include <initializer_list> namespace ipd { /* * INPUT */ // Bit input stream, for reading individual bits from a file or a // std::vector<uint8_t> This is an abstract base class for the concrete // derived classes `bistream_adaptor`, `bifstream`, and `bistreamstream` // defined below. It defines the common interface for those classes. class bistream { public: // Reads a bit from this bit input stream into the given bool // reference. // // Parameters: // // result - bool reference to store the bit that was read // // Returns: the same bit input stream, for method chaining // // Example: // // bool b; // bif.read(b); // bistream& read(bool& result); // Reads `n` bits, interpreted as a big-endian `n`-bit integer, // and stores them in the reference `result`, which must have a // numeric type. // // Parameters: // // <typename T> - the type of the result; must be numeric // result - reference for storing the result // n - number of bits to read // // Returns: the same bit input stream, for method chaining // // Example: // // int result; // bif.read_bits(result, 5); // reads 5 bits into result // template<typename T> bistream& read_bits(T& result, size_t n); // Determines whether we've reached the end of the input file. // // Returns: `true` if we’ve attempted to read past the end of // the file, and `false` otherwise. // // Example: // // while (bif.read(b) && !bif.eof()) { // ... // } // virtual bool eof() const; // Determines the status of the bit input stream. // // Returns: `false` if there are no bits to read and a read // error has occurred, and `true` otherwise. // // Example: // // bif.read(b); // if (bif.good()) { // // we know the read succeeded // } // virtual bool good() const; // The bit input stream boolean coercion operator, inserted, for // example, when a `bifstream` is used as a condition for an // `if`. Alias for `good()`. // // Returns: `false` if there are no bits to read and a read // error has occurred, and `true` otherwise. // // Example: // // bif.read(b); // if (bif) { // // we know the read succeeded // } // operator bool() const; virtual ~bistream() { } protected: virtual bool get_next_byte(uint8_t&) = 0; private: uint_fast8_t nbits_ = 0; uint8_t bitbuf_ = '\0'; }; // Adapts any `std::istream&` for use as a bit input stream. class bistream_adaptor : public bistream { public: // Constructs a bit input stream on top of an input stream. Does not // take ownership of the `std::istream`. However, using the `istream` // while also using the adaptor, or adapting the same `istream` // twice, will give strange results. // // Parameters: // // input_stream - the input stream to adapt // // Example: // // bistream_adaptor bis(input_stream); // explicit bistream_adaptor(std::istream&); bool eof() const override; bool good() const override; bistream_adaptor(bistream_adaptor const&) = delete; private: std::istream& stream_; virtual bool get_next_byte(uint8_t&) override; }; class bifstream : public bistream_adaptor { public: // Constructs a bit input stream to read from the given file. // // Parameters: // // filespec - name of the file to open // // Example: // // bifstream bif(input_file_name); // explicit bifstream(const char* filespec); bifstream(bifstream const&) = delete; private: std::ifstream base_; }; class bistringstream : public bistream { public: // Constructs a bit input stream from the given vector of bytes. // // Parameters: // // bytes - the vector of bytes // // Example: // // std::vector<uint8_t> v{255}; // bifstream bif(v); // explicit bistringstream(std::vector<uint8_t>); // Creates a bit input stream containing exactly the given bits. explicit bistringstream(std::initializer_list<bool>); bool eof() const override; bool good() const override; bistringstream(bistringstream const&) = delete; private: size_t bytes_index_; std::vector<uint8_t> bytes_; virtual bool get_next_byte(uint8_t&) override; }; // The bit input stream extraction operator; alias for `read(bool&)`. // // Params: // // - bif - the bit input stream to read from // - b - reference to store the bit that was read // // Returns: the same bit input stream, for method chaining // // Example: // // bool b1, b2, b3; // bif >> b1 >> b2 >> b3; // bistream& operator>>(bistream& bif, bool& b); /* * OUTPUT */ // A bit output stream, for writing individual bits to a file. class bostream { public: // Writes a bit to this bit output stream. // // Parameters: // // b - the bit to write // // Returns: the same bit output stream, for method chaining // // Example: // // bof.write(true); // virtual bostream& write(bool b) = 0; // Writes an `n`-bit big-endian representation of `value`, which // must have a numeric type, to this bit output sream. // // Parameters: // // <typename T> - the type of the value to write; must be numeric // value - the value to write // n - number of bits to write // // Returns: the same bit output stream, for method chaining // // Example: // // bof.write(22, 5); // writes 10110 // bof.write(22, 6); // writes 010110 // template<typename T> bostream& write_bits(T value, size_t n); // Determines the status of the bit output stream. // // Returns: `false` if an error has occurred; `true` otherwise // // Example: // // bof.write(b); // if (bof.good()) { // // we know the write succeeded // } // virtual bool good() const = 0; // The bit output stream boolean coercion operator, inserted, for // example, when a `bofstream` is used as a condition for an // `if`. Alias for `good()`. // // Returns: `false` if an error has occurred; `true` otherwise // // Example: // // bof.write(b); // if (bof) { // // we know the write succeeded // } // operator bool() const; virtual ~bostream() { } }; // Adapts any `std::ostream&` for use as a bit output stream. class bostream_adaptor : public bostream { public: // Constructs a bit output stream to write to the given output stream. // // Parameters: // // output_stream - the byte output stream to adapt // // Example: // // bostream_adaptor bos(output_stream); // explicit bostream_adaptor(std::ostream&); virtual bostream_adaptor& write(bool b) override; virtual bool good() const override; ~bostream_adaptor(); bostream_adaptor(bostream_adaptor const&) = delete; private: uint_fast8_t nbits_ = 0; uint8_t bitbuf_ = '\0'; std::ostream& stream_; void write_out_(); }; class bofstream : public bostream_adaptor { public: // Constructs a bit output stream to write to the given file. // // Parameters: // // filespec - name of the file to open or create // // Example: // // bofstream bof(output_file_name); // explicit bofstream(char const* filespec); bofstream(bofstream const&) = delete; private: std::ofstream base_; }; class bostringstream : public bostream { public: const std::vector<uint8_t>& data() const; virtual bostringstream& write(bool b) override; virtual bool good() const override; size_t bits_written() const; private: size_t bits_written_ = 0; std::vector<uint8_t> data_; }; // The bit output stream insertion operator; alias for // `write(bool)`. // // Params: // // - bof - the bit input stream to write to // - b - the bit to write // // Returns: the same bit output stream, for method chaining // // Example: // // bof << true << false << false; // bostream& operator<<(bostream& bof, bool b); /* * TEMPLATE IMPLEMENTATIONS */ template<typename T> bistream& bistream::read_bits(T& result, size_t n) { bool bit; result = 0; while (n--) { read(bit); result = (result << 1) | bit; } return *this; } inline bistream& operator>>(bistream& bif, bool& bit) { return bif.read(bit); } template<typename T> bostream& bostream::write_bits(T value, size_t n) { while (n--) { write(value >> n & 1); } return *this; } inline bostream& operator<<(bostream& bof, bool bit) { return bof.write(bit); } } // end namespace ipd
[ "robby@racket-lang.org" ]
robby@racket-lang.org
99e21bc74877fa15a060dc32d715b2b5b3e1ac55
ed67c832faf97804e303c49416c977acc342630a
/kdtree.cpp
8fd722e91bb7e0c633f1cf5ada92a238d5468119
[]
no_license
kb173/kdtree
e5d504326b8657e0aad139e25cb55a37946c29af
62e1ad0ce5e35f071401f5cda6fdb29d2ff6a003
refs/heads/master
2020-03-19T02:24:54.931613
2018-06-03T17:30:52
2018-06-03T17:30:52
135,626,472
0
0
null
null
null
null
UTF-8
C++
false
false
10,470
cpp
// // Created by karl on 31.05.18. // #include "kdtree.h" #include <cstdlib> #include <iostream> #include <cmath> #include <limits> // CONSTRUCTORS AND FUNCTIONS FOR CHILD CLASSES kdtree::node::node(double *np, int ndim) { // Constructor for node without values left or right p = new double[dimension]; // Deleted in destructor of tree for (int i = 0; i < dimension; i++) { p[i] = np[i]; // There it is } dim = ndim; left = nullptr; right = nullptr; } kdtree::rect::rect() { // Initialize origin and size vector to 0 origin = new double[dimension]; // Deleted in destructor end = new double[dimension]; // Deleted in destructor for (int i = 0; i < dimension; i++) { origin[i] = 0; end[i] = 0; } } void kdtree::rect::print() { cout << "Origin: ("; for (int i = 0; i < dimension; i++) { cout << origin[i] << ", "; } cout << "); " << "End: ("; for (int i = 0; i < dimension; i++) { cout << end[i] << ", "; } cout << ")" << endl; } kdtree::rect::~rect() { delete origin; delete end; delete this; } kdtree::circ::circ(double *orig, double rad) { origin = orig; radius = rad; } kdtree::circ::~circ() { delete origin; delete this; } kdtree::point_heap::heap_point::heap_point(double *p, double d) { point = new double[dimension]; // Deleted in destructor for (int i = 0; i < dimension; i++) { point[i] = p[i]; } dist = d; } kdtree::point_heap::heap_point::~heap_point() { } kdtree::point_heap::point_heap(int a) { amount = a; } bool kdtree::point_heap::add(double *p, double dist) { if (heap.size() < amount) { // Heap is not full yet, so insert regardless of points in heap heap.push(heap_point(p, dist)); return true; } if (heap.top().dist > dist) { // Distance of new point is smaller than distance of furthest point in heap heap.pop(); heap.push(heap_point(p, dist)); return true; } return false; // Heap is full and dist of new point is greater than dist of furthest point in heap } double **kdtree::point_heap::get_points() { auto **pts = new double *[amount]; // Needs to be deleted manually! int current = 0; while (!heap.empty()) { pts[current] = new double[dimension]; pts[current] = heap.top().point; heap.pop(); current++; } return pts; } double kdtree::point_heap::get_worst_dist() { // Return infinity if heap is not full, worst distance if full if (heap.size() < amount) return numeric_limits<double>::max(); return heap.top().dist; } // KD-TREE FUNCTIONS // PRIVATE FUNCTIONS kdtree::node *kdtree::insert_rec(kdtree::node *root, double *point, int depth) { // Recursively insert a new point cout << "Inserting " << point[0] << ", " << point[1] << endl; // Get current dimension based on depth; should go from 0 to dimension, then loop back to 0 int current_dim = depth % dimension; if (root == nullptr) { // Current node is null -> Create new node and return it (exit condition) cout << "Creating the node" << endl; auto *tmp = new node(point, depth); // Deleted in destructor of tree return tmp; } // Insert the new node left or right of the current node, based on the value at the current check dimension if (point[current_dim] > root->p[current_dim]) { std::cout << "Inserting right" << std::endl; root->right = insert_rec(root->right, point, ++depth); } else { std::cout << "Inserting left" << std::endl; root->left = insert_rec(root->left, point, ++depth); } return root; } bool kdtree::search_rec(kdtree::node *root, kdtree::rect *current_bounds, kdtree::point_heap *best, kdtree::circ *c) { cout << "Searching at node: " << root->p[0] << ", " << root->p[1] << endl; double dist = get_distance(root->p, c->origin); // Distance between current point and point we're searching for // Try inserting point into heap (true if heap is not full or point is better than worst point in heap) if (best->add(root->p, dist)) { c->radius = best->get_worst_dist(); // If insert was successful, get new worst distance } // Check on which side point is bool is_left = c->origin[root->dim] < root->p[root->dim]; // Get bounds for both sides auto *left_bounds = new rect(); // Both deleted by destructor auto *right_bounds = new rect(); for (int i = 0; i < dimension; i++) // Copy old bounds into new ones first { left_bounds->origin[i] = current_bounds->origin[i]; left_bounds->end[i] = current_bounds->end[i]; right_bounds->origin[i] = current_bounds->origin[i]; right_bounds->end[i] = current_bounds->end[i]; } // For the bounds of the section on the left, we need to move the end, since the right side drops out left_bounds->end[root->dim] = root->p[root->dim]; right_bounds->origin[root->dim] = root->p[root->dim]; cout << "Left bounds: " << endl; left_bounds->print(); cout << "Right bounds: " << endl; right_bounds->print(); // We need to go deeper if (is_left) // Searchpoint is on the left of current axis { // If the good path encloses all possible points, this becomes true and the worse path is not checked bool done = false; // Search at the obvious route first if (root->left) { done = search_rec(root->left, left_bounds, best, c); } // Also search the other side if the bounds overlap with the search circle if (!done && root->right && intersect(right_bounds, c)) { search_rec(root->right, right_bounds, best, c); } } else { // Same thing for the right side bool done = false; if (root->right) { done = search_rec(root->right, right_bounds, best, c); } if (!done && root->left && intersect(left_bounds, c)) { search_rec(root->left, left_bounds, best, c); } } // Exit condition: No node was either on the good side or intersected return within(current_bounds, c); } void kdtree::print_rec(kdtree::node *root, int depth) { cout << "Depth: " << depth << endl; cout << "Node with point: "; for (int i = 0; i < dimension; i++) { cout << root->p[i] << ", "; } cout << endl; if (root->left) { cout << "Left: " << endl; print_rec(root->left, depth + 1); } if (root->right) { cout << "Right: " << endl; print_rec(root->right, depth + 1); } } void kdtree::del_rec(kdtree::node *root) { if (root->left) { del_rec(root->left); } if (root->right) { del_rec(root->right); } delete root->p; delete root; } bool kdtree::intersect(kdtree::rect *r, kdtree::circ *c) { // Get closest point within rectangle to circle auto *clamped = new double[dimension]; // Deleted below for (int i = 0; i < dimension; i++) { // Make clamped[i] be between r->origin[i] and r->end[i] if (c->origin[i] < r->origin[i]) { clamped[i] = r->origin[i]; } else if (c->origin[i] > r->end[i]) { clamped[i] = r->end[i]; } else { clamped[i] = c->origin[i]; } } double dist = get_distance(clamped, c->origin); delete clamped; // If distance is smaller than the circle radius, that means they're intersecting return dist < c->radius; } bool kdtree::within(kdtree::rect *r, kdtree::circ *c) { // Check if closest point within circle to rectangle is within the rectangle for (int i = 0; i < dimension; i++) { if (r->origin[i] >= c->origin[i] + c->radius) // ex: |c->origin |+radius |r->origin { return false; } if (r->end[i] <= c->origin[i] - c->radius) // ex: |r->end |-radius |c->origin { return false; } } return true; } double kdtree::get_distance(double *p1, double *p2) { // Pythagoras double squared_sum = 0; for (int i = 0; i < dimension; i++) { squared_sum += pow(p1[i] - p2[i], 2); } return sqrt(squared_sum); } // PUBLIC FUNCTIONS kdtree::kdtree() { root = nullptr; bounds = new rect(); // Deleted in destructor of tree } void kdtree::insert(double *point) { // Handle how the overall bounds change due to this new point if (root == nullptr) { // Set bounds to just this point if it is the first inserted point bounds->origin = new double[dimension](); // Both deleted in destructor of tree bounds->end = new double[dimension](); for (int i = 0; i < dimension; i++) { bounds->origin[i] = point[i]; bounds->end[i] = point[i]; } } else { // If it is not the first point, update bounds to match new point for (int i = 0; i < dimension; i++) { if (point[i] < bounds->origin[i]) { bounds->origin[i] = point[i]; } else if (point[i] > bounds->end[i]) { bounds->end[i] = point[i]; } } } root = insert_rec(root, point, 0); // Debug info std::cout << "Insert successful!" << std::endl; std::cout << "New bounds: (" << bounds->origin[0] << ", " << bounds->origin[1] << ") "; std::cout << "(" << bounds->end[0] << ", " << bounds->end[1] << ") " << std::endl; } double **kdtree::search(double *point, int amount) { // Priority queue which holds the found points auto heap = new point_heap(amount); // Deleted below // Radius of circle is infinite as long as heap is not full auto circle = new circ(point, std::numeric_limits<double>::max()); search_rec(root, bounds, heap, circle); double **pts = heap->get_points(); delete heap; return pts; } void kdtree::print() { cout << "---------- Printing Tree ----------" << endl; print_rec(root, 0); cout << "-----------------------------------" << endl; } kdtree::~kdtree() { // Delete nodes del_rec(root); // Delete bounds delete bounds->origin; delete bounds->end; delete bounds; }
[ "karl.bittner@outlook.com" ]
karl.bittner@outlook.com
230618feceba828bf75bfad35af40e6d542211f6
90047daeb462598a924d76ddf4288e832e86417c
/third_party/WebKit/Source/platform/speech/PlatformSpeechSynthesisVoice.h
998f0a2eaff73da257c2a7302956d127323a2b90
[ "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0", "BSD-3-Clause", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft" ]
permissive
massbrowser/android
99b8c21fa4552a13c06bbedd0f9c88dd4a4ad080
a9c4371682c9443d6e1d66005d4db61a24a9617c
refs/heads/master
2022-11-04T21:15:50.656802
2017-06-08T12:31:39
2017-06-08T12:31:39
93,747,579
2
2
BSD-3-Clause
2022-10-31T10:34:25
2017-06-08T12:36:07
null
UTF-8
C++
false
false
3,033
h
/* * Copyright (C) 2013 Apple Computer, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef PlatformSpeechSynthesisVoice_h #define PlatformSpeechSynthesisVoice_h #include "platform/PlatformExport.h" #include "platform/wtf/PassRefPtr.h" #include "platform/wtf/RefCounted.h" #include "platform/wtf/text/WTFString.h" namespace blink { class PLATFORM_EXPORT PlatformSpeechSynthesisVoice final : public RefCounted<PlatformSpeechSynthesisVoice> { public: static PassRefPtr<PlatformSpeechSynthesisVoice> Create( const String& voice_uri, const String& name, const String& lang, bool local_service, bool is_default); static PassRefPtr<PlatformSpeechSynthesisVoice> Create(); const String& VoiceURI() const { return voice_uri_; } void SetVoiceURI(const String& voice_uri) { voice_uri_ = voice_uri; } const String& GetName() const { return name_; } void SetName(const String& name) { name_ = name; } const String& Lang() const { return lang_; } void SetLang(const String& lang) { lang_ = lang; } bool LocalService() const { return local_service_; } void SetLocalService(bool local_service) { local_service_ = local_service; } bool IsDefault() const { return default_; } void SetIsDefault(bool is_default) { default_ = is_default; } private: PlatformSpeechSynthesisVoice(const String& voice_uri, const String& name, const String& lang, bool local_service, bool is_default); PlatformSpeechSynthesisVoice(); String voice_uri_; String name_; String lang_; bool local_service_; bool default_; }; } // namespace blink #endif // PlatformSpeechSynthesisVoice_h
[ "xElvis89x@gmail.com" ]
xElvis89x@gmail.com
bd89d5a6657a7d17b4fdfb299745c9243d6b252b
971b2cea2d1c3001aadc8ca1a48110b7db1ed5f2
/plugins/gui/src/user_action/user_action_object.cpp
9830556023ca7f793b30ad4f2cfe902c28ef557e
[ "LicenseRef-scancode-warranty-disclaimer", "MIT" ]
permissive
emsec/hal
70ad2921739967d914dd458984bd7d6d497d3b0a
e4fae37bec9168a61100eacfda37a1f291b4d0be
refs/heads/master
2023-09-02T20:27:32.909426
2023-09-01T13:03:24
2023-09-01T13:03:24
169,076,171
510
72
MIT
2023-09-01T13:03:26
2019-02-04T12:37:20
C++
UTF-8
C++
false
false
4,344
cpp
#include "gui/user_action/user_action_object.h" #include "gui/selection_relay/selection_relay.h" #include <QMetaEnum> namespace hal { UserActionObjectType::ObjectType UserActionObjectType::fromString(const QString& s) { QMetaEnum me = QMetaEnum::fromType<ObjectType>(); for (int t = None; t < MaxObjectType; t++) if (s == me.key(t)) return static_cast<ObjectType>(t); return None; } QString UserActionObjectType::toString(ObjectType t) { QMetaEnum me = QMetaEnum::fromType<ObjectType>(); return QString(me.key(t)); } UserActionObjectType::ObjectType UserActionObjectType::fromHalType(hal::ItemType itp) { ObjectType retval = None; switch (itp) { case ItemType::Module: retval = Module; break; case ItemType::Gate: retval = Gate; break; case ItemType::Net: retval = Net; break; default: break; } return retval; } hal::ItemType UserActionObjectType::toHalType(UserActionObjectType::ObjectType t) { hal::ItemType retval = ItemType::None; switch (t) { case Module: retval = ItemType::Module; break; case Gate: retval = ItemType::Gate; break; case Net: retval = ItemType::Net; break; default: break; } return retval; } UserActionObjectType::ObjectType UserActionObjectType::fromSelectionType(SelectionRelay::ItemType itp) { ObjectType retval = None; switch (itp) { case SelectionRelay::ItemType::Module: retval = Module; break; case SelectionRelay::ItemType::Gate: retval = Gate; break; case SelectionRelay::ItemType::Net: retval = Net; break; default: break; } return retval; } SelectionRelay::ItemType UserActionObjectType::toSelectionType(UserActionObjectType::ObjectType t) { SelectionRelay::ItemType retval = SelectionRelay::ItemType::None; switch (t) { case Module: retval = SelectionRelay::ItemType::Module; break; case Gate: retval = SelectionRelay::ItemType::Gate; break; case Net: retval = SelectionRelay::ItemType::Net; break; default: break; } return retval; } UserActionObjectType::ObjectType UserActionObjectType::fromNodeType(Node::NodeType ntp) { ObjectType retval = None; switch (ntp) { case Node::Module: retval = Module; break; case Node::Gate: retval = Gate; break; default: break; } return retval; } Node::NodeType UserActionObjectType::toNodeType(UserActionObjectType::ObjectType t) { Node::NodeType retval = Node::None; switch (t) { case Module: retval = Node::Module; break; case Gate: retval = Node::Gate; break; default: break; } return retval; } QString UserActionObject::debugDump() const { if (mType==UserActionObjectType::None) return QString("-"); // None, Module, Gate, Net, Grouping, Netlist, Context, Port const char* cType = "-mgn{Lxp"; return QString("%1%2%3").arg(cType[mType]).arg(mId) .arg(mType==UserActionObjectType::Grouping? "}" : ""); } void UserActionObject::writeToXml(QXmlStreamWriter& xmlOut) const { if (mType==UserActionObjectType::None) return; xmlOut.writeAttribute("id", QString::number(mId)); xmlOut.writeAttribute("type",UserActionObjectType::toString(mType)); } void UserActionObject::readFromXml(QXmlStreamReader& xmlIn) { QStringRef srId = xmlIn.attributes().value("id"); if (srId.isNull() || srId.isEmpty()) return; QStringRef srTp = xmlIn.attributes().value("type"); if (srTp.isNull() || srTp.isEmpty()) return; bool ok = false; mId = srId.toInt(&ok); if (!ok) return; mType = UserActionObjectType::fromString(srTp.toString()); } }
[ "joern274@gmail.com" ]
joern274@gmail.com
6106194a7cc6a0c885e5466e435c0472c05f9a8e
51418ae6005e41ae19b314ca0416331dfba4f21c
/tan/tanlibrary/src/clFFT-master/src/tests/fftw_transform.h
2a80f86b916157edd5b2af163b22d559f6f30b98
[ "Apache-2.0", "MIT" ]
permissive
GPUOpen-LibrariesAndSDKs/TAN
ead68a3dd2d8e3a3678ada593ef44ce55ab7d54e
690ed6a92c594f4ba3a26d1c8b77dbff386c9b04
refs/heads/beta-cross-platform
2023-04-02T08:27:50.622740
2020-10-07T18:34:38
2020-10-07T18:34:38
65,836,265
141
32
MIT
2020-03-26T16:08:01
2016-08-16T16:33:14
C++
UTF-8
C++
false
false
16,933
h
/* ************************************************************************ * Copyright 2013 Advanced Micro Devices, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ************************************************************************/ #pragma once #if !defined( CLFFT_FFTWTRANSFORM_H ) #define CLFFT_FFTWTRANSFORM_H #include <vector> #include "fftw3.h" #include "buffer.h" #include "../client/openCL.misc.h" // we need this to leverage the CLFFT_INPLACE and _OUTOFPLACE enums enum fftw_direction {forward=-1, backward=+1}; enum fftw_transform_type {c2c, r2c, c2r}; template <typename T, typename fftw_T> class fftw_wrapper {}; template <> class fftw_wrapper<float, fftwf_complex> { public: fftwf_plan plan; void make_plan( int x, int y, int z, int num_dimensions, int batch_size, fftwf_complex* input_ptr, fftwf_complex* output_ptr, int num_points_in_single_batch, fftw_direction direction, fftw_transform_type type ) { // we need to swap x,y,z dimensions because of a row-column discrepancy between clfft and fftw int lengths[max_dimension] = {z, y, x}; if( type == c2c ) { plan = fftwf_plan_many_dft( num_dimensions, // because we swapped dimensions up above, we need to start // at the end of the array and count backwards to get the // correct dimensions passed in to fftw // e.g. if max_dimension is 3 and number_of_dimensions is 2: // lengths = {dimz, dimy, dimx} // lengths + 3 - 2 = lengths + 1 // so we will skip dimz and pass in a pointer to {dimy, dimx} lengths+max_dimension-num_dimensions, batch_size, input_ptr, NULL, 1, num_points_in_single_batch, output_ptr, NULL, 1, num_points_in_single_batch, direction, FFTW_ESTIMATE); } else if( type == r2c ) { plan = fftwf_plan_many_dft_r2c( num_dimensions, // because we swapped dimensions up above, we need to start // at the end of the array and count backwards to get the // correct dimensions passed in to fftw // e.g. if max_dimension is 3 and number_of_dimensions is 2: // lengths = {dimz, dimy, dimx} // lengths + 3 - 2 = lengths + 1 // so we will skip dimz and pass in a pointer to {dimy, dimx} lengths+max_dimension-num_dimensions, batch_size, reinterpret_cast<float*>(input_ptr), NULL, 1, num_points_in_single_batch, output_ptr, NULL, 1, (x/2 + 1) * y * z, FFTW_ESTIMATE); } else if( type == c2r ) { plan = fftwf_plan_many_dft_c2r( num_dimensions, // because we swapped dimensions up above, we need to start // at the end of the array and count backwards to get the // correct dimensions passed in to fftw // e.g. if max_dimension is 3 and number_of_dimensions is 2: // lengths = {dimz, dimy, dimx} // lengths + 3 - 2 = lengths + 1 // so we will skip dimz and pass in a pointer to {dimy, dimx} lengths+max_dimension-num_dimensions, batch_size, input_ptr, NULL, 1, (x/2 + 1) * y * z, reinterpret_cast<float*>(output_ptr), NULL, 1, num_points_in_single_batch, FFTW_ESTIMATE); } else throw std::runtime_error( "invalid transform type in <float>make_plan" ); } fftw_wrapper( int x, int y, int z, int num_dimensions, int batch_size, fftwf_complex* input_ptr, fftwf_complex* output_ptr, int num_points_in_single_batch, fftw_direction direction, fftw_transform_type type ) { make_plan( x, y, z, num_dimensions, batch_size, input_ptr, output_ptr, num_points_in_single_batch, direction, type ); } void destroy_plan() { fftwf_destroy_plan(plan); } ~fftw_wrapper() { destroy_plan(); } void execute() { fftwf_execute(plan); } }; template <> class fftw_wrapper<double, fftw_complex> { public: fftw_plan plan; void make_plan( int x, int y, int z, int num_dimensions, int batch_size, fftw_complex* input_ptr, fftw_complex* output_ptr, int num_points_in_single_batch, fftw_direction direction, fftw_transform_type type ) { // we need to swap x,y,z dimensions because of a row-column discrepancy between clfft and fftw int lengths[max_dimension] = {z, y, x}; if( type == c2c ) { plan = fftw_plan_many_dft( num_dimensions, // because we swapped dimensions up above, we need to start // at the end of the array and count backwards to get the // correct dimensions passed in to fftw // e.g. if max_dimension is 3 and number_of_dimensions is 2: // lengths = {dimz, dimy, dimx} // lengths + 3 - 2 = lengths + 1 // so we will skip dimz and pass in a pointer to {dimy, dimx} lengths+max_dimension-num_dimensions, batch_size, input_ptr, NULL, 1, num_points_in_single_batch, output_ptr, NULL, 1, num_points_in_single_batch, direction, FFTW_ESTIMATE); } else if( type == r2c ) { plan = fftw_plan_many_dft_r2c( num_dimensions, // because we swapped dimensions up above, we need to start // at the end of the array and count backwards to get the // correct dimensions passed in to fftw // e.g. if max_dimension is 3 and number_of_dimensions is 2: // lengths = {dimz, dimy, dimx} // lengths + 3 - 2 = lengths + 1 // so we will skip dimz and pass in a pointer to {dimy, dimx} lengths+max_dimension-num_dimensions, batch_size, reinterpret_cast<double*>(input_ptr), NULL, 1, num_points_in_single_batch, output_ptr, NULL, 1, (x/2 + 1) * y * z, FFTW_ESTIMATE); } else if( type == c2r ) { plan = fftw_plan_many_dft_c2r( num_dimensions, // because we swapped dimensions up above, we need to start // at the end of the array and count backwards to get the // correct dimensions passed in to fftw // e.g. if max_dimension is 3 and number_of_dimensions is 2: // lengths = {dimz, dimy, dimx} // lengths + 3 - 2 = lengths + 1 // so we will skip dimz and pass in a pointer to {dimy, dimx} lengths+max_dimension-num_dimensions, batch_size, input_ptr, NULL, 1, (x/2 + 1) * y * z, reinterpret_cast<double*>(output_ptr), NULL, 1, num_points_in_single_batch, FFTW_ESTIMATE); } else throw std::runtime_error( "invalid transform type in <double>make_plan" ); } fftw_wrapper( int x, int y, int z, int num_dimensions, int batch_size, fftw_complex* input_ptr, fftw_complex* output_ptr, int num_points_in_single_batch, fftw_direction direction, fftw_transform_type type ) { make_plan( x, y, z, num_dimensions, batch_size, input_ptr, output_ptr, num_points_in_single_batch, direction, type ); } void destroy_plan() { fftw_destroy_plan(plan); } ~fftw_wrapper() { destroy_plan(); } void execute() { fftw_execute(plan); } }; /*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/ /*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/ template <typename T, typename fftw_T> class fftw { private: static const size_t tightly_packed_distance = 0; std::vector<size_t> _lengths; fftw_direction _direction; fftw_transform_type _type; layout::buffer_layout_t _input_layout, _output_layout; size_t _batch_size; buffer<T> input; buffer<T> output; fftw_wrapper<T, fftw_T> fftw_guts; T _forward_scale, _backward_scale; public: /*****************************************************/ fftw( const size_t number_of_dimensions_in, const size_t* lengths_in, const size_t batch_size_in, fftw_transform_type type_in ) : _lengths( initialized_lengths( number_of_dimensions_in, lengths_in ) ) , _direction( forward ) , _type( type_in ) , _input_layout( initialized_input_layout() ) , _output_layout( initialized_output_layout() ) , _batch_size( batch_size_in ) , input( number_of_dimensions_in, lengths_in, NULL, batch_size_in, tightly_packed_distance, _input_layout, CLFFT_OUTOFPLACE ) , output( number_of_dimensions_in, lengths_in, NULL, batch_size_in, tightly_packed_distance, _output_layout, CLFFT_OUTOFPLACE ) , _forward_scale( 1.0f ) , _backward_scale( 1.0f/T(input.number_of_data_points_single_batch()) ) , fftw_guts( (int)_lengths[dimx], (int)_lengths[dimy], (int)_lengths[dimz], (int)number_of_dimensions_in, (int)batch_size_in, reinterpret_cast<fftw_T*>(input_ptr()), reinterpret_cast<fftw_T*>(output_ptr()), (int)(_lengths[dimx]*_lengths[dimy]*_lengths[dimz]), _direction, _type) { clear_data_buffer(); } /*****************************************************/ ~fftw() {} /*****************************************************/ layout::buffer_layout_t initialized_input_layout() { if( _type == c2c ) return layout::complex_interleaved; else if( _type == r2c ) return layout::real; else if( _type == c2r ) return layout::hermitian_interleaved; else throw std::runtime_error( "invalid transform type in initialized_input_layout" ); } /*****************************************************/ layout::buffer_layout_t initialized_output_layout() { if( _type == c2c ) return layout::complex_interleaved; else if( _type == r2c ) return layout::hermitian_interleaved; else if( _type == c2r ) return layout::real; else throw std::runtime_error( "invalid transform type in initialized_input_layout" ); } /*****************************************************/ std::vector<size_t> initialized_lengths( const size_t number_of_dimensions, const size_t* lengths_in ) { std::vector<size_t> lengths( 3, 1 ); // start with 1, 1, 1 for( size_t i = 0; i < number_of_dimensions; i++ ) { lengths[i] = lengths_in[i]; } return lengths; } /*****************************************************/ T* input_ptr() { if( _input_layout == layout::real ) return input.real_ptr(); else if( _input_layout == layout::complex_interleaved ) return input.interleaved_ptr(); else if( _input_layout == layout::hermitian_interleaved ) return input.interleaved_ptr(); else throw std::runtime_error( "invalid layout in fftw::input_ptr" ); } /*****************************************************/ T* output_ptr() { if( _output_layout == layout::real ) return output.real_ptr(); else if( _output_layout == layout::complex_interleaved ) return output.interleaved_ptr(); else if( _output_layout == layout::hermitian_interleaved ) return output.interleaved_ptr(); else throw std::runtime_error( "invalid layout in fftw::output_ptr" ); } // you must call either set_forward_transform() or // set_backward_transform() before setting the input buffer /*****************************************************/ void set_forward_transform() { if( _type != c2c ) throw std::runtime_error( "do not use set_forward_transform() except with c2c transforms" ); if( _direction != forward ) { _direction = forward; fftw_guts.destroy_plan(); fftw_guts.make_plan((int)_lengths[dimx], (int)_lengths[dimy], (int)_lengths[dimz], (int)input.number_of_dimensions(), (int)input.batch_size(), reinterpret_cast<fftw_T*>(input.interleaved_ptr()), reinterpret_cast<fftw_T*>(output.interleaved_ptr()), (int)(_lengths[dimx]*_lengths[dimy]*_lengths[dimz]), _direction, _type); } } /*****************************************************/ void set_backward_transform() { if( _type != c2c ) throw std::runtime_error( "do not use set_backward_transform() except with c2c transforms" ); if( _direction != backward ) { _direction = backward; fftw_guts.destroy_plan(); fftw_guts.make_plan((int)_lengths[dimx], (int)_lengths[dimy], (int)_lengths[dimz], (int)input.number_of_dimensions(), (int)input.batch_size(), reinterpret_cast<fftw_T*>(input.interleaved_ptr()), reinterpret_cast<fftw_T*>(output.interleaved_ptr()), (int)(_lengths[dimx]*_lengths[dimy]*_lengths[dimz]), _direction, _type); } } /*****************************************************/ size_t size_of_data_in_bytes() { return input.size_in_bytes(); } /*****************************************************/ void forward_scale( T in ) { _forward_scale = in; } /*****************************************************/ void backward_scale( T in ) { _backward_scale = in; } /*****************************************************/ T forward_scale() { return _forward_scale; } /*****************************************************/ T backward_scale() { return _backward_scale; } /*****************************************************/ void set_all_data_to_value( T value ) { input.set_all_to_value( value ); } /*****************************************************/ void set_all_data_to_value( T real_value, T imag_value ) { input.set_all_to_value( real_value, imag_value ); } /*****************************************************/ void set_data_to_sawtooth(T max) { input.set_all_to_sawtooth( max ); } /*****************************************************/ void set_data_to_increase_linearly() { input.set_all_to_linear_increase(); } /*****************************************************/ void set_data_to_impulse() { input.set_all_to_impulse(); } /*****************************************************/ // yes, the "super duper global seed" is horrible // alas, i'll have TODO it better later void set_data_to_random() { input.set_all_to_random_data( 10, super_duper_global_seed ); } /*****************************************************/ void set_input_to_buffer( buffer<T> other_buffer ) { input = other_buffer; } void set_output_postcallback() { //postcallback user data buffer<T> userdata( output.number_of_dimensions(), output.lengths(), output.strides(), output.batch_size(), output.distance(), layout::real , CLFFT_INPLACE ); userdata.set_all_to_random_data(_lengths[0], 10); output *= userdata; } void set_input_precallback() { //precallback user data buffer<T> userdata( input.number_of_dimensions(), input.lengths(), input.strides(), input.batch_size(), input.distance(), layout::real , CLFFT_INPLACE ); userdata.set_all_to_random_data(_lengths[0], 10); input *= userdata; } void set_input_precallback_special() { //precallback user data buffer<T> userdata( input.number_of_dimensions(), input.lengths(), input.strides(), input.batch_size(), input.distance(), layout::real , CLFFT_INPLACE ); userdata.set_all_to_random_data(_lengths[0], 10); input.multiply_3pt_average(userdata); } void set_output_postcallback_special() { //postcallback user data buffer<T> userdata( output.number_of_dimensions(), output.lengths(), output.strides(), output.batch_size(), output.distance(), layout::real , CLFFT_INPLACE ); userdata.set_all_to_random_data(_lengths[0], 10); output.multiply_3pt_average(userdata); } /*****************************************************/ void clear_data_buffer() { if( _input_layout == layout::real ) { set_all_data_to_value( 0.0f ); } else { set_all_data_to_value( 0.0f, 0.0f ); } } /*****************************************************/ void transform() { fftw_guts.execute(); if( _type == c2c ) { if( _direction == forward ) { output.scale_data( static_cast<T>( forward_scale( ) ) ); } else if( _direction == backward ) { output.scale_data( static_cast<T>( backward_scale( ) ) ); } } else if( _type == r2c ) { output.scale_data( static_cast<T>( forward_scale( ) ) ); } else if( _type == c2r ) { output.scale_data( static_cast<T>( backward_scale( ) ) ); } else throw std::runtime_error( "invalid transform type in fftw::transform()" ); } /*****************************************************/ buffer<T> & result() { return output; } /*****************************************************/ buffer<T> & input_buffer() { return input; } }; #endif
[ "fang.he@amd.com" ]
fang.he@amd.com
708877e824dcbf9662e1ac2358d4df0cec04cb63
36e79e538d25d851744597f7f76afffc13d1f3f2
/VideoCollage_2012/FrameJSegmentor.h
090086226cb80ba9432068a1ede10b70783ec27a
[]
no_license
nagyistoce/VideoCollage
fb5cea8244e7d06b7bc19fa5661bce515ec7d725
60d715d4a3926040855f6e0b4b4e23663f959ac5
refs/heads/master
2021-01-16T06:05:03.056906
2014-07-03T06:20:09
2014-07-03T06:20:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,860
h
/******************************************************************************\ Microsoft Research Asia Copyright (c) 2007 Microsoft Corporation Module Name: Video Sdk Abstract: This header file provide the template class for frame region feature factory. Notes: History: Created on 08/01/2007 by linjuny@microsoft.com Updated on 10/24/2013 by v-aotang@microsoft.com \******************************************************************************/ #pragma once #include <memory> namespace ImageAnalysis { class IGrayImage; class CJSeg; } namespace VideoAnalysis { class CFrame; } ///Special for jseg, we cache the recently caculated segmentor region and numbers here class CFrameJSegmentor { public: ///NOTICE: Initialize MUST be called before any call to GetInstance, or you'll get a NULL ///point of CFrameSegmentor static void Initialize(int numberOfScale = -1, float quanThresh = -1, float mergeThresh = 0.4); ///it's a singleton static CFrameJSegmentor * GetInstance(); ///get the segment detected by jseg ImageAnalysis::IGrayImage* GetSegment(const VideoAnalysis::CFrame & frame); ///get the number of segment unsigned int GetSegmentNum(const VideoAnalysis::CFrame & frame); ~CFrameJSegmentor(); private: CFrameJSegmentor(int numberOfScale = -1, float quanThresh = -1, float mergeThresh = 0.4); ///!!!it is not implemented, which means don't allow any kind of copy CFrameJSegmentor(const CFrameJSegmentor &); CFrameJSegmentor & operator = (const CFrameJSegmentor &); ///do the segment detect by jseg void DetectSemgment(const VideoAnalysis::CFrame & frame); private: static std::auto_ptr<CFrameJSegmentor> m_Segmentor; ImageAnalysis::CJSeg * m_SegmentDetector; ImageAnalysis::IGrayImage* m_RegionMap; unsigned int m_SegmentNum; int m_FrameId; };
[ "junx1992@gmail.com" ]
junx1992@gmail.com
10fb0f5cd33173164697b8d44ef9936c8c1fb07d
4ef962706479e36b2726d6127484d3e37437b8ba
/Source/Csmith/src/Variable.h
3adfde765043ffc7185311f5ea3f80b4e759c19e
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
tamiraviv/Csmith-plus-plus
a2e411c5e54997bb64664959e279b67953b5f7df
47a5d9c60ddfc1adad67ab59f5ca0482bad1497d
refs/heads/master
2021-08-23T06:19:33.685471
2017-12-03T21:29:01
2017-12-03T21:29:01
112,965,309
0
0
null
null
null
null
UTF-8
C++
false
false
9,683
h
// -*- mode: C++ -*- // // Copyright (c) 2007, 2008, 2009, 2010, 2011, 2013 The University of Utah // All rights reserved. // // This file is part of `csmith', a random generator of C programs. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // // * Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. // // This file was derived from a random program generator written by Bryan // Turner. The attributions in that file was: // // Random Program Generator // Bryan Turner (bryan.turner@pobox.com) // July, 2005 // #ifndef VARIABLE_H #define VARIABLE_H /////////////////////////////////////////////////////////////////////////////// #include <ostream> #include <sstream> #include <string> #include <vector> #include <unordered_map> using namespace std; #include "Effect.h" #include "Type.h" #include "CVQualifiers.h" #include "StringUtils.h" class CGContext; class Expression; class Function; class Block; class Lhs; class ArrayVariable; class Variable { friend class VariableSelector; friend class ArrayVariable; public: static Variable *CreateVariable(const std::string &name, const Type *type, const Expression* init, const CVQualifiers* qfer, const Type* execute_type = nullptr); static Variable *CreateVariable(const std::string &name, const Type *type, bool isConst, bool isVolatile, bool isAuto, bool isStatic, bool isRegister, bool isBitfield, const Variable* isFieldVarOf, const Type* execute_type = nullptr); static Variable *CreateVariable(const std::string &name, const Type *type, const vector<bool>& isConsts, const vector<bool>& isVolatiles, bool isAuto, bool isStatic, bool isRegister, bool isBitfield, const Variable* isFieldVarOf, const Type* execute_type = nullptr); static void doFinalization(void); virtual ~Variable(void); virtual bool is_global(void) const; virtual bool is_local(void) const; virtual bool is_visible_local(const Block* blk) const; virtual size_t get_dimension(void) const { return 0;} bool is_visible(const Block* blk) const { return is_global() || is_visible_local(blk);} bool is_argument(void) const; bool is_tmp_var(void) const; bool is_const(void) const; bool is_volatile(void) const; bool is_access_once(void) const { return isAccessOnce; } bool is_const_after_deref(int deref_level) const; bool is_volatile_after_deref(int deref_level) const; bool is_packed_aggregate_field_var() const; bool has_field_var(const Variable* v) const; bool has_access(const Type*) const; bool is_field_var(void) const { return field_var_of != 0; }; const Variable* get_top_container(void) const; const Variable* get_container_union(void) const; int get_field_id(void) const; bool is_union_field(void) const { return field_var_of != 0 && field_var_of->type->eType == eUnion; }; bool is_inside_union_field(void) const { return is_union_field() || (field_var_of && field_var_of->is_inside_union_field()); } bool is_packed_after_bitfield(void) const; bool is_array_field(void) const; bool is_virtual(void) const; bool is_aggregate(void) const { return type && type->is_aggregate(); } bool match(const Variable* v) const; bool loose_match(const Variable* v) const; bool is_pointer(void) const { return type && type->eType == ePointer;} bool is_rv(void) const { return name.find("_rv") != string::npos; } // Ilya: problamatic code with new naming convention // int get_seq_num(void) const; void find_pointer_fields(vector<const Variable*>& ptr_fields) const; virtual std::string get_actual_name() const; std::string to_string(void) const; std::vector<std::string> deputy_annotation(void) const; // ISSUE: we treat volatiles specially bool compatible(const Variable *v) const; const Variable* get_named_var(void) const; const Variable* match_var_name(const string& vname) const; virtual void hash(std::ostream& out) const; virtual const Variable* get_collective(void) const; virtual const ArrayVariable* get_array(string& field) const; virtual int get_index_vars(vector<const Variable*>& /* vars */) const { return 0;} /////////////////////////////////////////////////////////////////////// virtual void Output(std::ostream &) const; int output_runtime_value(ostream &out, string prefix, string suffix, int indent, bool multi_lines=false) const; int output_addressable_name(ostream &out, int indent) const; int output_volatile_address(ostream &out, int indent, const string &fp_string, vector<string> &seen_names) const; int output_volatile_fprintf(ostream &out, int indent, const string &name, const string &sizeof_string, const string &fp_string) const; bool is_seen_name(vector<std::string> &seen_names, const std::string &name) const; bool is_valid_volatile(void) const; int output_value_dump(ostream &out, string prefix, int indent) const; void OutputAddrOf(std::ostream &) const; void OutputForComment(std::ostream &) const; virtual void OutputDef(std::ostream &out, int indent) const; virtual void OutputDecl(std::ostream &) const; virtual void output_qualified_type(std::ostream &out) const; virtual void OutputLowerBound(std::ostream &) const; virtual void OutputUpperBound(std::ostream &) const; static size_t GetMaxArrayDimension(const vector<Variable*>& vars); vector<Variable *> field_vars; // field variables for struct/unions vector<eAccess> field_vars_access; unordered_map<string, int> indexOfFieldVars; unordered_map<const Variable *, int> varIndexOfFieldVars; const std::string name; const Type *type; const Expression *init; // Storage-class specifiers. const bool isAuto; // bool isExtern; const bool isStatic; const bool isRegister; const bool isBitfield_; // expanded from a full-bitfield struct var bool isAddrTaken; bool isAccessOnce; const Variable* field_var_of; //expanded from a struct/union const bool isArray; const CVQualifiers qfer; static std::vector<const Variable*> &get_new_ctrl_vars(); static std::vector<const Variable*> &get_last_ctrl_vars(); static const char sink_var_name[]; private: Variable(const std::string &name, const Type *type, const Expression* init, const CVQualifiers* qfer); Variable(const std::string &name, const Type *type, const Expression* init, const CVQualifiers* qfer, const Variable* isFieldVarOf, bool isArray); Variable(const std::string &name, const Type *type, const vector<bool>& isConsts, const vector<bool>& isVolatiles, bool isAuto, bool isStatic, bool isRegister, bool isBitfield, const Variable* isFieldVarOf); static std::vector<const Variable*>& new_ctrl_vars(void); static std::vector< std::vector<const Variable*>* > ctrl_vars_vectors; static unsigned long ctrl_vars_count; void create_field_vars(const Type* type,const Type* execute_type=nullptr); }; void OutputVariableList(const std::vector<Variable*> &var, std::ostream &out, int indent = 0); void OutputVariableDeclList(const std::vector<Variable*> &var, std::ostream &out, std::string prefix = "", int indent = 0); void OutputArrayInitializers(const vector<Variable*>& vars, std::ostream &out, int indent); void OutputArrayCtrlVars(const vector<const Variable*>& ctrl_vars, std::ostream &out, size_t dimen, int indent); void OutputVolatileAddress(const vector<Variable*> &vars, std::ostream &out, int indent, const string &fp_string); void MapVariableList(const vector<Variable*> &var, std::ostream &out, int (*func)(Variable *var, std::ostream *pOut)); int HashVariable(Variable *var, std::ostream *pOut); int find_variable_in_set(const vector<const Variable*>& set, const Variable* v); int find_variable_in_set(const vector<Variable*>& set, const Variable* v); int find_field_variable_in_set(const vector<const Variable*>& set, const Variable* v); bool is_variable_in_set(const vector<const Variable*>& set, const Variable* v); bool add_variable_to_set(vector<const Variable*>& set, const Variable* v); bool add_variables_to_set(vector<const Variable*>& set, const vector<const Variable*>& new_set); bool equal_variable_sets(const vector<const Variable*>& set1, const vector<const Variable*>& set2); bool sub_variable_sets(const vector<const Variable*>& set1, const vector<const Variable*>& set2); void combine_variable_sets(const vector<const Variable*>& set1, const vector<const Variable*>& set2, vector<const Variable*>& set_all); void remove_field_vars(vector<const Variable*>& set); /////////////////////////////////////////////////////////////////////////////// #endif // VARIABLE_H // Local Variables: // c-basic-offset: 4 // tab-width: 4 // End: // End of file.
[ "tamiraviv@users.noreply.github.com" ]
tamiraviv@users.noreply.github.com
342b47717944c020a81c0181fd364990b69793de
49163923787cda228de48ba0c454500602d6e51e
/tests/test_array.cpp
473eee096b0583a7460cbb65a78c28ad1f5d0332
[]
no_license
flplv/fl-lib
bbd2c4f59546f5a92c6649db638556ad9616ed1c
b6f4a553b72b0d27362babd4918d55bda1a636dd
refs/heads/master
2020-05-23T07:58:48.912005
2017-04-19T19:13:22
2017-04-19T19:13:22
80,478,942
4
0
null
null
null
null
UTF-8
C++
false
false
2,519
cpp
#include "catch.hpp" #include "fff.hpp" #include <fl-lib.hpp> #include <climits> DECLARE_FAKE_VOID_FUNC (freefunc, int); DEFINE_FAKE_VOID_FUNC (freefunc, int); static bool compare (int element, int seed) { return element == seed; } TEST_CASE("fl_array") { RESET_FAKE (freefunc); fl_array_t cut; int buffer[5 + 1]; buffer[5] = 0; fl_array_init(&cut, 5); SECTION("Initialization") { CHECK (5 == cut.max); CHECK (0 == cut.top); } SECTION("Insert remove free and find") { fl_array_insert(&cut, buffer, 10); CHECK (10 == buffer[0]); fl_array_insert(&cut, buffer, 11); CHECK (11 == buffer[1]); fl_array_insert(&cut, buffer, 12); CHECK (12 == buffer[2]); fl_array_insert(&cut, buffer, 13); CHECK (13 == buffer[3]); CHECK (4 == cut.top); CHECK (false == fl_array_full(&cut)); fl_array_insert(&cut, buffer, 14); CHECK (14 == buffer[4]); CHECK (cut.max == cut.top); CHECK (true == fl_array_full(&cut)); /* Extra insert should replace last */ fl_array_insert(&cut, buffer, 14); CHECK (14 == buffer[4]); CHECK (0 == buffer[5]); /* Now we remove one from the middle */ fl_array_remove(&cut, buffer, 3); CHECK (10 == buffer[0]); CHECK (11 == buffer[1]); CHECK (12 == buffer[2]); CHECK (14 == buffer[3]); CHECK (0 == buffer[5]); CHECK (4 == cut.top); /* And then we remove an invalid position, nothing should happen */ fl_array_remove(&cut, buffer, 312); CHECK (10 == buffer[0]); CHECK (11 == buffer[1]); CHECK (12 == buffer[2]); CHECK (14 == buffer[3]); CHECK (0 == buffer[5]); CHECK (4 == cut.top); /* Now we remove another with freefunc */ fl_array_free(&cut, buffer, 1, freefunc); CHECK (1 == freefunc_fake.call_count); CHECK (10 == buffer[0]); CHECK (12 == buffer[1]); CHECK (14 == buffer[2]); CHECK (0 == buffer[5]); CHECK (3 == cut.top); /* Lets do a little of searching */ int pos = fl_array_find(&cut, buffer, compare, 14); CHECK (2 == pos); pos = fl_array_find(&cut, buffer, compare, 23141241); CHECK (-1 == pos); /* bye bye array! */ fl_array_clear(&cut); CHECK (5 == cut.max); CHECK (0 == cut.top); } fl_array_deinit(&cut); };
[ "felipelav@gmail.com" ]
felipelav@gmail.com
cf3a1a08f05fa84b6d6d1f2b470efc8d2dc4f65c
ea273a0d5a4f56a1da8b6366e8e1e3712a9efd47
/External/Renderer/acl/decompression/impl/decompression_context_selector.h
594f8799f8a92bcd175d5df96d918ecca17dfa34
[ "MIT" ]
permissive
cofenberg/unrimp
c31eb36ebde09db70173a154be518925ba192d9a
3d4717d0742a5bc466321905278e0110330df070
refs/heads/master
2022-05-27T05:20:48.463362
2022-05-21T08:15:15
2022-05-21T08:15:15
7,425,818
213
22
null
null
null
null
UTF-8
C++
false
false
2,440
h
#pragma once //////////////////////////////////////////////////////////////////////////////// // The MIT License (MIT) // // Copyright (c) 2020 Nicholas Frechette & Animation Compression Library contributors // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. //////////////////////////////////////////////////////////////////////////////// #include "acl/core/impl/compiler_utils.h" #include "acl/decompression/impl/scalar_track_decompression.h" #include "acl/decompression/impl/transform_track_decompression.h" #include "acl/decompression/impl/universal_track_decompression.h" ACL_IMPL_FILE_PRAGMA_PUSH namespace acl { namespace acl_impl { ////////////////////////////////////////////////////////////////////////// // Helper struct to choose the decompression context type based on what tracks we support template<bool supports_scalar_tracks, bool supports_transform_tracks> struct persistent_decompression_context_selector {}; template<> struct persistent_decompression_context_selector<true, false> { using type = persistent_scalar_decompression_context_v0; }; template<> struct persistent_decompression_context_selector<false, true> { using type = persistent_transform_decompression_context_v0; }; template<> struct persistent_decompression_context_selector<true, true> { using type = persistent_universal_decompression_context; }; } } ACL_IMPL_FILE_PRAGMA_POP
[ "cofenberg@gmail.com" ]
cofenberg@gmail.com
314fcea687a12ef0874e82c0ed5f88db3b9d895f
2e22b6356c57954aeed9327aea2f7b9bfdaadd3d
/Land.cpp
eea5549cc231beccdab0323324bfcc3b542d65b3
[]
no_license
SaizS/WinAPIProject
96cd0bea0229f71abad38e564d078de8ff7518a8
f5a2fb725d548b69503957f1f7b166d7b6d6a3c9
refs/heads/master
2023-09-04T00:07:34.365004
2021-10-23T15:54:02
2021-10-23T15:54:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
379
cpp
#include "framework.h" Land::Land() { land = IMAGE->Add(L"Images/BackGround/land.bmp", 1176, 224, RGB(248, 0, 248)); rect = new Rect(WIN_WIDTH, WIN_HEIGHT * 0.5f, WIN_WIDTH * 2.0f, WIN_HEIGHT); } Land::~Land() { delete rect; } void Land::Render(HDC hdc) { land->Render(hdc, *rect); } void Land::MoveMap(float val) { if(rect->Right() > WIN_WIDTH) rect->pos.x -= val; }
[ "skqudwls123@gmail.com" ]
skqudwls123@gmail.com
673cef86afce55ff0f15812ad3f3b9073bc9d010
55a574b1bcc6e54b27396ddc06a4eecd74d18d5a
/grafo/src/lista/nodoTemplate.h
606bbc3918e237bbc9375e5d881a99a9808e7e63
[]
no_license
angeloChi/strutture-dati
a30ff9db9ad39a31f93d0b622ec3282108b5b83b
3d915ac4efdf3e99d783927f892e9b8501949bfa
refs/heads/master
2021-08-24T10:54:45.376057
2017-12-09T10:35:11
2017-12-09T10:35:11
113,661,396
0
0
null
null
null
null
UTF-8
C++
false
false
1,345
h
/* * nodoTemplate.h * * Created on: 28 dic 2016 * Author: angelo */ #ifndef NODOTEMPLATE_H_ #define NODOTEMPLATE_H_ #include <iostream> #include<iomanip> using namespace std; template <class tipoElem> class Nodo{ public: Nodo(); ~Nodo(); //elemento void setElemento(tipoElem ); tipoElem getElemento(); //puntatore successivo void setNextPtr(Nodo<tipoElem>*); Nodo<tipoElem>* getNextPtr(); //puntatore precedente void setPrecPtr(Nodo<tipoElem>*); Nodo<tipoElem>* getPrecPtr(); private: tipoElem elemento; Nodo<tipoElem>* nextPtr; Nodo<tipoElem>* precPtr; }; template <class tipoElem> Nodo<tipoElem>::Nodo(){ elemento = 0; nextPtr = NULL; precPtr = NULL; } template <class tipoElem> Nodo<tipoElem>::~Nodo(){} template <class tipoElem> void Nodo<tipoElem>::setElemento(tipoElem valore){ elemento = valore; } template <class tipoElem> tipoElem Nodo<tipoElem>::getElemento(){ return elemento; } template <class tipoElem> void Nodo<tipoElem>::setNextPtr(Nodo<tipoElem>* succ){ nextPtr=succ; } template <class tipoElem> Nodo<tipoElem>* Nodo<tipoElem>::getNextPtr(){ return nextPtr; } template <class tipoElem> void Nodo<tipoElem>::setPrecPtr(Nodo<tipoElem>* prec){ precPtr=prec; } template<class tipoElem> Nodo<tipoElem>* Nodo<tipoElem>::getPrecPtr(){ return precPtr; } #endif /* NODOTEMPLATE_H_ */
[ "chiricoangelo7@gmail.com" ]
chiricoangelo7@gmail.com
bd9ba75d4b2673a86f70ed3af5e8eeced6b1ea05
afcb8a2f000099ec415ee72021ea2533030184fd
/src/Nazara/Graphics/AbstractViewer.cpp
1788793c5f5fa237847f84320eb735eae049aff4
[ "GPL-3.0-only", "MIT", "BSD-3-Clause", "LicenseRef-scancode-proprietary-license", "Apache-2.0" ]
permissive
NazaraEngine/NazaraEngine
b67397af8a355bed0389daafd3463f0695a1ab92
1b9c19fd788e6116984c2466bad0b75047012a6a
refs/heads/main
2023-09-04T10:08:48.321299
2023-08-31T16:01:59
2023-08-31T16:01:59
4,192,801
207
23
MIT
2023-09-09T20:09:05
2012-05-01T14:08:17
C++
UTF-8
C++
false
false
1,644
cpp
// Copyright (C) 2023 Jérôme "Lynix" Leclercq (lynix680@gmail.com) // This file is part of the "Nazara Engine - Graphics module" // For conditions of distribution and use, see copyright notice in Config.hpp #include <Nazara/Graphics/AbstractViewer.hpp> #include <Nazara/Graphics/ViewerInstance.hpp> #include <Nazara/Renderer/RenderTarget.hpp> #include <Nazara/Graphics/Debug.hpp> namespace Nz { AbstractViewer::~AbstractViewer() = default; Vector3f AbstractViewer::Project(const Vector3f& worldPos) { const Matrix4f& viewProj = GetViewerInstance().GetViewProjMatrix(); Vector2f screenSize = Vector2f(GetRenderTarget().GetSize()); Vector4f clipspace = viewProj * Vector4f(worldPos, 1.f); clipspace.x = clipspace.x / clipspace.w; clipspace.y = clipspace.y / clipspace.w; clipspace.z = clipspace.z / clipspace.w; Vector3f screenSpace; screenSpace.x = (clipspace.x * 0.5f + 0.5f) * screenSize.x; screenSpace.y = (clipspace.y * 0.5f + 0.5f) * screenSize.y; screenSpace.z = clipspace.z; return screenSpace; } Vector3f AbstractViewer::Unproject(const Vector3f& screenPos) { const Matrix4f& inverseViewProj = GetViewerInstance().GetInvViewProjMatrix(); Vector2f screenSize = Vector2f(GetRenderTarget().GetSize()); // Screen space => clip space Vector4f clipSpace; clipSpace.x = screenPos.x / screenSize.x * 2.f - 1.f; clipSpace.y = screenPos.y / screenSize.y * 2.f - 1.f; clipSpace.z = screenPos.z; clipSpace.w = 1.f; // Clip space => projection space => view space => world space Vector4f unproj = inverseViewProj * clipSpace; return Vector3f(unproj.x, unproj.y, unproj.z) / unproj.w; } }
[ "lynix680@gmail.com" ]
lynix680@gmail.com
2a93eceea06fa749e9bc7bfbd3508a4f9b80f56a
58f12636d66f21c4f197281fc3a134c95f1d5b82
/Problems/Week_6/5.14_IQ_Test(1111)/임용식/1111.cpp
ae106522d297bf25648e9924d106bbbb727954c4
[]
no_license
Hamsik2rang/SA24-Algorithm-Study
dfd53229582e60accc92ecfb5ac1483cb84608a5
ab7e53913148afe18784141847e5352985ac081d
refs/heads/main
2023-05-03T19:13:10.367122
2021-05-28T11:21:39
2021-05-28T11:21:39
347,636,716
7
3
null
null
null
null
UTF-8
C++
false
false
996
cpp
#include <iostream> #include <vector> #include <string> int main() { int n, answer = 0; std::cin >> n; std::vector<int> v(n); for (auto& elem : v) { std::cin >> elem; } if (v.size() == 1) { std::cout << "A"; } else if (v.size() == 2) { if (v[0] == v[1]) { std::cout << v[0]; } else { std::cout << "A"; } } else { if (v[0] == v[1]) { bool isSame = true; for (int i = 2; i < v.size(); i++) { if (v[i - 1] != v[i]) { isSame = false; break; } } if (!isSame) { std::cout << "B"; } else { std::cout << v[0]; } } else { if ((v[2] - v[1]) % (v[1] - v[0]) != 0) { std::cout << "B"; } else { int q = (v[2] - v[1]) / (v[1] - v[0]); int r = v[1] - q * v[0]; for (int i = 2; i < v.size()-1; i++) { if (v[i] * q + r != v[i + 1]) { std::cout << "B"; return 0; } } std::cout << v[v.size() - 1] * q + r; } } } return 0; }
[ "lvhi7121@gmail.com" ]
lvhi7121@gmail.com
ba249655a26961ca032c2546ee67ecf841ab79a1
85e2fe26867f4aee680aa84e07d84a60b3458847
/Calc.h
3ad0bca412f285d313af3179ac3226d9f2c566cc
[]
no_license
J-eno/Matrix-Calculator
980658bf2609591d9d4a6fb14846125345d5179c
a357b8fce3c7ad136c5492a963e664e9331af255
refs/heads/master
2020-04-16T08:00:22.201152
2019-01-12T16:11:30
2019-01-12T16:11:30
165,407,736
1
0
null
null
null
null
UTF-8
C++
false
false
214
h
#include <iostream> #include <fstream> #include <string> #include <iomanip> #include "Matrix.h" /* Name: mainMenu Pre: needs a Matrix to be passed in Post:Displays the main menu */ void mainMenu(Matrix &matrix);
[ "uberjoel25@yahoo.com" ]
uberjoel25@yahoo.com
ce5fd9159aab11f39954b0b47d918a4b637796d5
6adfc319d89f945080826191ea03087275326437
/paquet.cpp
35da4ad0a5711739e06e2c7acffc4cc2ebf4d06b
[]
no_license
Bert54/ANCHII
279fb28bb92c43e681a5a551f3718a83b17c8320
5fb58b0a930553118fef05051849460357d98ea0
refs/heads/master
2020-04-06T22:11:30.793719
2018-12-11T07:49:14
2018-12-11T07:49:14
157,827,581
0
0
null
null
null
null
UTF-8
C++
false
false
3,634
cpp
/** Cette classe représente un paquet de l'application, qui contient des cartes. **/ #include "paquet.hpp" /** * @brief Paquet::Paquet Constructeur d'un paquet * @param nom Le nom du nouveau paquet */ Paquet::Paquet(std::string nom) { this->nom = nom; } /** * @brief Paquet::~Paquet Destructeur d'un paquet. ON détruit toutes les cartes, une par une. */ Paquet::~Paquet() { for (Carte *c: this->cartes) { delete c; } } /** * @brief Paquet::getNomPaquet Retourne le nom de ce paquet * @return Le nom de ce paquet */ std::string Paquet::getNomPaquet() { return this->nom; } /** * @brief Paquet::ajouterCarte Ajout d'une nouvelle carte dans le paquet actif * @param question La question de la carte * @param reponse La réponse de la carte */ void Paquet::ajouterCarte(std::string question, std::string reponse, std::string* mediaQuestion, std::string* mediaReponse) { Carte *carte = new Carte(question, reponse, mediaQuestion, mediaReponse); cartes.push_back(carte); } /** * @brief Paquet::getCartes Récuèpre les cartes du paquet actif * @return La liste des cartes du paquet actif */ std::vector<Carte*> Paquet::getCartes() { return this->cartes; } /** * @brief Paquet::ajouterCarteASupprimer Ajoute une carte dans la liste des cartes à supprimer * @param question La question de la carte à supprimer */ void Paquet::ajouterCarteASupprimer(std::string question) { int indice = getNumeroCarte(question); // Numéro de la carte à supprimer Carte *carte = this->cartes.at(indice); // Carte à supprimer if(carte->getSuppression()) { // La carte est déjà dans la liste des cartes à supprimer, donc on l'enlève for(int i = 0 ; i < (int)this->cartesASupprimer.size() ; i++) { // On cherche l'indice de l'indice de la carte à supprimer if(this->cartesASupprimer.at(i) == indice) { // Suppression de l'indice de la carte dans la liste this->cartesASupprimer.erase(this->cartesASupprimer.begin() + i); } } } else { // On ajoute la carte à la liste des cartes à supprimer this->cartesASupprimer.push_back(indice); } carte->ajouterASupprimer(); // On change le statut de la carte à supprimer } /** * @brief Paquet::supprimerCartes Supprime une carte en connaissant sa question * @param question La question de la carte */ void Paquet::supprimerCartes() { // On trie la liste des indices par ordre decroissant pour supprimer les cartes par le plus grand indice Carte *c; std::sort (this->cartesASupprimer.begin(), this->cartesASupprimer.end()); // On supprime les cartes de la liste for(int indice : this->cartesASupprimer) { c = this->cartes[indice]; this->cartes.erase(this->cartes.begin() + indice); delete c; } // On réinitialise la liste initCartesASupprimer(); } /** * @brief Paquet::initCartesASupprimer Mise a vide de la liste de cartes a supprimer */ void Paquet::initCartesASupprimer() { this->cartesASupprimer.clear(); } /** * @brief Paquet::getNumeroCarte Retourne le numero de la carte associee a la question * @param question Question d'une carte * @return Indice de la carte */ int Paquet::getNumeroCarte(std::string question) { int i = 0; int indice; for(Carte *c : this->cartes) { if(!question.compare(c->getQuestion())) { // On compare la question en paramètre avec celle de chaque carte indice = i; // On fixe la valeur de l'indice } i++; // On incrémente la valeur de i } return indice; }
[ "matt.bert@live.fr" ]
matt.bert@live.fr
9ec70dd3aacbb64ca64b001c276f6c0c9f231921
572571b6eb20760f9c91f3a62a74fe52205b384e
/cpp/information_security/2/2.2/2.2.cpp
b3a76ddac47322e8fa6ab06e64461e3e45f5bcf2
[]
no_license
ZephyrZhng/code_ub
7b7278579145f80c2a1370a9af767bd26e767313
7e7ea95d2ab4cf45f3868cfde08640fa765460cb
refs/heads/master
2021-01-10T18:54:12.201931
2017-01-16T15:33:41
2017-01-16T15:33:41
50,284,735
0
0
null
null
null
null
UTF-8
C++
false
false
650
cpp
#include <algorithm> #include <cassert> #include <cmath> #include <initializer_list> #include <iostream> #include <fstream> #include <functional> #include <set> #include <sstream> #include <vector> using namespace std; int main(int argc, char** argv){ int d; cout << "Input period: "; cin >> d; vector<int> f(d); cout << "Input a permutation of { 1, ... , " << d << " }: "; for(int i = 0; i < d; ++i){ cin >> f[i]; } string m, c; cout << "Input plaintext: "; cin >> m; c.resize(m.size()); for(size_t i = 0; i < m.size(); ++i){ c.push_back(m[f[i % d] + floor(i / d) * d - 1]); } cout << "Ciphertext is: " << c << endl; return 0; }
[ "zephyr.z798@gmail.com" ]
zephyr.z798@gmail.com
f426b89bf99c75f6c1d223eee62d3b6d9403f0f4
cb00d4c1334c78719aa710c62af372d847501029
/Shade/cocos2d/cocos/cornell/CUAssetManager.h
1fcaa22912d0e3344b1e8de2f865f497aca76e78
[ "MIT" ]
permissive
obuehler/shadegame
6a4f4a8bfc5a9bbf88556185b78eb41a1da9c4fe
12780adce3ff025f608c60cece930d71643922c1
refs/heads/master
2016-09-13T18:33:14.121636
2016-05-20T20:16:36
2016-05-20T20:16:36
59,374,491
0
0
null
null
null
null
UTF-8
C++
false
false
6,371
h
// // CUAssetManager.h // Cornell Extensions to Cocos2D // // This module provides a singleton class to support asset management. Assets // should always be managed by a central loader. Cocos2D appears to have these // things all over the place. This is a way to centralize everything. // // More importantly, this asset loader allows for scene management, which is not // something available in the various asset loaders in Cocos2D. Scene management // allows you to attach assets to a scene, and load and unload them for that scene. // // Author: Walker White // Version: 12/3/15 // #ifndef __CU_ASSET_MANAGER_H__ #define __CU_ASSET_MANAGER_H__ #include <vector> #include <cocos2d.h> #include "CUSceneManager.h" using namespace std; NS_CC_BEGIN #pragma mark - #pragma mark Asset Manager /** * Singleton class to support asset management. * * Assets should always be managed by a central loader. Cocos2D appears to have these * things all over the place. This helps centralize them. This is particularly useful * when implementing scene management. * * In scene management, each asset is attached to a scene. This allows you to unload all * of the assets for a scene without unloading all assets. It is possible for an asset * to be attached to multiple scenes. In that case, the scenes will attach a reference * count, and the asset will only be unloaded when all associated scenes are unloaded. * * This class is a singleton, in the same way that director is. That mean you should not * create new instances of this object (and the constructor is protected for that very * reason). Instead, you should use the static method getInstance(). */ class CC_DLL AssetManager { protected: /** The singleton asset manager */ static AssetManager* _gManager; /** The managers for each individual scene */ std::vector<SceneManager*> _managers; /** The current active scene */ int _scene; public: #pragma Singleton Access /** * Initializes the global asset manager. * * This should be called when the application starts */ static void init(); /** * Stops the global asset manager. * * This releases all of the allocated scene managers. It should be called when * the application quits. */ static void shutdown(); /** * Returns a reference tot he global asset manager. * * @return a reference tot he global asset manager. */ static AssetManager* getInstance() { return _gManager; } #pragma Scene Management /** * Creates a new scene for managing assets. * * The new scene will be set as the current scene. * * @return the index for the new scene manager */ int createScene(); /** * Starts the scene manager for the given index * * @param scene The index for the scene manager */ void startScene(int scene); /** * Starts all of the allocated scene managers. */ void startAll(); /** * Stops the scene manager for the given index * * @param scene The index for the scene manager */ void stopScene(int scene); /** * Stops all of the allocated scene managers. */ void stopAll(); /** * Deletes the scene manager for the given index * * This method will stop the scene manager if it is still active. * Future attempts to access a scene manager for this index will * raise an exception. * * @param scene The index for the scene manager */ void deleteScene(int scene); /** * Deletes all of the allocated scene managers. * * This method will stop the scene managers if they are still active. * It will clear the asset manager and future attempts to access the * previously allocated scene managers will raise an exception. */ void deleteAll(); /** * Returns True if scene corresponds to an allocated scene. * * In general, this method will return false if scene was deleted. However, the * scene identifier may be reused by later allocations. * * @return True if scene corresponds to an allocated scene. */ bool hasScene(int scene) const { return scene < _managers.size() && _managers[scene] != nullptr; } #pragma Scene Access /** * Returns the index for the current scene. * * If there is no current scene, this method will return -1. * * @return the index for the current scene. */ int getCurrentIndex() const { return _scene; } /** * Sets the index for the current scene. * * If there is no current scene, this method will return -1. * * @param scene The index for the current scene. */ void setCurrentIndex(int scene) { _scene = scene; } /** * Returns the scene manager for the current scene. * * If there is no active scene, this method will return nullptr. * * @return the asset manager for the current scene */ SceneManager* getCurrent() const { return (_scene >= 0 ? _managers.at(_scene) : nullptr); } /** * Returns the scene manager for the given index. * * If the scene is invalid, this method will raise an exception. * * @param scene The index for the scene manager * * @return the asset manager for the given index */ SceneManager* at(int scene) const { return _managers.at(scene); } /** * Returns the scene manager for the given index. * * If the scene is invalid, this method will raise an exception. * * @param scene The index for the scene manager * * @return the asset manager for the given index */ SceneManager* operator[](int scene) const { return _managers.at(scene); } private: /** This macro disables the copy constructor (not allowed on assets) */ CC_DISALLOW_COPY_AND_ASSIGN(AssetManager); /** * Creates a new, inactive asset manager */ AssetManager() : _scene(-1) {} /** * Deletes the asset manager * * This method stops all scene managers and releases all resources. */ ~AssetManager() { stopAll(); deleteAll();} }; NS_CC_END #endif /* defined(__CU_ASSET_MANAGER_H__) */
[ "ef343@cornell.edu" ]
ef343@cornell.edu
1a92966398a5e0ba5360d00c4e7bef878de1c733
45c8e3f7a294c60d830e5b5dcabf8e05c00ff0d3
/Src/KRelayClient.h
435b0bff30d35e3a621af79cc56afd7fcc455a35
[]
no_license
zhengguo07q/GameWorld
14fadd3ca56d0f8367acd13e9a02c3eebc9ce682
4c980edebdaa2a1d5d6949e7114b81bd66da152d
refs/heads/master
2021-01-25T08:43:21.285513
2018-03-19T07:55:23
2018-03-19T07:55:23
40,157,367
3
0
null
null
null
null
GB18030
C++
false
false
11,752
h
// *************************************************************** // Copyright(c) Kingsoft // FileName : KRelayClient.h // Creator : Xiayong // Date : 08/08/2011 // Comment : // *************************************************************** #pragma once #include "Common/KG_Socket.h" #include "Relay_GS_Protocol.h" #include <list> class KPlayer; class KScene; struct KHeroData; namespace T3DB { class KPB_SAVE_DATA; } class KRelayClient { public: KRelayClient(); BOOL Init(); void UnInit(); void Activate(); BOOL ProcessPackage(); int GetWorldIndex() { return m_nWorldIndex; } BOOL SaveRoleData(KPlayer* pPlayer); //BOOL SaveRoleDataToProtoBuf(KPlayer* pPlayer); void PrepareToQuit() { m_bQuiting = true; m_nNextQuitingSaveTime = 0; } void ResetPakStat(); BOOL DumpPakStat(); private: IKG_SocketStream* m_piSocketStream; BOOL m_bSocketError; BOOL m_bQuiting; time_t m_nNextQuitingSaveTime; typedef void (KRelayClient::*PROCESS_PROTOCOL_FUNC)(BYTE* pbyData, size_t uDataLen); PROCESS_PROTOCOL_FUNC m_ProcessProtocolFuns[r2s_protocol_end]; size_t m_uProtocolSize[r2s_protocol_end]; struct KPROTOCOL_STAT_INFO { DWORD dwPackCount; uint64_t uTotalSize; }; KPROTOCOL_STAT_INFO m_S2RPakStat[s2r_protocol_end]; KPROTOCOL_STAT_INFO m_R2SPakStat[r2s_protocol_end]; BOOL Send(IKG_Buffer* piBuffer); BOOL RecvConfigFromRelay(); public: float m_fRecvPakSpeed; float m_fSendPakSpeed; float m_fUpTraffic; float m_fDownTraffic; private: int m_nPingCycle; time_t m_nLastSendPacketTime; int m_nWorldIndex; DWORD m_dwSyncRoleID; BYTE* m_pbySyncRoleBuffer; T3DB::KPB_SAVE_DATA* m_pLoadBuf; size_t m_uSyncRoleOffset; BYTE m_byTempData[MAX_EXTERNAL_PACKAGE_SIZE]; BYTE* m_pbySaveRoleBuffer; T3DB::KPB_SAVE_DATA* m_pSaveBuf; int m_nRecvPakSpeed; int m_nSendPakSpeed; int m_nUpTraffic; int m_nDownTraffic; public: BOOL DoApplyServerConfigRequest(); BOOL DoHandshakeRequest(); BOOL DoPingSignal(); BOOL DoUpdatePerformance(); BOOL DoPlayerLoginRespond( DWORD dwPlayerID, BOOL bPermit, GUID Guid, DWORD dwPacketIdentity ); BOOL DoConfirmPlayerLoginRequest(DWORD dwPlayerID, DWORD dwClientIP); BOOL DoPlayerLeaveGS(DWORD dwPlayerID); BOOL DoSubmitLimitPlayInfo(DWORD dwGroupID, DWORD dwIP, const char cszAccount[], const char cszName[], const char cszID[], const char cszEmail[]); BOOL DoCreateMapRespond(DWORD dwMapID, int nMapCopyIndex, BOOL bSucceed); BOOL DoSearchMapRequest(KPlayer* pPlayer, DWORD dwMapID, int nMapCopyIndex); BOOL DoTransferPlayerRequest(KPlayer* pPlayer); BOOL DoTransferPlayerRespond(DWORD dwPlayerID, BOOL bSucceed, GUID Guid); BOOL DoCoinShopBuyItemRequest( KPlayer* pPlayer, DWORD dwTabType, DWORD dwTabIndex, int nGoodsID, int nCount, int nCoinPrice, KCUSTOM_CONSUME_INFO* pCCInfo = NULL ); // ----------------------- 角色相关操作 ------------------------------------- BOOL DoLoadRoleDataRequest(DWORD dwRoleID); BOOL DoSyncRoleData(DWORD dwID, BYTE* pbyData, size_t uOffset, size_t uDataLen); BOOL DoSaveRoleData(KPlayer* pPlayer, size_t uRoleDataLen); BOOL DoPlayerEnterSceneNotify(DWORD dwPlayerID, DWORD dwMapID, int nMapCopyIndex); BOOL DoPlayerEnterHallNotify(DWORD dwPlayerID); BOOL DoBattleFinishedNotify(DWORD dwMapID, int nMapCopyIndex, int nWinnerSide); BOOL DoApplyCreateRoom(KPlayer* pPlayer, DWORD dwMapID, const char cszRoomName[], const char cszPassword[]); BOOL DoApplyJoinRoom(KPlayer* pPlayer, DWORD dwRoomID, const char cszPassword[]); BOOL DoInvitePlayerJoinRoom(DWORD dwInviterID, const char szDestPlayerName[]); BOOL DoSwitchRoomHost(DWORD dwCurHostID, DWORD dwNewHostID); BOOL DoSwitchBattleMap(DWORD dwHostID, DWORD dwNewMapID); BOOL DoSetRoomPassword(DWORD dwHostID, const char szNewPassword[]); BOOL DoApplyLeaveRoom(DWORD dwPlayerID); BOOL DoApplyKickoutOther(DWORD dwPlayerID, DWORD dwOtherPlayerID); BOOL DoApplySetReady(DWORD dwPlayerID, BOOL bReady); BOOL DoApplyStartGame(DWORD dwPlayerID); BOOL DoRoomMemberChangePosRequest(DWORD dwPlayerID, KSIDE_TYPE eNewSide, int nNewPos); BOOL DoChangeRoomName(DWORD dwPlayerID, char szNewName[]); BOOL DoSelectHeroRequest(KPlayer* pPlayer); BOOL DoAutoJoinRoom(KPlayer* pPlayer); BOOL DoApplySetRoomAIMode(DWORD dwPlayerID, KSIDE_TYPE eSide, int nPos, BOOL bAIMode); BOOL DoTryJoinRoom(KPlayer* pPlayer, DWORD dwRoomID); BOOL DoAcceptOrRefuseJoinRoom(KPlayer* pPlayer, int nAcceptCode, DWORD dwRoomID); // 组队 BOOL DoCreateTeamRequest(KPlayer* pPlayer); BOOL DoTeamInvitePlayerRequest(DWORD dwPlayerID, const char cszTargetName[]); BOOL DoTeamKickoutPlayerRequest(DWORD dwPlayerID, DWORD dwBeKickedPlayerID); BOOL DoTeamLeaveRequest(DWORD dwPlayerID); BOOL DoTeamAcceptOrRefuseInvite(KPlayer* pTarget, int nAcceptCode, const char (&szInviterName)[_NAME_LEN]); BOOL DoTeamReadyRequest(uint32_t dwPlayerID, BOOL bReady); // PVP匹配 BOOL DoAutoMatchRequest(KPlayer* pRequestor); BOOL DoCancelAutoMatchRequest(KPlayer* pPlayer); BOOL DoRenameRequest(DWORD dwPlayerID, char szNewName[]); BOOL DoUpdateRoleLevel(uint32_t dwPlayerID, int nNewLevel); BOOL DoApplyRoomBaseInfoForCache(DWORD dwLastRoomID); // PVE组队 BOOL DoCreatePveTeamRequest( KPlayer* pPlayer, int nPveMode, int nMissionType, int nMissionStep, int nMissionLevel, uint32_t dwMapID, const char (&cszTeamName)[_NAME_LEN], const char (&cszPassword)[cdRoomPasswordMaxLen] ); BOOL DoQuickStartPveRequest(KPlayer* pPlayer, int nPveMode, int nMissionType, int nMissionStep, int nMissionLevel, uint32_t dwMapID, char szTeamName[], char szPassword[] ); BOOL DoApplyJoinPveTeamRequest(KPlayer* pPlayer, uint32_t dwTeamID, char szPassword[]); BOOL DoApplyPveTeamInfoRequest( uint32_t dwPlayerID, int nPage, int nPveMode, int nMissionType, int nMissiongStep); BOOL DoPveTeamInvitePlayerRequest(DWORD dwPlayerID, const char cszTargetName[]); BOOL DoPveTeamKickoutPlayerRequest(DWORD dwPlayerID, DWORD dwBeKickedPlayerID); BOOL DoPveTeamLeaveRequest(DWORD dwPlayerID); BOOL DoPveTeamAcceptOrRefuseInvite(KPlayer* pPlayer, int nAccpetCode, const char cszInviterName[]); BOOL DoPveTeamReadyRequest(KPlayer* pPlayer, BOOL bReady); BOOL DoPveTeamSetAiMode(KPlayer* pPlayer, BOOL bIsAiMode); BOOL DoPveTeamStartGameRequest(KPlayer* pPlayer, BOOL bNeedCostChallengeItem, BOOL bNeedCheckAllReady); BOOL DoPveTeamChangeMissionRequest(uint32_t dwPlayerID, int nMissionType, int nMissiontStep, int nMissionLevel, uint32_t dwMapID); BOOL DoPveTeamTryJoin(KPlayer* pPlayer, int nPveMode, uint32_t dwTeamID); BOOL DoPveTeamAutoJoin(KPlayer* pPlayer, int nPveMode, int nMissionType, int nMissionStep, int nOpenLevel, unsigned uValidLevel); BOOL DoPveTeamReset(uint32_t dwPlayerID); BOOL DoCanEnterMissionRespond(uint32_t dwPlayerID, uint32_t dwHeroTemplateID, int nMissionType, int nMissionStep, int nMissionLevel, BOOL bSuccess); BOOL DoUpdatePlayerGender(KPlayer* pPlayer); BOOL DoChangeExtPointRequest(DWORD dwPlayerID, unsigned uExtPointIndex, int nChangeValue); BOOL DoUpdateHeroLevel(KPlayer* pPlayer, DWORD dwHeroTemplateID); BOOL DoSyncMainHero(uint32_t dwPlayerID, uint32_t dwHeroTemplateID); BOOL DoKickAccountRespond(const char cszAccount[], int nPlayerIndex); BOOL DoUpdateVIPInfo(KPlayer* pPlayer); BOOL DoUpdateClubID(KPlayer* pPlayer); BOOL DoRankQuickStart(KPlayer* pPlayer); BOOL DoChangeRoomHost(DWORD dwPlayerID, int nRoomType, DWORD dwNewHostID); BOOL DoFreePVPQuickStart(KPlayer* pPlayer, DWORD dwMapID, const char cszRoomName[], const char cszPassword[]); BOOL DoUpdatePlayerTeamLogo(KPlayer* pPlayer); //AutoCode:-发送协议函数结束- public: void OnApplyServerConfigRespond(BYTE* pbyData, size_t uDataLen); void OnHandshakeRespond(BYTE* pbyData, size_t uDataLen); void OnQuitNotify(BYTE* pbyData, size_t uDataLen); void OnCreateMapNotify(BYTE* pbyData, size_t uDataLen); void OnFinishCreateMapNotify(BYTE* pbyData, size_t uDataLen); void OnDeleteMapNotify(BYTE* pbyData, size_t uDataLen); void OnSearchMapRespond(BYTE* pbyData, size_t uDataLen); void OnTransferPlayerRequest(BYTE* pbyData, size_t uDataLen); void OnTransferPlayerRespond(BYTE* pbyData, size_t uDataLen); void OnCoinShopBuyItemRespond(BYTE* pbyData, size_t uDataLen); void OnPlayerLoginRequest(BYTE* pbyData, size_t uDataLen); void OnLimitPlayInfoResponse(BYTE* pbyData, size_t uDataLen); void OnConfirmPlayerLoginRespond(BYTE* pbyData, size_t uDataLen); void OnKickAccountNotify(BYTE* pbyData, size_t uDataLen); void OnSaveRoleDataRespond(BYTE* pbyData, size_t uDataLen); void OnSyncRoleData(BYTE* pbyData, size_t uDataLen); void OnLoadRoleData(BYTE* pbyData, size_t uDataLen); // 房间机制 void OnSyncCreateRoomRespond(BYTE* pbyData, size_t uDataLen); void OnSyncOneRoomMemberPosInfo(BYTE* pbyData, size_t uDataLen); void OnApplyJoinRoomRespond(BYTE* pbyData, size_t uDataLen); void OnApplyLeaveRoomRespond(BYTE* pbyData, size_t uDataLen); void OnApplySwitchRoomHostRespond(BYTE* pbyData, size_t uDataLen); void OnApplySwitchBattleMapRespond(BYTE* pbyData, size_t uDataLen); void OnApplySetRoomPasswordRespond(BYTE* pbyData, size_t uDataLen); void OnApplySetReadyRespond(BYTE* pbyData, size_t uDataLen); void OnApplyStartGameRespond(BYTE* pbyData, size_t uDataLen); void OnSyncRoomName(BYTE* pbyData, size_t uDataLen); // 房间缓存 void OnAddRoomCache(BYTE* pbyData, size_t uDataLen); void OnDelRoomCache(BYTE* pbyData, size_t uDataLen); void OnUpdateRoomNameInCache(BYTE* pbyData, size_t uDataLen); void OnUpdateMapIDInCache(BYTE* pbyData, size_t uDataLen); void OnUpdateMemberCountInCache(BYTE* pbyData, size_t uDataLen); void OnUpdateFightingStateInCache(BYTE* pbyData, size_t uDataLen); void OnUpdateHasPasswordInCache(BYTE* pbyData, size_t uDataLen); void OnSyncRoomBaseInfoForCache(BYTE* pbyData, size_t uDataLen); // 自动匹配组队相关 void OnAutoMatchRespond(BYTE* pbyData, size_t uDataLen); void OnLeaveAutoMatchNotify(BYTE* pbyData, size_t uDataLen); void OnSendToClient(BYTE* pbyData, size_t uDataLen); void OnRenameRespond(BYTE* pbyData, size_t uDataLen); void OnResetMap(BYTE* pbyData, size_t uDataLen); void OnCanEnterMission(BYTE* pbyData, size_t uDataLen); void OnFreePVPInvite(BYTE* pbyData, size_t uDataLen); void OnLadderPVPInvite(BYTE* pbyData, size_t uDataLen); void OnPVEInvite(BYTE* pbyData, size_t uDataLen); void OnChangeExtPointRespond(BYTE* pbyData, size_t uDataLen); void OnForbidPlayerTalk(BYTE* pbyData, size_t uDataLen); void OnForbidIPTalk(BYTE* pbyData, size_t uDataLen); void OnFreezeRole(BYTE* pbyData, size_t uDataLen); void OnFreezeIP(BYTE* pbyData, size_t uDataLen); void OnAccountNewCoinNotify(BYTE* pbyData, size_t uDataLen); void OnSendItemMailNotify(BYTE* pbyData, size_t uDataLen); void OnRequestPlayerTeamLogo(BYTE* pbyData, size_t uDataLen); //AutoCode:-处理协议函数结束- }; extern KRelayClient g_RelayClient;
[ "85938406@qq.com" ]
85938406@qq.com
10cbc9066ea17a4d33ac6e388b7d5cc5c9faa962
718c025ba9c82e03cc58245a430d0b2376880c7c
/shaders/Shader.cpp
1b322966c87636011e6b83ab523d3d33e190b312
[ "MIT" ]
permissive
travisg/ray
e7a01ce19dcbc0c13759515ae0e5b64da255e569
890042312c438a1642a18a83436cf5d45f805340
refs/heads/master
2022-04-08T12:01:09.087064
2022-02-16T08:23:21
2022-02-17T04:05:36
5,644,773
3
0
null
null
null
null
UTF-8
C++
false
false
1,152
cpp
/* * Copyright (c) 2008-2011 Travis Geiselbrecht * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files * (the "Software"), to deal in the Software without restriction, * including without limitation the rights to use, copy, modify, merge, * publish, distribute, sublicense, and/or sell copies of the Software, * and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "Shader.h"
[ "geist@foobox.com" ]
geist@foobox.com
01ae8093f88e85269815f6e97321efebc7697b30
ae50e9c0197fd56751a2e53dd849646852be8091
/tree/kth_smallest_element_bst.cpp
0de0feed8b7081988b7e50969306f8de36f8a51f
[]
no_license
mgiridhar/code
3edbd481f5f17e38c78e7ab7087c58702c525b34
fd1a792ddb861160ff86543c3f66091fbcd7148b
refs/heads/master
2020-04-05T22:48:50.307652
2018-04-30T08:07:34
2018-04-30T08:07:34
22,779,070
0
1
null
null
null
null
UTF-8
C++
false
false
877
cpp
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ class Solution { public: long int kthSmallest(TreeNode* root, int k) { long int curr = -1, kele = LONG_MAX; kthSmallestUtil(root, k, &curr, &kele); return kele; } void kthSmallestUtil(TreeNode* root, int k, long int* curr, long int* kele) { if(root == NULL) return; if(root->left == NULL && *curr == -1) *curr = 0; if(*kele == LONG_MAX) kthSmallestUtil(root->left, k, curr, kele); (*curr)++; if(*curr == k) *kele = root->val; if(*kele == LONG_MAX) kthSmallestUtil(root->right, k, curr, kele); } };
[ "giridhar.manoharan@Giridhars-MacBook-Pro.local" ]
giridhar.manoharan@Giridhars-MacBook-Pro.local
341da8e0e898324ea8ca1e0088ca8eb2d76a5a9d
fb7cae5dc24425cb25df604a8be3cd988b763903
/externals/memcached/memcached_parser.h
7ac24e42a0d82eb475991649d3468dfe8f05c024
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
betasheet/diffingo
92b747e51aa6a2459e7400bd96e95bb598691902
285d21b16c118155e5c149b20fcb20a20276f3d7
refs/heads/master
2022-10-18T20:46:50.422313
2020-06-15T21:19:44
2020-06-15T21:19:44
272,546,057
0
0
null
null
null
null
UTF-8
C++
false
false
6,924
h
/* * memcached_parser.h * * Distributed under the MIT License (MIT). * * Copyright (c) 2015 Eric Seckler * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ #ifndef EXTERNALS_MEMCACHED_MEMCACHED_PARSER_H_ #define EXTERNALS_MEMCACHED_MEMCACHED_PARSER_H_ #include <netinet/in.h> #include <stddef.h> #include <cstdint> #include <ctime> struct addrinfo; struct memcached_allocator_t; struct memcached_array_st; struct memcached_continuum_item_st; struct memcached_error_t; struct memcached_sasl_st; struct memcached_virtual_bucket_t; #define MEMCACHED_MAX_BUFFER 8196 #define MEMCACHED_MAX_KEY 251 /* We add one to have it null terminated */ #define MEMCACHED_BLOCK_SIZE 1024 #define MEMCACHED_DEFAULT_COMMAND_SIZE 350 #define SMALL_STRING_LEN 1024 #define HUGE_STRING_LEN 8196 // @todo Complete class transformation struct memcached_instance_st { in_port_t port() const { return port_; } void port(in_port_t arg) { port_ = arg; } void mark_server_as_clean() { server_failure_counter = 0; server_timeout_counter = 0; next_retry = 0; } void disable() {} void enable() {} bool valid() const; bool is_shutting_down() const; void start_close_socket(); void close_socket(); void reset_socket(); uint32_t response_count() const { return cursor_active_; } struct { bool is_allocated; bool is_initialized; bool is_shutting_down; bool is_dead; bool ready; } options; int16_t _events; int16_t _revents; int16_t events(void) { return _events; } int16_t revents(void) { return _revents; } void events(int16_t); void revents(int16_t); uint32_t cursor_active_; in_port_t port_; uint32_t io_bytes_sent; /* # bytes sent since last read */ uint32_t request_id; uint32_t server_failure_counter; uint64_t server_failure_counter_query_id; uint32_t server_timeout_counter; uint32_t server_timeout_counter_query_id; uint32_t weight; uint32_t version; struct { uint32_t read; uint32_t write; uint32_t timeouts; size_t _bytes_read; } io_wait_count; uint8_t major_version; // Default definition of UINT8_MAX means that it has // not been set. uint8_t micro_version; // ditto, and note that this is the third, not second // version bit uint8_t minor_version; // ditto char *read_ptr; size_t read_buffer_length; size_t read_data_length; size_t write_buffer_offset; struct addrinfo *address_info; struct addrinfo *address_info_next; time_t next_retry; uint64_t limit_maxbytes; struct memcached_error_t *error_messages; char read_buffer[MEMCACHED_MAX_BUFFER]; char write_buffer[MEMCACHED_MAX_BUFFER]; }; struct memcached_string_st { char *end; char *string; // NOLINT size_t current_size; struct { bool is_allocated : 1; bool is_initialized : 1; } options; }; struct memcached_result_st { uint32_t item_flags; time_t item_expiration; size_t key_length; size_t extras_length; uint64_t item_cas; memcached_string_st value; uint64_t numeric_value; uint64_t count; char item_key[MEMCACHED_MAX_KEY]; char item_extras[MEMCACHED_MAX_KEY]; struct { bool is_allocated : 1; bool is_initialized : 1; } options; /* Add result callback function */ }; #define memcached_is_initialized(__object) ((__object)->options.is_initialized) #define memcached_is_allocated(__object) ((__object)->options.is_allocated) #define memcached_set_initialized(__object, __value) \ ((__object)->options.is_initialized = (__value)) #define memcached_set_allocated(__object, __value) \ ((__object)->options.is_allocated = (__value)) memcached_string_st *memcached_string_create(memcached_string_st *string, size_t initial_size); bool memcached_string_check(memcached_string_st *string, size_t need); char *memcached_string_c_copy(memcached_string_st *string); bool memcached_string_append_character(memcached_string_st *string, char character); bool memcached_string_append(memcached_string_st *string, const char *value, size_t length); void memcached_string_reset(memcached_string_st *string); void memcached_string_free(memcached_string_st *string); // NOLINT void memcached_string_free(memcached_string_st &); size_t memcached_string_length(const memcached_string_st *self); size_t memcached_string_length(const memcached_string_st &); size_t memcached_string_size(const memcached_string_st *self); const char *memcached_string_value(const memcached_string_st *self); const char *memcached_string_value(const memcached_string_st &); char *memcached_string_take_value(memcached_string_st *self); char *memcached_string_value_mutable(const memcached_string_st *self); bool memcached_string_set(memcached_string_st &, const char *, size_t); void memcached_string_set_length(memcached_string_st *self, size_t length); void memcached_string_set_length(memcached_string_st &, const size_t length); bool memcached_string_resize(memcached_string_st &, const size_t); char *memcached_string_c_str(memcached_string_st &); memcached_result_st *memcached_result_create(memcached_result_st *ptr); void memcached_result_free(memcached_result_st *ptr); bool memcached_read_one_response(memcached_instance_st *instance, memcached_result_st *result); bool memcached_serialize_binary(int8_t opcode, const char *key, const size_t key_length, const char *extras, const size_t extra_length, const char *value, const size_t value_length, const uint64_t cas, uint16_t opaque, char *out, size_t out_size, size_t *bytes_written); #endif // EXTERNALS_MEMCACHED_MEMCACHED_PARSER_H_
[ "eric.seckler@gmail.com" ]
eric.seckler@gmail.com
723454b2f7f40219662ca1a4e040561c1bb9a9ef
326c5d924956c1837704d23b498772a2d8efd187
/Examples/UI/CarambolaChat/CarambolaChat/Views/Chat/chat_line.h
9ab8fe74a53c70775eefe5c97bcc7daad8d4bf6d
[ "Zlib" ]
permissive
sanikoyes/ClanLib
c4eb8004eb6a10ed4429f15b63f3ba0d2835a930
4f9e7f5dd2edb12e55ec713f6299c874709524e9
refs/heads/master
2021-01-22T17:28:25.241676
2015-04-11T23:46:24
2015-04-11T23:46:24
33,925,347
3
1
null
2015-04-14T10:22:33
2015-04-14T10:22:33
null
UTF-8
C++
false
false
786
h
#pragma once class ChatLine { public: ChatLine(); ChatLine(const std::string &nick, const clan::Colorf &nick_color); void add_text(const std::shared_ptr<clan::Style> &style, const std::string &text, int id = -1); private: struct InlineText { InlineText(const std::shared_ptr<clan::Style> &style, const std::string &text, int id) : style(style), text(text), id(id) { } std::shared_ptr<clan::Style> style; std::string text; int id; }; std::vector<InlineText> inlines; bool bold = false; std::string timestamp; std::string nick; clan::Colorf nick_color = clan::Colorf::black; clan::SpanLayout column1; clan::SpanLayout column2; clan::SpanLayout column3; bool column3_rendered = false; int layout_width = 0; int prefix_width = 0; friend class ChatView; };
[ "dpjudas@users.noreply.github.com" ]
dpjudas@users.noreply.github.com
c70ae2fa848fef024d9ba3710a421707f24c1562
c12668ffae06ebd4ff7685507ac20f464ee61f66
/Framework/observer.hpp
b1e44d6fe461d3f2e86935347e511652590cfec5
[]
no_license
asm444/Gobjects-tutorial
296aeabd24db9feb567eaf84ceaac4cd0af6dc57
bd196c216aa9c82f0ca768e262d3df7475ad904c
refs/heads/master
2021-12-01T23:29:39.270925
2009-11-24T19:16:27
2009-11-24T19:16:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,713
hpp
/* observer.hpp -- class definition * * Ryan McDougall -- 2009 */ #ifndef _OBSERVER_HPP_ #define _OBSERVER_HPP_ namespace Framework { //============================================================================= // Sends notices struct IObservable { virtual void Notify () = 0; virtual void Dispose () = 0; }; //============================================================================= // Receives notices template <typename Observable> struct IObserver { virtual void NoticeChange (Observable subject, SubjectChange change) = 0; virtual void NoticeDispose (Observable subject) = 0; }; //============================================================================= class SubjectManager { //------------------------------------------------------------------------- public: SubjectManager () {} virtual ~SubjectManager () { try {} catch (...) {} } void RegisterSubject (Entity &ent) { entity_map_.insert (make_pair (ent.Id(), &ent)); } void RegisterSubject (Component &com) { component_map_.insert (make_pair (com.Id(), &com)); } /*void Connect (Subject &subject, IObserver<Subject> &observer) { }*/ //------------------------------------------------------------------------- private: entity_map_t entity_map_; component_map_t component_map_; SubjectManager (const SubjectManager& rhs); SubjectManager& operator= (const SubjectManager& rhs); }; /* //============================================================================= // List of multiple notifiables template <T> class NoticeList : public INotifiable <T> { public: void Add (T t) { list_.push_back (t); } void Notice (T t) { std::for_each (list_.begin(), list_.end(), bind2nd (notice_, t)); } void Dispose (T t) { std::for_each (list_.begin(), list_.end(), binder2nd (dispose_, t)); } private: list <INotifiable <T> > list_; static void notice_ (INotifiable <T> &n, T t) { n.Notice (t); } static void dispose_ (INotifiable <T> &n, T t) { n.Dispose (t); } NoticeList& operator= (const NoticeList& rhs); NoticeList (const NoticeList& rhs); }; class ObservableNode; //============================================================================= // Propagate changes in observables to notifiables class NotificationManager : public INotifiable <ObservableNode *> { private: typedef map <ObservableNode *, NoticeList<ObservableNode *> *> NoticeMap; public: void Notice (ObservableNode *n) { notices_[n].Notice (n); } void Dispose (ObservableNode *n) { notices_[n].Dispose (n); } void DeliverAll (NodeChangeScheduler schedule) { NoticeMap::iterator nit (notices_.begin()); for (; nit != notices_.end(); ++nit); } void Subscribe (ObservableNode *n, INotifiable <ObservableNode *> s) { s-> SetProtocol (n); if (!notices_.count (n)) notices_.insert (make_pair (n, new NoticeList <ObservableNode *>())); notices_[n].Add (s); } ObservableNode* MakeNode (ObservableNode *p, INotifiable <ObservableNode *> s) { ObservableNode *n (MakeNode (p, s)); Subscribe (n, s); return n; } private: NoticeMap notices_; NotificationManager (const NotificationManager& rhs); NotificationManager& operator= (const NotificationManager& rhs); }; //============================================================================= // Method of resolving a set of changes into one change class NodeChangeScheduler { public: NodeChangeScheduler (int p) : accum_ (p, NULL); virtual void operator() (const NodeChange &n) { if (result.protocol != n.protocol) throw new std::logic_error; accum_.data = n.data; // simply takes the last change } virtual NodeChange GetResult () { return accum_; // simply return internal ptr } virtual void ClearResult () { // no nothing } private: NodeChange accum_; NodeChangeScheduler& operator= (const NodeChangeScheduler& rhs); NodeChangeScheduler (const NodeChangeScheduler& rhs); } //============================================================================= // List of multiple changes to a node class ChangeList { public: void Add (NodeChange n) { list_.push_back (n); } NodeChange Accumulate (NodeChangeScheduler &sched) { std::for_each (list_.begin(), list_.end(), sched); return sched.GetResult(); } private: list <NodeChange> list_; ChangeList& operator= (const ChangeList& rhs); ChangeList (const ChangeList& rhs); }; //============================================================================= // Object which listens to observable nodes class NodeObserver : public INotifiable <ObservableNode *> { public: NodeObserver (int p) : protocol_ (p) {} virtual void Notice (ObservableNode *n) { changes_.Add (n); } virtual void Dispose (ObservableNode *n) { throw new std::runtime_error; } virtual void SetProtocol (ObservableNode *n) { n->change_->protocol = protocol_; } virtual void GetResult (NodeChangeScheduler &s) { return s.GetResult(); } private: ChangeList changes_; int protocol_; NodeObserver& operator= (const NodeObserver& rhs); NodeObserver (const NodeObserver& rhs); }; */ } #endif //_OBSERVER_HPP_
[ "ryanm@localhost.localdomain" ]
ryanm@localhost.localdomain
0463f3888a06ac8ac3c0e25bc55af57283499e2b
7b6b2872b979b10c60d7ddaa8fbb8ddef57e29d1
/old_zm_ir1/zmir1.cpp
e08b7e9a572c8ed17bec8bf6dcca402b8b02729e
[]
no_license
AumBhatt/aura-zmote
f33b4104919fd5d0f2a2912115a167ca63e18f61
ece1d9c586314f957067399675b2a3d74d14beb8
refs/heads/main
2023-07-10T19:37:36.201165
2021-08-18T16:38:45
2021-08-18T16:38:45
384,108,597
0
0
null
null
null
null
UTF-8
C++
false
false
7,180
cpp
// Poco Libraries #include <Poco/Net/HTTPClientSession.h> #include <Poco/Net/HTTPRequest.h> #include <Poco/Net/HTTPResponse.h> #include <Poco/StreamCopier.h> #include <Poco/DOM/Document.h> #include <Poco/DOM/DOMParser.h> #include <Poco/DOM/Element.h> #include <Poco/Path.h> #include <Poco/URI.h> #include <Poco/Exception.h> // RapidJSON Libraries #include "rapidjson/document.h" #include "rapidjson/writer.h" #include "rapidjson/stringbuffer.h" #include "rapidjson/filereadstream.h" // Boost C++ Libraries #include <boost/algorithm/string.hpp> // Standard C++ Libraries #include <iostream> #include <sstream> #include <string> #include <cstdio> #include <bits/stdc++.h> #include <unistd.h> #include <thread> std::string learnedValue; namespace Zmote_IR { std::string handleSendIRResponse(std::string); std::string sendPocoRequest(std::string, std::string, std::string, std::string); std::string createIRCommand(std::string, std::string); std::string learningModeResponseHandler(std::string, std::string); void learningMode(std::string, std::string); int startLearnerMode(std::string, std::string); } /* std::vector<std::string> Zmote_IR::split_str(std::string str, std::string delimiter) { std::vector<std::string> split; size_t pos = 0; try { while((pos = str.find(delimiter)) != std::string::npos) { split.push_back(str.substr(0, pos)); str.erase(0, pos + delimiter.length()); } return split; } catch(std::exception &e) { std::cout<<"split_str: Unable to split at delimiter "<<delimiter; throw e; } } */ std::string Zmote_IR::handleSendIRResponse(std::string responseStr) { std::vector<std::string> response; try { boost::split(response, responseStr, boost::is_any_of(",")); if(response.at(0) != "completeir") { throw "zmote: Request Error"; } else { std::cout<<"\nzmote: Response Complete!\nResponse:\n "<<responseStr<<"\n"; return responseStr; } } catch(const char *ex) { std::cout << std::endl << ex << std::endl; return ""; } } std::string Zmote_IR::sendPocoRequest(std::string ip_addr, std::string zmote_uuid, std::string contentType, std::string requestBody) { try { ip_addr = "http://" + ip_addr + "/v2/" + zmote_uuid; Poco::URI uri(ip_addr); Poco::Net::HTTPClientSession session(uri.getHost(), uri.getPort()); std::string path(uri.getPathAndQuery()); if(path.empty()) { path = '/'; } Poco::Net::HTTPRequest req(Poco::Net::HTTPRequest::HTTP_POST, path, Poco::Net::HTTPMessage::HTTP_1_1); req.setContentLength(requestBody.length()); req.setContentType(contentType); session.sendRequest(req) << requestBody; Poco::Net::HTTPResponse res; std::istream &is = session.receiveResponse(res); std::stringstream str_stream; Poco::StreamCopier::copyStream(is, str_stream); if(str_stream.str().empty()) std::cout<<"zmote: No/Empty Response from zmote"; else return str_stream.str(); } catch(std::exception &e) { throw e; return ""; } } std::string Zmote_IR::createIRCommand(std::string s_mod_frequency, std::string mark_space_timing) { int i_mod_freq; try { i_mod_freq = std::stoi(s_mod_frequency); // std::cout<<mark_space_timing; if(!(i_mod_freq >= 36000 && i_mod_freq <= 60000)) { throw "zmote: modulation frequency is out of range [36kHz, 60kHz]"; } else return "sendir,1:1,0," + s_mod_frequency + ",1,1," + mark_space_timing; } catch(const char *ex) { std::cout << std::endl << ex << std::endl; return ""; } } std::string Zmote_IR::learningModeResponseHandler(std::string pocoResponse, std::string zmote_uuid) { std::string delim = "IR Learner Enabled"; if(pocoResponse.find("Disabled") != std::string::npos) { std::cout<<"\n"<<pocoResponse<<"\n"; return ""; } else { try { pocoResponse = pocoResponse.erase(0, pocoResponse.find(delim) + delim.length()); return "{Zmote_IR::learned: {'uuid': '" + zmote_uuid + "', 'ir_command': '" + pocoResponse + "'}}"; } catch(std::exception &e) { std::cout<<"\nzmote: learning error"; return ""; } } } int Zmote_IR::startLearnerMode(std::string ip_addr, std::string zmote_uuid) { if( !(learnedValue = Zmote_IR::learningModeResponseHandler(Zmote_IR::sendPocoRequest(ip_addr, zmote_uuid, "text/plain", "get_IRL"), zmote_uuid)).empty() ) { std::cout << "\nResponse: " << learnedValue << std::endl; return 0; // success } return -1; // error / empty response } void Zmote_IR::learningMode(std::string ip_addr, std::string zmote_uuid) { // Create learning mode thread std::thread startLearning((Zmote_IR::startLearnerMode), ip_addr, zmote_uuid); startLearning.detach(); // Detach learning mode thread std::cout << std::this_thread::get_id(); // Listen to key press on 'main' thread std::cout<<"\nPress `return` to exit learner mode\n"; std::cin.get(); // Join learning mode thread to main thread if key pressed // startLearning.join(); if((learnedValue).empty()) { startLearning.~thread(); // Release thread's memory Zmote_IR::learningModeResponseHandler(Zmote_IR::sendPocoRequest(ip_addr, zmote_uuid, "text/plain", "stop_IRL"), zmote_uuid); } // std::cout << Zmote_IR::learnedValue; return; } int main(int argc, char **args) { /* args[6] = [ 0: run exec 1: ip_addr, 2: zmote_uuid, 3: option, (learn/control mode) 4: s_mod_frequency, 5: mark_space_timing ] */ try { if(std::string(args[3]) == "-learn" && argc >= 3) { // Learning Mode Zmote_IR::learningMode(args[1], args[2]); } else if(std::string(args[3]) == "-control") { // Send IR Command Zmote_IR::handleSendIRResponse(Zmote_IR::sendPocoRequest(args[1], args[2], "text/plain", Zmote_IR::createIRCommand(args[4], args[5]))); } else{ std::cout<<"zmote: too few arguments"; std::cout<<"\nUsage:\n "<<args[0]<<" <ip-address> <uuid> [-options] [-params]"; std::cout<<"\n [options]: \n [-learn] = zmote learn mode\n"; std::cout<<"\n [-control] = send ir command \n\t [-params]: <modulation_frequency> <mark_space_timing>\n"; std::cout<<"\n [-help] = Usage Help"; std::cout<<std::endl; } /* // Function Calls for : // Send IR Command Zmote_IR::handleSendIRResponse(Zmote_IR::sendPocoRequest(args[2], args[3], "text/plain", Zmote_IR::createIRCommand(args[4], args[5]))); // Learning Mode : Zmote_IR::learningModeResponseHandler(Zmote_IR::sendPocoRequest(args[2], args[3], "text/plain", "get_IRL"), args[3]); */ } catch(std::exception &e) { } return 0; }
[ "aum9698@outlook.com" ]
aum9698@outlook.com
f17c193546efd68d17ae5237b432e8c66a423289
fb7e3dceb34e5a0844e114d8e55c61d94edb5ce5
/src/server/game/Globals/ConversationDataStore.cpp
efab3c9c7dd63c73659d43158ba0838a161e982a
[]
no_license
osleyder85/BFA
12a6821d237bdeb61e862736bbf625abd3730a46
0ea542c730f8834fa250e03a9d590a547b696c9b
refs/heads/main
2023-08-25T14:09:21.647282
2021-01-17T06:30:26
2021-01-17T06:30:26
303,239,655
0
1
null
null
null
null
UTF-8
C++
false
false
10,207
cpp
/* * Copyright (C) 2020 BfaCore * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "ConversationDataStore.h" #include "Containers.h" #include "DatabaseEnv.h" #include "DB2Stores.h" #include "Log.h" #include "ObjectMgr.h" #include "Timer.h" namespace { std::unordered_map<uint32, ConversationTemplate> _conversationTemplateStore; std::unordered_map<uint32, ConversationActorTemplate> _conversationActorTemplateStore; std::unordered_map<uint32, ConversationLineTemplate> _conversationLineTemplateStore; } void ConversationDataStore::LoadConversationTemplates() { _conversationActorTemplateStore.clear(); _conversationLineTemplateStore.clear(); _conversationTemplateStore.clear(); std::unordered_map<uint32, std::vector<ConversationActorTemplate const*>> actorsByConversation; std::unordered_map<uint32, std::vector<ObjectGuid::LowType>> actorGuidsByConversation; std::unordered_map<uint32, std::vector<uint32>> actorNearIdsByConversation; if (QueryResult actorTemplates = WorldDatabase.Query("SELECT Id, CreatureId, CreatureModelId FROM conversation_actor_template")) { uint32 oldMSTime = getMSTime(); do { Field* fields = actorTemplates->Fetch(); uint32 id = fields[0].GetUInt32(); ConversationActorTemplate& conversationActor = _conversationActorTemplateStore[id]; conversationActor.Id = id; conversationActor.CreatureId = fields[1].GetUInt32(); conversationActor.CreatureModelId = fields[2].GetUInt32(); } while (actorTemplates->NextRow()); TC_LOG_INFO("server.loading", ">> Loaded " SZFMTD " Conversation actor templates in %u ms", _conversationActorTemplateStore.size(), GetMSTimeDiffToNow(oldMSTime)); } else { TC_LOG_INFO("server.loading", ">> Loaded 0 Conversation actor templates. DB table `conversation_actor_template` is empty."); } if (QueryResult lineTemplates = WorldDatabase.Query("SELECT Id, StartTime, UiCameraID, ActorIdx, Flags FROM conversation_line_template")) { uint32 oldMSTime = getMSTime(); do { Field* fields = lineTemplates->Fetch(); uint32 id = fields[0].GetUInt32(); if (!sConversationLineStore.LookupEntry(id)) { TC_LOG_ERROR("sql.sql", "Table `conversation_line_template` has template for non existing ConversationLine (ID: %u), skipped", id); continue; } ConversationLineTemplate& conversationLine = _conversationLineTemplateStore[id]; conversationLine.Id = id; conversationLine.StartTime = fields[1].GetUInt32(); conversationLine.UiCameraID = fields[2].GetUInt32(); conversationLine.ActorIdx = fields[3].GetUInt8(); conversationLine.Flags = fields[4].GetUInt8(); } while (lineTemplates->NextRow()); TC_LOG_INFO("server.loading", ">> Loaded " SZFMTD " Conversation line templates in %u ms", _conversationLineTemplateStore.size(), GetMSTimeDiffToNow(oldMSTime)); } else { TC_LOG_INFO("server.loading", ">> Loaded 0 Conversation line templates. DB table `conversation_line_template` is empty."); } if (QueryResult actors = WorldDatabase.Query("SELECT ConversationId, ConversationActorId, ConversationActorGuid, ConversationActorNearId, Idx FROM conversation_actors")) { uint32 oldMSTime = getMSTime(); uint32 count = 0; do { Field* fields = actors->Fetch(); uint32 conversationId = fields[0].GetUInt32(); uint32 actorId = fields[1].GetUInt32(); ObjectGuid::LowType actorGuid = fields[2].GetUInt64(); uint32 actorNearId = fields[3].GetUInt32(); uint16 idx = fields[4].GetUInt16(); if (actorId != 0 && actorGuid != 0) { TC_LOG_ERROR("sql.sql", "Table `conversation_actors` references both actor (ID: %u) and actorGuid (GUID: " UI64FMTD ") for Conversation %u, skipped.", actorId, actorGuid, conversationId); continue; } if (actorId != 0) { if (ConversationActorTemplate const* conversationActorTemplate = Trinity::Containers::MapGetValuePtr(_conversationActorTemplateStore, actorId)) { std::vector<ConversationActorTemplate const*>& actors = actorsByConversation[conversationId]; if (actors.size() <= idx) actors.resize(idx + 1); actors[idx] = conversationActorTemplate; ++count; } else TC_LOG_ERROR("sql.sql", "Table `conversation_actors` references an invalid actor (ID: %u) for Conversation %u, skipped", actorId, conversationId); } else if (actorGuid != 0) { if (sObjectMgr->GetCreatureData(actorGuid)) { std::vector<ObjectGuid::LowType>& guids = actorGuidsByConversation[conversationId]; if (guids.size() <= idx) guids.resize(idx + 1); guids[idx] = actorGuid; ++count; } else TC_LOG_ERROR("sql.sql", "Table `conversation_actors` references an invalid creature guid (GUID: " UI64FMTD ") for Conversation %u, skipped", actorGuid, conversationId); } else if (actorNearId != 0) { if (sObjectMgr->GetCreatureTemplate(actorNearId)) { std::vector<uint32>& nearIds = actorNearIdsByConversation[conversationId]; if (nearIds.size() <= idx) nearIds.resize(idx + 1); nearIds[idx] = actorNearId; ++count; } else TC_LOG_ERROR("sql.sql", "Table `conversation_actors` references an invalid creature id (%u) for Conversation %u, skipped", actorNearId, conversationId); } } while (actors->NextRow()); TC_LOG_INFO("server.loading", ">> Loaded %u Conversation actors in %u ms", count, GetMSTimeDiffToNow(oldMSTime)); } else { TC_LOG_INFO("server.loading", ">> Loaded 0 Conversation actors. DB table `conversation_actors` is empty."); } if (QueryResult templates = WorldDatabase.Query("SELECT Id, FirstLineId, LastLineEndTime, TextureKitId, ScriptName FROM conversation_template")) { uint32 oldMSTime = getMSTime(); do { Field* fields = templates->Fetch(); ConversationTemplate conversationTemplate; conversationTemplate.Id = fields[0].GetUInt32(); conversationTemplate.FirstLineId = fields[1].GetUInt32(); conversationTemplate.LastLineEndTime = fields[2].GetUInt32(); conversationTemplate.TextureKitId = fields[3].GetUInt32(); conversationTemplate.ScriptId = sObjectMgr->GetScriptIdOrAdd(fields[4].GetString()); conversationTemplate.Actors = std::move(actorsByConversation[conversationTemplate.Id]); conversationTemplate.ActorGuids = std::move(actorGuidsByConversation[conversationTemplate.Id]); conversationTemplate.ActorNearIds = std::move(actorNearIdsByConversation[conversationTemplate.Id]); ConversationLineEntry const* currentConversationLine = sConversationLineStore.LookupEntry(conversationTemplate.FirstLineId); if (!currentConversationLine) TC_LOG_ERROR("sql.sql", "Table `conversation_template` references an invalid line (ID: %u) for Conversation %u, skipped", conversationTemplate.FirstLineId, conversationTemplate.Id); while (currentConversationLine != nullptr) { if (ConversationLineTemplate const* conversationLineTemplate = Trinity::Containers::MapGetValuePtr(_conversationLineTemplateStore, currentConversationLine->ID)) conversationTemplate.Lines.push_back(conversationLineTemplate); else TC_LOG_ERROR("sql.sql", "Table `conversation_line_template` has missing template for line (ID: %u) in Conversation %u, skipped", currentConversationLine->ID, conversationTemplate.Id); if (!currentConversationLine->NextConversationLineID) break; currentConversationLine = sConversationLineStore.AssertEntry(currentConversationLine->NextConversationLineID); } _conversationTemplateStore[conversationTemplate.Id] = std::move(conversationTemplate); } while (templates->NextRow()); TC_LOG_INFO("server.loading", ">> Loaded " SZFMTD " Conversation templates in %u ms", _conversationTemplateStore.size(), GetMSTimeDiffToNow(oldMSTime)); } else { TC_LOG_INFO("server.loading", ">> Loaded 0 Conversation templates. DB table `conversation_template` is empty."); } } ConversationTemplate const* ConversationDataStore::GetConversationTemplate(uint32 conversationId) const { return Trinity::Containers::MapGetValuePtr(_conversationTemplateStore, conversationId); } ConversationDataStore* ConversationDataStore::Instance() { static ConversationDataStore instance; return &instance; }
[ "70058901+CrimsonDespair@users.noreply.github.com" ]
70058901+CrimsonDespair@users.noreply.github.com
6545297dadacc8c1188ce844ceee4bcbf565fe59
d1795f5b85c48c159f681c30bbeb27f87ed1ad4e
/bj_11049.cpp
aa3bf339eadcbc87faecfd0cbafa5bda1b48a286
[]
no_license
sh21kang/Algorithm
6d69e09810855add35bc7cfbfa3763e38971063c
5bb649af840e4b9c64d26c995dfbe88071498c13
refs/heads/master
2020-05-26T23:03:40.567235
2019-06-02T10:01:36
2019-06-02T10:01:36
188,407,653
0
0
null
null
null
null
UTF-8
C++
false
false
641
cpp
#include <iostream> #include <algorithm> #include <limits.h> #include <cstring> using namespace std; int arr[500][2]; int dp[500][500]; int DP(int start, int end){ if(start ==end) return 0; int &ret = dp[start][end]; if(ret != -1) return ret; int mm = INT_MAX; for (int k = start; k < end; ++k) mm = min(mm, DP(start, k) + DP(k + 1, end) + arr[k][0] * arr[k][1] * arr[end][1]); return ret = mm; } int main(){ int N; cin >> N; for(int i =0 ; i< N ;i++){ cin >> arr[i][0] >> arr[i][1]; } memset(dp, -1, sizeof(dp)); cout << DP(0,N-1); return 0; }
[ "sh21kan@naver.com" ]
sh21kan@naver.com
fe7a45f153bdaebe01110ee8725a26aecbb69dc5
09e0347fa988563a252d9f0b49ba1cf54cca30a1
/soelogger/src/soelogger.cpp
932fbd5a3539f718fed6ce428f725dd19233143f
[]
no_license
janlt/SOE
501b94a94fe8d53a3289db057b34bb2ad907b33e
883ea8fb5b04393e387a8af819d7eb500269d6fe
refs/heads/master
2020-09-19T03:10:07.868212
2020-03-21T07:19:38
2020-03-21T07:19:38
224,192,571
1
0
null
null
null
null
UTF-8
C++
false
false
3,136
cpp
/** * @file soelogger.cpp * @author Jan Lisowiec <jlisowiec@gmail.com> * @version 1.0 * @brief Soe Session API * * * @section Copyright * * Copyright Notice: * * Copyright 2014-2019 Jan Lisowiec jlisowiec@gmail.com, * * * This product is free software; you can redistribute it and/or, * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * This software is distributed in the hope that it will be useful. * * * @section Licence * * GPL 2 or later * * * @section Description * * soe_soe * * @section Source * * * * */ /* * soelogger.cpp * * Created on: Sep 19, 2017 * Author: Jan Lisowiec */ #include <iostream> #include <sstream> #include <string> #include "soelogger.hpp" #include "soeutil.h" using namespace std; namespace SoeLogger { class LogClear; class LogDebug; class LogError; class LogInfo; } ostream &operator << (ostream &out, const SoeLogger::LogClear &_clear) { dynamic_cast<ostringstream &>(out).str(""); out << _clear.file << ":" << _clear.line << " " << _clear.func << "(): "; return out; } ostream &operator << (ostream &out, const SoeLogger::LogDebug &_debug) { soe_log(SOE_DEBUG, "%s\n", dynamic_cast<ostringstream &>(out).str().c_str()); return out; } ostream &operator << (ostream &out, const SoeLogger::LogError &_error) { soe_log(SOE_ERROR, "%s\n", dynamic_cast<ostringstream &>(out).str().c_str()); return out; } ostream &operator << (ostream &out, const SoeLogger::LogInfo &_info) { soe_log(SOE_INFO, "%s\n", dynamic_cast<ostringstream &>(out).str().c_str()); return out; } namespace SoeLogger { LogClear::LogClear(const char *_file, const char *_func, int _line) :file(_file), func(_func), line(_line) {} LogClear::~LogClear() {} LogDebug::LogDebug() {} LogDebug::~LogDebug() {} LogError::LogError() {} LogError::~LogError() {} LogInfo::LogInfo() {} LogInfo::~LogInfo() {} Logger::Logger() {} Logger::~Logger() {} ostringstream &Logger::Clear(const char *_file, const char *_func, int _line) { str(""); *this << _file << ":" << _line << " " << _func << "(): "; return *this; } ostringstream &Logger::operator << (const LogClear &_clear) { *this << _clear.file << ":" << _clear.line << " " << _clear.func << "(): "; return *this; } ostringstream &Logger::operator << (const LogDebug &_debug) { soe_log(SOE_DEBUG, "%s\n", this->str().c_str()); return *this; } ostringstream &Logger::operator << (const LogError &_error) { soe_log(SOE_ERROR, "%s\n", this->str().c_str()); return *this; } ostringstream &Logger::operator << (const LogInfo &_info) { soe_log(SOE_INFO, "%s\n", this->str().c_str()); return *this; } void Logger::Debug() { soe_log(SOE_DEBUG, "%s\n", this->str().c_str()); } void Logger::Error() { soe_log(SOE_ERROR, "%s\n", this->str().c_str()); } void Logger::Info() { soe_log(SOE_INFO, "%s\n", this->str().c_str()); } }
[ "jan.lisowiec@intel.com" ]
jan.lisowiec@intel.com
0129a4bff4c0fbf088b56f53148dc5512bedbfa1
9b527d9e39ff2b33e2e86af842031bf27d4bebe4
/C/C-IMG/openGL/C-Projection/CSE287ProjectOne/CSE287Lab/BasicIncludesAndDefines.h
8c4e7f07d848faf30258ac302f0d47f581640c75
[]
no_license
Brinews/jacky
c50cdc5471ef7a764c2a27313ebf848e41c4aee0
e3f0f4bdf4253448f22306b353cb45560e882587
refs/heads/master
2021-01-17T08:32:11.034322
2017-12-03T08:28:17
2017-12-03T08:28:17
14,444,828
1
2
null
null
null
null
UTF-8
C++
false
false
1,683
h
#pragma once #include <iostream> // Stream input and output operations #include <vector> // Sequence containers for arrays that can change in size #include <memory> // General utilities to manage dynamic memory // Glut takes care of all the system-specific chores required for creating windows, // initializing OpenGL contexts, and handling input events #include <GL/freeglut.h> // GLM math library includes (See http://glm.g-truc.net/0.9.7/glm-0.9.7.pdf) #define GLM_SWIZZLE // Enable GLM "swizzle" operators // Basic GLM functionality #include <glm/glm.hpp> // Stable glm extensions //#include <glm/gtc/matrix_transform.hpp> //#include <glm/gtc/type_ptr.hpp> //#include <glm/gtc/constants.hpp> // Experimental GLM extensions. #include <glm/gtx/rotate_vector.hpp> //#include <glm/gtx/euler_angles.hpp> //#include <glm/gtx/quaternion.hpp> // #defines for text substitution in source code prior to compile #define color glm::vec4 // Attenuation factors #define CONSTANT_ATTEN 1.0f #define LINEAR_ATTEN 0.01f #define QUADRATIC_ATTEN 0.001f #define WINDOW_WIDTH 512 // Default window width in pixels #define WINDOW_HEIGHT 316 // Default window height in pixels = width/1.618 // Small value used to create offset to avoid "surface acne" #define EPSILON 1.0E-4f #define M_PI glm::pi<float>() // Function for generating random colors. Alpha value is always // set to 1.0 color getRandomColor(); // Simple functions for printing vectors and matrices to the console void print(const glm::vec2 & v0); void print(const glm::vec3 & v0); void print(const glm::vec4 & v0); void print(const glm::mat2 & m); void print(const glm::mat3 & m); void print(const glm::mat4 & m);
[ "brinewsor@gmail.com" ]
brinewsor@gmail.com
c18e0b80127b643f76fa50a41336f811cd154fbd
b57193090bbfa5838f1e673f37ac82ad26286b54
/src/escape_css.cxx
8d42b6d5f0d37d4ae7f9b2b3cbd74534e4cc6fd2
[]
no_license
luckydonald-backup/beng-proxy
8021e4fe7bb06e24b6f7d2a5464fc6051a8df25f
34ef0a94c7005bde20390c3b60a6439cc6770573
refs/heads/master
2020-05-24T20:56:31.428664
2019-05-16T08:40:44
2019-05-16T09:14:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,647
cxx
/* * Copyright 2007-2017 Content Management AG * All rights reserved. * * author: Max Kellermann <mk@cm4all.com> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "escape_css.hxx" #include "escape_class.hxx" #include <assert.h> #include <string.h> static const char * css_unescape_find(StringView p) { return p.Find('\\'); } static constexpr bool need_simple_escape(char ch) { return ch == '\\' || ch == '"' || ch == '\''; } static size_t css_unescape(StringView _p, char *q) { const char *p = _p.begin(), *const p_end = _p.end(), *const q_start = q; const char *bs; while ((bs = (const char *)memchr(p, '\\', p_end - p)) != nullptr) { memmove(q, p, bs - p); q += bs - p; p = bs + 1; if (p < p_end && need_simple_escape(*p)) *q++ = *p++; else /* XXX implement newline and hex codes */ *q++ = '\\'; } memmove(q, p, p_end - p); q += p_end - p; return q - q_start; } static size_t css_escape_size(StringView _p) { const char *p = _p.begin(), *const end = _p.end(); size_t size = 0; while (p < end) { if (need_simple_escape(*p)) size += 2; else /* XXX implement newline and hex codes */ ++size; } return size; } static const char * css_escape_find(StringView _p) { const char *p = _p.begin(), *const end = _p.end(); while (p < end) { if (need_simple_escape(*p)) return p; ++p; } return nullptr; } static const char * css_escape_char(char ch) { switch (ch) { case '\\': return "\\\\"; case '"': return "\\\""; case '\'': return "\\'"; default: assert(false); return nullptr; } } static size_t css_escape(StringView _p, char *q) { const char *p = _p.begin(), *const p_end = _p.end(), *const q_start = q; while (p < p_end) { char ch = *p++; if (need_simple_escape(ch)) { *q++ = '\\'; *q++ = ch; } else *q++ = ch; } return q - q_start; } const struct escape_class css_escape_class = { .unescape_find = css_unescape_find, .unescape = css_unescape, .escape_find = css_escape_find, .escape_char = css_escape_char, .escape_size = css_escape_size, .escape = css_escape, };
[ "mk@cm4all.com" ]
mk@cm4all.com
e78ab9ea09001c7219318a62d98f6f97b7a2d4f7
ecaf31b86b4b61b0055e1417c33e797938986241
/main.cpp
bf919e41dc8bdb357c517f4a5aabb3beed7a396e
[]
no_license
GavinSlusher/The-Cabin
b6b30060afa1749517bb35f1af49e5b3d8ecdd91
b08c02c08cd2bf136a8eda5d125c091c939db556
refs/heads/master
2021-07-01T11:25:53.076092
2020-11-05T16:57:15
2020-11-05T16:57:15
191,651,490
0
0
null
null
null
null
UTF-8
C++
false
false
914
cpp
/******************************************************************************* * ** Author: Gavin Slusher * ** Date: 6/2/2019 * ** Description: Main file. Contains main logic to create the Game class * and run the game. Also seeds the random number generator * here because seeding rand() every time we call the function * would result in errors. * ** *************************************************************************/ #include <iostream> #include <string> #include <ctime> #include "displayMenu.hpp" #include "Game.hpp" int main() { int choice; do { choice = displayMenu(); if (choice == 1) { Game finalProject; finalProject.mainGame(); } //finalProject.~Game(); //deallocate in case want to play again }while (choice != 2); return 0; }
[ "noreply@github.com" ]
noreply@github.com
da38473ca4453cab1d04a8d7e9da6d3bce93b0f9
db00f801f91c0e5f0937b37981fcdf9bdf5463da
/src/qt/test/rpcnestedtests.h
c48bbe6d1e70c03534cb84b241a3eaf3aefe73b9
[ "MIT" ]
permissive
kitkatty/bitcoinrandom
bb3aef4fb008c85d2b2eba78912f0212ed294518
290e9e5c48f12b89147cf59220449ce92e2ab892
refs/heads/master
2020-03-20T12:22:19.282998
2018-06-24T18:33:52
2018-06-24T18:33:52
137,427,908
3
0
null
null
null
null
UTF-8
C++
false
false
563
h
// Copyright (c) 2016 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOINRANDOM_QT_TEST_RPC_NESTED_TESTS_H #define BITCOINRANDOM_QT_TEST_RPC_NESTED_TESTS_H #include <QObject> #include <QTest> #include "txdb.h" #include "txmempool.h" class RPCNestedTests : public QObject { Q_OBJECT private Q_SLOTS: void rpcNestedTests(); private: CCoinsViewDB* pcoinsdbview; }; #endif // BITCOINRANDOM_QT_TEST_RPC_NESTED_TESTS_H
[ "34012208+kitkatty@users.noreply.github.com" ]
34012208+kitkatty@users.noreply.github.com
fd54c9cf5a65844c04238187427e96368669ce5d
7d23b7237a8c435c3c4324f1b59ef61e8b2bde63
/include/win32/http/async_http/connection.cpp
816803075d08b91250a6d4268dc739bd19eacdf1
[]
no_license
chenyu2202863/smart_cpp_lib
af1ec275090bf59af3c29df72b702b94e1e87792
31de423f61998f3b82a14fba1d25653d45e4e719
refs/heads/master
2021-01-13T01:50:49.456118
2016-02-01T07:11:01
2016-02-01T07:11:01
7,198,248
4
3
null
null
null
null
UTF-8
C++
false
false
291
cpp
#include "connection.hpp" #include "session.hpp" #include "url.hpp" namespace http { connection::connection(const session &session_val, const url &url_path) : handle(::WinHttpConnect(session_val, url_path.host(), url_path.port(), 0)) { if( !is_valid() ) throw http_error(); } }
[ "chenyu2202863@gmail.com" ]
chenyu2202863@gmail.com
f064e05bbdb48abfbbbc6ffeb90cd4438bb0e8ca
600df3590cce1fe49b9a96e9ca5b5242884a2a70
/third_party/WebKit/Source/core/css/invalidation/PendingInvalidations.h
145a94bb8583b69051d395535ee3e978b93b9c04
[ "BSD-2-Clause", "LGPL-2.1-only", "LGPL-2.0-only", "BSD-3-Clause", "LGPL-2.0-or-later", "LicenseRef-scancode-warranty-disclaimer", "GPL-1.0-or-later", "GPL-2.0-only", "LicenseRef-scancode-other-copyleft", "MIT", "Apache-2.0" ]
permissive
metux/chromium-suckless
efd087ba4f4070a6caac5bfbfb0f7a4e2f3c438a
72a05af97787001756bae2511b7985e61498c965
refs/heads/orig
2022-12-04T23:53:58.681218
2017-04-30T10:59:06
2017-04-30T23:35:58
89,884,931
5
3
BSD-3-Clause
2022-11-23T20:52:53
2017-05-01T00:09:08
null
UTF-8
C++
false
false
851
h
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef PendingInvalidations_h #define PendingInvalidations_h #include "core/css/invalidation/InvalidationSet.h" namespace blink { class CORE_EXPORT PendingInvalidations final { WTF_MAKE_NONCOPYABLE(PendingInvalidations); public: PendingInvalidations() {} InvalidationSetVector& descendants() { return m_descendants; } const InvalidationSetVector& descendants() const { return m_descendants; } InvalidationSetVector& siblings() { return m_siblings; } const InvalidationSetVector& siblings() const { return m_siblings; } private: InvalidationSetVector m_descendants; InvalidationSetVector m_siblings; }; } // namespace blink #endif // PendingInvalidations_h
[ "enrico.weigelt@gr13.net" ]
enrico.weigelt@gr13.net
ea8021b09d9506c24883f36db24c5d6eec56667c
6ea50d800eaf5690de87eea3f99839f07c662c8b
/ver.0.15.0.1/ChunkSource.h
09c5ede9f838f7107063a389bbbbcf563f52d1ed
[]
no_license
Toku555/MCPE-Headers
73eefeab8754a9ce9db2545fb0ea437328cade9e
b0806aebd8c3f4638a1972199623d1bf686e6497
refs/heads/master
2021-01-15T20:53:23.115576
2016-09-01T15:38:27
2016-09-01T15:38:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,741
h
#pragma once class ChunkSource{ public: ChunkSource(ChunkSource&); ChunkSource(ChunkSource&); ChunkSource(Level *,Dimension *,int); ChunkSource(Level *,Dimension *,int); ChunkSource(std::unique_ptr<ChunkSource,std::default_delete<ChunkSource>>); ChunkSource(std::unique_ptr<ChunkSource,std::default_delete<ChunkSource>>); void _fireChunkLoaded(LevelChunk &); void _getChunkPriority(LevelChunk const&); void _getChunkPriority(LevelChunk const&); void _startPostProcessing(LevelChunk &); void _startPostProcessing(LevelChunk &); void _startPostProcessingArea(LevelChunk &); void _startPostProcessingArea(LevelChunk &); void acquireDiscarded(std::unique_ptr<LevelChunk,std::default_delete<LevelChunk>> &&); void acquireDiscarded(std::unique_ptr<LevelChunk,std::default_delete<LevelChunk>> &&); void compact(void); void compact(void); void discard(LevelChunk &); void discard(std::unique_ptr<LevelChunk,std::default_delete<LevelChunk>> &); void getAvailableChunk(ChunkPos const&); void getAvailableChunk(ChunkPos const&); void getAvailableChunkAt(BlockPos const&); void getChunkSide(void); void getChunkSide(void); void getDimension(void); void getDimension(void); void getExistingChunk(ChunkPos const&); void getExistingChunk(ChunkPos const&); void getGeneratedChunk(ChunkPos const&); void getGeneratedChunk(ChunkPos const&); void getLevel(void); void getLevel(void); void getMobsAt(BlockSource &,EntityType,BlockPos const&); void getMobsAt(BlockSource &,EntityType,BlockPos const&); void getOrLoadChunk(ChunkPos const&,ChunkSource::LoadMode); void getOrLoadChunk(ChunkPos const&,ChunkSource::LoadMode); void getParent(void); void getStoredChunks(void); void getStoredChunks(void); void getStoredChunks(void); void getStoredChunks(void); void function<void (); void function<void (); void function<void (); void function<void (); void hintDiscardBatchBegin(void); void hintDiscardBatchBegin(void); void hintDiscardBatchEnd(void); void hintDiscardBatchEnd(void); void loadChunk(LevelChunk &); void loadChunk(LevelChunk &); void postProcess(ChunkViewSource &); void postProcess(ChunkViewSource &); void postProcessMobsAt(BlockSource *,int,int,Random &); void postProcessMobsAt(BlockSource *,int,int,Random &); void releaseChunk(LevelChunk &); void releaseChunk(LevelChunk &); void requestChunk(ChunkPos const&,ChunkSource::LoadMode); void requestChunk(ChunkPos const&,ChunkSource::LoadMode); void saveLiveChunk(LevelChunk &); void saveLiveChunk(LevelChunk &); void waitDiscardFinished(void); void waitDiscardFinished(void); void ~ChunkSource(); void ~ChunkSource(); void ~ChunkSource(); void ~ChunkSource(); };
[ "sinigami3427@gmail.com" ]
sinigami3427@gmail.com
a2d824ff0457ca843c01b50fc9e38fd8dec2f8ae
659d99d090479506b63b374831a049dba5d70fcf
/xray-svn-trunk/xr_3da/xrGame/ui/UIOutfitSlot.h
a86f2b960f81f291f26296b64cd1f5e4bbb850ed
[]
no_license
ssijonson/Rengen_Luch
a9312fed06dd08c7de19f36e5fd5e476881beb85
9bd0ff54408a890d4bdac1c493d67ce26b964555
refs/heads/main
2023-05-03T13:09:58.983176
2021-05-19T10:04:47
2021-05-19T10:04:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
785
h
#pragma once #include "UIDragDropListEx.h" class CUIOutfitDragDropList :public CUIDragDropListEx { typedef CUIDragDropListEx inherited; CUIStatic* m_background; shared_str m_default_outfit; void SetOutfit (CUICellItem* itm); public: CUIOutfitDragDropList (); virtual ~CUIOutfitDragDropList (); void SetItem (CUICellItem* itm) override; //auto void SetItem (CUICellItem* itm, Fvector2 abs_pos) override; // start at cursor pos void SetItem (CUICellItem* itm, Ivector2 cell_pos) override; // start at cell CUICellItem* RemoveItem (CUICellItem* itm, bool force_root) override; void ClearAll (bool) override; void Draw () override; void SetDefaultOutfit (LPCSTR default_outfit); };
[ "16670637+KRodinn@users.noreply.github.com" ]
16670637+KRodinn@users.noreply.github.com
462110c5d37ad799795a2b395fd9fa9fa971c8fb
53ce141f8ae20328ab5edb1e660e66de94b8f061
/src/chainparams.cpp
349c423f4fc1c291a8ba2421f8f3f0ac6bb3caaf
[ "MIT" ]
permissive
c0de0x/CBSLCoin
a1de4a62751817e5bfb2906c2a941e2fb508ac06
e57e81e77744518d3eace0dbaa718abb0ed7da0e
refs/heads/master
2020-05-21T05:56:28.480348
2019-05-08T22:55:49
2019-05-08T22:55:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,246
cpp
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The PIVX developers // Copyright (c) 2019 The CBSLCoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "chainparams.h" #include "random.h" #include "util.h" #include "utilstrencodings.h" #include <assert.h> #include <boost/assign/list_of.hpp> using namespace std; using namespace boost::assign; struct SeedSpec6 { uint8_t addr[16]; uint16_t port; }; #include "chainparamsseeds.h" /** * Main network */ //! Convert the pnSeeds6 array into usable address objects. static void convertSeed6(std::vector<CAddress>& vSeedsOut, const SeedSpec6* data, unsigned int count) { // It'll only connect to one or two seed nodes because once it connects, // it'll get a pile of addresses with newer timestamps. // Seed nodes are given a random 'last seen time' of between one and two // weeks ago. const int64_t nOneWeek = 7 * 24 * 60 * 60; for (unsigned int i = 0; i < count; i++) { struct in6_addr ip; memcpy(&ip, data[i].addr, sizeof(ip)); CAddress addr(CService(ip, data[i].port)); addr.nTime = GetTime() - GetRand(nOneWeek) - nOneWeek; vSeedsOut.push_back(addr); } } // What makes a good checkpoint block? // + Is surrounded by blocks with reasonable timestamps // (no blocks before with a timestamp after, none after with // timestamp before) // + Contains no strange transactions static Checkpoints::MapCheckpoints mapCheckpoints = boost::assign::map_list_of (0, uint256("0x00000a5dd74ecb6046220fd447bce2e04bed74ca58bc132b512c8cc1450c8749")); static const Checkpoints::CCheckpointData data = { &mapCheckpoints, 1556880250, // * UNIX timestamp of last checkpoint block 1, // * total number of transactions between genesis and last checkpoint // (the tx=... number in the SetBestChain debug.log lines) 100 // * estimated number of transactions per day after checkpoint }; static Checkpoints::MapCheckpoints mapCheckpointsTestnet = boost::assign::map_list_of(0, uint256("0x001")); static const Checkpoints::CCheckpointData dataTestnet = { &mapCheckpointsTestnet, 1556880250, 0, 250}; static Checkpoints::MapCheckpoints mapCheckpointsRegtest = boost::assign::map_list_of(0, uint256("0x001")); static const Checkpoints::CCheckpointData dataRegtest = { &mapCheckpointsRegtest, 1556880250, 0, 100}; class CMainParams : public CChainParams { public: CMainParams() { networkID = CBaseChainParams::MAIN; strNetworkID = "main"; nDefaultPort = 28864; pchMessageStart[0] = 0xb4; pchMessageStart[1] = 0x97; pchMessageStart[2] = 0x87; pchMessageStart[3] = 0xda; vAlertPubKey = ParseHex("047f403f027027ab13d9a17d453bbe9e33920f1efd0a37e43c0f52d3e2f53e84662d21e628d9be61c8a4085b17a5b8fa5a3a7cadf63c03cb33399d9e0645ba0ee8"); bnProofOfWorkLimit = ~uint256(0) >> 20; nSubsidyHalvingInterval = 210000; nMaxReorganizationDepth = 100; nEnforceBlockUpgradeMajority = 750; nRejectBlockOutdatedMajority = 950; nToCheckBlockUpgradeMajority = 1000; nMinerThreads = 0; nTargetTimespan = 1 * 60; // CbslCoin: 1 day nTargetSpacing = 2 * 60; // CbslCoin: 1 minute nLastPOWBlock = 5000; nMaturity = 60; nMasternodeCountDrift = 20; nModifierUpdateBlock = 1; nMaxMoneyOut = 21000000 * COIN; const char* pszTimestamp = "Friday, 03-May-19 10:44:10 UTC CBSLCoin Pos Masternode - Coin Betting Sport League"; CMutableTransaction txNew; txNew.vin.resize(1); txNew.vout.resize(1); txNew.vin[0].scriptSig = CScript() << 486604799 << CScriptNum(4) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp)); txNew.vout[0].nValue = 50 * COIN; txNew.vout[0].scriptPubKey = CScript() << ParseHex("04950b32004c3fa11350bdccd02fedc4dfafdbff6686187af452f2a00a7f944c16cd605c73a6eaee3ab74ef6980f8b319c4876ceec683c3154b2986c2460b84e24") << OP_CHECKSIG; genesis.vtx.push_back(txNew); genesis.hashPrevBlock = 0; genesis.hashMerkleRoot = genesis.BuildMerkleTree(); genesis.nVersion = 1; genesis.nTime = 1556880250; genesis.nBits = 0x1e0fffff; genesis.nNonce = 2654382; hashGenesisBlock = genesis.GetHash(); assert(hashGenesisBlock == uint256("0x00000a5dd74ecb6046220fd447bce2e04bed74ca58bc132b512c8cc1450c8749")); assert(genesis.hashMerkleRoot == uint256("0x3d1d48513987c8bf7ee75993b1e4798f0d8adf8bd23b9c310b276e39c7334444")); vSeeds.push_back(CDNSSeedData("node1.cbslcoin.net", "134.209.103.148")); // Single node address vSeeds.push_back(CDNSSeedData("node2.cbslcoin.net", "144.217.224.88")); vSeeds.push_back(CDNSSeedData("node3.cbslcoin.net", "167.86.71.90")); base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1, 28); // CBSLCoin addresses start with 'C' base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1, 18); // CBSLCoin script addresses start with 8 base58Prefixes[SECRET_KEY] = std::vector<unsigned char>(1, 179); base58Prefixes[EXT_PUBLIC_KEY] = boost::assign::list_of(0x04)(0x88)(0xB2)(0x1E).convert_to_container<std::vector<unsigned char> >(); base58Prefixes[EXT_SECRET_KEY] = boost::assign::list_of(0x04)(0x88)(0xAD)(0xE4).convert_to_container<std::vector<unsigned char> >(); // BIP44 coin type is from https://github.com/satoshilabs/slips/blob/master/slip-0044.md base58Prefixes[EXT_COIN_TYPE] = boost::assign::list_of(0x80)(0x00)(0x00)(0x77).convert_to_container<std::vector<unsigned char> >(); convertSeed6(vFixedSeeds, pnSeed6_main, ARRAYLEN(pnSeed6_main)); fRequireRPCPassword = true; fMiningRequiresPeers = true; // default true fAllowMinDifficultyBlocks = false; fDefaultConsistencyChecks = false; fRequireStandard = true; fMineBlocksOnDemand = false; fSkipProofOfWorkCheck = false; // default false fTestnetToBeDeprecatedFieldRPC = false; fHeadersFirstSyncingActive = false; nPoolMaxTransactions = 3; strSporkKey = "04ea383f7bfffdf64e44c4ff8b380eb3be2c66883f0e4363b3ed9916c4b07d6ef3657c4e50a2722ad87cd045f98a42571184f4b18de0a21e4b0af19282e9afcd58"; strObfuscationPoolDummyAddress = "CGY1K1G1HS1tsjTcHf7ARyx6nhdmLTRQxH"; nStartMasternodePayments = 1556880250; // } const Checkpoints::CCheckpointData& Checkpoints() const { return data; } }; static CMainParams mainParams; /** * Testnet (v3) */ class CTestNetParams : public CMainParams { public: CTestNetParams() { networkID = CBaseChainParams::TESTNET; strNetworkID = "test"; nDefaultPort = 28865; vFixedSeeds.clear(); vSeeds.clear(); } const Checkpoints::CCheckpointData& Checkpoints() const { return dataTestnet; } }; static CTestNetParams testNetParams; /** * Regression test */ class CRegTestParams : public CTestNetParams { public: CRegTestParams() { networkID = CBaseChainParams::REGTEST; strNetworkID = "regtest"; nDefaultPort = 28866; } const Checkpoints::CCheckpointData& Checkpoints() const { return dataRegtest; } }; static CRegTestParams regTestParams; /** * Unit test */ class CUnitTestParams : public CMainParams, public CModifiableParams { public: CUnitTestParams() { networkID = CBaseChainParams::UNITTEST; strNetworkID = "unittest"; nDefaultPort = 28867; } const Checkpoints::CCheckpointData& Checkpoints() const { // UnitTest share the same checkpoints as MAIN return data; } //! Published setters to allow changing values in unit test cases virtual void setSubsidyHalvingInterval(int anSubsidyHalvingInterval) { nSubsidyHalvingInterval = anSubsidyHalvingInterval; } virtual void setEnforceBlockUpgradeMajority(int anEnforceBlockUpgradeMajority) { nEnforceBlockUpgradeMajority = anEnforceBlockUpgradeMajority; } virtual void setRejectBlockOutdatedMajority(int anRejectBlockOutdatedMajority) { nRejectBlockOutdatedMajority = anRejectBlockOutdatedMajority; } virtual void setToCheckBlockUpgradeMajority(int anToCheckBlockUpgradeMajority) { nToCheckBlockUpgradeMajority = anToCheckBlockUpgradeMajority; } virtual void setDefaultConsistencyChecks(bool afDefaultConsistencyChecks) { fDefaultConsistencyChecks = afDefaultConsistencyChecks; } virtual void setAllowMinDifficultyBlocks(bool afAllowMinDifficultyBlocks) { fAllowMinDifficultyBlocks = afAllowMinDifficultyBlocks; } virtual void setSkipProofOfWorkCheck(bool afSkipProofOfWorkCheck) { fSkipProofOfWorkCheck = afSkipProofOfWorkCheck; } }; static CUnitTestParams unitTestParams; static CChainParams* pCurrentParams = 0; CModifiableParams* ModifiableParams() { assert(pCurrentParams); assert(pCurrentParams == &unitTestParams); return (CModifiableParams*)&unitTestParams; } const CChainParams& Params() { assert(pCurrentParams); return *pCurrentParams; } CChainParams& Params(CBaseChainParams::Network network) { switch (network) { case CBaseChainParams::MAIN: return mainParams; case CBaseChainParams::TESTNET: return testNetParams; case CBaseChainParams::REGTEST: return regTestParams; case CBaseChainParams::UNITTEST: return unitTestParams; default: assert(false && "Unimplemented network"); return mainParams; } } void SelectParams(CBaseChainParams::Network network) { SelectBaseParams(network); pCurrentParams = &Params(network); } bool SelectParamsFromCommandLine() { CBaseChainParams::Network network = NetworkIdFromCommandLine(); if (network == CBaseChainParams::MAX_NETWORK_TYPES) return false; SelectParams(network); return true; }
[ "avishoot@gmail.com" ]
avishoot@gmail.com
dedbfaca20812f6a03c90630b002a3dcca41fa59
facc3953d74c9206595700cabe6402e291d472e4
/fingertest/Classes/Native/GenericMethods0.cpp
4e7ce9f69bf2ff85c1aa183cbb4ee913cb544d15
[]
no_license
karima931212/ARInteractiveApp
b5eedf895c33d921dd9c847f92d05192a7ee2d4a
4da0ca47f68fd2971455159fad86f6f1d128d90c
refs/heads/master
2022-07-14T12:44:24.252840
2020-05-16T18:54:40
2020-05-16T18:54:40
235,862,531
0
0
null
null
null
null
UTF-8
C++
false
false
2,499,616
cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <cstring> #include <string.h> #include <stdio.h> #include <cmath> #include <limits> #include <assert.h> #include <stdint.h> #include "il2cpp-class-internals.h" #include "codegen/il2cpp-codegen.h" #include "il2cpp-object-internals.h" template <typename R> struct VirtFuncInvoker0 { 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 VirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R, typename T1, typename T2> struct VirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R, typename T1> struct GenericVirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, 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); } }; 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, typename T1> struct InterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R, typename T1, typename T2> struct InterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R> struct GenericInterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; // AugmentationStateMachineBehaviour struct AugmentationStateMachineBehaviour_t3849818102; // Lean.Touch.LeanFinger struct LeanFinger_t3506292858; // Lean.Transition.LeanState struct LeanState_t463268132; // MS.Internal.Xml.Cache.XPathNodeInfoAtom struct XPathNodeInfoAtom_t1760358141; // MS.Internal.Xml.Cache.XPathNode[] struct XPathNodeU5BU5D_t47339301; // System.Action`1<System.Object> struct Action_1_t3252573759; // System.ArgumentNullException struct ArgumentNullException_t1615371798; // System.AsyncCallback struct AsyncCallback_t3962456242; // System.Boolean[] struct BooleanU5BU5D_t2897418192; // System.Byte[] struct ByteU5BU5D_t4116647657; // System.Char[] struct CharU5BU5D_t3528271667; // System.Collections.Generic.Dictionary`2/Entry<System.String,System.Delegate>[] struct EntryU5BU5D_t1306865089; // System.Collections.Generic.Dictionary`2/Entry<System.Type,System.Collections.Generic.Dictionary`2<System.String,System.Delegate>>[] struct EntryU5BU5D_t2691341609; // System.Collections.Generic.Dictionary`2/Entry<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>[] struct EntryU5BU5D_t609983109; // System.Collections.Generic.Dictionary`2/Entry<System.Type,Vuforia.Tracker>[] struct EntryU5BU5D_t4026618522; // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.Delegate> struct KeyCollection_t1163324583; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.Collections.Generic.Dictionary`2<System.String,System.Delegate>> struct KeyCollection_t3607671647; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>> struct KeyCollection_t2247693363; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,Vuforia.Tracker> struct KeyCollection_t1048641538; // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Delegate> struct ValueCollection_t2689693430; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.Collections.Generic.Dictionary`2<System.String,System.Delegate>> struct ValueCollection_t839073198; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>> struct ValueCollection_t3774062210; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,Vuforia.Tracker> struct ValueCollection_t2575010385; // System.Collections.Generic.Dictionary`2<System.Guid,System.Type> struct Dictionary_2_t1532962293; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_t132545152; // System.Collections.Generic.Dictionary`2<System.String,System.Delegate> struct Dictionary_2_t973649112; // System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.Dictionary`2<System.String,System.Delegate>> struct Dictionary_2_t3417996176; // System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Type,Vuforia.Tracker>> struct Dictionary_2_t1322931057; // System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>> struct Dictionary_2_t2058017892; // System.Collections.Generic.Dictionary`2<System.Type,Vuforia.Tracker> struct Dictionary_2_t858966067; // System.Collections.Generic.IEnumerable`1<System.Object> struct IEnumerable_1_t2059959053; // System.Collections.Generic.IEnumerable`1<Vuforia.TrackerData/TrackableResultData> struct IEnumerable_1_t3727523345; // System.Collections.Generic.IEnumerable`1<Vuforia.VuforiaManager/TrackableIdPair> struct IEnumerable_1_t3207203346; // System.Collections.Generic.IEnumerator`1<MS.Internal.Xml.Cache.XPathNode> struct IEnumerator_1_t2640643344; // System.Collections.Generic.IEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef> struct IEnumerator_1_t3930759486; // System.Collections.Generic.IEnumerator`1<MS.Internal.Xml.XPath.Operator/Op> struct IEnumerator_1_t2479375637; // System.Collections.Generic.IEnumerator`1<Mono.AppleTls.SslCipherSuite> struct IEnumerator_1_t3741692516; // System.Collections.Generic.IEnumerator`1<Mono.AppleTls.SslStatus> struct IEnumerator_1_t624552024; // System.Collections.Generic.IEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange> struct IEnumerator_1_t3765438360; // System.Collections.Generic.IEnumerator`1<Mono.Security.Interface.CipherSuiteCode> struct IEnumerator_1_t1165132679; // System.Collections.Generic.IEnumerator`1<Mono.Unity.UnityTls/unitytls_ciphersuite> struct IEnumerator_1_t2167729863; // System.Collections.Generic.IEnumerator`1<System.AppContext/SwitchValueState> struct IEnumerator_1_t3237821935; // System.Collections.Generic.IEnumerator`1<System.ArraySegment`1<System.Byte>> struct IEnumerator_1_t716131455; // System.Collections.Generic.IEnumerator`1<System.Boolean> struct IEnumerator_1_t529858433; // System.Collections.Generic.IEnumerator`1<System.Byte> struct IEnumerator_1_t1566866844; // System.Collections.Generic.IEnumerator`1<System.Char> struct IEnumerator_1_t4067030938; // System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry> struct IEnumerator_1_t3556546106; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>> struct IEnumerator_1_t2522367988; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>> struct IEnumerator_1_t4176558653; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>> struct IEnumerator_1_t1033436252; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>> struct IEnumerator_1_t275641461; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>> struct IEnumerator_1_t3887094040; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>> struct IEnumerator_1_t377748295; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>> struct IEnumerator_1_t4016254451; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackableBehaviour/Status>> struct IEnumerator_1_t2037054101; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>> struct IEnumerator_1_t2054102035; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>> struct IEnumerator_1_t1895213608; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.AppContext/SwitchValueState>> struct IEnumerator_1_t1905125411; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>> struct IEnumerator_1_t3492129205; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>> struct IEnumerator_1_t2050819697; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>> struct IEnumerator_1_t2179980108; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>> struct IEnumerator_1_t2823844751; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>> struct IEnumerator_1_t1277598902; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>> struct IEnumerator_1_t2619265869; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,System.Single>> struct IEnumerator_1_t2365009534; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>> struct IEnumerator_1_t2785644603; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>> struct IEnumerator_1_t3123972283; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Vuforia.Image/PIXEL_FORMAT,System.Object>> struct IEnumerator_1_t3718138409; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Vuforia.Image/PIXEL_FORMAT,UnityEngine.TextureFormat>> struct IEnumerator_1_t3339198077; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>> struct IEnumerator_1_t54539518; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>> struct IEnumerator_1_t183699929; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>> struct IEnumerator_1_t3305175667; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct IEnumerator_1_t1303500754; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>> struct IEnumerator_1_t664399036; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>> struct IEnumerator_1_t1816243931; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>> struct IEnumerator_1_t1058449140; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>> struct IEnumerator_1_t374934423; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>> struct IEnumerator_1_t1160555974; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>> struct IEnumerator_1_t504094834; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackableBehaviour/Status>> struct IEnumerator_1_t2819861780; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>> struct IEnumerator_1_t2836909714; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>> struct IEnumerator_1_t2678021287; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>> struct IEnumerator_1_t2687933090; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>> struct IEnumerator_1_t4274936884; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>> struct IEnumerator_1_t2833627376; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> struct IEnumerator_1_t2962787787; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>> struct IEnumerator_1_t3606652430; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>> struct IEnumerator_1_t2060406581; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>> struct IEnumerator_1_t3402073548; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,System.Single>> struct IEnumerator_1_t3147817213; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>> struct IEnumerator_1_t3568452282; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>> struct IEnumerator_1_t3906779962; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<Vuforia.Image/PIXEL_FORMAT,System.Object>> struct IEnumerator_1_t205978792; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<Vuforia.Image/PIXEL_FORMAT,UnityEngine.TextureFormat>> struct IEnumerator_1_t4122005756; // System.Collections.Generic.IEnumerator`1<System.Collections.Hashtable/bucket> struct IEnumerator_1_t1190702172; // System.Collections.Generic.IEnumerator`1<System.ComponentModel.AttributeCollection/AttributeEntry> struct IEnumerator_1_t1433581331; // System.Collections.Generic.IEnumerator`1<System.DateTime> struct IEnumerator_1_t4171100253; // System.Collections.Generic.IEnumerator`1<System.DateTimeOffset> struct IEnumerator_1_t3661857975; // System.Collections.Generic.IEnumerator`1<System.DateTimeParse/DS> struct IEnumerator_1_t2664840838; // System.Collections.Generic.IEnumerator`1<System.Decimal> struct IEnumerator_1_t3380829848; // System.Collections.Generic.IEnumerator`1<System.Double> struct IEnumerator_1_t1027235831; // System.Collections.Generic.IEnumerator`1<System.Globalization.HebrewNumber/HS> struct IEnumerator_1_t3772343484; // System.Collections.Generic.IEnumerator`1<System.Globalization.InternalCodePageDataItem> struct IEnumerator_1_t3008103401; // System.Collections.Generic.IEnumerator`1<System.Globalization.InternalEncodingDataItem> struct IEnumerator_1_t3591430285; // System.Collections.Generic.IEnumerator`1<System.Globalization.TimeSpanParse/TimeSpanToken> struct IEnumerator_1_t1425917842; // System.Collections.Generic.IEnumerator`1<System.Guid> struct IEnumerator_1_t3626103355; // System.Collections.Generic.IEnumerator`1<System.Int16> struct IEnumerator_1_t2985390855; // System.Collections.Generic.IEnumerator`1<System.Int32> struct IEnumerator_1_t3383516221; // System.Collections.Generic.IEnumerator`1<System.Int64> struct IEnumerator_1_t4169137772; // System.Collections.Generic.IEnumerator`1<System.IntPtr> struct IEnumerator_1_t1272720649; // System.Collections.Generic.IEnumerator`1<System.Net.CookieTokenizer/RecognizedAttribute> struct IEnumerator_1_t1064644688; // System.Collections.Generic.IEnumerator`1<System.Net.HeaderVariantInfo> struct IEnumerator_1_t2368256069; // System.Collections.Generic.IEnumerator`1<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES> struct IEnumerator_1_t3896096796; // System.Collections.Generic.IEnumerator`1<System.Net.Sockets.Socket/WSABUF> struct IEnumerator_1_t2430629858; // System.Collections.Generic.IEnumerator`1<System.Net.WebHeaderCollection/RfcChar> struct IEnumerator_1_t3337980398; // System.Collections.Generic.IEnumerator`1<System.Object> struct IEnumerator_1_t3512676632; // System.Collections.Generic.IEnumerator`1<System.ParameterizedStrings/FormatParam> struct IEnumerator_1_t332077254; // System.Collections.Generic.IEnumerator`1<System.Reflection.CustomAttributeNamedArgument> struct IEnumerator_1_t720436178; // System.Collections.Generic.IEnumerator`1<System.Reflection.CustomAttributeTypedArgument> struct IEnumerator_1_t3155720625; // System.Collections.Generic.IEnumerator`1<System.Reflection.Emit.ILExceptionBlock> struct IEnumerator_1_t99478138; // System.Collections.Generic.IEnumerator`1<System.Reflection.Emit.ILExceptionInfo> struct IEnumerator_1_t670426478; // System.Collections.Generic.IEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData> struct IEnumerator_1_t792737859; // System.Collections.Generic.IEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup> struct IEnumerator_1_t1291072522; // System.Collections.Generic.IEnumerator`1<System.Reflection.Emit.ILTokenInfo> struct IEnumerator_1_t2758345582; // System.Collections.Generic.IEnumerator`1<System.Reflection.Emit.Label> struct IEnumerator_1_t2714232111; // System.Collections.Generic.IEnumerator`1<System.Reflection.Emit.MonoResource> struct IEnumerator_1_t241033181; // System.Collections.Generic.IEnumerator`1<System.Reflection.Emit.MonoWin32Resource> struct IEnumerator_1_t2336799951; // System.Collections.Generic.IEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet> struct IEnumerator_1_t916961455; // System.Collections.Generic.IEnumerator`1<System.Reflection.ParameterModifier> struct IEnumerator_1_t1894264934; // System.Collections.Generic.IEnumerator`1<System.Resources.ResourceLocator> struct IEnumerator_1_t4156541275; // System.Collections.Generic.IEnumerator`1<System.Runtime.CompilerServices.Ephemeron> struct IEnumerator_1_t2035166830; // System.Collections.Generic.IEnumerator`1<System.Runtime.InteropServices.GCHandle> struct IEnumerator_1_t3784008655; // System.Collections.Generic.IEnumerator`1<System.Runtime.Serialization.Formatters.Binary.BinaryTypeEnum> struct IEnumerator_1_t3918006922; // System.Collections.Generic.IEnumerator`1<System.Runtime.Serialization.Formatters.Binary.InternalPrimitiveTypeE> struct IEnumerator_1_t230652149; // System.Collections.Generic.IEnumerator`1<System.SByte> struct IEnumerator_1_t2102148130; // System.Collections.Generic.IEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus> struct IEnumerator_1_t566173182; // System.Collections.Generic.IEnumerator`1<System.Single> struct IEnumerator_1_t1829837242; // System.Collections.Generic.IEnumerator`1<System.TermInfoStrings> struct IEnumerator_1_t722850423; // System.Collections.Generic.IEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping> struct IEnumerator_1_t3342888043; // System.Collections.Generic.IEnumerator`1<System.Text.RegularExpressions.RegexOptions> struct IEnumerator_1_t525416063; // System.Collections.Generic.IEnumerator`1<System.Threading.CancellationTokenRegistration> struct IEnumerator_1_t3245995372; // System.Collections.Generic.IEnumerator`1<System.TimeSpan> struct IEnumerator_1_t1313729717; // System.Collections.Generic.IEnumerator`1<System.TypeCode> struct IEnumerator_1_t3419794555; // System.Collections.Generic.IEnumerator`1<System.UInt16> struct IEnumerator_1_t2610295426; // System.Collections.Generic.IEnumerator`1<System.UInt32> struct IEnumerator_1_t2992632446; // System.Collections.Generic.IEnumerator`1<System.UInt64> struct IEnumerator_1_t271643264; // System.Collections.Generic.IEnumerator`1<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map> struct IEnumerator_1_t1763614895; // System.Collections.Generic.IEnumerator`1<System.Xml.Schema.RangePositionInfo> struct IEnumerator_1_t1022539404; // System.Collections.Generic.IEnumerator`1<System.Xml.Schema.SequenceNode/SequenceConstructPosContext> struct IEnumerator_1_t2486951167; // System.Collections.Generic.IEnumerator`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry> struct IEnumerator_1_t3777247439; // System.Collections.Generic.IEnumerator`1<System.Xml.Schema.XmlTypeCode> struct IEnumerator_1_t3056193418; // System.Collections.Generic.IEnumerator`1<System.Xml.Schema.XsdBuilder/State> struct IEnumerator_1_t2323028669; // System.Collections.Generic.IEnumerator`1<System.Xml.XPath.XPathResultType> struct IEnumerator_1_t3261558956; // System.Collections.Generic.IEnumerator`1<System.Xml.XmlNamespaceManager/NamespaceDeclaration> struct IEnumerator_1_t300212747; // System.Collections.Generic.IEnumerator`1<System.Xml.XmlNodeReaderNavigator/VirtualAttribute> struct IEnumerator_1_t4010654375; // System.Collections.Generic.IEnumerator`1<System.Xml.XmlTextReaderImpl/ParsingState> struct IEnumerator_1_t2212905390; // System.Collections.Generic.IEnumerator`1<System.Xml.XmlTextWriter/Namespace> struct IEnumerator_1_t2650826984; // System.Collections.Generic.IEnumerator`1<System.Xml.XmlTextWriter/State> struct IEnumerator_1_t2225109815; // System.Collections.Generic.IEnumerator`1<System.Xml.XmlTextWriter/TagInfo> struct IEnumerator_1_t3959208885; // System.Collections.Generic.IEnumerator`1<TMPro.MaterialReference> struct IEnumerator_1_t2384915100; // System.Collections.Generic.IEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData> struct IEnumerator_1_t3480968055; // System.Collections.Generic.IEnumerator`1<TMPro.TMP_CharacterInfo> struct IEnumerator_1_t3618197265; // System.Collections.Generic.IEnumerator`1<TMPro.TMP_FontWeights> struct IEnumerator_1_t1348871535; // System.Collections.Generic.IEnumerator`1<TMPro.TMP_InputField/ContentType> struct IEnumerator_1_t1561511753; // System.Collections.Generic.IEnumerator`1<TMPro.TMP_LineInfo> struct IEnumerator_1_t1512202104; // System.Collections.Generic.IEnumerator`1<TMPro.TMP_LinkInfo> struct IEnumerator_1_t1524653944; // System.Collections.Generic.IEnumerator`1<TMPro.TMP_MeshInfo> struct IEnumerator_1_t3204318102; // System.Collections.Generic.IEnumerator`1<TMPro.TMP_PageInfo> struct IEnumerator_1_t3041001101; // System.Collections.Generic.IEnumerator`1<TMPro.TMP_WordInfo> struct IEnumerator_1_t3763636771; // System.Collections.Generic.IEnumerator`1<TMPro.TextAlignmentOptions> struct IEnumerator_1_t174394408; // System.Collections.Generic.IEnumerator`1<TMPro.XML_TagAttribute> struct IEnumerator_1_t1606994777; // System.Collections.Generic.IEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock> struct IEnumerator_1_t2018548299; // System.Collections.Generic.IEnumerator`1<UnityEngine.Camera/StereoscopicEye> struct IEnumerator_1_t2671234504; // System.Collections.Generic.IEnumerator`1<UnityEngine.Color32> struct IEnumerator_1_t3033071760; // System.Collections.Generic.IEnumerator`1<UnityEngine.Color> struct IEnumerator_1_t2988256792; // System.Collections.Generic.IEnumerator`1<UnityEngine.ContactPoint> struct IEnumerator_1_t4191325721; // System.Collections.Generic.IEnumerator`1<UnityEngine.EventSystems.RaycastResult> struct IEnumerator_1_t3792877317; // System.Collections.Generic.IEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem> struct IEnumerator_1_t538342573; // System.Collections.Generic.IEnumerator`1<UnityEngine.Keyframe> struct IEnumerator_1_t344013414; // System.Collections.Generic.IEnumerator`1<UnityEngine.Matrix4x4> struct IEnumerator_1_t2250472311; // System.Collections.Generic.IEnumerator`1<UnityEngine.Plane> struct IEnumerator_1_t1433063789; // System.Collections.Generic.IEnumerator`1<UnityEngine.Playables.PlayableBinding> struct IEnumerator_1_t786831177; // System.Collections.Generic.IEnumerator`1<UnityEngine.RaycastHit2D> struct IEnumerator_1_t2712152457; // System.Collections.Generic.IEnumerator`1<UnityEngine.RaycastHit> struct IEnumerator_1_t1488572434; // System.Collections.Generic.IEnumerator`1<UnityEngine.SendMouseEvents/HitInfo> struct IEnumerator_1_t3662180208; // System.Collections.Generic.IEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData> struct IEnumerator_1_t1107792714; // System.Collections.Generic.IEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData> struct IEnumerator_1_t2557880299; // System.Collections.Generic.IEnumerator`1<UnityEngine.TextureFormat> struct IEnumerator_1_t3133736300; // System.Collections.Generic.IEnumerator`1<UnityEngine.Touch> struct IEnumerator_1_t2354427336; // System.Collections.Generic.IEnumerator`1<UnityEngine.TouchScreenKeyboardType> struct IEnumerator_1_t1963168170; // System.Collections.Generic.IEnumerator`1<UnityEngine.UI.AspectRatioFitter/AspectMode> struct IEnumerator_1_t3849763467; // System.Collections.Generic.IEnumerator`1<UnityEngine.UI.ColorBlock> struct IEnumerator_1_t2571602042; // System.Collections.Generic.IEnumerator`1<UnityEngine.UI.ContentSizeFitter/FitMode> struct IEnumerator_1_t3700451682; // System.Collections.Generic.IEnumerator`1<UnityEngine.UI.Image/FillMethod> struct IEnumerator_1_t1600028038; // System.Collections.Generic.IEnumerator`1<UnityEngine.UI.Image/Type> struct IEnumerator_1_t1585451996; // System.Collections.Generic.IEnumerator`1<UnityEngine.UI.InputField/CharacterValidation> struct IEnumerator_1_t189517609; // System.Collections.Generic.IEnumerator`1<UnityEngine.UI.InputField/ContentType> struct IEnumerator_1_t2219873864; // System.Collections.Generic.IEnumerator`1<UnityEngine.UI.InputField/InputType> struct IEnumerator_1_t2202971147; // System.Collections.Generic.IEnumerator`1<UnityEngine.UI.InputField/LineType> struct IEnumerator_1_t352251641; // System.Collections.Generic.IEnumerator`1<UnityEngine.UI.Navigation> struct IEnumerator_1_t3481887047; // System.Collections.Generic.IEnumerator`1<UnityEngine.UI.Scrollbar/Direction> struct IEnumerator_1_t3903284821; // System.Collections.Generic.IEnumerator`1<UnityEngine.UI.Selectable/Transition> struct IEnumerator_1_t2202479099; // System.Collections.Generic.IEnumerator`1<UnityEngine.UI.Slider/Direction> struct IEnumerator_1_t770479703; // System.Collections.Generic.IEnumerator`1<Vuforia.TrackerData/TrackableResultData> struct IEnumerator_1_t885273628; // System.Collections.Generic.IEqualityComparer`1<System.Object> struct IEqualityComparer_1_t892470886; // System.Collections.Generic.IEqualityComparer`1<System.String> struct IEqualityComparer_1_t3954782707; // System.Collections.Generic.IEqualityComparer`1<System.Type> struct IEqualityComparer_1_t296309482; // System.Collections.Generic.IList`1<System.Object> struct IList_1_t600458651; // System.Collections.Generic.List`1<Lean.Touch.LeanSnapshot> struct List_1_t1313621403; // System.Collections.Generic.List`1<Lean.Transition.LeanState> struct List_1_t1935342874; // System.Collections.Generic.List`1<System.Object> struct List_1_t257213610; // System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler> struct List_1_t531791296; // System.Collections.Generic.List`1<UnityEngine.Transform> struct List_1_t777473367; // System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData> struct List_1_t1924777902; // System.Collections.Generic.Stack`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>> struct Stack_1_t1375180751; // System.Collections.IDictionary struct IDictionary_t1363984059; // System.Collections.IEnumerable struct IEnumerable_t1941168011; // System.Collections.IEnumerator struct IEnumerator_t1853284238; // System.Decimal[] struct DecimalU5BU5D_t1145110141; // System.Delegate struct Delegate_t1188392813; // System.DelegateData struct DelegateData_t1677132599; // System.Delegate[] struct DelegateU5BU5D_t1703627840; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t1169129676; // System.Exception struct Exception_t; // System.Func`2<System.Object,System.Boolean> struct Func_2_t3759279471; // System.Func`2<System.Object,System.Object> struct Func_2_t2447130374; // System.Func`2<Vuforia.Tracker,System.Boolean> struct Func_2_t3908638124; // System.Func`2<Vuforia.TrackerData/TrackableResultData,System.Boolean> struct Func_2_t894183899; // System.Func`3<System.Object,System.Int32,System.Object> struct Func_3_t939916428; // System.IAsyncResult struct IAsyncResult_t767004451; // System.IO.Stream struct Stream_t1273022909; // System.IO.TextReader struct TextReader_t283511965; // System.Int32[] struct Int32U5BU5D_t385246372; // System.IntPtr[] struct IntPtrU5BU5D_t4013366056; // System.Linq.Enumerable/Iterator`1<System.Object> struct Iterator_1_t2034466501; // System.Linq.Enumerable/SelectArrayIterator`2<System.Object,System.Object> struct SelectArrayIterator_2_t819778152; // System.Linq.Enumerable/SelectEnumerableIterator`2<System.Object,System.Object> struct SelectEnumerableIterator_2_t4232181467; // System.Linq.Enumerable/SelectIListIterator`2<System.Object,System.Object> struct SelectIListIterator_2_t3601768299; // System.Linq.Enumerable/SelectIPartitionIterator`2<System.Object,System.Object> struct SelectIPartitionIterator_2_t2131188771; // System.Linq.Enumerable/SelectListIterator`2<System.Object,System.Object> struct SelectListIterator_2_t1742702623; // System.Linq.Enumerable/WhereArrayIterator`1<System.Object> struct WhereArrayIterator_1_t1891928581; // System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object> struct WhereEnumerableIterator_1_t2185640491; // System.Linq.Enumerable/WhereListIterator`1<System.Object> struct WhereListIterator_1_t944815607; // System.Linq.Enumerable/WhereSelectArrayIterator`2<System.Object,System.Object> struct WhereSelectArrayIterator_2_t1355832803; // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object> struct WhereSelectEnumerableIterator_2_t1553622305; // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object> struct WhereSelectListIterator_2_t2661109023; // System.Linq.IPartition`1<System.Object> struct IPartition_1_t1905456639; // System.Linq.IPartition`1<Vuforia.TrackerData/TrackableResultData> struct IPartition_1_t3573020931; // System.MonoTypeInfo struct MonoTypeInfo_t3366989025; // System.NotSupportedException struct NotSupportedException_t1314879016; // System.Object[] struct ObjectU5BU5D_t2843939325; // System.Predicate`1<System.Object> struct Predicate_1_t3905400288; // System.Predicate`1<Vuforia.TrackerData/TrackableResultData> struct Predicate_1_t1277997284; // System.Predicate`1<Vuforia.TrackerData/VuMarkTargetResultData> struct Predicate_1_t2978593368; // System.RankException struct RankException_t3812021567; // System.Reflection.Binder struct Binder_t2999457153; // System.Reflection.Emit.AssemblyBuilder struct AssemblyBuilder_t359885250; // System.Reflection.Emit.ILExceptionBlock[] struct ILExceptionBlockU5BU5D_t2996808915; // System.Reflection.MemberFilter struct MemberFilter_t426314064; // System.Reflection.MemberInfo struct MemberInfo_t; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Reflection.RuntimeConstructorInfo struct RuntimeConstructorInfo_t1806616898; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_t2481557153; // System.RuntimeType struct RuntimeType_t3636489352; // System.Security.Cryptography.RandomNumberGenerator struct RandomNumberGenerator_t386037858; // System.Single[] struct SingleU5BU5D_t1444911251; // System.String struct String_t; // System.Text.Decoder struct Decoder_t2204182725; // System.Text.Encoding struct Encoding_t1523322056; // System.Threading.CancellationCallbackInfo struct CancellationCallbackInfo_t322720759; // System.Threading.ManualResetEvent struct ManualResetEvent_t451242010; // System.Threading.SendOrPostCallback struct SendOrPostCallback_t2750080073; // System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo> struct SparselyPopulatedArrayFragment_1_t4161250538; // System.Type struct Type_t; // System.Type[] struct TypeU5BU5D_t3940880105; // System.UInt32[] struct UInt32U5BU5D_t2770800703; // System.Uri struct Uri_t100236324; // System.Void struct Void_t1185182177; // System.Xml.IDtdEntityInfo struct IDtdEntityInfo_t3492232514; // System.Xml.Schema.BitSet struct BitSet_t1154229585; // System.Xml.Schema.SequenceNode struct SequenceNode_t3837141573; // System.Xml.Schema.XmlSchemaObject struct XmlSchemaObject_t1315720168; // System.Xml.XmlQualifiedName struct XmlQualifiedName_t2760654312; // TMPro.TMP_FontAsset struct TMP_FontAsset_t364381626; // TMPro.TMP_SpriteAsset struct TMP_SpriteAsset_t484820633; // TMPro.TMP_Text struct TMP_Text_t2599618874; // TMPro.TMP_TextElement struct TMP_TextElement_t129727469; // UnityEngine.Behaviour struct Behaviour_t1437897464; // UnityEngine.Camera struct Camera_t4157153871; // UnityEngine.Color32[] struct Color32U5BU5D_t3850468773; // UnityEngine.Component struct Component_t1923634451; // UnityEngine.EventSystems.BaseEventData struct BaseEventData_t3903027533; // UnityEngine.EventSystems.BaseRaycaster struct BaseRaycaster_t4150874583; // UnityEngine.EventSystems.EventSystem struct EventSystem_t1003666588; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<System.Object> struct EventFunction_1_t1764640198; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IBeginDragHandler> struct EventFunction_1_t1977848392; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ICancelHandler> struct EventFunction_1_t2658898854; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDeselectHandler> struct EventFunction_1_t3373214253; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDragHandler> struct EventFunction_1_t972960537; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDropHandler> struct EventFunction_1_t2311673543; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IEndDragHandler> struct EventFunction_1_t3277009892; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IInitializePotentialDragHandler> struct EventFunction_1_t3587542510; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IMoveHandler> struct EventFunction_1_t3912835512; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerClickHandler> struct EventFunction_1_t3111972472; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerDownHandler> struct EventFunction_1_t64614563; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerEnterHandler> struct EventFunction_1_t3995630009; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerExitHandler> struct EventFunction_1_t2867327688; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerUpHandler> struct EventFunction_1_t3256600500; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IScrollHandler> struct EventFunction_1_t2886331738; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISelectHandler> struct EventFunction_1_t955952873; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISubmitHandler> struct EventFunction_1_t1475332338; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IUpdateSelectedHandler> struct EventFunction_1_t2950825503; // UnityEngine.EventSystems.IEventSystemHandler struct IEventSystemHandler_t3354683850; // UnityEngine.EventSystems.IEventSystemHandler[] struct IEventSystemHandlerU5BU5D_t541873103; // UnityEngine.Events.UnityAction struct UnityAction_t3245792599; // UnityEngine.Events.UnityAction`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>> struct UnityAction_1_t1116627437; // UnityEngine.Experimental.LowLevel.PlayerLoopSystem/UpdateFunction struct UpdateFunction_t377278577; // UnityEngine.Experimental.LowLevel.PlayerLoopSystem[] struct PlayerLoopSystemU5BU5D_t1150299252; // UnityEngine.GameObject struct GameObject_t1113636619; // UnityEngine.Material struct Material_t340375123; // UnityEngine.Mesh struct Mesh_t3648964284; // UnityEngine.Object struct Object_t631007953; // UnityEngine.Playables.PlayableBinding/CreateOutputMethod struct CreateOutputMethod_t2301811773; // UnityEngine.Playables.PlayableBinding[] struct PlayableBindingU5BU5D_t829358056; // UnityEngine.Sprite struct Sprite_t280657092; // UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>> struct ObjectPool_1_t231414508; // UnityEngine.UI.ObjectPool`1<System.Object> struct ObjectPool_1_t2779729376; // UnityEngine.UI.Selectable struct Selectable_t3250028441; // UnityEngine.Vector2[] struct Vector2U5BU5D_t1457185986; // UnityEngine.Vector3[] struct Vector3U5BU5D_t1718750761; // UnityEngine.Vector4[] struct Vector4U5BU5D_t934056436; // Vuforia.ITrackerManager struct ITrackerManager_t607206903; // Vuforia.StateManager struct StateManager_t1982749557; // Vuforia.Tracker struct Tracker_t2709586299; // Vuforia.TrackerData/TrackableResultData[] struct TrackableResultDataU5BU5D_t4273811049; // Vuforia.TrackerData/VuMarkTargetResultData[] struct VuMarkTargetResultDataU5BU5D_t2157423781; // Vuforia.TrackerManager struct TrackerManager_t1703337244; extern RuntimeClass* ArgumentNullException_t1615371798_il2cpp_TypeInfo_var; extern RuntimeClass* AugmentationStateMachineBehaviour_t3849818102_il2cpp_TypeInfo_var; extern RuntimeClass* Behaviour_t1437897464_il2cpp_TypeInfo_var; extern RuntimeClass* Debug_t3317548046_il2cpp_TypeInfo_var; extern RuntimeClass* Exception_t_il2cpp_TypeInfo_var; extern RuntimeClass* ExecuteEvents_t3484638744_il2cpp_TypeInfo_var; extern RuntimeClass* IDisposable_t3640265483_il2cpp_TypeInfo_var; extern RuntimeClass* IEnumerator_t1853284238_il2cpp_TypeInfo_var; extern RuntimeClass* LeanTransition_t733994930_il2cpp_TypeInfo_var; extern RuntimeClass* NotSupportedException_t1314879016_il2cpp_TypeInfo_var; extern RuntimeClass* Object_t631007953_il2cpp_TypeInfo_var; extern RuntimeClass* RankException_t3812021567_il2cpp_TypeInfo_var; extern RuntimeClass* RuntimeType_t3636489352_il2cpp_TypeInfo_var; extern RuntimeClass* TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var; extern RuntimeClass* Type_t_il2cpp_TypeInfo_var; extern RuntimeClass* VuforiaRuntimeUtilities_t399660591_il2cpp_TypeInfo_var; extern String_t* _stringLiteral1264546222; extern String_t* _stringLiteral1643567794; extern String_t* _stringLiteral1684534236; extern String_t* _stringLiteral1686800860; extern String_t* _stringLiteral1930521651; extern String_t* _stringLiteral2328760826; extern String_t* _stringLiteral2794527317; extern String_t* _stringLiteral3281478636; extern String_t* _stringLiteral3723644332; extern String_t* _stringLiteral3935955560; extern String_t* _stringLiteral3941128596; extern String_t* _stringLiteral3977229295; extern String_t* _stringLiteral4007973390; extern String_t* _stringLiteral4294193667; extern String_t* _stringLiteral461028519; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisArraySegment_1_t283560987_m3050253333_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisAspectMode_t3417192999_m3232500413_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisAttributeEntry_t1001010863_m2158339696_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisBinaryTypeEnum_t3485436454_m1694216578_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisBoolean_t97287965_m4124615291_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisByte_t1134296376_m11531792_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisCameraField_t1483002240_m898899028_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisCancellationTokenRegistration_t2813424904_m1136591470_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisChar_t3634460470_m4074994798_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisCharacterValidation_t4051914437_m3474018230_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisCipherSuiteCode_t732562211_m3455071752_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisColor32_t2600501292_m2162938018_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisColorBlock_t2139031574_m2425560528_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisColor_t2555686324_m266224315_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisContactPoint_t3758755253_m1890115071_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisContentType_t1128941285_m648156399_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisContentType_t1787303396_m692835665_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisCustomAttributeNamedArgument_t287865710_m941688219_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisCustomAttributeTypedArgument_t2723150157_m2663438007_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisDS_t2232270370_m4114415445_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisDateTimeOffset_t3229287507_m3781718578_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisDateTime_t3738529785_m364748720_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisDecimal_t2948259380_m2897422370_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisDictionaryEntry_t3123975638_m1596925967_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisDirection_t337909235_m2979051405_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisDirection_t3470714353_m1685343067_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisDouble_t594665363_m1696010878_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t1462643140_m1201510596_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t1472554943_m1721178887_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t1604483633_m927102390_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t1618249229_m3374431336_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t1621531567_m1837531547_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t1747409640_m127521533_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t1932439066_m4009027030_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t2089797520_m3799395690_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t2186695401_m796429899_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t2353074135_m3631867778_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t2391274283_m2841416160_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t2691401815_m746550459_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t2906627609_m2322345844_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t3059558737_m662778609_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t3285567941_m627574859_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t3454523572_m819565093_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t3583683983_m3389064855_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t3743988185_m332834595_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t4138038289_m2668321569_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t4240145123_m838898027_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t600865784_m1192128834_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEntry_t845028434_m3546335531_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEphemeron_t1602596362_m546276767_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEyewearCalibrationReadingData_t937256773_m1765250429_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisEyewearCalibrationReading_t664929988_m275082353_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisFillMethod_t1167457570_m2086878798_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisFitMode_t3267881214_m888472092_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisFormatParam_t4194474082_m755460312_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisGCHandle_t3351438187_m3962075817_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisGcAchievementData_t675222246_m348483916_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisGcScoreData_t2125309831_m2879791485_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisGuid_t_m2826636229_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisHS_t3339773016_m3603136913_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisHeaderVariantInfo_t1935685601_m1605335289_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisHitInfo_t3229609740_m180302123_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisILExceptionBlock_t3961874966_m537254778_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisILExceptionInfo_t237856010_m3244023078_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisILTokenInfo_t2325775114_m2923331462_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisInputType_t1770400679_m1010977894_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisInt16_t2552820387_m2915683400_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisInt32_t2950945753_m2907032710_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisInt64_t3736567304_m2911357929_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisIntPtr_t_m272531112_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisInternalCodePageDataItem_t2575532933_m54604211_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisInternalEncodingDataItem_t3158859817_m169224862_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisInternalPrimitiveTypeE_t4093048977_m2149992838_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1383673463_m166023032_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1627836113_m965285537_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2245450819_m2755643427_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2255362622_m2062056165_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t231828568_m2953990230_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2387291312_m3369824214_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2401056908_m2117980243_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2404339246_m2254033280_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2530217319_m3941002701_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2715246745_m101761923_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2872605199_m1209080642_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2969503080_m250283142_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3135881814_m3961676534_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3174081962_m4224208290_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3474209494_m3067668800_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3689435288_m351396037_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3842366416_m119930447_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4068375620_m2493972896_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4237331251_m138928983_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t625878672_m368001353_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t71524366_m2486536917_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t727985506_m2528174741_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t870930286_m2241152863_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisKeyframe_t4206410242_m2096605895_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisLabelData_t360167391_m3647461454_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisLabelFixup_t858502054_m3479040328_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisLabel_t2281661643_m1425978922_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisLineType_t4214648469_m155272349_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisLowerCaseMapping_t2910317575_m491248538_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisMap_t1331044427_m2582423708_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisMaterialReference_t1952344632_m3054325727_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisMatrix4x4_t1817901843_m2788258248_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisMonoResource_t4103430009_m3220247244_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisMonoWin32Resource_t1904229483_m4284943779_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisNamespaceDeclaration_t4162609575_m1598120485_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisNamespace_t2218256516_m290305241_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisNavigation_t3049316579_m621166290_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisOp_t2046805169_m1814034116_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisOrderBlock_t1585977831_m1840347001_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisPIXEL_FORMAT_t3209881435_m3898758130_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisParameterModifier_t1461694466_m1000453323_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisParsingState_t1780334922_m3181465327_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisPlane_t1000493321_m3673932690_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisPlayableBinding_t354260709_m782693665_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisPlayerLoopSystem_t105772105_m1867619209_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisProfileData_t3519391925_m4271667505_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisRangePositionInfo_t589968936_m3403309823_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisRaycastHit2D_t2279581989_m2733133723_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisRaycastHit_t1056001966_m2163828986_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisRaycastResult_t3360306849_m3809401052_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisRecognizedAttribute_t632074220_m412671837_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisRefEmitPermissionSet_t484390987_m2357266594_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisRegexOptions_t92845595_m3531906213_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisResourceLocator_t3723970807_m3744281591_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisRfcChar_t2905409930_m584031707_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisRuntimeObject_m4067783231_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisSByte_t1669577662_m926034270_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisSequenceConstructPosContext_t2054380699_m1886702386_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisSingle_t1397266774_m2135761808_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisSlot_t3916936346_m3447650581_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisSlot_t4046096757_m933615927_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisSpriteData_t3048397587_m4000778412_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisSpriteState_t1362986479_m1315569797_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisSslCipherSuite_t3309122048_m2904748630_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisSslStatus_t191981556_m4075581580_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisState_t1792539347_m1048336574_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisState_t1890458201_m2154717523_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisStatus_t1100905814_m3124245975_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisStereoscopicEye_t2238664036_m4230514778_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisSwitchValueState_t2805251467_m515895951_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTMP_CharacterInfo_t3185626797_m2610199187_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTMP_FontWeights_t916301067_m4182675464_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTMP_LineInfo_t1079631636_m250410355_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTMP_LinkInfo_t1092083476_m1569125747_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTMP_MeshInfo_t2771747634_m644520357_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTMP_PageInfo_t2608430633_m1019762868_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTMP_WordInfo_t3331066303_m259378234_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTableRange_t3332867892_m220823873_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTagInfo_t3526638417_m4140710765_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTermInfoStrings_t290279955_m344583557_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTextAlignmentOptions_t4036791236_m744948684_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTextureFormat_t2701165832_m2455236935_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTimeSpanToken_t993347374_m282179853_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTimeSpan_t881159249_m1600990182_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTouchScreenKeyboardType_t1530597702_m3440712606_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTouch_t1921856868_m354355717_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTrackableIdPair_t4227350457_m3832756353_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTrackableResultData_t452703160_m3736208667_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTransition_t1769908631_m996811643_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisTypeCode_t2987224087_m2462036610_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisType_t1152881528_m627632766_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisUICharInfo_t75501106_m1619960249_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisUILineInfo_t4195266810_m375073905_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisUIVertex_t4057497605_m1942096352_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisUInt16_t2177724958_m3393176156_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisUInt32_t2560061978_m387509280_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisUInt64_t4134040092_m94895126_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisVector2_t2156229523_m4078183089_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisVector3_t3722313464_m4078183076_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisVector4_t3319028937_m4078183023_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisVirtualAttribute_t3578083907_m1725387487_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisVirtualButtonData_t1117953748_m2101013061_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisVuMarkTargetData_t3266143771_m2433614114_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisVuMarkTargetResultData_t2153299244_m436158217_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisWSABUF_t1998059390_m1287341269_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisWebCamDevice_t1322781432_m3093132044_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m1683591410_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisWorkRequest_t1354518612_m2404463752_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisX509ChainStatus_t133602714_m795171973_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisXML_TagAttribute_t1174424309_m2858672699_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisXPathNodeRef_t3498189018_m464172426_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisXPathNode_t2208072876_m1047333184_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisXPathResultType_t2828988488_m519609602_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisXmlSchemaObjectEntry_t3344676971_m3591905055_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_TisXmlTypeCode_t2623622950_m2535793185_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_Tisbucket_t758131704_m357630632_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Contains_Tisunitytls_ciphersuite_t1735159395_m770830150_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisArraySegment_1_t283560987_m1561035780_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisAspectMode_t3417192999_m3842891185_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisAttributeEntry_t1001010863_m695624701_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisBinaryTypeEnum_t3485436454_m2462803376_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisBoolean_t97287965_m802427701_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisByte_t1134296376_m2266787817_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisCameraField_t1483002240_m3554945809_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisCancellationTokenRegistration_t2813424904_m651300048_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisChar_t3634460470_m4143749387_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisCharacterValidation_t4051914437_m3971476383_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisCipherSuiteCode_t732562211_m724937536_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisColor32_t2600501292_m1053145697_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisColorBlock_t2139031574_m96198584_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisColor_t2555686324_m1658001816_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisContactPoint_t3758755253_m4004109175_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisContentType_t1128941285_m2281326462_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisContentType_t1787303396_m4258952916_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisCustomAttributeNamedArgument_t287865710_m2189952110_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisCustomAttributeTypedArgument_t2723150157_m3045918830_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisDS_t2232270370_m653748025_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisDateTimeOffset_t3229287507_m1874660419_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisDateTime_t3738529785_m2250893026_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisDecimal_t2948259380_m1489074346_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisDictionaryEntry_t3123975638_m3699186409_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisDirection_t337909235_m2685458341_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisDirection_t3470714353_m3835305497_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisDouble_t594665363_m3197228342_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t1462643140_m3350332734_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t1472554943_m2158670975_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t1604483633_m3413011514_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t1618249229_m3659174070_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t1621531567_m2999896967_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t1747409640_m3234341483_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t1932439066_m1566577985_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t2089797520_m2942842771_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t2186695401_m303944101_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t2353074135_m2704060903_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t2391274283_m1949846896_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t2691401815_m2157822181_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t2906627609_m2722672658_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t3059558737_m2981643469_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t3285567941_m731852495_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t3454523572_m1085913128_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t3583683983_m1130030431_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t3743988185_m537826764_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t4138038289_m1455054126_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t4240145123_m322043786_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t600865784_m1612588723_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEntry_t845028434_m2378613447_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEphemeron_t1602596362_m1784919991_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEyewearCalibrationReadingData_t937256773_m3550862407_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisEyewearCalibrationReading_t664929988_m1130450076_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisFillMethod_t1167457570_m2411739391_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisFitMode_t3267881214_m3359343572_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisFormatParam_t4194474082_m3777841951_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisGCHandle_t3351438187_m2225771241_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisGcAchievementData_t675222246_m441238831_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisGcScoreData_t2125309831_m863269800_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisGuid_t_m1060141424_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisHS_t3339773016_m691359724_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisHeaderVariantInfo_t1935685601_m3880608814_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisHitInfo_t3229609740_m1726675946_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisILExceptionBlock_t3961874966_m3591308735_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisILExceptionInfo_t237856010_m2157589386_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisILTokenInfo_t2325775114_m3179429710_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisInputType_t1770400679_m3221927921_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisInt16_t2552820387_m3372313693_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisInt32_t2950945753_m1299950055_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisInt64_t3736567304_m3736440744_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisIntPtr_t_m3807208150_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisInternalCodePageDataItem_t2575532933_m1073688274_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisInternalEncodingDataItem_t3158859817_m374593408_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisInternalPrimitiveTypeE_t4093048977_m249127265_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1383673463_m2503620538_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1627836113_m4251990060_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2245450819_m3064110492_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2255362622_m442971424_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t231828568_m1556851870_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2387291312_m3332696613_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2401056908_m74803181_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2404339246_m496651115_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2530217319_m805303252_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2715246745_m3413264588_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2872605199_m2517063200_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2969503080_m2786833909_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3135881814_m1392899102_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3174081962_m1391705319_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3474209494_m2007082926_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3689435288_m423724210_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3842366416_m278128148_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4068375620_m581517083_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4237331251_m2718145390_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t625878672_m3763471410_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t71524366_m1112804119_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t727985506_m1728554900_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t870930286_m1892291998_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisKeyframe_t4206410242_m3222074551_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisLabelData_t360167391_m3556246844_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisLabelFixup_t858502054_m3068158566_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisLabel_t2281661643_m1608421128_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisLineType_t4214648469_m653219700_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisLowerCaseMapping_t2910317575_m2939413724_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisMap_t1331044427_m2604009989_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisMaterialReference_t1952344632_m1234240281_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisMatrix4x4_t1817901843_m4092628408_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisMonoResource_t4103430009_m238733686_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisMonoWin32Resource_t1904229483_m3397256857_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisNamespaceDeclaration_t4162609575_m886801041_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisNamespace_t2218256516_m462955963_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisNavigation_t3049316579_m194277076_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisOp_t2046805169_m1226627099_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisOrderBlock_t1585977831_m1449044465_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisPIXEL_FORMAT_t3209881435_m786629680_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisParameterModifier_t1461694466_m2152733370_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisParsingState_t1780334922_m2762807023_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisPlane_t1000493321_m759457937_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisPlayableBinding_t354260709_m2417281815_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisPlayerLoopSystem_t105772105_m11379199_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisProfileData_t3519391925_m77926491_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisRangePositionInfo_t589968936_m4050967781_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisRaycastHit2D_t2279581989_m2916504088_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisRaycastHit_t1056001966_m2255692446_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisRaycastResult_t3360306849_m3237401700_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisRecognizedAttribute_t632074220_m4099282933_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisRefEmitPermissionSet_t484390987_m4235288405_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisRegexOptions_t92845595_m1849641238_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisResourceLocator_t3723970807_m2265674803_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisRfcChar_t2905409930_m244560691_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisRuntimeObject_m2110193223_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisSByte_t1669577662_m1857659578_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisSequenceConstructPosContext_t2054380699_m2809418771_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisSingle_t1397266774_m3361324455_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisSlot_t3916936346_m3288548207_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisSlot_t4046096757_m346493421_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisSpriteData_t3048397587_m2214920323_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisSpriteState_t1362986479_m1286081358_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisSslCipherSuite_t3309122048_m3628004630_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisSslStatus_t191981556_m215373166_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisState_t1792539347_m3454992_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisState_t1890458201_m741404780_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisStatus_t1100905814_m2896218315_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisStereoscopicEye_t2238664036_m1349090687_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisSwitchValueState_t2805251467_m4250392134_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTMP_CharacterInfo_t3185626797_m1831411579_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTMP_FontWeights_t916301067_m640405969_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTMP_LineInfo_t1079631636_m1566194752_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTMP_LinkInfo_t1092083476_m2516597824_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTMP_MeshInfo_t2771747634_m2836324316_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTMP_PageInfo_t2608430633_m637965447_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTMP_WordInfo_t3331066303_m2995748367_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTableRange_t3332867892_m1941639116_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTagInfo_t3526638417_m3600920498_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTermInfoStrings_t290279955_m3570867715_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTextAlignmentOptions_t4036791236_m2039447946_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTextureFormat_t2701165832_m4044103976_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTimeSpanToken_t993347374_m750119804_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTimeSpan_t881159249_m2877951771_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTouchScreenKeyboardType_t1530597702_m734862705_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTouch_t1921856868_m3186275290_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTrackableIdPair_t4227350457_m2721736245_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTrackableResultData_t452703160_m552047957_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTransition_t1769908631_m3699212857_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisTypeCode_t2987224087_m3902459327_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisType_t1152881528_m2427611321_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisUICharInfo_t75501106_m1176015416_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisUILineInfo_t4195266810_m3641067542_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisUIVertex_t4057497605_m794785933_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisUInt16_t2177724958_m1766181761_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisUInt32_t2560061978_m733727733_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisUInt64_t4134040092_m2664745791_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisVector2_t2156229523_m2219689269_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisVector3_t3722313464_m673808304_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisVector4_t3319028937_m1224903547_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisVirtualAttribute_t3578083907_m2429458573_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisVirtualButtonData_t1117953748_m2208651069_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisVuMarkTargetData_t3266143771_m1845872957_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisVuMarkTargetResultData_t2153299244_m33783616_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisWSABUF_t1998059390_m3800395803_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisWebCamDevice_t1322781432_m916485475_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m979868039_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisWorkRequest_t1354518612_m565106622_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisX509ChainStatus_t133602714_m3635989134_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisXML_TagAttribute_t1174424309_m1640452411_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisXPathNodeRef_t3498189018_m3356620128_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisXPathNode_t2208072876_m3760800031_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisXPathResultType_t2828988488_m1066441019_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisXmlSchemaObjectEntry_t3344676971_m698060886_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_TisXmlTypeCode_t2623622950_m3125295489_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_Tisbucket_t758131704_m2949328471_RuntimeMethod_var; extern const RuntimeMethod* Array_InternalArray__ICollection_Remove_Tisunitytls_ciphersuite_t1735159395_m2335691358_RuntimeMethod_var; extern const RuntimeMethod* Array_TrueForAll_TisRuntimeObject_m1084992726_RuntimeMethod_var; extern const RuntimeMethod* Contract_ForAll_TisRuntimeObject_m3626865541_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_ContainsKey_m1661239861_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_TryGetValue_m3181164325_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_TryGetValue_m497768301_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_get_Item_m2573772253_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_get_Item_m955022751_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_set_Item_m3740867761_RuntimeMethod_var; extern const RuntimeMethod* Enumerable_All_TisRuntimeObject_m2941444129_RuntimeMethod_var; extern const RuntimeMethod* Enumerable_Any_TisRuntimeObject_m3173759778_RuntimeMethod_var; extern const RuntimeMethod* Enumerable_Any_TisRuntimeObject_m3853239423_RuntimeMethod_var; extern const RuntimeMethod* Enumerable_Any_TisTrackableResultData_t452703160_m2365680072_RuntimeMethod_var; extern const RuntimeMethod* Enumerable_Cast_TisRuntimeObject_m394878858_RuntimeMethod_var; extern const RuntimeMethod* Enumerable_Contains_TisRuntimeObject_m553751294_RuntimeMethod_var; extern const RuntimeMethod* Enumerable_OfType_TisRuntimeObject_m181915009_RuntimeMethod_var; extern const RuntimeMethod* Enumerable_Select_TisRuntimeObject_TisRuntimeObject_m1603625173_RuntimeMethod_var; extern const RuntimeMethod* Enumerable_Select_TisRuntimeObject_TisRuntimeObject_m387632584_RuntimeMethod_var; extern const RuntimeMethod* Enumerable_Where_TisRuntimeObject_m3454096398_RuntimeMethod_var; extern const RuntimeMethod* Enumerable_Where_TisTrackableResultData_t452703160_m4044286262_RuntimeMethod_var; extern const RuntimeMethod* Func_2_Invoke_m3880583461_RuntimeMethod_var; extern const RuntimeMethod* List_1_get_Count_m147600133_RuntimeMethod_var; extern const RuntimeMethod* List_1_get_Item_m2864693351_RuntimeMethod_var; extern const RuntimeMethod* ObjectPool_1_Get_m3850192859_RuntimeMethod_var; extern const RuntimeMethod* ObjectPool_1_Release_m2466618443_RuntimeMethod_var; extern const RuntimeType* RotationalDeviceTracker_t2847210804_0_0_0_var; extern const RuntimeType* SmartTerrain_t256094413_0_0_0_var; extern const RuntimeType* Void_t1185182177_0_0_0_var; extern const uint32_t Array_InternalArray__ICollection_Contains_TisArraySegment_1_t283560987_m3050253333_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisAspectMode_t3417192999_m3232500413_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisAttributeEntry_t1001010863_m2158339696_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisBinaryTypeEnum_t3485436454_m1694216578_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisBoolean_t97287965_m4124615291_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisByte_t1134296376_m11531792_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisCameraField_t1483002240_m898899028_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisCancellationTokenRegistration_t2813424904_m1136591470_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisChar_t3634460470_m4074994798_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisCharacterValidation_t4051914437_m3474018230_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisCipherSuiteCode_t732562211_m3455071752_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisColor32_t2600501292_m2162938018_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisColorBlock_t2139031574_m2425560528_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisColor_t2555686324_m266224315_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisContactPoint_t3758755253_m1890115071_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisContentType_t1128941285_m648156399_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisContentType_t1787303396_m692835665_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisCustomAttributeNamedArgument_t287865710_m941688219_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisCustomAttributeTypedArgument_t2723150157_m2663438007_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisDS_t2232270370_m4114415445_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisDateTimeOffset_t3229287507_m3781718578_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisDateTime_t3738529785_m364748720_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisDecimal_t2948259380_m2897422370_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisDictionaryEntry_t3123975638_m1596925967_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisDirection_t337909235_m2979051405_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisDirection_t3470714353_m1685343067_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisDouble_t594665363_m1696010878_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t1462643140_m1201510596_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t1472554943_m1721178887_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t1604483633_m927102390_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t1618249229_m3374431336_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t1621531567_m1837531547_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t1747409640_m127521533_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t1932439066_m4009027030_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t2089797520_m3799395690_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t2186695401_m796429899_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t2353074135_m3631867778_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t2391274283_m2841416160_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t2691401815_m746550459_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t2906627609_m2322345844_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t3059558737_m662778609_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t3285567941_m627574859_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t3454523572_m819565093_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t3583683983_m3389064855_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t3743988185_m332834595_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t4138038289_m2668321569_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t4240145123_m838898027_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t600865784_m1192128834_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEntry_t845028434_m3546335531_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEphemeron_t1602596362_m546276767_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEyewearCalibrationReadingData_t937256773_m1765250429_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisEyewearCalibrationReading_t664929988_m275082353_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisFillMethod_t1167457570_m2086878798_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisFitMode_t3267881214_m888472092_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisFormatParam_t4194474082_m755460312_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisGCHandle_t3351438187_m3962075817_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisGcAchievementData_t675222246_m348483916_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisGcScoreData_t2125309831_m2879791485_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisGuid_t_m2826636229_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisHS_t3339773016_m3603136913_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisHeaderVariantInfo_t1935685601_m1605335289_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisHitInfo_t3229609740_m180302123_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisILExceptionBlock_t3961874966_m537254778_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisILExceptionInfo_t237856010_m3244023078_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisILTokenInfo_t2325775114_m2923331462_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisInputType_t1770400679_m1010977894_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisInt16_t2552820387_m2915683400_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisInt32_t2950945753_m2907032710_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisInt64_t3736567304_m2911357929_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisIntPtr_t_m272531112_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisInternalCodePageDataItem_t2575532933_m54604211_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisInternalEncodingDataItem_t3158859817_m169224862_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisInternalPrimitiveTypeE_t4093048977_m2149992838_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1383673463_m166023032_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1627836113_m965285537_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2245450819_m2755643427_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2255362622_m2062056165_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t231828568_m2953990230_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2387291312_m3369824214_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2401056908_m2117980243_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2404339246_m2254033280_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2530217319_m3941002701_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2715246745_m101761923_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2872605199_m1209080642_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2969503080_m250283142_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3135881814_m3961676534_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3174081962_m4224208290_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3474209494_m3067668800_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3689435288_m351396037_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3842366416_m119930447_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4068375620_m2493972896_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4237331251_m138928983_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t625878672_m368001353_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t71524366_m2486536917_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t727985506_m2528174741_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t870930286_m2241152863_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyframe_t4206410242_m2096605895_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisLabelData_t360167391_m3647461454_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisLabelFixup_t858502054_m3479040328_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisLabel_t2281661643_m1425978922_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisLineType_t4214648469_m155272349_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisLowerCaseMapping_t2910317575_m491248538_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisMap_t1331044427_m2582423708_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisMaterialReference_t1952344632_m3054325727_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisMatrix4x4_t1817901843_m2788258248_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisMonoResource_t4103430009_m3220247244_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisMonoWin32Resource_t1904229483_m4284943779_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisNamespaceDeclaration_t4162609575_m1598120485_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisNamespace_t2218256516_m290305241_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisNavigation_t3049316579_m621166290_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisOp_t2046805169_m1814034116_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisOrderBlock_t1585977831_m1840347001_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisPIXEL_FORMAT_t3209881435_m3898758130_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisParameterModifier_t1461694466_m1000453323_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisParsingState_t1780334922_m3181465327_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisPlane_t1000493321_m3673932690_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisPlayableBinding_t354260709_m782693665_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisPlayerLoopSystem_t105772105_m1867619209_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisProfileData_t3519391925_m4271667505_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisRangePositionInfo_t589968936_m3403309823_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisRaycastHit2D_t2279581989_m2733133723_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisRaycastHit_t1056001966_m2163828986_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisRaycastResult_t3360306849_m3809401052_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisRecognizedAttribute_t632074220_m412671837_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisRefEmitPermissionSet_t484390987_m2357266594_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisRegexOptions_t92845595_m3531906213_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisResourceLocator_t3723970807_m3744281591_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisRfcChar_t2905409930_m584031707_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisRuntimeObject_m4067783231_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisSByte_t1669577662_m926034270_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisSequenceConstructPosContext_t2054380699_m1886702386_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisSingle_t1397266774_m2135761808_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisSlot_t3916936346_m3447650581_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisSlot_t4046096757_m933615927_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisSpriteData_t3048397587_m4000778412_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisSpriteState_t1362986479_m1315569797_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisSslCipherSuite_t3309122048_m2904748630_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisSslStatus_t191981556_m4075581580_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisState_t1792539347_m1048336574_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisState_t1890458201_m2154717523_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisStatus_t1100905814_m3124245975_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisStereoscopicEye_t2238664036_m4230514778_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisSwitchValueState_t2805251467_m515895951_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTMP_CharacterInfo_t3185626797_m2610199187_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTMP_FontWeights_t916301067_m4182675464_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTMP_LineInfo_t1079631636_m250410355_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTMP_LinkInfo_t1092083476_m1569125747_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTMP_MeshInfo_t2771747634_m644520357_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTMP_PageInfo_t2608430633_m1019762868_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTMP_WordInfo_t3331066303_m259378234_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTableRange_t3332867892_m220823873_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTagInfo_t3526638417_m4140710765_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTermInfoStrings_t290279955_m344583557_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTextAlignmentOptions_t4036791236_m744948684_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTextureFormat_t2701165832_m2455236935_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTimeSpanToken_t993347374_m282179853_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTimeSpan_t881159249_m1600990182_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTouchScreenKeyboardType_t1530597702_m3440712606_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTouch_t1921856868_m354355717_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTrackableIdPair_t4227350457_m3832756353_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTrackableResultData_t452703160_m3736208667_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTransition_t1769908631_m996811643_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTypeCode_t2987224087_m2462036610_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisType_t1152881528_m627632766_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisUICharInfo_t75501106_m1619960249_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisUILineInfo_t4195266810_m375073905_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisUIVertex_t4057497605_m1942096352_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisUInt16_t2177724958_m3393176156_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisUInt32_t2560061978_m387509280_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisUInt64_t4134040092_m94895126_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisVector2_t2156229523_m4078183089_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisVector3_t3722313464_m4078183076_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisVector4_t3319028937_m4078183023_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisVirtualAttribute_t3578083907_m1725387487_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisVirtualButtonData_t1117953748_m2101013061_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisVuMarkTargetData_t3266143771_m2433614114_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisVuMarkTargetResultData_t2153299244_m436158217_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisWSABUF_t1998059390_m1287341269_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisWebCamDevice_t1322781432_m3093132044_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m1683591410_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisWorkRequest_t1354518612_m2404463752_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisX509ChainStatus_t133602714_m795171973_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisXML_TagAttribute_t1174424309_m2858672699_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisXPathNodeRef_t3498189018_m464172426_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisXPathNode_t2208072876_m1047333184_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisXPathResultType_t2828988488_m519609602_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisXmlSchemaObjectEntry_t3344676971_m3591905055_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_TisXmlTypeCode_t2623622950_m2535793185_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_Tisbucket_t758131704_m357630632_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Contains_Tisunitytls_ciphersuite_t1735159395_m770830150_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisArraySegment_1_t283560987_m1561035780_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisAspectMode_t3417192999_m3842891185_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisAttributeEntry_t1001010863_m695624701_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisBinaryTypeEnum_t3485436454_m2462803376_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisBoolean_t97287965_m802427701_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisByte_t1134296376_m2266787817_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisCameraField_t1483002240_m3554945809_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisCancellationTokenRegistration_t2813424904_m651300048_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisChar_t3634460470_m4143749387_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisCharacterValidation_t4051914437_m3971476383_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisCipherSuiteCode_t732562211_m724937536_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisColor32_t2600501292_m1053145697_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisColorBlock_t2139031574_m96198584_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisColor_t2555686324_m1658001816_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisContactPoint_t3758755253_m4004109175_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisContentType_t1128941285_m2281326462_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisContentType_t1787303396_m4258952916_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisCustomAttributeNamedArgument_t287865710_m2189952110_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisCustomAttributeTypedArgument_t2723150157_m3045918830_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisDS_t2232270370_m653748025_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisDateTimeOffset_t3229287507_m1874660419_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisDateTime_t3738529785_m2250893026_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisDecimal_t2948259380_m1489074346_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisDictionaryEntry_t3123975638_m3699186409_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisDirection_t337909235_m2685458341_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisDirection_t3470714353_m3835305497_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisDouble_t594665363_m3197228342_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t1462643140_m3350332734_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t1472554943_m2158670975_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t1604483633_m3413011514_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t1618249229_m3659174070_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t1621531567_m2999896967_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t1747409640_m3234341483_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t1932439066_m1566577985_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t2089797520_m2942842771_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t2186695401_m303944101_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t2353074135_m2704060903_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t2391274283_m1949846896_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t2691401815_m2157822181_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t2906627609_m2722672658_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t3059558737_m2981643469_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t3285567941_m731852495_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t3454523572_m1085913128_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t3583683983_m1130030431_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t3743988185_m537826764_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t4138038289_m1455054126_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t4240145123_m322043786_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t600865784_m1612588723_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEntry_t845028434_m2378613447_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEphemeron_t1602596362_m1784919991_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEyewearCalibrationReadingData_t937256773_m3550862407_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisEyewearCalibrationReading_t664929988_m1130450076_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisFillMethod_t1167457570_m2411739391_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisFitMode_t3267881214_m3359343572_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisFormatParam_t4194474082_m3777841951_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisGCHandle_t3351438187_m2225771241_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisGcAchievementData_t675222246_m441238831_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisGcScoreData_t2125309831_m863269800_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisGuid_t_m1060141424_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisHS_t3339773016_m691359724_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisHeaderVariantInfo_t1935685601_m3880608814_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisHitInfo_t3229609740_m1726675946_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisILExceptionBlock_t3961874966_m3591308735_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisILExceptionInfo_t237856010_m2157589386_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisILTokenInfo_t2325775114_m3179429710_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisInputType_t1770400679_m3221927921_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisInt16_t2552820387_m3372313693_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisInt32_t2950945753_m1299950055_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisInt64_t3736567304_m3736440744_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisIntPtr_t_m3807208150_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisInternalCodePageDataItem_t2575532933_m1073688274_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisInternalEncodingDataItem_t3158859817_m374593408_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisInternalPrimitiveTypeE_t4093048977_m249127265_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1383673463_m2503620538_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1627836113_m4251990060_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2245450819_m3064110492_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2255362622_m442971424_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t231828568_m1556851870_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2387291312_m3332696613_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2401056908_m74803181_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2404339246_m496651115_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2530217319_m805303252_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2715246745_m3413264588_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2872605199_m2517063200_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2969503080_m2786833909_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3135881814_m1392899102_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3174081962_m1391705319_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3474209494_m2007082926_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3689435288_m423724210_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3842366416_m278128148_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4068375620_m581517083_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4237331251_m2718145390_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t625878672_m3763471410_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t71524366_m1112804119_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t727985506_m1728554900_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t870930286_m1892291998_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyframe_t4206410242_m3222074551_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisLabelData_t360167391_m3556246844_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisLabelFixup_t858502054_m3068158566_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisLabel_t2281661643_m1608421128_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisLineType_t4214648469_m653219700_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisLowerCaseMapping_t2910317575_m2939413724_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisMap_t1331044427_m2604009989_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisMaterialReference_t1952344632_m1234240281_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisMatrix4x4_t1817901843_m4092628408_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisMonoResource_t4103430009_m238733686_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisMonoWin32Resource_t1904229483_m3397256857_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisNamespaceDeclaration_t4162609575_m886801041_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisNamespace_t2218256516_m462955963_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisNavigation_t3049316579_m194277076_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisOp_t2046805169_m1226627099_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisOrderBlock_t1585977831_m1449044465_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisPIXEL_FORMAT_t3209881435_m786629680_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisParameterModifier_t1461694466_m2152733370_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisParsingState_t1780334922_m2762807023_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisPlane_t1000493321_m759457937_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisPlayableBinding_t354260709_m2417281815_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisPlayerLoopSystem_t105772105_m11379199_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisProfileData_t3519391925_m77926491_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisRangePositionInfo_t589968936_m4050967781_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisRaycastHit2D_t2279581989_m2916504088_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisRaycastHit_t1056001966_m2255692446_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisRaycastResult_t3360306849_m3237401700_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisRecognizedAttribute_t632074220_m4099282933_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisRefEmitPermissionSet_t484390987_m4235288405_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisRegexOptions_t92845595_m1849641238_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisResourceLocator_t3723970807_m2265674803_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisRfcChar_t2905409930_m244560691_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisRuntimeObject_m2110193223_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisSByte_t1669577662_m1857659578_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisSequenceConstructPosContext_t2054380699_m2809418771_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisSingle_t1397266774_m3361324455_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisSlot_t3916936346_m3288548207_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisSlot_t4046096757_m346493421_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisSpriteData_t3048397587_m2214920323_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisSpriteState_t1362986479_m1286081358_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisSslCipherSuite_t3309122048_m3628004630_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisSslStatus_t191981556_m215373166_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisState_t1792539347_m3454992_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisState_t1890458201_m741404780_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisStatus_t1100905814_m2896218315_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisStereoscopicEye_t2238664036_m1349090687_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisSwitchValueState_t2805251467_m4250392134_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTMP_CharacterInfo_t3185626797_m1831411579_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTMP_FontWeights_t916301067_m640405969_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTMP_LineInfo_t1079631636_m1566194752_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTMP_LinkInfo_t1092083476_m2516597824_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTMP_MeshInfo_t2771747634_m2836324316_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTMP_PageInfo_t2608430633_m637965447_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTMP_WordInfo_t3331066303_m2995748367_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTableRange_t3332867892_m1941639116_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTagInfo_t3526638417_m3600920498_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTermInfoStrings_t290279955_m3570867715_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTextAlignmentOptions_t4036791236_m2039447946_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTextureFormat_t2701165832_m4044103976_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTimeSpanToken_t993347374_m750119804_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTimeSpan_t881159249_m2877951771_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTouchScreenKeyboardType_t1530597702_m734862705_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTouch_t1921856868_m3186275290_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTrackableIdPair_t4227350457_m2721736245_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTrackableResultData_t452703160_m552047957_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTransition_t1769908631_m3699212857_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTypeCode_t2987224087_m3902459327_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisType_t1152881528_m2427611321_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisUICharInfo_t75501106_m1176015416_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisUILineInfo_t4195266810_m3641067542_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisUIVertex_t4057497605_m794785933_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisUInt16_t2177724958_m1766181761_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisUInt32_t2560061978_m733727733_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisUInt64_t4134040092_m2664745791_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisVector2_t2156229523_m2219689269_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisVector3_t3722313464_m673808304_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisVector4_t3319028937_m1224903547_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisVirtualAttribute_t3578083907_m2429458573_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisVirtualButtonData_t1117953748_m2208651069_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisVuMarkTargetData_t3266143771_m1845872957_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisVuMarkTargetResultData_t2153299244_m33783616_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisWSABUF_t1998059390_m3800395803_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisWebCamDevice_t1322781432_m916485475_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m979868039_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisWorkRequest_t1354518612_m565106622_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisX509ChainStatus_t133602714_m3635989134_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisXML_TagAttribute_t1174424309_m1640452411_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisXPathNodeRef_t3498189018_m3356620128_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisXPathNode_t2208072876_m3760800031_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisXPathResultType_t2828988488_m1066441019_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisXmlSchemaObjectEntry_t3344676971_m698060886_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_TisXmlTypeCode_t2623622950_m3125295489_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_Tisbucket_t758131704_m2949328471_MetadataUsageId; extern const uint32_t Array_InternalArray__ICollection_Remove_Tisunitytls_ciphersuite_t1735159395_m2335691358_MetadataUsageId; extern const uint32_t Array_TrueForAll_TisRuntimeObject_m1084992726_MetadataUsageId; extern const uint32_t AugmentationStateMachineBehaviour_GetMethod_TisRuntimeObject_m1487955773_MetadataUsageId; extern const uint32_t Contract_ForAll_TisRuntimeObject_m3626865541_MetadataUsageId; extern const uint32_t Enumerable_All_TisRuntimeObject_m2941444129_MetadataUsageId; extern const uint32_t Enumerable_Any_TisRuntimeObject_m3173759778_MetadataUsageId; extern const uint32_t Enumerable_Any_TisRuntimeObject_m3853239423_MetadataUsageId; extern const uint32_t Enumerable_Any_TisTrackableResultData_t452703160_m2365680072_MetadataUsageId; extern const uint32_t Enumerable_Cast_TisRuntimeObject_m394878858_MetadataUsageId; extern const uint32_t Enumerable_Contains_TisRuntimeObject_m553751294_MetadataUsageId; extern const uint32_t Enumerable_OfType_TisRuntimeObject_m181915009_MetadataUsageId; extern const uint32_t Enumerable_Select_TisRuntimeObject_TisRuntimeObject_m1603625173_MetadataUsageId; extern const uint32_t Enumerable_Select_TisRuntimeObject_TisRuntimeObject_m387632584_MetadataUsageId; extern const uint32_t Enumerable_Where_TisRuntimeObject_m3454096398_MetadataUsageId; extern const uint32_t Enumerable_Where_TisTrackableResultData_t452703160_m4044286262_MetadataUsageId; extern const uint32_t ExecuteEvents_CanHandleEvent_TisRuntimeObject_m1442722301_MetadataUsageId; extern const uint32_t ExecuteEvents_Execute_TisRuntimeObject_m1952955951_MetadataUsageId; extern const uint32_t ExecuteEvents_ShouldSendToComponent_TisRuntimeObject_m2008221122_MetadataUsageId; extern const uint32_t LeanExtensions_GetTransition_TisRuntimeObject_m2520029663_MetadataUsageId; extern const uint32_t PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_t3631223897_m201603007_MetadataUsageId; extern const uint32_t PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t2887420414_m2033286094_MetadataUsageId; extern const uint32_t PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1303525964_m1992139667_MetadataUsageId; extern const uint32_t PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_t1015767841_m3416945299_MetadataUsageId; extern const uint32_t PlayableHandle_IsPlayableOfType_TisRuntimeObject_m503495943_MetadataUsageId; extern const uint32_t RuntimeHelpers_IsReferenceOrContainsReferences_TisInt32_t2950945753_m3647189809_MetadataUsageId; extern const uint32_t RuntimeHelpers_IsReferenceOrContainsReferences_TisRuntimeObject_m4177581758_MetadataUsageId; extern const uint32_t RuntimeHelpers_IsReferenceOrContainsReferences_TisSequenceConstructPosContext_t2054380699_m2499189385_MetadataUsageId; extern const uint32_t RuntimeHelpers_IsReferenceOrContainsReferences_TisWorkRequest_t1354518612_m2703673996_MetadataUsageId; extern const uint32_t TrackerManager_DeinitTracker_TisRuntimeObject_m17387763_MetadataUsageId; extern const uint32_t TrackerManager_IsTrackerSupportedNatively_TisRuntimeObject_m579694909_MetadataUsageId; extern const uint32_t VuforiaRuntimeUtilities_SafeDeinitTracker_TisRuntimeObject_m3384883741_MetadataUsageId; struct Color32_t2600501292 ; struct Decimal_t2948259380 ; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct ILExceptionBlock_t3961874966_marshaled_com; struct ILExceptionBlock_t3961874966_marshaled_pinvoke; struct Object_t631007953_marshaled_com; struct PlayerLoopSystem_t105772105_marshaled_com; struct PlayerLoopSystem_t105772105_marshaled_pinvoke; struct Vector2_t2156229523 ; struct Vector3_t3722313464 ; struct Vector4_t3319028937 ; struct XPathNode_t2208072876_marshaled_com; struct XPathNode_t2208072876_marshaled_pinvoke; struct ObjectU5BU5D_t2843939325; struct TypeU5BU5D_t3940880105; struct TrackableResultDataU5BU5D_t4273811049; struct VuMarkTargetResultDataU5BU5D_t2157423781; struct TrackableIdPairU5BU5D_t475764036; #ifndef RUNTIMEOBJECT_H #define RUNTIMEOBJECT_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEOBJECT_H #ifndef LEANFINGERDATA_T2715332220_H #define LEANFINGERDATA_T2715332220_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Lean.Touch.LeanFingerData struct LeanFingerData_t2715332220 : public RuntimeObject { public: // Lean.Touch.LeanFinger Lean.Touch.LeanFingerData::Finger LeanFinger_t3506292858 * ___Finger_0; public: inline static int32_t get_offset_of_Finger_0() { return static_cast<int32_t>(offsetof(LeanFingerData_t2715332220, ___Finger_0)); } inline LeanFinger_t3506292858 * get_Finger_0() const { return ___Finger_0; } inline LeanFinger_t3506292858 ** get_address_of_Finger_0() { return &___Finger_0; } inline void set_Finger_0(LeanFinger_t3506292858 * value) { ___Finger_0 = value; Il2CppCodeGenWriteBarrier((&___Finger_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LEANFINGERDATA_T2715332220_H #ifndef LEANEXTENSIONS_T45748031_H #define LEANEXTENSIONS_T45748031_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Lean.Transition.LeanExtensions struct LeanExtensions_t45748031 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LEANEXTENSIONS_T45748031_H #ifndef LEANSTATE_T463268132_H #define LEANSTATE_T463268132_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Lean.Transition.LeanState struct LeanState_t463268132 : public RuntimeObject { public: // System.Single Lean.Transition.LeanState::Duration float ___Duration_0; // System.Single Lean.Transition.LeanState::Age float ___Age_1; // System.Collections.Generic.List`1<Lean.Transition.LeanState> Lean.Transition.LeanState::Prev List_1_t1935342874 * ___Prev_2; // System.Collections.Generic.List`1<Lean.Transition.LeanState> Lean.Transition.LeanState::Next List_1_t1935342874 * ___Next_3; // System.Boolean Lean.Transition.LeanState::Skip bool ___Skip_4; public: inline static int32_t get_offset_of_Duration_0() { return static_cast<int32_t>(offsetof(LeanState_t463268132, ___Duration_0)); } inline float get_Duration_0() const { return ___Duration_0; } inline float* get_address_of_Duration_0() { return &___Duration_0; } inline void set_Duration_0(float value) { ___Duration_0 = value; } inline static int32_t get_offset_of_Age_1() { return static_cast<int32_t>(offsetof(LeanState_t463268132, ___Age_1)); } inline float get_Age_1() const { return ___Age_1; } inline float* get_address_of_Age_1() { return &___Age_1; } inline void set_Age_1(float value) { ___Age_1 = value; } inline static int32_t get_offset_of_Prev_2() { return static_cast<int32_t>(offsetof(LeanState_t463268132, ___Prev_2)); } inline List_1_t1935342874 * get_Prev_2() const { return ___Prev_2; } inline List_1_t1935342874 ** get_address_of_Prev_2() { return &___Prev_2; } inline void set_Prev_2(List_1_t1935342874 * value) { ___Prev_2 = value; Il2CppCodeGenWriteBarrier((&___Prev_2), value); } inline static int32_t get_offset_of_Next_3() { return static_cast<int32_t>(offsetof(LeanState_t463268132, ___Next_3)); } inline List_1_t1935342874 * get_Next_3() const { return ___Next_3; } inline List_1_t1935342874 ** get_address_of_Next_3() { return &___Next_3; } inline void set_Next_3(List_1_t1935342874 * value) { ___Next_3 = value; Il2CppCodeGenWriteBarrier((&___Next_3), value); } inline static int32_t get_offset_of_Skip_4() { return static_cast<int32_t>(offsetof(LeanState_t463268132, ___Skip_4)); } inline bool get_Skip_4() const { return ___Skip_4; } inline bool* get_address_of_Skip_4() { return &___Skip_4; } inline void set_Skip_4(bool value) { ___Skip_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LEANSTATE_T463268132_H struct Il2CppArrayBounds; #ifndef RUNTIMEARRAY_H #define RUNTIMEARRAY_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEARRAY_H #ifndef EMPTYINTERNALENUMERATOR_1_T3850042687_H #define EMPTYINTERNALENUMERATOR_1_T3850042687_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode> struct EmptyInternalEnumerator_1_t3850042687 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3850042687_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3850042687 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3850042687_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3850042687 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3850042687 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3850042687 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3850042687_H #ifndef EMPTYINTERNALENUMERATOR_1_T845191533_H #define EMPTYINTERNALENUMERATOR_1_T845191533_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef> struct EmptyInternalEnumerator_1_t845191533 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t845191533_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t845191533 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t845191533_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t845191533 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t845191533 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t845191533 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T845191533_H #ifndef EMPTYINTERNALENUMERATOR_1_T3688774980_H #define EMPTYINTERNALENUMERATOR_1_T3688774980_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.XPath.Operator/Op> struct EmptyInternalEnumerator_1_t3688774980 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3688774980_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3688774980 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3688774980_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3688774980 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3688774980 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3688774980 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3688774980_H #ifndef EMPTYINTERNALENUMERATOR_1_T656124563_H #define EMPTYINTERNALENUMERATOR_1_T656124563_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<Mono.AppleTls.SslCipherSuite> struct EmptyInternalEnumerator_1_t656124563 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t656124563_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t656124563 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t656124563_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t656124563 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t656124563 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t656124563 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T656124563_H #ifndef EMPTYINTERNALENUMERATOR_1_T1833951367_H #define EMPTYINTERNALENUMERATOR_1_T1833951367_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<Mono.AppleTls.SslStatus> struct EmptyInternalEnumerator_1_t1833951367 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1833951367_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1833951367 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1833951367_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1833951367 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1833951367 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1833951367 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1833951367_H #ifndef EMPTYINTERNALENUMERATOR_1_T679870407_H #define EMPTYINTERNALENUMERATOR_1_T679870407_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange> struct EmptyInternalEnumerator_1_t679870407 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t679870407_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t679870407 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t679870407_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t679870407 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t679870407 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t679870407 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T679870407_H #ifndef EMPTYINTERNALENUMERATOR_1_T2374532022_H #define EMPTYINTERNALENUMERATOR_1_T2374532022_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<Mono.Security.Interface.CipherSuiteCode> struct EmptyInternalEnumerator_1_t2374532022 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2374532022_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2374532022 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2374532022_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2374532022 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2374532022 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2374532022 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2374532022_H #ifndef EMPTYINTERNALENUMERATOR_1_T3377129206_H #define EMPTYINTERNALENUMERATOR_1_T3377129206_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<Mono.Unity.UnityTls/unitytls_ciphersuite> struct EmptyInternalEnumerator_1_t3377129206 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3377129206_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3377129206 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3377129206_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3377129206 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3377129206 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3377129206 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3377129206_H #ifndef EMPTYINTERNALENUMERATOR_1_T152253982_H #define EMPTYINTERNALENUMERATOR_1_T152253982_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.AppContext/SwitchValueState> struct EmptyInternalEnumerator_1_t152253982 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t152253982_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t152253982 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t152253982_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t152253982 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t152253982 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t152253982 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T152253982_H #ifndef EMPTYINTERNALENUMERATOR_1_T1925530798_H #define EMPTYINTERNALENUMERATOR_1_T1925530798_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>> struct EmptyInternalEnumerator_1_t1925530798 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1925530798_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1925530798 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1925530798_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1925530798 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1925530798 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1925530798 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1925530798_H #ifndef EMPTYINTERNALENUMERATOR_1_T1739257776_H #define EMPTYINTERNALENUMERATOR_1_T1739257776_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Boolean> struct EmptyInternalEnumerator_1_t1739257776 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1739257776_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1739257776 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1739257776_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1739257776 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1739257776 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1739257776 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1739257776_H #ifndef EMPTYINTERNALENUMERATOR_1_T2776266187_H #define EMPTYINTERNALENUMERATOR_1_T2776266187_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Byte> struct EmptyInternalEnumerator_1_t2776266187 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2776266187_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2776266187 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2776266187_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2776266187 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2776266187 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2776266187 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2776266187_H #ifndef EMPTYINTERNALENUMERATOR_1_T981462985_H #define EMPTYINTERNALENUMERATOR_1_T981462985_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Char> struct EmptyInternalEnumerator_1_t981462985 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t981462985_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t981462985 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t981462985_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t981462985 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t981462985 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t981462985 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T981462985_H #ifndef EMPTYINTERNALENUMERATOR_1_T470978153_H #define EMPTYINTERNALENUMERATOR_1_T470978153_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry> struct EmptyInternalEnumerator_1_t470978153 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t470978153_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t470978153 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t470978153_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t470978153 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t470978153 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t470978153 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T470978153_H #ifndef EMPTYINTERNALENUMERATOR_1_T3731767331_H #define EMPTYINTERNALENUMERATOR_1_T3731767331_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>> struct EmptyInternalEnumerator_1_t3731767331 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3731767331_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3731767331 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3731767331_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3731767331 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3731767331 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3731767331 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3731767331_H #ifndef EMPTYINTERNALENUMERATOR_1_T1090990700_H #define EMPTYINTERNALENUMERATOR_1_T1090990700_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>> struct EmptyInternalEnumerator_1_t1090990700 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1090990700_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1090990700 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1090990700_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1090990700 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1090990700 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1090990700 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1090990700_H #ifndef EMPTYINTERNALENUMERATOR_1_T2242835595_H #define EMPTYINTERNALENUMERATOR_1_T2242835595_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>> struct EmptyInternalEnumerator_1_t2242835595 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2242835595_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2242835595 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2242835595_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2242835595 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2242835595 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2242835595 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2242835595_H #ifndef EMPTYINTERNALENUMERATOR_1_T1485040804_H #define EMPTYINTERNALENUMERATOR_1_T1485040804_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>> struct EmptyInternalEnumerator_1_t1485040804 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1485040804_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1485040804 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1485040804_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1485040804 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1485040804 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1485040804 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1485040804_H #ifndef EMPTYINTERNALENUMERATOR_1_T801526087_H #define EMPTYINTERNALENUMERATOR_1_T801526087_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>> struct EmptyInternalEnumerator_1_t801526087 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t801526087_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t801526087 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t801526087_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t801526087 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t801526087 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t801526087 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T801526087_H #ifndef EMPTYINTERNALENUMERATOR_1_T1587147638_H #define EMPTYINTERNALENUMERATOR_1_T1587147638_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>> struct EmptyInternalEnumerator_1_t1587147638 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1587147638_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1587147638 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1587147638_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1587147638 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1587147638 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1587147638 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1587147638_H #ifndef EMPTYINTERNALENUMERATOR_1_T930686498_H #define EMPTYINTERNALENUMERATOR_1_T930686498_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>> struct EmptyInternalEnumerator_1_t930686498 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t930686498_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t930686498 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t930686498_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t930686498 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t930686498 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t930686498 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T930686498_H #ifndef EMPTYINTERNALENUMERATOR_1_T3246453444_H #define EMPTYINTERNALENUMERATOR_1_T3246453444_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackableBehaviour/Status>> struct EmptyInternalEnumerator_1_t3246453444 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3246453444_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3246453444 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3246453444_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3246453444 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3246453444 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3246453444 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3246453444_H #ifndef EMPTYINTERNALENUMERATOR_1_T3263501378_H #define EMPTYINTERNALENUMERATOR_1_T3263501378_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>> struct EmptyInternalEnumerator_1_t3263501378 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3263501378_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3263501378 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3263501378_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3263501378 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3263501378 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3263501378 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3263501378_H #ifndef EMPTYINTERNALENUMERATOR_1_T3104612951_H #define EMPTYINTERNALENUMERATOR_1_T3104612951_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>> struct EmptyInternalEnumerator_1_t3104612951 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3104612951_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3104612951 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3104612951_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3104612951 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3104612951 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3104612951 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3104612951_H #ifndef EMPTYINTERNALENUMERATOR_1_T3114524754_H #define EMPTYINTERNALENUMERATOR_1_T3114524754_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.AppContext/SwitchValueState>> struct EmptyInternalEnumerator_1_t3114524754 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3114524754_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3114524754 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3114524754_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3114524754 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3114524754 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3114524754 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3114524754_H #ifndef EMPTYINTERNALENUMERATOR_1_T406561252_H #define EMPTYINTERNALENUMERATOR_1_T406561252_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>> struct EmptyInternalEnumerator_1_t406561252 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t406561252_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t406561252 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t406561252_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t406561252 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t406561252 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t406561252 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T406561252_H #ifndef EMPTYINTERNALENUMERATOR_1_T3260219040_H #define EMPTYINTERNALENUMERATOR_1_T3260219040_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>> struct EmptyInternalEnumerator_1_t3260219040 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3260219040_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3260219040 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3260219040_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3260219040 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3260219040 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3260219040 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3260219040_H #ifndef EMPTYINTERNALENUMERATOR_1_T3389379451_H #define EMPTYINTERNALENUMERATOR_1_T3389379451_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>> struct EmptyInternalEnumerator_1_t3389379451 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3389379451_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3389379451 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3389379451_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3389379451 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3389379451 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3389379451 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3389379451_H #ifndef EMPTYINTERNALENUMERATOR_1_T4033244094_H #define EMPTYINTERNALENUMERATOR_1_T4033244094_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>> struct EmptyInternalEnumerator_1_t4033244094 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t4033244094_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t4033244094 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4033244094_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t4033244094 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t4033244094 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t4033244094 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T4033244094_H #ifndef EMPTYINTERNALENUMERATOR_1_T2486998245_H #define EMPTYINTERNALENUMERATOR_1_T2486998245_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>> struct EmptyInternalEnumerator_1_t2486998245 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2486998245_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2486998245 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2486998245_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2486998245 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2486998245 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2486998245 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2486998245_H #ifndef EMPTYINTERNALENUMERATOR_1_T3828665212_H #define EMPTYINTERNALENUMERATOR_1_T3828665212_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>> struct EmptyInternalEnumerator_1_t3828665212 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3828665212_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3828665212 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3828665212_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3828665212 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3828665212 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3828665212 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3828665212_H #ifndef EMPTYINTERNALENUMERATOR_1_T3574408877_H #define EMPTYINTERNALENUMERATOR_1_T3574408877_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,System.Single>> struct EmptyInternalEnumerator_1_t3574408877 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3574408877_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3574408877 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3574408877_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3574408877 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3574408877 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3574408877 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3574408877_H #ifndef EMPTYINTERNALENUMERATOR_1_T3995043946_H #define EMPTYINTERNALENUMERATOR_1_T3995043946_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>> struct EmptyInternalEnumerator_1_t3995043946 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3995043946_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3995043946 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3995043946_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3995043946 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3995043946 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3995043946 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3995043946_H #ifndef EMPTYINTERNALENUMERATOR_1_T38404330_H #define EMPTYINTERNALENUMERATOR_1_T38404330_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>> struct EmptyInternalEnumerator_1_t38404330 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t38404330_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t38404330 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t38404330_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t38404330 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t38404330 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t38404330 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T38404330_H #ifndef EMPTYINTERNALENUMERATOR_1_T632570456_H #define EMPTYINTERNALENUMERATOR_1_T632570456_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Vuforia.Image/PIXEL_FORMAT,System.Object>> struct EmptyInternalEnumerator_1_t632570456 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t632570456_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t632570456 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t632570456_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t632570456 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t632570456 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t632570456 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T632570456_H #ifndef EMPTYINTERNALENUMERATOR_1_T253630124_H #define EMPTYINTERNALENUMERATOR_1_T253630124_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Vuforia.Image/PIXEL_FORMAT,UnityEngine.TextureFormat>> struct EmptyInternalEnumerator_1_t253630124 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t253630124_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t253630124 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t253630124_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t253630124 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t253630124 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t253630124 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T253630124_H #ifndef EMPTYINTERNALENUMERATOR_1_T1263938861_H #define EMPTYINTERNALENUMERATOR_1_T1263938861_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>> struct EmptyInternalEnumerator_1_t1263938861 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1263938861_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1263938861 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1263938861_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1263938861 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1263938861 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1263938861 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1263938861_H #ifndef EMPTYINTERNALENUMERATOR_1_T1393099272_H #define EMPTYINTERNALENUMERATOR_1_T1393099272_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>> struct EmptyInternalEnumerator_1_t1393099272 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1393099272_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1393099272 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1393099272_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1393099272 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1393099272 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1393099272 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1393099272_H #ifndef EMPTYINTERNALENUMERATOR_1_T219607714_H #define EMPTYINTERNALENUMERATOR_1_T219607714_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>> struct EmptyInternalEnumerator_1_t219607714 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t219607714_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t219607714 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t219607714_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t219607714 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t219607714 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t219607714 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T219607714_H #ifndef EMPTYINTERNALENUMERATOR_1_T2512900097_H #define EMPTYINTERNALENUMERATOR_1_T2512900097_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct EmptyInternalEnumerator_1_t2512900097 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2512900097_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2512900097 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2512900097_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2512900097 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2512900097 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2512900097 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2512900097_H #ifndef EMPTYINTERNALENUMERATOR_1_T1873798379_H #define EMPTYINTERNALENUMERATOR_1_T1873798379_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>> struct EmptyInternalEnumerator_1_t1873798379 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1873798379_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1873798379 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1873798379_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1873798379 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1873798379 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1873798379 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1873798379_H #ifndef EMPTYINTERNALENUMERATOR_1_T3025643274_H #define EMPTYINTERNALENUMERATOR_1_T3025643274_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>> struct EmptyInternalEnumerator_1_t3025643274 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3025643274_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3025643274 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3025643274_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3025643274 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3025643274 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3025643274 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3025643274_H #ifndef EMPTYINTERNALENUMERATOR_1_T2267848483_H #define EMPTYINTERNALENUMERATOR_1_T2267848483_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>> struct EmptyInternalEnumerator_1_t2267848483 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2267848483_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2267848483 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2267848483_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2267848483 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2267848483 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2267848483 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2267848483_H #ifndef EMPTYINTERNALENUMERATOR_1_T1584333766_H #define EMPTYINTERNALENUMERATOR_1_T1584333766_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>> struct EmptyInternalEnumerator_1_t1584333766 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1584333766_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1584333766 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1584333766_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1584333766 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1584333766 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1584333766 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1584333766_H #ifndef EMPTYINTERNALENUMERATOR_1_T2369955317_H #define EMPTYINTERNALENUMERATOR_1_T2369955317_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>> struct EmptyInternalEnumerator_1_t2369955317 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2369955317_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2369955317 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2369955317_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2369955317 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2369955317 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2369955317 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2369955317_H #ifndef EMPTYINTERNALENUMERATOR_1_T1713494177_H #define EMPTYINTERNALENUMERATOR_1_T1713494177_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>> struct EmptyInternalEnumerator_1_t1713494177 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1713494177_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1713494177 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1713494177_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1713494177 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1713494177 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1713494177 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1713494177_H #ifndef EMPTYINTERNALENUMERATOR_1_T4029261123_H #define EMPTYINTERNALENUMERATOR_1_T4029261123_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackableBehaviour/Status>> struct EmptyInternalEnumerator_1_t4029261123 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t4029261123_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t4029261123 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4029261123_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t4029261123 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t4029261123 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t4029261123 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T4029261123_H #ifndef EMPTYINTERNALENUMERATOR_1_T4046309057_H #define EMPTYINTERNALENUMERATOR_1_T4046309057_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>> struct EmptyInternalEnumerator_1_t4046309057 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t4046309057_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t4046309057 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4046309057_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t4046309057 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t4046309057 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t4046309057 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T4046309057_H #ifndef EMPTYINTERNALENUMERATOR_1_T3887420630_H #define EMPTYINTERNALENUMERATOR_1_T3887420630_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>> struct EmptyInternalEnumerator_1_t3887420630 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3887420630_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3887420630 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3887420630_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3887420630 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3887420630 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3887420630 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3887420630_H #ifndef EMPTYINTERNALENUMERATOR_1_T3897332433_H #define EMPTYINTERNALENUMERATOR_1_T3897332433_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>> struct EmptyInternalEnumerator_1_t3897332433 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3897332433_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3897332433 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3897332433_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3897332433 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3897332433 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3897332433 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3897332433_H #ifndef EMPTYINTERNALENUMERATOR_1_T1189368931_H #define EMPTYINTERNALENUMERATOR_1_T1189368931_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>> struct EmptyInternalEnumerator_1_t1189368931 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1189368931_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1189368931 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1189368931_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1189368931 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1189368931 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1189368931 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1189368931_H #ifndef EMPTYINTERNALENUMERATOR_1_T4043026719_H #define EMPTYINTERNALENUMERATOR_1_T4043026719_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>> struct EmptyInternalEnumerator_1_t4043026719 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t4043026719_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t4043026719 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4043026719_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t4043026719 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t4043026719 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t4043026719 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T4043026719_H #ifndef EMPTYINTERNALENUMERATOR_1_T4172187130_H #define EMPTYINTERNALENUMERATOR_1_T4172187130_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> struct EmptyInternalEnumerator_1_t4172187130 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t4172187130_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t4172187130 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4172187130_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t4172187130 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t4172187130 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t4172187130 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T4172187130_H #ifndef EMPTYINTERNALENUMERATOR_1_T521084477_H #define EMPTYINTERNALENUMERATOR_1_T521084477_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>> struct EmptyInternalEnumerator_1_t521084477 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t521084477_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t521084477 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t521084477_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t521084477 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t521084477 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t521084477 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T521084477_H #ifndef EMPTYINTERNALENUMERATOR_1_T3269805924_H #define EMPTYINTERNALENUMERATOR_1_T3269805924_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>> struct EmptyInternalEnumerator_1_t3269805924 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3269805924_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3269805924 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3269805924_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3269805924 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3269805924 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3269805924 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3269805924_H #ifndef EMPTYINTERNALENUMERATOR_1_T316505595_H #define EMPTYINTERNALENUMERATOR_1_T316505595_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>> struct EmptyInternalEnumerator_1_t316505595 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t316505595_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t316505595 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t316505595_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t316505595 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t316505595 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t316505595 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T316505595_H #ifndef EMPTYINTERNALENUMERATOR_1_T62249260_H #define EMPTYINTERNALENUMERATOR_1_T62249260_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,System.Single>> struct EmptyInternalEnumerator_1_t62249260 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t62249260_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t62249260 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t62249260_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t62249260 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t62249260 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t62249260 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T62249260_H #ifndef EMPTYINTERNALENUMERATOR_1_T482884329_H #define EMPTYINTERNALENUMERATOR_1_T482884329_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>> struct EmptyInternalEnumerator_1_t482884329 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t482884329_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t482884329 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t482884329_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t482884329 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t482884329 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t482884329 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T482884329_H #ifndef EMPTYINTERNALENUMERATOR_1_T821212009_H #define EMPTYINTERNALENUMERATOR_1_T821212009_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>> struct EmptyInternalEnumerator_1_t821212009 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t821212009_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t821212009 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t821212009_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t821212009 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t821212009 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t821212009 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T821212009_H #ifndef EMPTYINTERNALENUMERATOR_1_T1415378135_H #define EMPTYINTERNALENUMERATOR_1_T1415378135_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Vuforia.Image/PIXEL_FORMAT,System.Object>> struct EmptyInternalEnumerator_1_t1415378135 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1415378135_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1415378135 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1415378135_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1415378135 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1415378135 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1415378135 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1415378135_H #ifndef EMPTYINTERNALENUMERATOR_1_T1036437803_H #define EMPTYINTERNALENUMERATOR_1_T1036437803_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Vuforia.Image/PIXEL_FORMAT,UnityEngine.TextureFormat>> struct EmptyInternalEnumerator_1_t1036437803 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1036437803_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1036437803 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1036437803_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1036437803 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1036437803 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1036437803 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1036437803_H #ifndef EMPTYINTERNALENUMERATOR_1_T2400101515_H #define EMPTYINTERNALENUMERATOR_1_T2400101515_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket> struct EmptyInternalEnumerator_1_t2400101515 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2400101515_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2400101515 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2400101515_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2400101515 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2400101515 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2400101515 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2400101515_H #ifndef EMPTYINTERNALENUMERATOR_1_T2642980674_H #define EMPTYINTERNALENUMERATOR_1_T2642980674_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.ComponentModel.AttributeCollection/AttributeEntry> struct EmptyInternalEnumerator_1_t2642980674 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2642980674_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2642980674 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2642980674_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2642980674 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2642980674 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2642980674 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2642980674_H #ifndef EMPTYINTERNALENUMERATOR_1_T1085532300_H #define EMPTYINTERNALENUMERATOR_1_T1085532300_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.DateTime> struct EmptyInternalEnumerator_1_t1085532300 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1085532300_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1085532300 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1085532300_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1085532300 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1085532300 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1085532300 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1085532300_H #ifndef EMPTYINTERNALENUMERATOR_1_T576290022_H #define EMPTYINTERNALENUMERATOR_1_T576290022_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.DateTimeOffset> struct EmptyInternalEnumerator_1_t576290022 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t576290022_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t576290022 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t576290022_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t576290022 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t576290022 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t576290022 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T576290022_H #ifndef EMPTYINTERNALENUMERATOR_1_T3874240181_H #define EMPTYINTERNALENUMERATOR_1_T3874240181_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.DateTimeParse/DS> struct EmptyInternalEnumerator_1_t3874240181 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3874240181_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3874240181 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3874240181_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3874240181 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3874240181 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3874240181 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3874240181_H #ifndef EMPTYINTERNALENUMERATOR_1_T295261895_H #define EMPTYINTERNALENUMERATOR_1_T295261895_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Decimal> struct EmptyInternalEnumerator_1_t295261895 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t295261895_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t295261895 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t295261895_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t295261895 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t295261895 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t295261895 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T295261895_H #ifndef EMPTYINTERNALENUMERATOR_1_T2236635174_H #define EMPTYINTERNALENUMERATOR_1_T2236635174_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Double> struct EmptyInternalEnumerator_1_t2236635174 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2236635174_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2236635174 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2236635174_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2236635174 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2236635174 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2236635174 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2236635174_H #ifndef EMPTYINTERNALENUMERATOR_1_T686775531_H #define EMPTYINTERNALENUMERATOR_1_T686775531_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Globalization.HebrewNumber/HS> struct EmptyInternalEnumerator_1_t686775531 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t686775531_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t686775531 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t686775531_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t686775531 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t686775531 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t686775531 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T686775531_H #ifndef EMPTYINTERNALENUMERATOR_1_T4217502744_H #define EMPTYINTERNALENUMERATOR_1_T4217502744_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem> struct EmptyInternalEnumerator_1_t4217502744 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t4217502744_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t4217502744 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4217502744_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t4217502744 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t4217502744 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t4217502744 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T4217502744_H #ifndef EMPTYINTERNALENUMERATOR_1_T505862332_H #define EMPTYINTERNALENUMERATOR_1_T505862332_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem> struct EmptyInternalEnumerator_1_t505862332 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t505862332_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t505862332 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t505862332_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t505862332 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t505862332 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t505862332 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T505862332_H #ifndef EMPTYINTERNALENUMERATOR_1_T2635317185_H #define EMPTYINTERNALENUMERATOR_1_T2635317185_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Globalization.TimeSpanParse/TimeSpanToken> struct EmptyInternalEnumerator_1_t2635317185 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2635317185_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2635317185 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2635317185_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2635317185 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2635317185 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2635317185 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2635317185_H #ifndef EMPTYINTERNALENUMERATOR_1_T540535402_H #define EMPTYINTERNALENUMERATOR_1_T540535402_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Guid> struct EmptyInternalEnumerator_1_t540535402 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t540535402_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t540535402 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t540535402_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t540535402 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t540535402 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t540535402 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T540535402_H #ifndef EMPTYINTERNALENUMERATOR_1_T4194790198_H #define EMPTYINTERNALENUMERATOR_1_T4194790198_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Int16> struct EmptyInternalEnumerator_1_t4194790198 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t4194790198_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t4194790198 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4194790198_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t4194790198 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t4194790198 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t4194790198 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T4194790198_H #ifndef EMPTYINTERNALENUMERATOR_1_T297948268_H #define EMPTYINTERNALENUMERATOR_1_T297948268_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Int32> struct EmptyInternalEnumerator_1_t297948268 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t297948268_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t297948268 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t297948268_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t297948268 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t297948268 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t297948268 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T297948268_H #ifndef EMPTYINTERNALENUMERATOR_1_T1083569819_H #define EMPTYINTERNALENUMERATOR_1_T1083569819_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Int64> struct EmptyInternalEnumerator_1_t1083569819 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1083569819_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1083569819 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1083569819_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1083569819 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1083569819 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1083569819 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1083569819_H #ifndef EMPTYINTERNALENUMERATOR_1_T2482119992_H #define EMPTYINTERNALENUMERATOR_1_T2482119992_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.IntPtr> struct EmptyInternalEnumerator_1_t2482119992 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2482119992_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2482119992 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2482119992_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2482119992 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2482119992 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2482119992 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2482119992_H #ifndef EMPTYINTERNALENUMERATOR_1_T2274044031_H #define EMPTYINTERNALENUMERATOR_1_T2274044031_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Net.CookieTokenizer/RecognizedAttribute> struct EmptyInternalEnumerator_1_t2274044031 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2274044031_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2274044031 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2274044031_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2274044031 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2274044031 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2274044031 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2274044031_H #ifndef EMPTYINTERNALENUMERATOR_1_T3577655412_H #define EMPTYINTERNALENUMERATOR_1_T3577655412_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Net.HeaderVariantInfo> struct EmptyInternalEnumerator_1_t3577655412 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3577655412_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3577655412 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3577655412_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3577655412 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3577655412 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3577655412 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3577655412_H #ifndef EMPTYINTERNALENUMERATOR_1_T810528843_H #define EMPTYINTERNALENUMERATOR_1_T810528843_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES> struct EmptyInternalEnumerator_1_t810528843 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t810528843_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t810528843 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t810528843_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t810528843 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t810528843 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t810528843 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T810528843_H #ifndef EMPTYINTERNALENUMERATOR_1_T3640029201_H #define EMPTYINTERNALENUMERATOR_1_T3640029201_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Net.Sockets.Socket/WSABUF> struct EmptyInternalEnumerator_1_t3640029201 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3640029201_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3640029201 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3640029201_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3640029201 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3640029201 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3640029201 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3640029201_H #ifndef EMPTYINTERNALENUMERATOR_1_T252412445_H #define EMPTYINTERNALENUMERATOR_1_T252412445_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Net.WebHeaderCollection/RfcChar> struct EmptyInternalEnumerator_1_t252412445 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t252412445_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t252412445 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t252412445_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t252412445 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t252412445 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t252412445 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T252412445_H #ifndef EMPTYINTERNALENUMERATOR_1_T427108679_H #define EMPTYINTERNALENUMERATOR_1_T427108679_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Object> struct EmptyInternalEnumerator_1_t427108679 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t427108679_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t427108679 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t427108679_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t427108679 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t427108679 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t427108679 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T427108679_H #ifndef EMPTYINTERNALENUMERATOR_1_T1541476597_H #define EMPTYINTERNALENUMERATOR_1_T1541476597_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam> struct EmptyInternalEnumerator_1_t1541476597 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1541476597_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1541476597 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1541476597_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1541476597 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1541476597 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1541476597 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1541476597_H #ifndef EMPTYINTERNALENUMERATOR_1_T1929835521_H #define EMPTYINTERNALENUMERATOR_1_T1929835521_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument> struct EmptyInternalEnumerator_1_t1929835521 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1929835521_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1929835521 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1929835521_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1929835521 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1929835521 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1929835521 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1929835521_H #ifndef EMPTYINTERNALENUMERATOR_1_T70152672_H #define EMPTYINTERNALENUMERATOR_1_T70152672_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument> struct EmptyInternalEnumerator_1_t70152672 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t70152672_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t70152672 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t70152672_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t70152672 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t70152672 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t70152672 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T70152672_H #ifndef EMPTYINTERNALENUMERATOR_1_T1308877481_H #define EMPTYINTERNALENUMERATOR_1_T1308877481_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Reflection.Emit.ILExceptionBlock> struct EmptyInternalEnumerator_1_t1308877481 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1308877481_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1308877481 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1308877481_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1308877481 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1308877481 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1308877481 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1308877481_H #ifndef EMPTYINTERNALENUMERATOR_1_T1879825821_H #define EMPTYINTERNALENUMERATOR_1_T1879825821_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Reflection.Emit.ILExceptionInfo> struct EmptyInternalEnumerator_1_t1879825821 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1879825821_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1879825821 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1879825821_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1879825821 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1879825821 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1879825821 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1879825821_H #ifndef EMPTYINTERNALENUMERATOR_1_T2002137202_H #define EMPTYINTERNALENUMERATOR_1_T2002137202_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData> struct EmptyInternalEnumerator_1_t2002137202 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2002137202_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2002137202 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2002137202_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2002137202 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2002137202 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2002137202 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2002137202_H #ifndef EMPTYINTERNALENUMERATOR_1_T2500471865_H #define EMPTYINTERNALENUMERATOR_1_T2500471865_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup> struct EmptyInternalEnumerator_1_t2500471865 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2500471865_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2500471865 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2500471865_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2500471865 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2500471865 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2500471865 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2500471865_H #ifndef EMPTYINTERNALENUMERATOR_1_T3967744925_H #define EMPTYINTERNALENUMERATOR_1_T3967744925_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Reflection.Emit.ILTokenInfo> struct EmptyInternalEnumerator_1_t3967744925 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3967744925_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3967744925 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3967744925_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3967744925 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3967744925 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3967744925 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3967744925_H #ifndef EMPTYINTERNALENUMERATOR_1_T3923631454_H #define EMPTYINTERNALENUMERATOR_1_T3923631454_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Reflection.Emit.Label> struct EmptyInternalEnumerator_1_t3923631454 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3923631454_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3923631454 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3923631454_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3923631454 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3923631454 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3923631454 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3923631454_H #ifndef EMPTYINTERNALENUMERATOR_1_T1450432524_H #define EMPTYINTERNALENUMERATOR_1_T1450432524_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Reflection.Emit.MonoResource> struct EmptyInternalEnumerator_1_t1450432524 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1450432524_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1450432524 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1450432524_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1450432524 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1450432524 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1450432524 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1450432524_H #ifndef EMPTYINTERNALENUMERATOR_1_T3546199294_H #define EMPTYINTERNALENUMERATOR_1_T3546199294_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Reflection.Emit.MonoWin32Resource> struct EmptyInternalEnumerator_1_t3546199294 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3546199294_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3546199294 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3546199294_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3546199294 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3546199294 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3546199294 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3546199294_H #ifndef EMPTYINTERNALENUMERATOR_1_T2126360798_H #define EMPTYINTERNALENUMERATOR_1_T2126360798_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet> struct EmptyInternalEnumerator_1_t2126360798 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2126360798_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2126360798 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2126360798_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2126360798 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2126360798 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2126360798 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2126360798_H #ifndef EMPTYINTERNALENUMERATOR_1_T3103664277_H #define EMPTYINTERNALENUMERATOR_1_T3103664277_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier> struct EmptyInternalEnumerator_1_t3103664277 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3103664277_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3103664277 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3103664277_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3103664277 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3103664277 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3103664277 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3103664277_H #ifndef EMPTYINTERNALENUMERATOR_1_T1070973322_H #define EMPTYINTERNALENUMERATOR_1_T1070973322_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator> struct EmptyInternalEnumerator_1_t1070973322 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1070973322_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1070973322 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1070973322_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1070973322 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1070973322 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1070973322 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1070973322_H #ifndef EMPTYINTERNALENUMERATOR_1_T3244566173_H #define EMPTYINTERNALENUMERATOR_1_T3244566173_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron> struct EmptyInternalEnumerator_1_t3244566173 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3244566173_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3244566173 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3244566173_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3244566173 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3244566173 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3244566173 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3244566173_H #ifndef EMPTYINTERNALENUMERATOR_1_T698440702_H #define EMPTYINTERNALENUMERATOR_1_T698440702_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle> struct EmptyInternalEnumerator_1_t698440702 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t698440702_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t698440702 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t698440702_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t698440702 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t698440702 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t698440702 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T698440702_H #ifndef EMPTYINTERNALENUMERATOR_1_T832438969_H #define EMPTYINTERNALENUMERATOR_1_T832438969_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.BinaryTypeEnum> struct EmptyInternalEnumerator_1_t832438969 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t832438969_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t832438969 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t832438969_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t832438969 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t832438969 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t832438969 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T832438969_H #ifndef EMPTYINTERNALENUMERATOR_1_T1440051492_H #define EMPTYINTERNALENUMERATOR_1_T1440051492_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.InternalPrimitiveTypeE> struct EmptyInternalEnumerator_1_t1440051492 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1440051492_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1440051492 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1440051492_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1440051492 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1440051492 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1440051492 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1440051492_H #ifndef EMPTYINTERNALENUMERATOR_1_T3311547473_H #define EMPTYINTERNALENUMERATOR_1_T3311547473_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.SByte> struct EmptyInternalEnumerator_1_t3311547473 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3311547473_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3311547473 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3311547473_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3311547473 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3311547473 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3311547473 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3311547473_H #ifndef EMPTYINTERNALENUMERATOR_1_T1775572525_H #define EMPTYINTERNALENUMERATOR_1_T1775572525_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus> struct EmptyInternalEnumerator_1_t1775572525 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1775572525_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1775572525 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1775572525_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1775572525 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1775572525 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1775572525 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1775572525_H #ifndef EMPTYINTERNALENUMERATOR_1_T3039236585_H #define EMPTYINTERNALENUMERATOR_1_T3039236585_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Single> struct EmptyInternalEnumerator_1_t3039236585 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3039236585_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3039236585 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3039236585_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3039236585 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3039236585 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3039236585 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3039236585_H #ifndef EMPTYINTERNALENUMERATOR_1_T1932249766_H #define EMPTYINTERNALENUMERATOR_1_T1932249766_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.TermInfoStrings> struct EmptyInternalEnumerator_1_t1932249766 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1932249766_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1932249766 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1932249766_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1932249766 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1932249766 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1932249766 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1932249766_H #ifndef EMPTYINTERNALENUMERATOR_1_T257320090_H #define EMPTYINTERNALENUMERATOR_1_T257320090_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping> struct EmptyInternalEnumerator_1_t257320090 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t257320090_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t257320090 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t257320090_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t257320090 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t257320090 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t257320090 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T257320090_H #ifndef EMPTYINTERNALENUMERATOR_1_T1734815406_H #define EMPTYINTERNALENUMERATOR_1_T1734815406_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexOptions> struct EmptyInternalEnumerator_1_t1734815406 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1734815406_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1734815406 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1734815406_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1734815406 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1734815406 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1734815406 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1734815406_H #ifndef EMPTYINTERNALENUMERATOR_1_T160427419_H #define EMPTYINTERNALENUMERATOR_1_T160427419_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration> struct EmptyInternalEnumerator_1_t160427419 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t160427419_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t160427419 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t160427419_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t160427419 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t160427419 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t160427419 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T160427419_H #ifndef EMPTYINTERNALENUMERATOR_1_T2523129060_H #define EMPTYINTERNALENUMERATOR_1_T2523129060_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.TimeSpan> struct EmptyInternalEnumerator_1_t2523129060 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2523129060_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2523129060 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2523129060_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2523129060 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2523129060 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2523129060 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2523129060_H #ifndef EMPTYINTERNALENUMERATOR_1_T334226602_H #define EMPTYINTERNALENUMERATOR_1_T334226602_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.TypeCode> struct EmptyInternalEnumerator_1_t334226602 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t334226602_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t334226602 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t334226602_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t334226602 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t334226602 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t334226602 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T334226602_H #ifndef EMPTYINTERNALENUMERATOR_1_T3819694769_H #define EMPTYINTERNALENUMERATOR_1_T3819694769_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.UInt16> struct EmptyInternalEnumerator_1_t3819694769 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3819694769_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3819694769 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3819694769_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3819694769 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3819694769 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3819694769 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3819694769_H #ifndef EMPTYINTERNALENUMERATOR_1_T4202031789_H #define EMPTYINTERNALENUMERATOR_1_T4202031789_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.UInt32> struct EmptyInternalEnumerator_1_t4202031789 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t4202031789_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t4202031789 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4202031789_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t4202031789 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t4202031789 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t4202031789 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T4202031789_H #ifndef EMPTYINTERNALENUMERATOR_1_T1481042607_H #define EMPTYINTERNALENUMERATOR_1_T1481042607_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.UInt64> struct EmptyInternalEnumerator_1_t1481042607 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1481042607_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1481042607 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1481042607_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1481042607 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1481042607 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1481042607 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1481042607_H #ifndef EMPTYINTERNALENUMERATOR_1_T2973014238_H #define EMPTYINTERNALENUMERATOR_1_T2973014238_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map> struct EmptyInternalEnumerator_1_t2973014238 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2973014238_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2973014238 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2973014238_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2973014238 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2973014238 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2973014238 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2973014238_H #ifndef EMPTYINTERNALENUMERATOR_1_T2231938747_H #define EMPTYINTERNALENUMERATOR_1_T2231938747_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.RangePositionInfo> struct EmptyInternalEnumerator_1_t2231938747 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2231938747_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2231938747 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2231938747_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2231938747 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2231938747 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2231938747 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2231938747_H #ifndef EMPTYINTERNALENUMERATOR_1_T3696350510_H #define EMPTYINTERNALENUMERATOR_1_T3696350510_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.SequenceNode/SequenceConstructPosContext> struct EmptyInternalEnumerator_1_t3696350510 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3696350510_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3696350510 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3696350510_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3696350510 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3696350510 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3696350510 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3696350510_H #ifndef EMPTYINTERNALENUMERATOR_1_T691679486_H #define EMPTYINTERNALENUMERATOR_1_T691679486_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry> struct EmptyInternalEnumerator_1_t691679486 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t691679486_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t691679486 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t691679486_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t691679486 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t691679486 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t691679486 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T691679486_H #ifndef EMPTYINTERNALENUMERATOR_1_T4265592761_H #define EMPTYINTERNALENUMERATOR_1_T4265592761_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.XmlTypeCode> struct EmptyInternalEnumerator_1_t4265592761 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t4265592761_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t4265592761 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4265592761_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t4265592761 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t4265592761 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t4265592761 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T4265592761_H #ifndef EMPTYINTERNALENUMERATOR_1_T3532428012_H #define EMPTYINTERNALENUMERATOR_1_T3532428012_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.XsdBuilder/State> struct EmptyInternalEnumerator_1_t3532428012 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3532428012_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3532428012 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3532428012_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3532428012 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3532428012 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3532428012 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3532428012_H #ifndef EMPTYINTERNALENUMERATOR_1_T175991003_H #define EMPTYINTERNALENUMERATOR_1_T175991003_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Xml.XPath.XPathResultType> struct EmptyInternalEnumerator_1_t175991003 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t175991003_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t175991003 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t175991003_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t175991003 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t175991003 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t175991003 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T175991003_H #ifndef EMPTYINTERNALENUMERATOR_1_T1509612090_H #define EMPTYINTERNALENUMERATOR_1_T1509612090_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNamespaceManager/NamespaceDeclaration> struct EmptyInternalEnumerator_1_t1509612090 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1509612090_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1509612090 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1509612090_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1509612090 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1509612090 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1509612090 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1509612090_H #ifndef EMPTYINTERNALENUMERATOR_1_T925086422_H #define EMPTYINTERNALENUMERATOR_1_T925086422_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNodeReaderNavigator/VirtualAttribute> struct EmptyInternalEnumerator_1_t925086422 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t925086422_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t925086422 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t925086422_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t925086422 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t925086422 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t925086422 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T925086422_H #ifndef EMPTYINTERNALENUMERATOR_1_T3422304733_H #define EMPTYINTERNALENUMERATOR_1_T3422304733_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextReaderImpl/ParsingState> struct EmptyInternalEnumerator_1_t3422304733 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3422304733_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3422304733 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3422304733_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3422304733 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3422304733 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3422304733 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3422304733_H #ifndef EMPTYINTERNALENUMERATOR_1_T3860226327_H #define EMPTYINTERNALENUMERATOR_1_T3860226327_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/Namespace> struct EmptyInternalEnumerator_1_t3860226327 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3860226327_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3860226327 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3860226327_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3860226327 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3860226327 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3860226327 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3860226327_H #ifndef EMPTYINTERNALENUMERATOR_1_T3434509158_H #define EMPTYINTERNALENUMERATOR_1_T3434509158_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/State> struct EmptyInternalEnumerator_1_t3434509158 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3434509158_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3434509158 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3434509158_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3434509158 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3434509158 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3434509158 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3434509158_H #ifndef EMPTYINTERNALENUMERATOR_1_T873640932_H #define EMPTYINTERNALENUMERATOR_1_T873640932_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/TagInfo> struct EmptyInternalEnumerator_1_t873640932 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t873640932_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t873640932 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t873640932_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t873640932 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t873640932 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t873640932 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T873640932_H #ifndef EMPTYINTERNALENUMERATOR_1_T3594314443_H #define EMPTYINTERNALENUMERATOR_1_T3594314443_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<TMPro.MaterialReference> struct EmptyInternalEnumerator_1_t3594314443 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3594314443_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3594314443 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3594314443_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3594314443 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3594314443 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3594314443 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3594314443_H #ifndef EMPTYINTERNALENUMERATOR_1_T395400102_H #define EMPTYINTERNALENUMERATOR_1_T395400102_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData> struct EmptyInternalEnumerator_1_t395400102 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t395400102_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t395400102 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t395400102_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t395400102 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t395400102 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t395400102 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T395400102_H #ifndef EMPTYINTERNALENUMERATOR_1_T532629312_H #define EMPTYINTERNALENUMERATOR_1_T532629312_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<TMPro.TMP_CharacterInfo> struct EmptyInternalEnumerator_1_t532629312 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t532629312_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t532629312 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t532629312_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t532629312 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t532629312 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t532629312 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T532629312_H #ifndef EMPTYINTERNALENUMERATOR_1_T2558270878_H #define EMPTYINTERNALENUMERATOR_1_T2558270878_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<TMPro.TMP_FontWeights> struct EmptyInternalEnumerator_1_t2558270878 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2558270878_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2558270878 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2558270878_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2558270878 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2558270878 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2558270878 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2558270878_H #ifndef EMPTYINTERNALENUMERATOR_1_T2770911096_H #define EMPTYINTERNALENUMERATOR_1_T2770911096_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<TMPro.TMP_InputField/ContentType> struct EmptyInternalEnumerator_1_t2770911096 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2770911096_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2770911096 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2770911096_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2770911096 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2770911096 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2770911096 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2770911096_H #ifndef EMPTYINTERNALENUMERATOR_1_T2721601447_H #define EMPTYINTERNALENUMERATOR_1_T2721601447_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LineInfo> struct EmptyInternalEnumerator_1_t2721601447 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2721601447_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2721601447 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2721601447_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2721601447 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2721601447 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2721601447 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2721601447_H #ifndef EMPTYINTERNALENUMERATOR_1_T2734053287_H #define EMPTYINTERNALENUMERATOR_1_T2734053287_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LinkInfo> struct EmptyInternalEnumerator_1_t2734053287 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2734053287_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2734053287 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2734053287_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2734053287 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2734053287 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2734053287 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2734053287_H #ifndef EMPTYINTERNALENUMERATOR_1_T118750149_H #define EMPTYINTERNALENUMERATOR_1_T118750149_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<TMPro.TMP_MeshInfo> struct EmptyInternalEnumerator_1_t118750149 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t118750149_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t118750149 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t118750149_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t118750149 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t118750149 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t118750149 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T118750149_H #ifndef EMPTYINTERNALENUMERATOR_1_T4250400444_H #define EMPTYINTERNALENUMERATOR_1_T4250400444_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<TMPro.TMP_PageInfo> struct EmptyInternalEnumerator_1_t4250400444 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t4250400444_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t4250400444 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4250400444_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t4250400444 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t4250400444 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t4250400444 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T4250400444_H #ifndef EMPTYINTERNALENUMERATOR_1_T678068818_H #define EMPTYINTERNALENUMERATOR_1_T678068818_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<TMPro.TMP_WordInfo> struct EmptyInternalEnumerator_1_t678068818 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t678068818_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t678068818 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t678068818_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t678068818 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t678068818 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t678068818 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T678068818_H #ifndef EMPTYINTERNALENUMERATOR_1_T1383793751_H #define EMPTYINTERNALENUMERATOR_1_T1383793751_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<TMPro.TextAlignmentOptions> struct EmptyInternalEnumerator_1_t1383793751 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1383793751_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1383793751 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1383793751_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1383793751 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1383793751 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1383793751 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1383793751_H #ifndef EMPTYINTERNALENUMERATOR_1_T2816394120_H #define EMPTYINTERNALENUMERATOR_1_T2816394120_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<TMPro.XML_TagAttribute> struct EmptyInternalEnumerator_1_t2816394120 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2816394120_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2816394120 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2816394120_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2816394120 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2816394120 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2816394120 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2816394120_H #ifndef EMPTYINTERNALENUMERATOR_1_T3227947642_H #define EMPTYINTERNALENUMERATOR_1_T3227947642_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock> struct EmptyInternalEnumerator_1_t3227947642 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3227947642_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3227947642 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3227947642_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3227947642 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3227947642 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3227947642 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3227947642_H #ifndef EMPTYINTERNALENUMERATOR_1_T3880633847_H #define EMPTYINTERNALENUMERATOR_1_T3880633847_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.Camera/StereoscopicEye> struct EmptyInternalEnumerator_1_t3880633847 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3880633847_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3880633847 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3880633847_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3880633847 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3880633847 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3880633847 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3880633847_H #ifndef EMPTYINTERNALENUMERATOR_1_T4242471103_H #define EMPTYINTERNALENUMERATOR_1_T4242471103_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32> struct EmptyInternalEnumerator_1_t4242471103 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t4242471103_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t4242471103 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4242471103_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t4242471103 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t4242471103 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t4242471103 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T4242471103_H #ifndef EMPTYINTERNALENUMERATOR_1_T4197656135_H #define EMPTYINTERNALENUMERATOR_1_T4197656135_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.Color> struct EmptyInternalEnumerator_1_t4197656135 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t4197656135_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t4197656135 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4197656135_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t4197656135 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t4197656135 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t4197656135 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T4197656135_H #ifndef EMPTYINTERNALENUMERATOR_1_T1105757768_H #define EMPTYINTERNALENUMERATOR_1_T1105757768_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint> struct EmptyInternalEnumerator_1_t1105757768 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1105757768_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1105757768 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1105757768_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1105757768 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1105757768 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1105757768 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1105757768_H #ifndef EMPTYINTERNALENUMERATOR_1_T707309364_H #define EMPTYINTERNALENUMERATOR_1_T707309364_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult> struct EmptyInternalEnumerator_1_t707309364 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t707309364_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t707309364 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t707309364_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t707309364 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t707309364 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t707309364 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T707309364_H #ifndef EMPTYINTERNALENUMERATOR_1_T1747741916_H #define EMPTYINTERNALENUMERATOR_1_T1747741916_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem> struct EmptyInternalEnumerator_1_t1747741916 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1747741916_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1747741916 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1747741916_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1747741916 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1747741916 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1747741916 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1747741916_H #ifndef EMPTYINTERNALENUMERATOR_1_T1553412757_H #define EMPTYINTERNALENUMERATOR_1_T1553412757_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe> struct EmptyInternalEnumerator_1_t1553412757 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1553412757_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1553412757 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1553412757_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1553412757 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1553412757 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1553412757 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1553412757_H #ifndef EMPTYINTERNALENUMERATOR_1_T3459871654_H #define EMPTYINTERNALENUMERATOR_1_T3459871654_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.Matrix4x4> struct EmptyInternalEnumerator_1_t3459871654 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3459871654_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3459871654 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3459871654_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3459871654 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3459871654 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3459871654 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3459871654_H #ifndef EMPTYINTERNALENUMERATOR_1_T2642463132_H #define EMPTYINTERNALENUMERATOR_1_T2642463132_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane> struct EmptyInternalEnumerator_1_t2642463132 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2642463132_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2642463132 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2642463132_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2642463132 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2642463132 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2642463132 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2642463132_H #ifndef EMPTYINTERNALENUMERATOR_1_T1996230520_H #define EMPTYINTERNALENUMERATOR_1_T1996230520_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding> struct EmptyInternalEnumerator_1_t1996230520 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1996230520_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1996230520 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1996230520_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1996230520 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1996230520 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1996230520 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1996230520_H #ifndef EMPTYINTERNALENUMERATOR_1_T3921551800_H #define EMPTYINTERNALENUMERATOR_1_T3921551800_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D> struct EmptyInternalEnumerator_1_t3921551800 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3921551800_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3921551800 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3921551800_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3921551800 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3921551800 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3921551800 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3921551800_H #ifndef EMPTYINTERNALENUMERATOR_1_T2697971777_H #define EMPTYINTERNALENUMERATOR_1_T2697971777_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit> struct EmptyInternalEnumerator_1_t2697971777 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2697971777_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2697971777 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2697971777_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2697971777 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2697971777 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2697971777 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2697971777_H #ifndef EMPTYINTERNALENUMERATOR_1_T576612255_H #define EMPTYINTERNALENUMERATOR_1_T576612255_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo> struct EmptyInternalEnumerator_1_t576612255 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t576612255_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t576612255 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t576612255_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t576612255 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t576612255 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t576612255 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T576612255_H #ifndef EMPTYINTERNALENUMERATOR_1_T2317192057_H #define EMPTYINTERNALENUMERATOR_1_T2317192057_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData> struct EmptyInternalEnumerator_1_t2317192057 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2317192057_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2317192057 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2317192057_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2317192057 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2317192057 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2317192057 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2317192057_H #ifndef EMPTYINTERNALENUMERATOR_1_T3767279642_H #define EMPTYINTERNALENUMERATOR_1_T3767279642_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData> struct EmptyInternalEnumerator_1_t3767279642 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3767279642_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3767279642 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3767279642_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3767279642 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3767279642 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3767279642 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3767279642_H #ifndef EMPTYINTERNALENUMERATOR_1_T48168347_H #define EMPTYINTERNALENUMERATOR_1_T48168347_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.TextureFormat> struct EmptyInternalEnumerator_1_t48168347 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t48168347_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t48168347 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t48168347_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t48168347 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t48168347 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t48168347 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T48168347_H #ifndef EMPTYINTERNALENUMERATOR_1_T3563826679_H #define EMPTYINTERNALENUMERATOR_1_T3563826679_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.Touch> struct EmptyInternalEnumerator_1_t3563826679 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3563826679_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3563826679 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3563826679_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3563826679 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3563826679 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3563826679 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3563826679_H #ifndef EMPTYINTERNALENUMERATOR_1_T3172567513_H #define EMPTYINTERNALENUMERATOR_1_T3172567513_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.TouchScreenKeyboardType> struct EmptyInternalEnumerator_1_t3172567513 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3172567513_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3172567513 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3172567513_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3172567513 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3172567513 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3172567513 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3172567513_H #ifndef EMPTYINTERNALENUMERATOR_1_T764195514_H #define EMPTYINTERNALENUMERATOR_1_T764195514_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.AspectRatioFitter/AspectMode> struct EmptyInternalEnumerator_1_t764195514 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t764195514_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t764195514 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t764195514_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t764195514 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t764195514 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t764195514 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T764195514_H #ifndef EMPTYINTERNALENUMERATOR_1_T3781001385_H #define EMPTYINTERNALENUMERATOR_1_T3781001385_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock> struct EmptyInternalEnumerator_1_t3781001385 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3781001385_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3781001385 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3781001385_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3781001385 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3781001385 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3781001385 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3781001385_H #ifndef EMPTYINTERNALENUMERATOR_1_T614883729_H #define EMPTYINTERNALENUMERATOR_1_T614883729_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ContentSizeFitter/FitMode> struct EmptyInternalEnumerator_1_t614883729 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t614883729_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t614883729 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t614883729_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t614883729 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t614883729 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t614883729 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T614883729_H #ifndef EMPTYINTERNALENUMERATOR_1_T2809427381_H #define EMPTYINTERNALENUMERATOR_1_T2809427381_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Image/FillMethod> struct EmptyInternalEnumerator_1_t2809427381 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2809427381_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2809427381 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2809427381_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2809427381 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2809427381 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2809427381 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2809427381_H #ifndef EMPTYINTERNALENUMERATOR_1_T2794851339_H #define EMPTYINTERNALENUMERATOR_1_T2794851339_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Image/Type> struct EmptyInternalEnumerator_1_t2794851339 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t2794851339_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t2794851339 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2794851339_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t2794851339 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t2794851339 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t2794851339 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T2794851339_H #ifndef EMPTYINTERNALENUMERATOR_1_T1398916952_H #define EMPTYINTERNALENUMERATOR_1_T1398916952_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.InputField/CharacterValidation> struct EmptyInternalEnumerator_1_t1398916952 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1398916952_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1398916952 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1398916952_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1398916952 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1398916952 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1398916952 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1398916952_H #ifndef EMPTYINTERNALENUMERATOR_1_T3429273207_H #define EMPTYINTERNALENUMERATOR_1_T3429273207_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.InputField/ContentType> struct EmptyInternalEnumerator_1_t3429273207 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3429273207_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3429273207 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3429273207_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3429273207 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3429273207 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3429273207 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3429273207_H #ifndef EMPTYINTERNALENUMERATOR_1_T3412370490_H #define EMPTYINTERNALENUMERATOR_1_T3412370490_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.InputField/InputType> struct EmptyInternalEnumerator_1_t3412370490 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3412370490_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3412370490 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3412370490_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3412370490 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3412370490 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3412370490 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3412370490_H #ifndef EMPTYINTERNALENUMERATOR_1_T1561650984_H #define EMPTYINTERNALENUMERATOR_1_T1561650984_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.InputField/LineType> struct EmptyInternalEnumerator_1_t1561650984 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1561650984_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1561650984 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1561650984_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1561650984 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1561650984 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1561650984 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1561650984_H #ifndef EMPTYINTERNALENUMERATOR_1_T396319094_H #define EMPTYINTERNALENUMERATOR_1_T396319094_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation> struct EmptyInternalEnumerator_1_t396319094 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t396319094_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t396319094 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t396319094_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t396319094 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t396319094 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t396319094 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T396319094_H #ifndef EMPTYINTERNALENUMERATOR_1_T817716868_H #define EMPTYINTERNALENUMERATOR_1_T817716868_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Scrollbar/Direction> struct EmptyInternalEnumerator_1_t817716868 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t817716868_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t817716868 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t817716868_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t817716868 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t817716868 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t817716868 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T817716868_H #ifndef EMPTYINTERNALENUMERATOR_1_T3411878442_H #define EMPTYINTERNALENUMERATOR_1_T3411878442_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Selectable/Transition> struct EmptyInternalEnumerator_1_t3411878442 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t3411878442_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t3411878442 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3411878442_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t3411878442 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t3411878442 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t3411878442 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T3411878442_H #ifndef EMPTYINTERNALENUMERATOR_1_T1979879046_H #define EMPTYINTERNALENUMERATOR_1_T1979879046_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Slider/Direction> struct EmptyInternalEnumerator_1_t1979879046 : public RuntimeObject { public: public: }; struct EmptyInternalEnumerator_1_t1979879046_StaticFields { public: // System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value EmptyInternalEnumerator_1_t1979879046 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1979879046_StaticFields, ___Value_0)); } inline EmptyInternalEnumerator_1_t1979879046 * get_Value_0() const { return ___Value_0; } inline EmptyInternalEnumerator_1_t1979879046 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(EmptyInternalEnumerator_1_t1979879046 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((&___Value_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYINTERNALENUMERATOR_1_T1979879046_H #ifndef DICTIONARY_2_T973649112_H #define DICTIONARY_2_T973649112_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.String,System.Delegate> struct Dictionary_2_t973649112 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t385246372* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t1306865089* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t1163324583 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t2689693430 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t973649112, ___buckets_0)); } inline Int32U5BU5D_t385246372* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t385246372** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t385246372* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((&___buckets_0), value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t973649112, ___entries_1)); } inline EntryU5BU5D_t1306865089* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t1306865089** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t1306865089* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((&___entries_1), value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t973649112, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t973649112, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t973649112, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t973649112, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t973649112, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((&___comparer_6), value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t973649112, ___keys_7)); } inline KeyCollection_t1163324583 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t1163324583 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t1163324583 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((&___keys_7), value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t973649112, ___values_8)); } inline ValueCollection_t2689693430 * get_values_8() const { return ___values_8; } inline ValueCollection_t2689693430 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t2689693430 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((&___values_8), value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t973649112, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_9), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T973649112_H #ifndef DICTIONARY_2_T3417996176_H #define DICTIONARY_2_T3417996176_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.Dictionary`2<System.String,System.Delegate>> struct Dictionary_2_t3417996176 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t385246372* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t2691341609* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t3607671647 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t839073198 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t3417996176, ___buckets_0)); } inline Int32U5BU5D_t385246372* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t385246372** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t385246372* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((&___buckets_0), value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t3417996176, ___entries_1)); } inline EntryU5BU5D_t2691341609* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t2691341609** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t2691341609* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((&___entries_1), value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t3417996176, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t3417996176, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t3417996176, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t3417996176, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t3417996176, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((&___comparer_6), value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t3417996176, ___keys_7)); } inline KeyCollection_t3607671647 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t3607671647 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t3607671647 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((&___keys_7), value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t3417996176, ___values_8)); } inline ValueCollection_t839073198 * get_values_8() const { return ___values_8; } inline ValueCollection_t839073198 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t839073198 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((&___values_8), value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t3417996176, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_9), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T3417996176_H #ifndef DICTIONARY_2_T2058017892_H #define DICTIONARY_2_T2058017892_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>> struct Dictionary_2_t2058017892 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t385246372* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t609983109* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t2247693363 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t3774062210 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t2058017892, ___buckets_0)); } inline Int32U5BU5D_t385246372* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t385246372** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t385246372* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((&___buckets_0), value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t2058017892, ___entries_1)); } inline EntryU5BU5D_t609983109* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t609983109** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t609983109* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((&___entries_1), value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t2058017892, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t2058017892, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t2058017892, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t2058017892, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t2058017892, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((&___comparer_6), value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t2058017892, ___keys_7)); } inline KeyCollection_t2247693363 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t2247693363 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t2247693363 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((&___keys_7), value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t2058017892, ___values_8)); } inline ValueCollection_t3774062210 * get_values_8() const { return ___values_8; } inline ValueCollection_t3774062210 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t3774062210 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((&___values_8), value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t2058017892, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_9), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T2058017892_H #ifndef DICTIONARY_2_T858966067_H #define DICTIONARY_2_T858966067_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.Type,Vuforia.Tracker> struct Dictionary_2_t858966067 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t385246372* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t4026618522* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t1048641538 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t2575010385 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t858966067, ___buckets_0)); } inline Int32U5BU5D_t385246372* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t385246372** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t385246372* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((&___buckets_0), value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t858966067, ___entries_1)); } inline EntryU5BU5D_t4026618522* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t4026618522** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t4026618522* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((&___entries_1), value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t858966067, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t858966067, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t858966067, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t858966067, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t858966067, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((&___comparer_6), value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t858966067, ___keys_7)); } inline KeyCollection_t1048641538 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t1048641538 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t1048641538 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((&___keys_7), value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t858966067, ___values_8)); } inline ValueCollection_t2575010385 * get_values_8() const { return ___values_8; } inline ValueCollection_t2575010385 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t2575010385 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((&___values_8), value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t858966067, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_9), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T858966067_H #ifndef EQUALITYCOMPARER_1_T2562027597_H #define EQUALITYCOMPARER_1_T2562027597_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Boolean> struct EqualityComparer_1_t2562027597 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t2562027597_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t2562027597 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t2562027597_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t2562027597 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t2562027597 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t2562027597 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T2562027597_H #ifndef EQUALITYCOMPARER_1_T1804232806_H #define EQUALITYCOMPARER_1_T1804232806_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Char> struct EqualityComparer_1_t1804232806 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t1804232806_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t1804232806 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t1804232806_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t1804232806 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t1804232806 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t1804232806 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T1804232806_H #ifndef EQUALITYCOMPARER_1_T1120718089_H #define EQUALITYCOMPARER_1_T1120718089_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Int32> struct EqualityComparer_1_t1120718089 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t1120718089_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t1120718089 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t1120718089_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t1120718089 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t1120718089 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t1120718089 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T1120718089_H #ifndef EQUALITYCOMPARER_1_T1249878500_H #define EQUALITYCOMPARER_1_T1249878500_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Object> struct EqualityComparer_1_t1249878500 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t1249878500_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t1249878500 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t1249878500_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t1249878500 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t1249878500 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t1249878500 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T1249878500_H #ifndef EQUALITYCOMPARER_1_T3862006406_H #define EQUALITYCOMPARER_1_T3862006406_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Single> struct EqualityComparer_1_t3862006406 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t3862006406_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t3862006406 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t3862006406_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t3862006406 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t3862006406 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t3862006406 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T3862006406_H #ifndef EQUALITYCOMPARER_1_T3995337334_H #define EQUALITYCOMPARER_1_T3995337334_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<UnityEngine.TouchScreenKeyboardType> struct EqualityComparer_1_t3995337334 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t3995337334_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t3995337334 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t3995337334_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t3995337334 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t3995337334 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t3995337334 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T3995337334_H #ifndef EQUALITYCOMPARER_1_T1586965335_H #define EQUALITYCOMPARER_1_T1586965335_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.AspectRatioFitter/AspectMode> struct EqualityComparer_1_t1586965335 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t1586965335_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t1586965335 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t1586965335_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t1586965335 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t1586965335 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t1586965335 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T1586965335_H #ifndef EQUALITYCOMPARER_1_T308803910_H #define EQUALITYCOMPARER_1_T308803910_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ColorBlock> struct EqualityComparer_1_t308803910 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t308803910_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t308803910 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t308803910_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t308803910 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t308803910 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t308803910 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T308803910_H #ifndef EQUALITYCOMPARER_1_T1437653550_H #define EQUALITYCOMPARER_1_T1437653550_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ContentSizeFitter/FitMode> struct EqualityComparer_1_t1437653550 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t1437653550_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t1437653550 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t1437653550_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t1437653550 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t1437653550 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t1437653550 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T1437653550_H #ifndef EQUALITYCOMPARER_1_T3632197202_H #define EQUALITYCOMPARER_1_T3632197202_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Image/FillMethod> struct EqualityComparer_1_t3632197202 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t3632197202_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t3632197202 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t3632197202_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t3632197202 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t3632197202 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t3632197202 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T3632197202_H #ifndef EQUALITYCOMPARER_1_T3617621160_H #define EQUALITYCOMPARER_1_T3617621160_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Image/Type> struct EqualityComparer_1_t3617621160 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t3617621160_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t3617621160 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t3617621160_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t3617621160 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t3617621160 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t3617621160 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T3617621160_H #ifndef EQUALITYCOMPARER_1_T2221686773_H #define EQUALITYCOMPARER_1_T2221686773_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.InputField/CharacterValidation> struct EqualityComparer_1_t2221686773 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t2221686773_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t2221686773 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t2221686773_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t2221686773 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t2221686773 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t2221686773 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T2221686773_H #ifndef EQUALITYCOMPARER_1_T4252043028_H #define EQUALITYCOMPARER_1_T4252043028_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.InputField/ContentType> struct EqualityComparer_1_t4252043028 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t4252043028_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t4252043028 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t4252043028_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t4252043028 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t4252043028 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t4252043028 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T4252043028_H #ifndef EQUALITYCOMPARER_1_T4235140311_H #define EQUALITYCOMPARER_1_T4235140311_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.InputField/InputType> struct EqualityComparer_1_t4235140311 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t4235140311_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t4235140311 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t4235140311_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t4235140311 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t4235140311 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t4235140311 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T4235140311_H #ifndef EQUALITYCOMPARER_1_T2384420805_H #define EQUALITYCOMPARER_1_T2384420805_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.InputField/LineType> struct EqualityComparer_1_t2384420805 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t2384420805_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t2384420805 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t2384420805_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t2384420805 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t2384420805 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t2384420805 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T2384420805_H #ifndef EQUALITYCOMPARER_1_T1219088915_H #define EQUALITYCOMPARER_1_T1219088915_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Navigation> struct EqualityComparer_1_t1219088915 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t1219088915_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t1219088915 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t1219088915_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t1219088915 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t1219088915 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t1219088915 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T1219088915_H #ifndef EQUALITYCOMPARER_1_T1640486689_H #define EQUALITYCOMPARER_1_T1640486689_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Scrollbar/Direction> struct EqualityComparer_1_t1640486689 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t1640486689_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t1640486689 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t1640486689_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t1640486689 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t1640486689 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t1640486689 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T1640486689_H #ifndef EQUALITYCOMPARER_1_T4234648263_H #define EQUALITYCOMPARER_1_T4234648263_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Selectable/Transition> struct EqualityComparer_1_t4234648263 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t4234648263_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t4234648263 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t4234648263_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t4234648263 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t4234648263 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t4234648263 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T4234648263_H #ifndef EQUALITYCOMPARER_1_T2802648867_H #define EQUALITYCOMPARER_1_T2802648867_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Slider/Direction> struct EqualityComparer_1_t2802648867 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t2802648867_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t2802648867 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t2802648867_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t2802648867 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t2802648867 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t2802648867 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T2802648867_H #ifndef EQUALITYCOMPARER_1_T3827726111_H #define EQUALITYCOMPARER_1_T3827726111_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.SpriteState> struct EqualityComparer_1_t3827726111 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t3827726111_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t3827726111 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t3827726111_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t3827726111 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t3827726111 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t3827726111 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T3827726111_H #ifndef LIST_1_T257213610_H #define LIST_1_T257213610_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Object> struct List_1_t257213610 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_t2843939325* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t257213610, ____items_1)); } inline ObjectU5BU5D_t2843939325* get__items_1() const { return ____items_1; } inline ObjectU5BU5D_t2843939325** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ObjectU5BU5D_t2843939325* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t257213610, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t257213610, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t257213610, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t257213610_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ObjectU5BU5D_t2843939325* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t257213610_StaticFields, ____emptyArray_5)); } inline ObjectU5BU5D_t2843939325* get__emptyArray_5() const { return ____emptyArray_5; } inline ObjectU5BU5D_t2843939325** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ObjectU5BU5D_t2843939325* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T257213610_H #ifndef LIST_1_T531791296_H #define LIST_1_T531791296_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler> struct List_1_t531791296 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items IEventSystemHandlerU5BU5D_t541873103* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t531791296, ____items_1)); } inline IEventSystemHandlerU5BU5D_t541873103* get__items_1() const { return ____items_1; } inline IEventSystemHandlerU5BU5D_t541873103** get_address_of__items_1() { return &____items_1; } inline void set__items_1(IEventSystemHandlerU5BU5D_t541873103* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t531791296, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t531791296, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t531791296, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t531791296_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray IEventSystemHandlerU5BU5D_t541873103* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t531791296_StaticFields, ____emptyArray_5)); } inline IEventSystemHandlerU5BU5D_t541873103* get__emptyArray_5() const { return ____emptyArray_5; } inline IEventSystemHandlerU5BU5D_t541873103** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(IEventSystemHandlerU5BU5D_t541873103* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T531791296_H #ifndef LIST_1_T1924777902_H #define LIST_1_T1924777902_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData> struct List_1_t1924777902 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items TrackableResultDataU5BU5D_t4273811049* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1924777902, ____items_1)); } inline TrackableResultDataU5BU5D_t4273811049* get__items_1() const { return ____items_1; } inline TrackableResultDataU5BU5D_t4273811049** get_address_of__items_1() { return &____items_1; } inline void set__items_1(TrackableResultDataU5BU5D_t4273811049* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t1924777902, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t1924777902, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t1924777902, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t1924777902_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray TrackableResultDataU5BU5D_t4273811049* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1924777902_StaticFields, ____emptyArray_5)); } inline TrackableResultDataU5BU5D_t4273811049* get__emptyArray_5() const { return ____emptyArray_5; } inline TrackableResultDataU5BU5D_t4273811049** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(TrackableResultDataU5BU5D_t4273811049* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T1924777902_H #ifndef CONTRACT_T3604744415_H #define CONTRACT_T3604744415_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Diagnostics.Contracts.Contract struct Contract_t3604744415 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONTRACT_T3604744415_H #ifndef EXCEPTION_T_H #define EXCEPTION_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_t2481557153 * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t1169129676* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t4013366056* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((&____className_1), value); } inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((&____message_2), value); } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((&____data_3), value); } inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((&____innerException_4), value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((&____helpURL_5), value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((&____stackTrace_6), value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((&____stackTraceString_7), value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_8), value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((&____dynamicMethods_10), value); } inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((&____source_12), value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_t2481557153 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_t2481557153 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_t2481557153 * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((&____safeSerializationManager_13), value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t1169129676* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t1169129676** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t1169129676* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((&___captured_traces_14), value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t4013366056* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t4013366056** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t4013366056* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((&___native_trace_ips_15), value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((&___s_EDILock_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_t2481557153 * ____safeSerializationManager_13; StackTraceU5BU5D_t1169129676* ___captured_traces_14; intptr_t* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_t2481557153 * ____safeSerializationManager_13; StackTraceU5BU5D_t1169129676* ___captured_traces_14; intptr_t* ___native_trace_ips_15; }; #endif // EXCEPTION_T_H #ifndef EMPTYPARTITION_1_T2713315198_H #define EMPTYPARTITION_1_T2713315198_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.EmptyPartition`1<System.Object> struct EmptyPartition_1_t2713315198 : public RuntimeObject { public: public: }; struct EmptyPartition_1_t2713315198_StaticFields { public: // System.Linq.IPartition`1<TElement> System.Linq.EmptyPartition`1::Instance RuntimeObject* ___Instance_0; public: inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(EmptyPartition_1_t2713315198_StaticFields, ___Instance_0)); } inline RuntimeObject* get_Instance_0() const { return ___Instance_0; } inline RuntimeObject** get_address_of_Instance_0() { return &___Instance_0; } inline void set_Instance_0(RuntimeObject* value) { ___Instance_0 = value; Il2CppCodeGenWriteBarrier((&___Instance_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYPARTITION_1_T2713315198_H #ifndef EMPTYPARTITION_1_T85912194_H #define EMPTYPARTITION_1_T85912194_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.EmptyPartition`1<Vuforia.TrackerData/TrackableResultData> struct EmptyPartition_1_t85912194 : public RuntimeObject { public: public: }; struct EmptyPartition_1_t85912194_StaticFields { public: // System.Linq.IPartition`1<TElement> System.Linq.EmptyPartition`1::Instance RuntimeObject* ___Instance_0; public: inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(EmptyPartition_1_t85912194_StaticFields, ___Instance_0)); } inline RuntimeObject* get_Instance_0() const { return ___Instance_0; } inline RuntimeObject** get_address_of_Instance_0() { return &___Instance_0; } inline void set_Instance_0(RuntimeObject* value) { ___Instance_0 = value; Il2CppCodeGenWriteBarrier((&___Instance_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EMPTYPARTITION_1_T85912194_H #ifndef ENUMERABLE_T538148348_H #define ENUMERABLE_T538148348_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable struct Enumerable_t538148348 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERABLE_T538148348_H #ifndef U3CCASTITERATORU3ED__34_1_T2336925318_H #define U3CCASTITERATORU3ED__34_1_T2336925318_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/<CastIterator>d__34`1<System.Object> struct U3CCastIteratorU3Ed__34_1_t2336925318 : public RuntimeObject { public: // System.Int32 System.Linq.Enumerable/<CastIterator>d__34`1::<>1__state int32_t ___U3CU3E1__state_0; // TResult System.Linq.Enumerable/<CastIterator>d__34`1::<>2__current RuntimeObject * ___U3CU3E2__current_1; // System.Int32 System.Linq.Enumerable/<CastIterator>d__34`1::<>l__initialThreadId int32_t ___U3CU3El__initialThreadId_2; // System.Collections.IEnumerable System.Linq.Enumerable/<CastIterator>d__34`1::source RuntimeObject* ___source_3; // System.Collections.IEnumerable System.Linq.Enumerable/<CastIterator>d__34`1::<>3__source RuntimeObject* ___U3CU3E3__source_4; // System.Collections.IEnumerator System.Linq.Enumerable/<CastIterator>d__34`1::<>7__wrap1 RuntimeObject* ___U3CU3E7__wrap1_5; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CCastIteratorU3Ed__34_1_t2336925318, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CCastIteratorU3Ed__34_1_t2336925318, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((&___U3CU3E2__current_1), value); } inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3CCastIteratorU3Ed__34_1_t2336925318, ___U3CU3El__initialThreadId_2)); } inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; } inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; } inline void set_U3CU3El__initialThreadId_2(int32_t value) { ___U3CU3El__initialThreadId_2 = value; } inline static int32_t get_offset_of_source_3() { return static_cast<int32_t>(offsetof(U3CCastIteratorU3Ed__34_1_t2336925318, ___source_3)); } inline RuntimeObject* get_source_3() const { return ___source_3; } inline RuntimeObject** get_address_of_source_3() { return &___source_3; } inline void set_source_3(RuntimeObject* value) { ___source_3 = value; Il2CppCodeGenWriteBarrier((&___source_3), value); } inline static int32_t get_offset_of_U3CU3E3__source_4() { return static_cast<int32_t>(offsetof(U3CCastIteratorU3Ed__34_1_t2336925318, ___U3CU3E3__source_4)); } inline RuntimeObject* get_U3CU3E3__source_4() const { return ___U3CU3E3__source_4; } inline RuntimeObject** get_address_of_U3CU3E3__source_4() { return &___U3CU3E3__source_4; } inline void set_U3CU3E3__source_4(RuntimeObject* value) { ___U3CU3E3__source_4 = value; Il2CppCodeGenWriteBarrier((&___U3CU3E3__source_4), value); } inline static int32_t get_offset_of_U3CU3E7__wrap1_5() { return static_cast<int32_t>(offsetof(U3CCastIteratorU3Ed__34_1_t2336925318, ___U3CU3E7__wrap1_5)); } inline RuntimeObject* get_U3CU3E7__wrap1_5() const { return ___U3CU3E7__wrap1_5; } inline RuntimeObject** get_address_of_U3CU3E7__wrap1_5() { return &___U3CU3E7__wrap1_5; } inline void set_U3CU3E7__wrap1_5(RuntimeObject* value) { ___U3CU3E7__wrap1_5 = value; Il2CppCodeGenWriteBarrier((&___U3CU3E7__wrap1_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U3CCASTITERATORU3ED__34_1_T2336925318_H #ifndef U3COFTYPEITERATORU3ED__32_1_T2611376587_H #define U3COFTYPEITERATORU3ED__32_1_T2611376587_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/<OfTypeIterator>d__32`1<System.Object> struct U3COfTypeIteratorU3Ed__32_1_t2611376587 : public RuntimeObject { public: // System.Int32 System.Linq.Enumerable/<OfTypeIterator>d__32`1::<>1__state int32_t ___U3CU3E1__state_0; // TResult System.Linq.Enumerable/<OfTypeIterator>d__32`1::<>2__current RuntimeObject * ___U3CU3E2__current_1; // System.Int32 System.Linq.Enumerable/<OfTypeIterator>d__32`1::<>l__initialThreadId int32_t ___U3CU3El__initialThreadId_2; // System.Collections.IEnumerable System.Linq.Enumerable/<OfTypeIterator>d__32`1::source RuntimeObject* ___source_3; // System.Collections.IEnumerable System.Linq.Enumerable/<OfTypeIterator>d__32`1::<>3__source RuntimeObject* ___U3CU3E3__source_4; // System.Collections.IEnumerator System.Linq.Enumerable/<OfTypeIterator>d__32`1::<>7__wrap1 RuntimeObject* ___U3CU3E7__wrap1_5; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3COfTypeIteratorU3Ed__32_1_t2611376587, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3COfTypeIteratorU3Ed__32_1_t2611376587, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((&___U3CU3E2__current_1), value); } inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3COfTypeIteratorU3Ed__32_1_t2611376587, ___U3CU3El__initialThreadId_2)); } inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; } inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; } inline void set_U3CU3El__initialThreadId_2(int32_t value) { ___U3CU3El__initialThreadId_2 = value; } inline static int32_t get_offset_of_source_3() { return static_cast<int32_t>(offsetof(U3COfTypeIteratorU3Ed__32_1_t2611376587, ___source_3)); } inline RuntimeObject* get_source_3() const { return ___source_3; } inline RuntimeObject** get_address_of_source_3() { return &___source_3; } inline void set_source_3(RuntimeObject* value) { ___source_3 = value; Il2CppCodeGenWriteBarrier((&___source_3), value); } inline static int32_t get_offset_of_U3CU3E3__source_4() { return static_cast<int32_t>(offsetof(U3COfTypeIteratorU3Ed__32_1_t2611376587, ___U3CU3E3__source_4)); } inline RuntimeObject* get_U3CU3E3__source_4() const { return ___U3CU3E3__source_4; } inline RuntimeObject** get_address_of_U3CU3E3__source_4() { return &___U3CU3E3__source_4; } inline void set_U3CU3E3__source_4(RuntimeObject* value) { ___U3CU3E3__source_4 = value; Il2CppCodeGenWriteBarrier((&___U3CU3E3__source_4), value); } inline static int32_t get_offset_of_U3CU3E7__wrap1_5() { return static_cast<int32_t>(offsetof(U3COfTypeIteratorU3Ed__32_1_t2611376587, ___U3CU3E7__wrap1_5)); } inline RuntimeObject* get_U3CU3E7__wrap1_5() const { return ___U3CU3E7__wrap1_5; } inline RuntimeObject** get_address_of_U3CU3E7__wrap1_5() { return &___U3CU3E7__wrap1_5; } inline void set_U3CU3E7__wrap1_5(RuntimeObject* value) { ___U3CU3E7__wrap1_5 = value; Il2CppCodeGenWriteBarrier((&___U3CU3E7__wrap1_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U3COFTYPEITERATORU3ED__32_1_T2611376587_H #ifndef U3CSELECTITERATORU3ED__154_2_T1810231786_H #define U3CSELECTITERATORU3ED__154_2_T1810231786_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/<SelectIterator>d__154`2<System.Object,System.Object> struct U3CSelectIteratorU3Ed__154_2_t1810231786 : public RuntimeObject { public: // System.Int32 System.Linq.Enumerable/<SelectIterator>d__154`2::<>1__state int32_t ___U3CU3E1__state_0; // TResult System.Linq.Enumerable/<SelectIterator>d__154`2::<>2__current RuntimeObject * ___U3CU3E2__current_1; // System.Int32 System.Linq.Enumerable/<SelectIterator>d__154`2::<>l__initialThreadId int32_t ___U3CU3El__initialThreadId_2; // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/<SelectIterator>d__154`2::source RuntimeObject* ___source_3; // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/<SelectIterator>d__154`2::<>3__source RuntimeObject* ___U3CU3E3__source_4; // System.Int32 System.Linq.Enumerable/<SelectIterator>d__154`2::<index>5__1 int32_t ___U3CindexU3E5__1_5; // System.Func`3<TSource,System.Int32,TResult> System.Linq.Enumerable/<SelectIterator>d__154`2::selector Func_3_t939916428 * ___selector_6; // System.Func`3<TSource,System.Int32,TResult> System.Linq.Enumerable/<SelectIterator>d__154`2::<>3__selector Func_3_t939916428 * ___U3CU3E3__selector_7; // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/<SelectIterator>d__154`2::<>7__wrap1 RuntimeObject* ___U3CU3E7__wrap1_8; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CSelectIteratorU3Ed__154_2_t1810231786, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CSelectIteratorU3Ed__154_2_t1810231786, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((&___U3CU3E2__current_1), value); } inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3CSelectIteratorU3Ed__154_2_t1810231786, ___U3CU3El__initialThreadId_2)); } inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; } inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; } inline void set_U3CU3El__initialThreadId_2(int32_t value) { ___U3CU3El__initialThreadId_2 = value; } inline static int32_t get_offset_of_source_3() { return static_cast<int32_t>(offsetof(U3CSelectIteratorU3Ed__154_2_t1810231786, ___source_3)); } inline RuntimeObject* get_source_3() const { return ___source_3; } inline RuntimeObject** get_address_of_source_3() { return &___source_3; } inline void set_source_3(RuntimeObject* value) { ___source_3 = value; Il2CppCodeGenWriteBarrier((&___source_3), value); } inline static int32_t get_offset_of_U3CU3E3__source_4() { return static_cast<int32_t>(offsetof(U3CSelectIteratorU3Ed__154_2_t1810231786, ___U3CU3E3__source_4)); } inline RuntimeObject* get_U3CU3E3__source_4() const { return ___U3CU3E3__source_4; } inline RuntimeObject** get_address_of_U3CU3E3__source_4() { return &___U3CU3E3__source_4; } inline void set_U3CU3E3__source_4(RuntimeObject* value) { ___U3CU3E3__source_4 = value; Il2CppCodeGenWriteBarrier((&___U3CU3E3__source_4), value); } inline static int32_t get_offset_of_U3CindexU3E5__1_5() { return static_cast<int32_t>(offsetof(U3CSelectIteratorU3Ed__154_2_t1810231786, ___U3CindexU3E5__1_5)); } inline int32_t get_U3CindexU3E5__1_5() const { return ___U3CindexU3E5__1_5; } inline int32_t* get_address_of_U3CindexU3E5__1_5() { return &___U3CindexU3E5__1_5; } inline void set_U3CindexU3E5__1_5(int32_t value) { ___U3CindexU3E5__1_5 = value; } inline static int32_t get_offset_of_selector_6() { return static_cast<int32_t>(offsetof(U3CSelectIteratorU3Ed__154_2_t1810231786, ___selector_6)); } inline Func_3_t939916428 * get_selector_6() const { return ___selector_6; } inline Func_3_t939916428 ** get_address_of_selector_6() { return &___selector_6; } inline void set_selector_6(Func_3_t939916428 * value) { ___selector_6 = value; Il2CppCodeGenWriteBarrier((&___selector_6), value); } inline static int32_t get_offset_of_U3CU3E3__selector_7() { return static_cast<int32_t>(offsetof(U3CSelectIteratorU3Ed__154_2_t1810231786, ___U3CU3E3__selector_7)); } inline Func_3_t939916428 * get_U3CU3E3__selector_7() const { return ___U3CU3E3__selector_7; } inline Func_3_t939916428 ** get_address_of_U3CU3E3__selector_7() { return &___U3CU3E3__selector_7; } inline void set_U3CU3E3__selector_7(Func_3_t939916428 * value) { ___U3CU3E3__selector_7 = value; Il2CppCodeGenWriteBarrier((&___U3CU3E3__selector_7), value); } inline static int32_t get_offset_of_U3CU3E7__wrap1_8() { return static_cast<int32_t>(offsetof(U3CSelectIteratorU3Ed__154_2_t1810231786, ___U3CU3E7__wrap1_8)); } inline RuntimeObject* get_U3CU3E7__wrap1_8() const { return ___U3CU3E7__wrap1_8; } inline RuntimeObject** get_address_of_U3CU3E7__wrap1_8() { return &___U3CU3E7__wrap1_8; } inline void set_U3CU3E7__wrap1_8(RuntimeObject* value) { ___U3CU3E7__wrap1_8 = value; Il2CppCodeGenWriteBarrier((&___U3CU3E7__wrap1_8), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U3CSELECTITERATORU3ED__154_2_T1810231786_H #ifndef ITERATOR_1_T2034466501_H #define ITERATOR_1_T2034466501_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/Iterator`1<System.Object> struct Iterator_1_t2034466501 : public RuntimeObject { public: // System.Int32 System.Linq.Enumerable/Iterator`1::_threadId int32_t ____threadId_0; // System.Int32 System.Linq.Enumerable/Iterator`1::_state int32_t ____state_1; // TSource System.Linq.Enumerable/Iterator`1::_current RuntimeObject * ____current_2; public: inline static int32_t get_offset_of__threadId_0() { return static_cast<int32_t>(offsetof(Iterator_1_t2034466501, ____threadId_0)); } inline int32_t get__threadId_0() const { return ____threadId_0; } inline int32_t* get_address_of__threadId_0() { return &____threadId_0; } inline void set__threadId_0(int32_t value) { ____threadId_0 = value; } inline static int32_t get_offset_of__state_1() { return static_cast<int32_t>(offsetof(Iterator_1_t2034466501, ____state_1)); } inline int32_t get__state_1() const { return ____state_1; } inline int32_t* get_address_of__state_1() { return &____state_1; } inline void set__state_1(int32_t value) { ____state_1 = value; } inline static int32_t get_offset_of__current_2() { return static_cast<int32_t>(offsetof(Iterator_1_t2034466501, ____current_2)); } inline RuntimeObject * get__current_2() const { return ____current_2; } inline RuntimeObject ** get_address_of__current_2() { return &____current_2; } inline void set__current_2(RuntimeObject * value) { ____current_2 = value; Il2CppCodeGenWriteBarrier((&____current_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ITERATOR_1_T2034466501_H #ifndef MEMBERINFO_T_H #define MEMBERINFO_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MEMBERINFO_T_H #ifndef RUNTIMEHELPERS_T1447613860_H #define RUNTIMEHELPERS_T1447613860_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.CompilerServices.RuntimeHelpers struct RuntimeHelpers_t1447613860 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEHELPERS_T1447613860_H #ifndef STRING_T_H #define STRING_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((&___Empty_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRING_T_H #ifndef VALUETYPE_T3640485471_H #define VALUETYPE_T3640485471_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ValueType struct ValueType_t3640485471 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t3640485471_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t3640485471_marshaled_com { }; #endif // VALUETYPE_T3640485471_H #ifndef SETPROPERTYUTILITY_T2931591262_H #define SETPROPERTYUTILITY_T2931591262_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.SetPropertyUtility struct SetPropertyUtility_t2931591262 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SETPROPERTYUTILITY_T2931591262_H #ifndef ABSTRACTEVENTDATA_T4171500731_H #define ABSTRACTEVENTDATA_T4171500731_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.EventSystems.AbstractEventData struct AbstractEventData_t4171500731 : public RuntimeObject { public: // System.Boolean UnityEngine.EventSystems.AbstractEventData::m_Used bool ___m_Used_0; public: inline static int32_t get_offset_of_m_Used_0() { return static_cast<int32_t>(offsetof(AbstractEventData_t4171500731, ___m_Used_0)); } inline bool get_m_Used_0() const { return ___m_Used_0; } inline bool* get_address_of_m_Used_0() { return &___m_Used_0; } inline void set_m_Used_0(bool value) { ___m_Used_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ABSTRACTEVENTDATA_T4171500731_H #ifndef EXECUTEEVENTS_T3484638744_H #define EXECUTEEVENTS_T3484638744_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.EventSystems.ExecuteEvents struct ExecuteEvents_t3484638744 : public RuntimeObject { public: public: }; struct ExecuteEvents_t3484638744_StaticFields { public: // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerEnterHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerEnterHandler EventFunction_1_t3995630009 * ___s_PointerEnterHandler_0; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerExitHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerExitHandler EventFunction_1_t2867327688 * ___s_PointerExitHandler_1; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerDownHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerDownHandler EventFunction_1_t64614563 * ___s_PointerDownHandler_2; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerUpHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerUpHandler EventFunction_1_t3256600500 * ___s_PointerUpHandler_3; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerClickHandler> UnityEngine.EventSystems.ExecuteEvents::s_PointerClickHandler EventFunction_1_t3111972472 * ___s_PointerClickHandler_4; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IInitializePotentialDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_InitializePotentialDragHandler EventFunction_1_t3587542510 * ___s_InitializePotentialDragHandler_5; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IBeginDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_BeginDragHandler EventFunction_1_t1977848392 * ___s_BeginDragHandler_6; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_DragHandler EventFunction_1_t972960537 * ___s_DragHandler_7; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IEndDragHandler> UnityEngine.EventSystems.ExecuteEvents::s_EndDragHandler EventFunction_1_t3277009892 * ___s_EndDragHandler_8; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDropHandler> UnityEngine.EventSystems.ExecuteEvents::s_DropHandler EventFunction_1_t2311673543 * ___s_DropHandler_9; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IScrollHandler> UnityEngine.EventSystems.ExecuteEvents::s_ScrollHandler EventFunction_1_t2886331738 * ___s_ScrollHandler_10; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IUpdateSelectedHandler> UnityEngine.EventSystems.ExecuteEvents::s_UpdateSelectedHandler EventFunction_1_t2950825503 * ___s_UpdateSelectedHandler_11; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISelectHandler> UnityEngine.EventSystems.ExecuteEvents::s_SelectHandler EventFunction_1_t955952873 * ___s_SelectHandler_12; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDeselectHandler> UnityEngine.EventSystems.ExecuteEvents::s_DeselectHandler EventFunction_1_t3373214253 * ___s_DeselectHandler_13; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IMoveHandler> UnityEngine.EventSystems.ExecuteEvents::s_MoveHandler EventFunction_1_t3912835512 * ___s_MoveHandler_14; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISubmitHandler> UnityEngine.EventSystems.ExecuteEvents::s_SubmitHandler EventFunction_1_t1475332338 * ___s_SubmitHandler_15; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ICancelHandler> UnityEngine.EventSystems.ExecuteEvents::s_CancelHandler EventFunction_1_t2658898854 * ___s_CancelHandler_16; // UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>> UnityEngine.EventSystems.ExecuteEvents::s_HandlerListPool ObjectPool_1_t231414508 * ___s_HandlerListPool_17; // System.Collections.Generic.List`1<UnityEngine.Transform> UnityEngine.EventSystems.ExecuteEvents::s_InternalTransformList List_1_t777473367 * ___s_InternalTransformList_18; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerEnterHandler> UnityEngine.EventSystems.ExecuteEvents::<>f__mg$cache0 EventFunction_1_t3995630009 * ___U3CU3Ef__mgU24cache0_19; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerExitHandler> UnityEngine.EventSystems.ExecuteEvents::<>f__mg$cache1 EventFunction_1_t2867327688 * ___U3CU3Ef__mgU24cache1_20; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerDownHandler> UnityEngine.EventSystems.ExecuteEvents::<>f__mg$cache2 EventFunction_1_t64614563 * ___U3CU3Ef__mgU24cache2_21; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerUpHandler> UnityEngine.EventSystems.ExecuteEvents::<>f__mg$cache3 EventFunction_1_t3256600500 * ___U3CU3Ef__mgU24cache3_22; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerClickHandler> UnityEngine.EventSystems.ExecuteEvents::<>f__mg$cache4 EventFunction_1_t3111972472 * ___U3CU3Ef__mgU24cache4_23; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IInitializePotentialDragHandler> UnityEngine.EventSystems.ExecuteEvents::<>f__mg$cache5 EventFunction_1_t3587542510 * ___U3CU3Ef__mgU24cache5_24; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IBeginDragHandler> UnityEngine.EventSystems.ExecuteEvents::<>f__mg$cache6 EventFunction_1_t1977848392 * ___U3CU3Ef__mgU24cache6_25; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDragHandler> UnityEngine.EventSystems.ExecuteEvents::<>f__mg$cache7 EventFunction_1_t972960537 * ___U3CU3Ef__mgU24cache7_26; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IEndDragHandler> UnityEngine.EventSystems.ExecuteEvents::<>f__mg$cache8 EventFunction_1_t3277009892 * ___U3CU3Ef__mgU24cache8_27; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDropHandler> UnityEngine.EventSystems.ExecuteEvents::<>f__mg$cache9 EventFunction_1_t2311673543 * ___U3CU3Ef__mgU24cache9_28; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IScrollHandler> UnityEngine.EventSystems.ExecuteEvents::<>f__mg$cacheA EventFunction_1_t2886331738 * ___U3CU3Ef__mgU24cacheA_29; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IUpdateSelectedHandler> UnityEngine.EventSystems.ExecuteEvents::<>f__mg$cacheB EventFunction_1_t2950825503 * ___U3CU3Ef__mgU24cacheB_30; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISelectHandler> UnityEngine.EventSystems.ExecuteEvents::<>f__mg$cacheC EventFunction_1_t955952873 * ___U3CU3Ef__mgU24cacheC_31; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDeselectHandler> UnityEngine.EventSystems.ExecuteEvents::<>f__mg$cacheD EventFunction_1_t3373214253 * ___U3CU3Ef__mgU24cacheD_32; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IMoveHandler> UnityEngine.EventSystems.ExecuteEvents::<>f__mg$cacheE EventFunction_1_t3912835512 * ___U3CU3Ef__mgU24cacheE_33; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISubmitHandler> UnityEngine.EventSystems.ExecuteEvents::<>f__mg$cacheF EventFunction_1_t1475332338 * ___U3CU3Ef__mgU24cacheF_34; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ICancelHandler> UnityEngine.EventSystems.ExecuteEvents::<>f__mg$cache10 EventFunction_1_t2658898854 * ___U3CU3Ef__mgU24cache10_35; public: inline static int32_t get_offset_of_s_PointerEnterHandler_0() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_PointerEnterHandler_0)); } inline EventFunction_1_t3995630009 * get_s_PointerEnterHandler_0() const { return ___s_PointerEnterHandler_0; } inline EventFunction_1_t3995630009 ** get_address_of_s_PointerEnterHandler_0() { return &___s_PointerEnterHandler_0; } inline void set_s_PointerEnterHandler_0(EventFunction_1_t3995630009 * value) { ___s_PointerEnterHandler_0 = value; Il2CppCodeGenWriteBarrier((&___s_PointerEnterHandler_0), value); } inline static int32_t get_offset_of_s_PointerExitHandler_1() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_PointerExitHandler_1)); } inline EventFunction_1_t2867327688 * get_s_PointerExitHandler_1() const { return ___s_PointerExitHandler_1; } inline EventFunction_1_t2867327688 ** get_address_of_s_PointerExitHandler_1() { return &___s_PointerExitHandler_1; } inline void set_s_PointerExitHandler_1(EventFunction_1_t2867327688 * value) { ___s_PointerExitHandler_1 = value; Il2CppCodeGenWriteBarrier((&___s_PointerExitHandler_1), value); } inline static int32_t get_offset_of_s_PointerDownHandler_2() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_PointerDownHandler_2)); } inline EventFunction_1_t64614563 * get_s_PointerDownHandler_2() const { return ___s_PointerDownHandler_2; } inline EventFunction_1_t64614563 ** get_address_of_s_PointerDownHandler_2() { return &___s_PointerDownHandler_2; } inline void set_s_PointerDownHandler_2(EventFunction_1_t64614563 * value) { ___s_PointerDownHandler_2 = value; Il2CppCodeGenWriteBarrier((&___s_PointerDownHandler_2), value); } inline static int32_t get_offset_of_s_PointerUpHandler_3() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_PointerUpHandler_3)); } inline EventFunction_1_t3256600500 * get_s_PointerUpHandler_3() const { return ___s_PointerUpHandler_3; } inline EventFunction_1_t3256600500 ** get_address_of_s_PointerUpHandler_3() { return &___s_PointerUpHandler_3; } inline void set_s_PointerUpHandler_3(EventFunction_1_t3256600500 * value) { ___s_PointerUpHandler_3 = value; Il2CppCodeGenWriteBarrier((&___s_PointerUpHandler_3), value); } inline static int32_t get_offset_of_s_PointerClickHandler_4() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_PointerClickHandler_4)); } inline EventFunction_1_t3111972472 * get_s_PointerClickHandler_4() const { return ___s_PointerClickHandler_4; } inline EventFunction_1_t3111972472 ** get_address_of_s_PointerClickHandler_4() { return &___s_PointerClickHandler_4; } inline void set_s_PointerClickHandler_4(EventFunction_1_t3111972472 * value) { ___s_PointerClickHandler_4 = value; Il2CppCodeGenWriteBarrier((&___s_PointerClickHandler_4), value); } inline static int32_t get_offset_of_s_InitializePotentialDragHandler_5() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_InitializePotentialDragHandler_5)); } inline EventFunction_1_t3587542510 * get_s_InitializePotentialDragHandler_5() const { return ___s_InitializePotentialDragHandler_5; } inline EventFunction_1_t3587542510 ** get_address_of_s_InitializePotentialDragHandler_5() { return &___s_InitializePotentialDragHandler_5; } inline void set_s_InitializePotentialDragHandler_5(EventFunction_1_t3587542510 * value) { ___s_InitializePotentialDragHandler_5 = value; Il2CppCodeGenWriteBarrier((&___s_InitializePotentialDragHandler_5), value); } inline static int32_t get_offset_of_s_BeginDragHandler_6() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_BeginDragHandler_6)); } inline EventFunction_1_t1977848392 * get_s_BeginDragHandler_6() const { return ___s_BeginDragHandler_6; } inline EventFunction_1_t1977848392 ** get_address_of_s_BeginDragHandler_6() { return &___s_BeginDragHandler_6; } inline void set_s_BeginDragHandler_6(EventFunction_1_t1977848392 * value) { ___s_BeginDragHandler_6 = value; Il2CppCodeGenWriteBarrier((&___s_BeginDragHandler_6), value); } inline static int32_t get_offset_of_s_DragHandler_7() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_DragHandler_7)); } inline EventFunction_1_t972960537 * get_s_DragHandler_7() const { return ___s_DragHandler_7; } inline EventFunction_1_t972960537 ** get_address_of_s_DragHandler_7() { return &___s_DragHandler_7; } inline void set_s_DragHandler_7(EventFunction_1_t972960537 * value) { ___s_DragHandler_7 = value; Il2CppCodeGenWriteBarrier((&___s_DragHandler_7), value); } inline static int32_t get_offset_of_s_EndDragHandler_8() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_EndDragHandler_8)); } inline EventFunction_1_t3277009892 * get_s_EndDragHandler_8() const { return ___s_EndDragHandler_8; } inline EventFunction_1_t3277009892 ** get_address_of_s_EndDragHandler_8() { return &___s_EndDragHandler_8; } inline void set_s_EndDragHandler_8(EventFunction_1_t3277009892 * value) { ___s_EndDragHandler_8 = value; Il2CppCodeGenWriteBarrier((&___s_EndDragHandler_8), value); } inline static int32_t get_offset_of_s_DropHandler_9() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_DropHandler_9)); } inline EventFunction_1_t2311673543 * get_s_DropHandler_9() const { return ___s_DropHandler_9; } inline EventFunction_1_t2311673543 ** get_address_of_s_DropHandler_9() { return &___s_DropHandler_9; } inline void set_s_DropHandler_9(EventFunction_1_t2311673543 * value) { ___s_DropHandler_9 = value; Il2CppCodeGenWriteBarrier((&___s_DropHandler_9), value); } inline static int32_t get_offset_of_s_ScrollHandler_10() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_ScrollHandler_10)); } inline EventFunction_1_t2886331738 * get_s_ScrollHandler_10() const { return ___s_ScrollHandler_10; } inline EventFunction_1_t2886331738 ** get_address_of_s_ScrollHandler_10() { return &___s_ScrollHandler_10; } inline void set_s_ScrollHandler_10(EventFunction_1_t2886331738 * value) { ___s_ScrollHandler_10 = value; Il2CppCodeGenWriteBarrier((&___s_ScrollHandler_10), value); } inline static int32_t get_offset_of_s_UpdateSelectedHandler_11() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_UpdateSelectedHandler_11)); } inline EventFunction_1_t2950825503 * get_s_UpdateSelectedHandler_11() const { return ___s_UpdateSelectedHandler_11; } inline EventFunction_1_t2950825503 ** get_address_of_s_UpdateSelectedHandler_11() { return &___s_UpdateSelectedHandler_11; } inline void set_s_UpdateSelectedHandler_11(EventFunction_1_t2950825503 * value) { ___s_UpdateSelectedHandler_11 = value; Il2CppCodeGenWriteBarrier((&___s_UpdateSelectedHandler_11), value); } inline static int32_t get_offset_of_s_SelectHandler_12() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_SelectHandler_12)); } inline EventFunction_1_t955952873 * get_s_SelectHandler_12() const { return ___s_SelectHandler_12; } inline EventFunction_1_t955952873 ** get_address_of_s_SelectHandler_12() { return &___s_SelectHandler_12; } inline void set_s_SelectHandler_12(EventFunction_1_t955952873 * value) { ___s_SelectHandler_12 = value; Il2CppCodeGenWriteBarrier((&___s_SelectHandler_12), value); } inline static int32_t get_offset_of_s_DeselectHandler_13() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_DeselectHandler_13)); } inline EventFunction_1_t3373214253 * get_s_DeselectHandler_13() const { return ___s_DeselectHandler_13; } inline EventFunction_1_t3373214253 ** get_address_of_s_DeselectHandler_13() { return &___s_DeselectHandler_13; } inline void set_s_DeselectHandler_13(EventFunction_1_t3373214253 * value) { ___s_DeselectHandler_13 = value; Il2CppCodeGenWriteBarrier((&___s_DeselectHandler_13), value); } inline static int32_t get_offset_of_s_MoveHandler_14() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_MoveHandler_14)); } inline EventFunction_1_t3912835512 * get_s_MoveHandler_14() const { return ___s_MoveHandler_14; } inline EventFunction_1_t3912835512 ** get_address_of_s_MoveHandler_14() { return &___s_MoveHandler_14; } inline void set_s_MoveHandler_14(EventFunction_1_t3912835512 * value) { ___s_MoveHandler_14 = value; Il2CppCodeGenWriteBarrier((&___s_MoveHandler_14), value); } inline static int32_t get_offset_of_s_SubmitHandler_15() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_SubmitHandler_15)); } inline EventFunction_1_t1475332338 * get_s_SubmitHandler_15() const { return ___s_SubmitHandler_15; } inline EventFunction_1_t1475332338 ** get_address_of_s_SubmitHandler_15() { return &___s_SubmitHandler_15; } inline void set_s_SubmitHandler_15(EventFunction_1_t1475332338 * value) { ___s_SubmitHandler_15 = value; Il2CppCodeGenWriteBarrier((&___s_SubmitHandler_15), value); } inline static int32_t get_offset_of_s_CancelHandler_16() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_CancelHandler_16)); } inline EventFunction_1_t2658898854 * get_s_CancelHandler_16() const { return ___s_CancelHandler_16; } inline EventFunction_1_t2658898854 ** get_address_of_s_CancelHandler_16() { return &___s_CancelHandler_16; } inline void set_s_CancelHandler_16(EventFunction_1_t2658898854 * value) { ___s_CancelHandler_16 = value; Il2CppCodeGenWriteBarrier((&___s_CancelHandler_16), value); } inline static int32_t get_offset_of_s_HandlerListPool_17() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_HandlerListPool_17)); } inline ObjectPool_1_t231414508 * get_s_HandlerListPool_17() const { return ___s_HandlerListPool_17; } inline ObjectPool_1_t231414508 ** get_address_of_s_HandlerListPool_17() { return &___s_HandlerListPool_17; } inline void set_s_HandlerListPool_17(ObjectPool_1_t231414508 * value) { ___s_HandlerListPool_17 = value; Il2CppCodeGenWriteBarrier((&___s_HandlerListPool_17), value); } inline static int32_t get_offset_of_s_InternalTransformList_18() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___s_InternalTransformList_18)); } inline List_1_t777473367 * get_s_InternalTransformList_18() const { return ___s_InternalTransformList_18; } inline List_1_t777473367 ** get_address_of_s_InternalTransformList_18() { return &___s_InternalTransformList_18; } inline void set_s_InternalTransformList_18(List_1_t777473367 * value) { ___s_InternalTransformList_18 = value; Il2CppCodeGenWriteBarrier((&___s_InternalTransformList_18), value); } inline static int32_t get_offset_of_U3CU3Ef__mgU24cache0_19() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___U3CU3Ef__mgU24cache0_19)); } inline EventFunction_1_t3995630009 * get_U3CU3Ef__mgU24cache0_19() const { return ___U3CU3Ef__mgU24cache0_19; } inline EventFunction_1_t3995630009 ** get_address_of_U3CU3Ef__mgU24cache0_19() { return &___U3CU3Ef__mgU24cache0_19; } inline void set_U3CU3Ef__mgU24cache0_19(EventFunction_1_t3995630009 * value) { ___U3CU3Ef__mgU24cache0_19 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__mgU24cache0_19), value); } inline static int32_t get_offset_of_U3CU3Ef__mgU24cache1_20() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___U3CU3Ef__mgU24cache1_20)); } inline EventFunction_1_t2867327688 * get_U3CU3Ef__mgU24cache1_20() const { return ___U3CU3Ef__mgU24cache1_20; } inline EventFunction_1_t2867327688 ** get_address_of_U3CU3Ef__mgU24cache1_20() { return &___U3CU3Ef__mgU24cache1_20; } inline void set_U3CU3Ef__mgU24cache1_20(EventFunction_1_t2867327688 * value) { ___U3CU3Ef__mgU24cache1_20 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__mgU24cache1_20), value); } inline static int32_t get_offset_of_U3CU3Ef__mgU24cache2_21() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___U3CU3Ef__mgU24cache2_21)); } inline EventFunction_1_t64614563 * get_U3CU3Ef__mgU24cache2_21() const { return ___U3CU3Ef__mgU24cache2_21; } inline EventFunction_1_t64614563 ** get_address_of_U3CU3Ef__mgU24cache2_21() { return &___U3CU3Ef__mgU24cache2_21; } inline void set_U3CU3Ef__mgU24cache2_21(EventFunction_1_t64614563 * value) { ___U3CU3Ef__mgU24cache2_21 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__mgU24cache2_21), value); } inline static int32_t get_offset_of_U3CU3Ef__mgU24cache3_22() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___U3CU3Ef__mgU24cache3_22)); } inline EventFunction_1_t3256600500 * get_U3CU3Ef__mgU24cache3_22() const { return ___U3CU3Ef__mgU24cache3_22; } inline EventFunction_1_t3256600500 ** get_address_of_U3CU3Ef__mgU24cache3_22() { return &___U3CU3Ef__mgU24cache3_22; } inline void set_U3CU3Ef__mgU24cache3_22(EventFunction_1_t3256600500 * value) { ___U3CU3Ef__mgU24cache3_22 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__mgU24cache3_22), value); } inline static int32_t get_offset_of_U3CU3Ef__mgU24cache4_23() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___U3CU3Ef__mgU24cache4_23)); } inline EventFunction_1_t3111972472 * get_U3CU3Ef__mgU24cache4_23() const { return ___U3CU3Ef__mgU24cache4_23; } inline EventFunction_1_t3111972472 ** get_address_of_U3CU3Ef__mgU24cache4_23() { return &___U3CU3Ef__mgU24cache4_23; } inline void set_U3CU3Ef__mgU24cache4_23(EventFunction_1_t3111972472 * value) { ___U3CU3Ef__mgU24cache4_23 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__mgU24cache4_23), value); } inline static int32_t get_offset_of_U3CU3Ef__mgU24cache5_24() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___U3CU3Ef__mgU24cache5_24)); } inline EventFunction_1_t3587542510 * get_U3CU3Ef__mgU24cache5_24() const { return ___U3CU3Ef__mgU24cache5_24; } inline EventFunction_1_t3587542510 ** get_address_of_U3CU3Ef__mgU24cache5_24() { return &___U3CU3Ef__mgU24cache5_24; } inline void set_U3CU3Ef__mgU24cache5_24(EventFunction_1_t3587542510 * value) { ___U3CU3Ef__mgU24cache5_24 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__mgU24cache5_24), value); } inline static int32_t get_offset_of_U3CU3Ef__mgU24cache6_25() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___U3CU3Ef__mgU24cache6_25)); } inline EventFunction_1_t1977848392 * get_U3CU3Ef__mgU24cache6_25() const { return ___U3CU3Ef__mgU24cache6_25; } inline EventFunction_1_t1977848392 ** get_address_of_U3CU3Ef__mgU24cache6_25() { return &___U3CU3Ef__mgU24cache6_25; } inline void set_U3CU3Ef__mgU24cache6_25(EventFunction_1_t1977848392 * value) { ___U3CU3Ef__mgU24cache6_25 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__mgU24cache6_25), value); } inline static int32_t get_offset_of_U3CU3Ef__mgU24cache7_26() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___U3CU3Ef__mgU24cache7_26)); } inline EventFunction_1_t972960537 * get_U3CU3Ef__mgU24cache7_26() const { return ___U3CU3Ef__mgU24cache7_26; } inline EventFunction_1_t972960537 ** get_address_of_U3CU3Ef__mgU24cache7_26() { return &___U3CU3Ef__mgU24cache7_26; } inline void set_U3CU3Ef__mgU24cache7_26(EventFunction_1_t972960537 * value) { ___U3CU3Ef__mgU24cache7_26 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__mgU24cache7_26), value); } inline static int32_t get_offset_of_U3CU3Ef__mgU24cache8_27() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___U3CU3Ef__mgU24cache8_27)); } inline EventFunction_1_t3277009892 * get_U3CU3Ef__mgU24cache8_27() const { return ___U3CU3Ef__mgU24cache8_27; } inline EventFunction_1_t3277009892 ** get_address_of_U3CU3Ef__mgU24cache8_27() { return &___U3CU3Ef__mgU24cache8_27; } inline void set_U3CU3Ef__mgU24cache8_27(EventFunction_1_t3277009892 * value) { ___U3CU3Ef__mgU24cache8_27 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__mgU24cache8_27), value); } inline static int32_t get_offset_of_U3CU3Ef__mgU24cache9_28() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___U3CU3Ef__mgU24cache9_28)); } inline EventFunction_1_t2311673543 * get_U3CU3Ef__mgU24cache9_28() const { return ___U3CU3Ef__mgU24cache9_28; } inline EventFunction_1_t2311673543 ** get_address_of_U3CU3Ef__mgU24cache9_28() { return &___U3CU3Ef__mgU24cache9_28; } inline void set_U3CU3Ef__mgU24cache9_28(EventFunction_1_t2311673543 * value) { ___U3CU3Ef__mgU24cache9_28 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__mgU24cache9_28), value); } inline static int32_t get_offset_of_U3CU3Ef__mgU24cacheA_29() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___U3CU3Ef__mgU24cacheA_29)); } inline EventFunction_1_t2886331738 * get_U3CU3Ef__mgU24cacheA_29() const { return ___U3CU3Ef__mgU24cacheA_29; } inline EventFunction_1_t2886331738 ** get_address_of_U3CU3Ef__mgU24cacheA_29() { return &___U3CU3Ef__mgU24cacheA_29; } inline void set_U3CU3Ef__mgU24cacheA_29(EventFunction_1_t2886331738 * value) { ___U3CU3Ef__mgU24cacheA_29 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__mgU24cacheA_29), value); } inline static int32_t get_offset_of_U3CU3Ef__mgU24cacheB_30() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___U3CU3Ef__mgU24cacheB_30)); } inline EventFunction_1_t2950825503 * get_U3CU3Ef__mgU24cacheB_30() const { return ___U3CU3Ef__mgU24cacheB_30; } inline EventFunction_1_t2950825503 ** get_address_of_U3CU3Ef__mgU24cacheB_30() { return &___U3CU3Ef__mgU24cacheB_30; } inline void set_U3CU3Ef__mgU24cacheB_30(EventFunction_1_t2950825503 * value) { ___U3CU3Ef__mgU24cacheB_30 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__mgU24cacheB_30), value); } inline static int32_t get_offset_of_U3CU3Ef__mgU24cacheC_31() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___U3CU3Ef__mgU24cacheC_31)); } inline EventFunction_1_t955952873 * get_U3CU3Ef__mgU24cacheC_31() const { return ___U3CU3Ef__mgU24cacheC_31; } inline EventFunction_1_t955952873 ** get_address_of_U3CU3Ef__mgU24cacheC_31() { return &___U3CU3Ef__mgU24cacheC_31; } inline void set_U3CU3Ef__mgU24cacheC_31(EventFunction_1_t955952873 * value) { ___U3CU3Ef__mgU24cacheC_31 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__mgU24cacheC_31), value); } inline static int32_t get_offset_of_U3CU3Ef__mgU24cacheD_32() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___U3CU3Ef__mgU24cacheD_32)); } inline EventFunction_1_t3373214253 * get_U3CU3Ef__mgU24cacheD_32() const { return ___U3CU3Ef__mgU24cacheD_32; } inline EventFunction_1_t3373214253 ** get_address_of_U3CU3Ef__mgU24cacheD_32() { return &___U3CU3Ef__mgU24cacheD_32; } inline void set_U3CU3Ef__mgU24cacheD_32(EventFunction_1_t3373214253 * value) { ___U3CU3Ef__mgU24cacheD_32 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__mgU24cacheD_32), value); } inline static int32_t get_offset_of_U3CU3Ef__mgU24cacheE_33() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___U3CU3Ef__mgU24cacheE_33)); } inline EventFunction_1_t3912835512 * get_U3CU3Ef__mgU24cacheE_33() const { return ___U3CU3Ef__mgU24cacheE_33; } inline EventFunction_1_t3912835512 ** get_address_of_U3CU3Ef__mgU24cacheE_33() { return &___U3CU3Ef__mgU24cacheE_33; } inline void set_U3CU3Ef__mgU24cacheE_33(EventFunction_1_t3912835512 * value) { ___U3CU3Ef__mgU24cacheE_33 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__mgU24cacheE_33), value); } inline static int32_t get_offset_of_U3CU3Ef__mgU24cacheF_34() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___U3CU3Ef__mgU24cacheF_34)); } inline EventFunction_1_t1475332338 * get_U3CU3Ef__mgU24cacheF_34() const { return ___U3CU3Ef__mgU24cacheF_34; } inline EventFunction_1_t1475332338 ** get_address_of_U3CU3Ef__mgU24cacheF_34() { return &___U3CU3Ef__mgU24cacheF_34; } inline void set_U3CU3Ef__mgU24cacheF_34(EventFunction_1_t1475332338 * value) { ___U3CU3Ef__mgU24cacheF_34 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__mgU24cacheF_34), value); } inline static int32_t get_offset_of_U3CU3Ef__mgU24cache10_35() { return static_cast<int32_t>(offsetof(ExecuteEvents_t3484638744_StaticFields, ___U3CU3Ef__mgU24cache10_35)); } inline EventFunction_1_t2658898854 * get_U3CU3Ef__mgU24cache10_35() const { return ___U3CU3Ef__mgU24cache10_35; } inline EventFunction_1_t2658898854 ** get_address_of_U3CU3Ef__mgU24cache10_35() { return &___U3CU3Ef__mgU24cache10_35; } inline void set_U3CU3Ef__mgU24cache10_35(EventFunction_1_t2658898854 * value) { ___U3CU3Ef__mgU24cache10_35 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__mgU24cache10_35), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EXECUTEEVENTS_T3484638744_H #ifndef OBJECTPOOL_1_T231414508_H #define OBJECTPOOL_1_T231414508_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>> struct ObjectPool_1_t231414508 : public RuntimeObject { public: // System.Collections.Generic.Stack`1<T> UnityEngine.UI.ObjectPool`1::m_Stack Stack_1_t1375180751 * ___m_Stack_0; // UnityEngine.Events.UnityAction`1<T> UnityEngine.UI.ObjectPool`1::m_ActionOnGet UnityAction_1_t1116627437 * ___m_ActionOnGet_1; // UnityEngine.Events.UnityAction`1<T> UnityEngine.UI.ObjectPool`1::m_ActionOnRelease UnityAction_1_t1116627437 * ___m_ActionOnRelease_2; // System.Int32 UnityEngine.UI.ObjectPool`1::<countAll>k__BackingField int32_t ___U3CcountAllU3Ek__BackingField_3; public: inline static int32_t get_offset_of_m_Stack_0() { return static_cast<int32_t>(offsetof(ObjectPool_1_t231414508, ___m_Stack_0)); } inline Stack_1_t1375180751 * get_m_Stack_0() const { return ___m_Stack_0; } inline Stack_1_t1375180751 ** get_address_of_m_Stack_0() { return &___m_Stack_0; } inline void set_m_Stack_0(Stack_1_t1375180751 * value) { ___m_Stack_0 = value; Il2CppCodeGenWriteBarrier((&___m_Stack_0), value); } inline static int32_t get_offset_of_m_ActionOnGet_1() { return static_cast<int32_t>(offsetof(ObjectPool_1_t231414508, ___m_ActionOnGet_1)); } inline UnityAction_1_t1116627437 * get_m_ActionOnGet_1() const { return ___m_ActionOnGet_1; } inline UnityAction_1_t1116627437 ** get_address_of_m_ActionOnGet_1() { return &___m_ActionOnGet_1; } inline void set_m_ActionOnGet_1(UnityAction_1_t1116627437 * value) { ___m_ActionOnGet_1 = value; Il2CppCodeGenWriteBarrier((&___m_ActionOnGet_1), value); } inline static int32_t get_offset_of_m_ActionOnRelease_2() { return static_cast<int32_t>(offsetof(ObjectPool_1_t231414508, ___m_ActionOnRelease_2)); } inline UnityAction_1_t1116627437 * get_m_ActionOnRelease_2() const { return ___m_ActionOnRelease_2; } inline UnityAction_1_t1116627437 ** get_address_of_m_ActionOnRelease_2() { return &___m_ActionOnRelease_2; } inline void set_m_ActionOnRelease_2(UnityAction_1_t1116627437 * value) { ___m_ActionOnRelease_2 = value; Il2CppCodeGenWriteBarrier((&___m_ActionOnRelease_2), value); } inline static int32_t get_offset_of_U3CcountAllU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(ObjectPool_1_t231414508, ___U3CcountAllU3Ek__BackingField_3)); } inline int32_t get_U3CcountAllU3Ek__BackingField_3() const { return ___U3CcountAllU3Ek__BackingField_3; } inline int32_t* get_address_of_U3CcountAllU3Ek__BackingField_3() { return &___U3CcountAllU3Ek__BackingField_3; } inline void set_U3CcountAllU3Ek__BackingField_3(int32_t value) { ___U3CcountAllU3Ek__BackingField_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OBJECTPOOL_1_T231414508_H #ifndef SETPROPERTYUTILITY_T3359423571_H #define SETPROPERTYUTILITY_T3359423571_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UI.SetPropertyUtility struct SetPropertyUtility_t3359423571 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SETPROPERTYUTILITY_T3359423571_H #ifndef TRACKER_T2709586299_H #define TRACKER_T2709586299_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.Tracker struct Tracker_t2709586299 : public RuntimeObject { public: // System.Boolean Vuforia.Tracker::<IsActive>k__BackingField bool ___U3CIsActiveU3Ek__BackingField_0; public: inline static int32_t get_offset_of_U3CIsActiveU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Tracker_t2709586299, ___U3CIsActiveU3Ek__BackingField_0)); } inline bool get_U3CIsActiveU3Ek__BackingField_0() const { return ___U3CIsActiveU3Ek__BackingField_0; } inline bool* get_address_of_U3CIsActiveU3Ek__BackingField_0() { return &___U3CIsActiveU3Ek__BackingField_0; } inline void set_U3CIsActiveU3Ek__BackingField_0(bool value) { ___U3CIsActiveU3Ek__BackingField_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TRACKER_T2709586299_H #ifndef TRACKERMANAGER_T1703337244_H #define TRACKERMANAGER_T1703337244_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.TrackerManager struct TrackerManager_t1703337244 : public RuntimeObject { public: // Vuforia.StateManager Vuforia.TrackerManager::mStateManager StateManager_t1982749557 * ___mStateManager_1; // System.Collections.Generic.Dictionary`2<System.Type,Vuforia.Tracker> Vuforia.TrackerManager::mTrackers Dictionary_2_t858966067 * ___mTrackers_2; // System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Type,Vuforia.Tracker>> Vuforia.TrackerManager::mTrackerCreators Dictionary_2_t1322931057 * ___mTrackerCreators_3; // System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>> Vuforia.TrackerManager::mTrackerNativeDeinitializers Dictionary_2_t2058017892 * ___mTrackerNativeDeinitializers_4; public: inline static int32_t get_offset_of_mStateManager_1() { return static_cast<int32_t>(offsetof(TrackerManager_t1703337244, ___mStateManager_1)); } inline StateManager_t1982749557 * get_mStateManager_1() const { return ___mStateManager_1; } inline StateManager_t1982749557 ** get_address_of_mStateManager_1() { return &___mStateManager_1; } inline void set_mStateManager_1(StateManager_t1982749557 * value) { ___mStateManager_1 = value; Il2CppCodeGenWriteBarrier((&___mStateManager_1), value); } inline static int32_t get_offset_of_mTrackers_2() { return static_cast<int32_t>(offsetof(TrackerManager_t1703337244, ___mTrackers_2)); } inline Dictionary_2_t858966067 * get_mTrackers_2() const { return ___mTrackers_2; } inline Dictionary_2_t858966067 ** get_address_of_mTrackers_2() { return &___mTrackers_2; } inline void set_mTrackers_2(Dictionary_2_t858966067 * value) { ___mTrackers_2 = value; Il2CppCodeGenWriteBarrier((&___mTrackers_2), value); } inline static int32_t get_offset_of_mTrackerCreators_3() { return static_cast<int32_t>(offsetof(TrackerManager_t1703337244, ___mTrackerCreators_3)); } inline Dictionary_2_t1322931057 * get_mTrackerCreators_3() const { return ___mTrackerCreators_3; } inline Dictionary_2_t1322931057 ** get_address_of_mTrackerCreators_3() { return &___mTrackerCreators_3; } inline void set_mTrackerCreators_3(Dictionary_2_t1322931057 * value) { ___mTrackerCreators_3 = value; Il2CppCodeGenWriteBarrier((&___mTrackerCreators_3), value); } inline static int32_t get_offset_of_mTrackerNativeDeinitializers_4() { return static_cast<int32_t>(offsetof(TrackerManager_t1703337244, ___mTrackerNativeDeinitializers_4)); } inline Dictionary_2_t2058017892 * get_mTrackerNativeDeinitializers_4() const { return ___mTrackerNativeDeinitializers_4; } inline Dictionary_2_t2058017892 ** get_address_of_mTrackerNativeDeinitializers_4() { return &___mTrackerNativeDeinitializers_4; } inline void set_mTrackerNativeDeinitializers_4(Dictionary_2_t2058017892 * value) { ___mTrackerNativeDeinitializers_4 = value; Il2CppCodeGenWriteBarrier((&___mTrackerNativeDeinitializers_4), value); } }; struct TrackerManager_t1703337244_StaticFields { public: // Vuforia.ITrackerManager Vuforia.TrackerManager::mInstance RuntimeObject* ___mInstance_0; public: inline static int32_t get_offset_of_mInstance_0() { return static_cast<int32_t>(offsetof(TrackerManager_t1703337244_StaticFields, ___mInstance_0)); } inline RuntimeObject* get_mInstance_0() const { return ___mInstance_0; } inline RuntimeObject** get_address_of_mInstance_0() { return &___mInstance_0; } inline void set_mInstance_0(RuntimeObject* value) { ___mInstance_0 = value; Il2CppCodeGenWriteBarrier((&___mInstance_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TRACKERMANAGER_T1703337244_H #ifndef XPATHNODE_T2208072876_H #define XPATHNODE_T2208072876_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // MS.Internal.Xml.Cache.XPathNode struct XPathNode_t2208072876 { public: // MS.Internal.Xml.Cache.XPathNodeInfoAtom MS.Internal.Xml.Cache.XPathNode::info XPathNodeInfoAtom_t1760358141 * ___info_0; // System.UInt16 MS.Internal.Xml.Cache.XPathNode::idxSibling uint16_t ___idxSibling_1; // System.UInt16 MS.Internal.Xml.Cache.XPathNode::idxParent uint16_t ___idxParent_2; // System.UInt16 MS.Internal.Xml.Cache.XPathNode::idxSimilar uint16_t ___idxSimilar_3; // System.UInt16 MS.Internal.Xml.Cache.XPathNode::posOffset uint16_t ___posOffset_4; // System.UInt32 MS.Internal.Xml.Cache.XPathNode::props uint32_t ___props_5; // System.String MS.Internal.Xml.Cache.XPathNode::value String_t* ___value_6; public: inline static int32_t get_offset_of_info_0() { return static_cast<int32_t>(offsetof(XPathNode_t2208072876, ___info_0)); } inline XPathNodeInfoAtom_t1760358141 * get_info_0() const { return ___info_0; } inline XPathNodeInfoAtom_t1760358141 ** get_address_of_info_0() { return &___info_0; } inline void set_info_0(XPathNodeInfoAtom_t1760358141 * value) { ___info_0 = value; Il2CppCodeGenWriteBarrier((&___info_0), value); } inline static int32_t get_offset_of_idxSibling_1() { return static_cast<int32_t>(offsetof(XPathNode_t2208072876, ___idxSibling_1)); } inline uint16_t get_idxSibling_1() const { return ___idxSibling_1; } inline uint16_t* get_address_of_idxSibling_1() { return &___idxSibling_1; } inline void set_idxSibling_1(uint16_t value) { ___idxSibling_1 = value; } inline static int32_t get_offset_of_idxParent_2() { return static_cast<int32_t>(offsetof(XPathNode_t2208072876, ___idxParent_2)); } inline uint16_t get_idxParent_2() const { return ___idxParent_2; } inline uint16_t* get_address_of_idxParent_2() { return &___idxParent_2; } inline void set_idxParent_2(uint16_t value) { ___idxParent_2 = value; } inline static int32_t get_offset_of_idxSimilar_3() { return static_cast<int32_t>(offsetof(XPathNode_t2208072876, ___idxSimilar_3)); } inline uint16_t get_idxSimilar_3() const { return ___idxSimilar_3; } inline uint16_t* get_address_of_idxSimilar_3() { return &___idxSimilar_3; } inline void set_idxSimilar_3(uint16_t value) { ___idxSimilar_3 = value; } inline static int32_t get_offset_of_posOffset_4() { return static_cast<int32_t>(offsetof(XPathNode_t2208072876, ___posOffset_4)); } inline uint16_t get_posOffset_4() const { return ___posOffset_4; } inline uint16_t* get_address_of_posOffset_4() { return &___posOffset_4; } inline void set_posOffset_4(uint16_t value) { ___posOffset_4 = value; } inline static int32_t get_offset_of_props_5() { return static_cast<int32_t>(offsetof(XPathNode_t2208072876, ___props_5)); } inline uint32_t get_props_5() const { return ___props_5; } inline uint32_t* get_address_of_props_5() { return &___props_5; } inline void set_props_5(uint32_t value) { ___props_5 = value; } inline static int32_t get_offset_of_value_6() { return static_cast<int32_t>(offsetof(XPathNode_t2208072876, ___value_6)); } inline String_t* get_value_6() const { return ___value_6; } inline String_t** get_address_of_value_6() { return &___value_6; } inline void set_value_6(String_t* value) { ___value_6 = value; Il2CppCodeGenWriteBarrier((&___value_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of MS.Internal.Xml.Cache.XPathNode struct XPathNode_t2208072876_marshaled_pinvoke { XPathNodeInfoAtom_t1760358141 * ___info_0; uint16_t ___idxSibling_1; uint16_t ___idxParent_2; uint16_t ___idxSimilar_3; uint16_t ___posOffset_4; uint32_t ___props_5; char* ___value_6; }; // Native definition for COM marshalling of MS.Internal.Xml.Cache.XPathNode struct XPathNode_t2208072876_marshaled_com { XPathNodeInfoAtom_t1760358141 * ___info_0; uint16_t ___idxSibling_1; uint16_t ___idxParent_2; uint16_t ___idxSimilar_3; uint16_t ___posOffset_4; uint32_t ___props_5; Il2CppChar* ___value_6; }; #endif // XPATHNODE_T2208072876_H #ifndef XPATHNODEREF_T3498189018_H #define XPATHNODEREF_T3498189018_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // MS.Internal.Xml.Cache.XPathNodeRef struct XPathNodeRef_t3498189018 { public: // MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodeRef::page XPathNodeU5BU5D_t47339301* ___page_0; // System.Int32 MS.Internal.Xml.Cache.XPathNodeRef::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_page_0() { return static_cast<int32_t>(offsetof(XPathNodeRef_t3498189018, ___page_0)); } inline XPathNodeU5BU5D_t47339301* get_page_0() const { return ___page_0; } inline XPathNodeU5BU5D_t47339301** get_address_of_page_0() { return &___page_0; } inline void set_page_0(XPathNodeU5BU5D_t47339301* value) { ___page_0 = value; Il2CppCodeGenWriteBarrier((&___page_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(XPathNodeRef_t3498189018, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of MS.Internal.Xml.Cache.XPathNodeRef struct XPathNodeRef_t3498189018_marshaled_pinvoke { XPathNode_t2208072876_marshaled_pinvoke* ___page_0; int32_t ___idx_1; }; // Native definition for COM marshalling of MS.Internal.Xml.Cache.XPathNodeRef struct XPathNodeRef_t3498189018_marshaled_com { XPathNode_t2208072876_marshaled_com* ___page_0; int32_t ___idx_1; }; #endif // XPATHNODEREF_T3498189018_H #ifndef TABLERANGE_T3332867892_H #define TABLERANGE_T3332867892_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Globalization.Unicode.CodePointIndexer/TableRange struct TableRange_t3332867892 { public: // System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::Start int32_t ___Start_0; // System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::End int32_t ___End_1; // System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::Count int32_t ___Count_2; // System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::IndexStart int32_t ___IndexStart_3; // System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::IndexEnd int32_t ___IndexEnd_4; public: inline static int32_t get_offset_of_Start_0() { return static_cast<int32_t>(offsetof(TableRange_t3332867892, ___Start_0)); } inline int32_t get_Start_0() const { return ___Start_0; } inline int32_t* get_address_of_Start_0() { return &___Start_0; } inline void set_Start_0(int32_t value) { ___Start_0 = value; } inline static int32_t get_offset_of_End_1() { return static_cast<int32_t>(offsetof(TableRange_t3332867892, ___End_1)); } inline int32_t get_End_1() const { return ___End_1; } inline int32_t* get_address_of_End_1() { return &___End_1; } inline void set_End_1(int32_t value) { ___End_1 = value; } inline static int32_t get_offset_of_Count_2() { return static_cast<int32_t>(offsetof(TableRange_t3332867892, ___Count_2)); } inline int32_t get_Count_2() const { return ___Count_2; } inline int32_t* get_address_of_Count_2() { return &___Count_2; } inline void set_Count_2(int32_t value) { ___Count_2 = value; } inline static int32_t get_offset_of_IndexStart_3() { return static_cast<int32_t>(offsetof(TableRange_t3332867892, ___IndexStart_3)); } inline int32_t get_IndexStart_3() const { return ___IndexStart_3; } inline int32_t* get_address_of_IndexStart_3() { return &___IndexStart_3; } inline void set_IndexStart_3(int32_t value) { ___IndexStart_3 = value; } inline static int32_t get_offset_of_IndexEnd_4() { return static_cast<int32_t>(offsetof(TableRange_t3332867892, ___IndexEnd_4)); } inline int32_t get_IndexEnd_4() const { return ___IndexEnd_4; } inline int32_t* get_address_of_IndexEnd_4() { return &___IndexEnd_4; } inline void set_IndexEnd_4(int32_t value) { ___IndexEnd_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TABLERANGE_T3332867892_H #ifndef INTERNALENUMERATOR_1_T3115136993_H #define INTERNALENUMERATOR_1_T3115136993_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode> struct InternalEnumerator_1_t3115136993 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3115136993, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3115136993, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3115136993_H #ifndef INTERNALENUMERATOR_1_T110285839_H #define INTERNALENUMERATOR_1_T110285839_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef> struct InternalEnumerator_1_t110285839 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t110285839, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t110285839, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T110285839_H #ifndef INTERNALENUMERATOR_1_T2953869286_H #define INTERNALENUMERATOR_1_T2953869286_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<MS.Internal.Xml.XPath.Operator/Op> struct InternalEnumerator_1_t2953869286 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2953869286, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2953869286, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2953869286_H #ifndef INTERNALENUMERATOR_1_T4216186165_H #define INTERNALENUMERATOR_1_T4216186165_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<Mono.AppleTls.SslCipherSuite> struct InternalEnumerator_1_t4216186165 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4216186165, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4216186165, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4216186165_H #ifndef INTERNALENUMERATOR_1_T1099045673_H #define INTERNALENUMERATOR_1_T1099045673_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<Mono.AppleTls.SslStatus> struct InternalEnumerator_1_t1099045673 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1099045673, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1099045673, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1099045673_H #ifndef INTERNALENUMERATOR_1_T4239932009_H #define INTERNALENUMERATOR_1_T4239932009_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange> struct InternalEnumerator_1_t4239932009 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4239932009, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4239932009, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4239932009_H #ifndef INTERNALENUMERATOR_1_T1639626328_H #define INTERNALENUMERATOR_1_T1639626328_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<Mono.Security.Interface.CipherSuiteCode> struct InternalEnumerator_1_t1639626328 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1639626328, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1639626328, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1639626328_H #ifndef INTERNALENUMERATOR_1_T2642223512_H #define INTERNALENUMERATOR_1_T2642223512_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<Mono.Unity.UnityTls/unitytls_ciphersuite> struct InternalEnumerator_1_t2642223512 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2642223512, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2642223512, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2642223512_H #ifndef INTERNALENUMERATOR_1_T3712315584_H #define INTERNALENUMERATOR_1_T3712315584_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.AppContext/SwitchValueState> struct InternalEnumerator_1_t3712315584 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3712315584, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3712315584, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3712315584_H #ifndef INTERNALENUMERATOR_1_T1190625104_H #define INTERNALENUMERATOR_1_T1190625104_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>> struct InternalEnumerator_1_t1190625104 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1190625104, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1190625104, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1190625104_H #ifndef INTERNALENUMERATOR_1_T1004352082_H #define INTERNALENUMERATOR_1_T1004352082_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Boolean> struct InternalEnumerator_1_t1004352082 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1004352082, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1004352082, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1004352082_H #ifndef INTERNALENUMERATOR_1_T2041360493_H #define INTERNALENUMERATOR_1_T2041360493_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Byte> struct InternalEnumerator_1_t2041360493 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2041360493, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2041360493, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2041360493_H #ifndef INTERNALENUMERATOR_1_T246557291_H #define INTERNALENUMERATOR_1_T246557291_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Char> struct InternalEnumerator_1_t246557291 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t246557291, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t246557291, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T246557291_H #ifndef INTERNALENUMERATOR_1_T4031039755_H #define INTERNALENUMERATOR_1_T4031039755_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry> struct InternalEnumerator_1_t4031039755 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4031039755, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4031039755, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4031039755_H #ifndef INTERNALENUMERATOR_1_T2996861637_H #define INTERNALENUMERATOR_1_T2996861637_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>> struct InternalEnumerator_1_t2996861637 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2996861637, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2996861637, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2996861637_H #ifndef INTERNALENUMERATOR_1_T356085006_H #define INTERNALENUMERATOR_1_T356085006_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>> struct InternalEnumerator_1_t356085006 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t356085006, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t356085006, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T356085006_H #ifndef INTERNALENUMERATOR_1_T1507929901_H #define INTERNALENUMERATOR_1_T1507929901_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>> struct InternalEnumerator_1_t1507929901 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1507929901, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1507929901, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1507929901_H #ifndef INTERNALENUMERATOR_1_T750135110_H #define INTERNALENUMERATOR_1_T750135110_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>> struct InternalEnumerator_1_t750135110 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t750135110, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t750135110, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T750135110_H #ifndef INTERNALENUMERATOR_1_T66620393_H #define INTERNALENUMERATOR_1_T66620393_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>> struct InternalEnumerator_1_t66620393 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t66620393, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t66620393, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T66620393_H #ifndef INTERNALENUMERATOR_1_T852241944_H #define INTERNALENUMERATOR_1_T852241944_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>> struct InternalEnumerator_1_t852241944 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t852241944, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t852241944, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T852241944_H #ifndef INTERNALENUMERATOR_1_T195780804_H #define INTERNALENUMERATOR_1_T195780804_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>> struct InternalEnumerator_1_t195780804 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t195780804, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t195780804, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T195780804_H #ifndef INTERNALENUMERATOR_1_T2511547750_H #define INTERNALENUMERATOR_1_T2511547750_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackableBehaviour/Status>> struct InternalEnumerator_1_t2511547750 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2511547750, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2511547750, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2511547750_H #ifndef INTERNALENUMERATOR_1_T2528595684_H #define INTERNALENUMERATOR_1_T2528595684_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>> struct InternalEnumerator_1_t2528595684 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2528595684, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2528595684, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2528595684_H #ifndef INTERNALENUMERATOR_1_T2369707257_H #define INTERNALENUMERATOR_1_T2369707257_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>> struct InternalEnumerator_1_t2369707257 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2369707257, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2369707257, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2369707257_H #ifndef INTERNALENUMERATOR_1_T2379619060_H #define INTERNALENUMERATOR_1_T2379619060_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.AppContext/SwitchValueState>> struct InternalEnumerator_1_t2379619060 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2379619060, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2379619060, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2379619060_H #ifndef INTERNALENUMERATOR_1_T3966622854_H #define INTERNALENUMERATOR_1_T3966622854_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>> struct InternalEnumerator_1_t3966622854 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3966622854, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3966622854, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3966622854_H #ifndef INTERNALENUMERATOR_1_T2525313346_H #define INTERNALENUMERATOR_1_T2525313346_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>> struct InternalEnumerator_1_t2525313346 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2525313346, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2525313346, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2525313346_H #ifndef INTERNALENUMERATOR_1_T2654473757_H #define INTERNALENUMERATOR_1_T2654473757_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>> struct InternalEnumerator_1_t2654473757 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2654473757, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2654473757, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2654473757_H #ifndef INTERNALENUMERATOR_1_T3298338400_H #define INTERNALENUMERATOR_1_T3298338400_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>> struct InternalEnumerator_1_t3298338400 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3298338400, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3298338400, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3298338400_H #ifndef INTERNALENUMERATOR_1_T1752092551_H #define INTERNALENUMERATOR_1_T1752092551_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>> struct InternalEnumerator_1_t1752092551 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1752092551, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1752092551, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1752092551_H #ifndef INTERNALENUMERATOR_1_T3093759518_H #define INTERNALENUMERATOR_1_T3093759518_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>> struct InternalEnumerator_1_t3093759518 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3093759518, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3093759518, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3093759518_H #ifndef INTERNALENUMERATOR_1_T2839503183_H #define INTERNALENUMERATOR_1_T2839503183_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,System.Single>> struct InternalEnumerator_1_t2839503183 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2839503183, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2839503183, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2839503183_H #ifndef INTERNALENUMERATOR_1_T3260138252_H #define INTERNALENUMERATOR_1_T3260138252_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>> struct InternalEnumerator_1_t3260138252 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3260138252, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3260138252, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3260138252_H #ifndef INTERNALENUMERATOR_1_T3598465932_H #define INTERNALENUMERATOR_1_T3598465932_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>> struct InternalEnumerator_1_t3598465932 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3598465932, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3598465932, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3598465932_H #ifndef INTERNALENUMERATOR_1_T4192632058_H #define INTERNALENUMERATOR_1_T4192632058_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Vuforia.Image/PIXEL_FORMAT,System.Object>> struct InternalEnumerator_1_t4192632058 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4192632058, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4192632058, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4192632058_H #ifndef INTERNALENUMERATOR_1_T3813691726_H #define INTERNALENUMERATOR_1_T3813691726_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Vuforia.Image/PIXEL_FORMAT,UnityEngine.TextureFormat>> struct InternalEnumerator_1_t3813691726 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3813691726, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3813691726, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3813691726_H #ifndef INTERNALENUMERATOR_1_T529033167_H #define INTERNALENUMERATOR_1_T529033167_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>> struct InternalEnumerator_1_t529033167 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t529033167, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t529033167, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T529033167_H #ifndef INTERNALENUMERATOR_1_T658193578_H #define INTERNALENUMERATOR_1_T658193578_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>> struct InternalEnumerator_1_t658193578 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t658193578, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t658193578, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T658193578_H #ifndef INTERNALENUMERATOR_1_T3779669316_H #define INTERNALENUMERATOR_1_T3779669316_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>> struct InternalEnumerator_1_t3779669316 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3779669316, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3779669316, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3779669316_H #ifndef INTERNALENUMERATOR_1_T1777994403_H #define INTERNALENUMERATOR_1_T1777994403_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct InternalEnumerator_1_t1777994403 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1777994403, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1777994403, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1777994403_H #ifndef INTERNALENUMERATOR_1_T1138892685_H #define INTERNALENUMERATOR_1_T1138892685_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>> struct InternalEnumerator_1_t1138892685 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1138892685, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1138892685, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1138892685_H #ifndef INTERNALENUMERATOR_1_T2290737580_H #define INTERNALENUMERATOR_1_T2290737580_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>> struct InternalEnumerator_1_t2290737580 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2290737580, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2290737580, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2290737580_H #ifndef INTERNALENUMERATOR_1_T1532942789_H #define INTERNALENUMERATOR_1_T1532942789_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>> struct InternalEnumerator_1_t1532942789 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1532942789, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1532942789, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1532942789_H #ifndef INTERNALENUMERATOR_1_T849428072_H #define INTERNALENUMERATOR_1_T849428072_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>> struct InternalEnumerator_1_t849428072 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t849428072, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t849428072, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T849428072_H #ifndef INTERNALENUMERATOR_1_T1635049623_H #define INTERNALENUMERATOR_1_T1635049623_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>> struct InternalEnumerator_1_t1635049623 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1635049623, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1635049623, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1635049623_H #ifndef INTERNALENUMERATOR_1_T978588483_H #define INTERNALENUMERATOR_1_T978588483_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>> struct InternalEnumerator_1_t978588483 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t978588483, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t978588483, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T978588483_H #ifndef INTERNALENUMERATOR_1_T3294355429_H #define INTERNALENUMERATOR_1_T3294355429_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackableBehaviour/Status>> struct InternalEnumerator_1_t3294355429 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3294355429, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3294355429, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3294355429_H #ifndef INTERNALENUMERATOR_1_T3311403363_H #define INTERNALENUMERATOR_1_T3311403363_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>> struct InternalEnumerator_1_t3311403363 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3311403363, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3311403363, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3311403363_H #ifndef INTERNALENUMERATOR_1_T3152514936_H #define INTERNALENUMERATOR_1_T3152514936_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>> struct InternalEnumerator_1_t3152514936 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3152514936, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3152514936, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3152514936_H #ifndef INTERNALENUMERATOR_1_T3162426739_H #define INTERNALENUMERATOR_1_T3162426739_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>> struct InternalEnumerator_1_t3162426739 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3162426739, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3162426739, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3162426739_H #ifndef INTERNALENUMERATOR_1_T454463237_H #define INTERNALENUMERATOR_1_T454463237_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>> struct InternalEnumerator_1_t454463237 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t454463237, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t454463237, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T454463237_H #ifndef INTERNALENUMERATOR_1_T3308121025_H #define INTERNALENUMERATOR_1_T3308121025_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>> struct InternalEnumerator_1_t3308121025 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3308121025, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3308121025, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3308121025_H #ifndef INTERNALENUMERATOR_1_T3437281436_H #define INTERNALENUMERATOR_1_T3437281436_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> struct InternalEnumerator_1_t3437281436 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3437281436, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3437281436, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3437281436_H #ifndef INTERNALENUMERATOR_1_T4081146079_H #define INTERNALENUMERATOR_1_T4081146079_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>> struct InternalEnumerator_1_t4081146079 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4081146079, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4081146079, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4081146079_H #ifndef INTERNALENUMERATOR_1_T2534900230_H #define INTERNALENUMERATOR_1_T2534900230_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>> struct InternalEnumerator_1_t2534900230 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2534900230, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2534900230, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2534900230_H #ifndef INTERNALENUMERATOR_1_T3876567197_H #define INTERNALENUMERATOR_1_T3876567197_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>> struct InternalEnumerator_1_t3876567197 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3876567197, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3876567197, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3876567197_H #ifndef INTERNALENUMERATOR_1_T3622310862_H #define INTERNALENUMERATOR_1_T3622310862_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,System.Single>> struct InternalEnumerator_1_t3622310862 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3622310862, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3622310862, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3622310862_H #ifndef INTERNALENUMERATOR_1_T4042945931_H #define INTERNALENUMERATOR_1_T4042945931_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>> struct InternalEnumerator_1_t4042945931 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4042945931, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4042945931, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4042945931_H #ifndef INTERNALENUMERATOR_1_T86306315_H #define INTERNALENUMERATOR_1_T86306315_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>> struct InternalEnumerator_1_t86306315 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t86306315, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t86306315, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T86306315_H #ifndef INTERNALENUMERATOR_1_T680472441_H #define INTERNALENUMERATOR_1_T680472441_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Vuforia.Image/PIXEL_FORMAT,System.Object>> struct InternalEnumerator_1_t680472441 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t680472441, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t680472441, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T680472441_H #ifndef INTERNALENUMERATOR_1_T301532109_H #define INTERNALENUMERATOR_1_T301532109_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Vuforia.Image/PIXEL_FORMAT,UnityEngine.TextureFormat>> struct InternalEnumerator_1_t301532109 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t301532109, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t301532109, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T301532109_H #ifndef INTERNALENUMERATOR_1_T1665195821_H #define INTERNALENUMERATOR_1_T1665195821_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Collections.Hashtable/bucket> struct InternalEnumerator_1_t1665195821 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1665195821, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1665195821, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1665195821_H #ifndef INTERNALENUMERATOR_1_T1908074980_H #define INTERNALENUMERATOR_1_T1908074980_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.ComponentModel.AttributeCollection/AttributeEntry> struct InternalEnumerator_1_t1908074980 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1908074980, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1908074980, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1908074980_H #ifndef INTERNALENUMERATOR_1_T350626606_H #define INTERNALENUMERATOR_1_T350626606_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.DateTime> struct InternalEnumerator_1_t350626606 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t350626606, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t350626606, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T350626606_H #ifndef INTERNALENUMERATOR_1_T4136351624_H #define INTERNALENUMERATOR_1_T4136351624_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.DateTimeOffset> struct InternalEnumerator_1_t4136351624 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4136351624, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4136351624, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4136351624_H #ifndef INTERNALENUMERATOR_1_T3139334487_H #define INTERNALENUMERATOR_1_T3139334487_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.DateTimeParse/DS> struct InternalEnumerator_1_t3139334487 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3139334487, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3139334487, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3139334487_H #ifndef INTERNALENUMERATOR_1_T3855323497_H #define INTERNALENUMERATOR_1_T3855323497_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Decimal> struct InternalEnumerator_1_t3855323497 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3855323497, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3855323497, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3855323497_H #ifndef INTERNALENUMERATOR_1_T1501729480_H #define INTERNALENUMERATOR_1_T1501729480_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Double> struct InternalEnumerator_1_t1501729480 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1501729480, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1501729480, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1501729480_H #ifndef INTERNALENUMERATOR_1_T4246837133_H #define INTERNALENUMERATOR_1_T4246837133_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Globalization.HebrewNumber/HS> struct InternalEnumerator_1_t4246837133 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4246837133, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4246837133, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4246837133_H #ifndef INTERNALENUMERATOR_1_T3482597050_H #define INTERNALENUMERATOR_1_T3482597050_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Globalization.InternalCodePageDataItem> struct InternalEnumerator_1_t3482597050 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3482597050, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3482597050, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3482597050_H #ifndef INTERNALENUMERATOR_1_T4065923934_H #define INTERNALENUMERATOR_1_T4065923934_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Globalization.InternalEncodingDataItem> struct InternalEnumerator_1_t4065923934 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4065923934, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4065923934, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4065923934_H #ifndef INTERNALENUMERATOR_1_T1900411491_H #define INTERNALENUMERATOR_1_T1900411491_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Globalization.TimeSpanParse/TimeSpanToken> struct InternalEnumerator_1_t1900411491 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1900411491, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1900411491, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1900411491_H #ifndef INTERNALENUMERATOR_1_T4100597004_H #define INTERNALENUMERATOR_1_T4100597004_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Guid> struct InternalEnumerator_1_t4100597004 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4100597004, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4100597004, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4100597004_H #ifndef INTERNALENUMERATOR_1_T3459884504_H #define INTERNALENUMERATOR_1_T3459884504_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Int16> struct InternalEnumerator_1_t3459884504 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3459884504, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3459884504, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3459884504_H #ifndef INTERNALENUMERATOR_1_T3858009870_H #define INTERNALENUMERATOR_1_T3858009870_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Int32> struct InternalEnumerator_1_t3858009870 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3858009870, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3858009870, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3858009870_H #ifndef INTERNALENUMERATOR_1_T348664125_H #define INTERNALENUMERATOR_1_T348664125_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Int64> struct InternalEnumerator_1_t348664125 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t348664125, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t348664125, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T348664125_H #ifndef INTERNALENUMERATOR_1_T1747214298_H #define INTERNALENUMERATOR_1_T1747214298_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.IntPtr> struct InternalEnumerator_1_t1747214298 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1747214298, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1747214298, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1747214298_H #ifndef INTERNALENUMERATOR_1_T1539138337_H #define INTERNALENUMERATOR_1_T1539138337_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Net.CookieTokenizer/RecognizedAttribute> struct InternalEnumerator_1_t1539138337 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1539138337, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1539138337, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1539138337_H #ifndef INTERNALENUMERATOR_1_T2842749718_H #define INTERNALENUMERATOR_1_T2842749718_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Net.HeaderVariantInfo> struct InternalEnumerator_1_t2842749718 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2842749718, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2842749718, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2842749718_H #ifndef INTERNALENUMERATOR_1_T75623149_H #define INTERNALENUMERATOR_1_T75623149_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES> struct InternalEnumerator_1_t75623149 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t75623149, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t75623149, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T75623149_H #ifndef INTERNALENUMERATOR_1_T2905123507_H #define INTERNALENUMERATOR_1_T2905123507_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Net.Sockets.Socket/WSABUF> struct InternalEnumerator_1_t2905123507 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2905123507, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2905123507, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2905123507_H #ifndef INTERNALENUMERATOR_1_T3812474047_H #define INTERNALENUMERATOR_1_T3812474047_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Net.WebHeaderCollection/RfcChar> struct InternalEnumerator_1_t3812474047 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3812474047, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3812474047, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3812474047_H #ifndef INTERNALENUMERATOR_1_T3987170281_H #define INTERNALENUMERATOR_1_T3987170281_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Object> struct InternalEnumerator_1_t3987170281 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3987170281, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3987170281, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3987170281_H #ifndef INTERNALENUMERATOR_1_T806570903_H #define INTERNALENUMERATOR_1_T806570903_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.ParameterizedStrings/FormatParam> struct InternalEnumerator_1_t806570903 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t806570903, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t806570903, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T806570903_H #ifndef INTERNALENUMERATOR_1_T1194929827_H #define INTERNALENUMERATOR_1_T1194929827_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument> struct InternalEnumerator_1_t1194929827 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1194929827, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1194929827, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1194929827_H #ifndef INTERNALENUMERATOR_1_T3630214274_H #define INTERNALENUMERATOR_1_T3630214274_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument> struct InternalEnumerator_1_t3630214274 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3630214274, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3630214274, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3630214274_H #ifndef INTERNALENUMERATOR_1_T573971787_H #define INTERNALENUMERATOR_1_T573971787_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.Emit.ILExceptionBlock> struct InternalEnumerator_1_t573971787 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t573971787, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t573971787, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T573971787_H #ifndef INTERNALENUMERATOR_1_T1144920127_H #define INTERNALENUMERATOR_1_T1144920127_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.Emit.ILExceptionInfo> struct InternalEnumerator_1_t1144920127 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1144920127, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1144920127, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1144920127_H #ifndef INTERNALENUMERATOR_1_T1267231508_H #define INTERNALENUMERATOR_1_T1267231508_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData> struct InternalEnumerator_1_t1267231508 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1267231508, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1267231508, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1267231508_H #ifndef INTERNALENUMERATOR_1_T1765566171_H #define INTERNALENUMERATOR_1_T1765566171_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup> struct InternalEnumerator_1_t1765566171 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1765566171, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1765566171, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1765566171_H #ifndef INTERNALENUMERATOR_1_T3232839231_H #define INTERNALENUMERATOR_1_T3232839231_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo> struct InternalEnumerator_1_t3232839231 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3232839231, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3232839231, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3232839231_H #ifndef INTERNALENUMERATOR_1_T3188725760_H #define INTERNALENUMERATOR_1_T3188725760_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.Emit.Label> struct InternalEnumerator_1_t3188725760 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3188725760, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3188725760, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3188725760_H #ifndef INTERNALENUMERATOR_1_T715526830_H #define INTERNALENUMERATOR_1_T715526830_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource> struct InternalEnumerator_1_t715526830 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t715526830, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t715526830, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T715526830_H #ifndef INTERNALENUMERATOR_1_T2811293600_H #define INTERNALENUMERATOR_1_T2811293600_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoWin32Resource> struct InternalEnumerator_1_t2811293600 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2811293600, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2811293600, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2811293600_H #ifndef INTERNALENUMERATOR_1_T1391455104_H #define INTERNALENUMERATOR_1_T1391455104_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet> struct InternalEnumerator_1_t1391455104 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1391455104, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1391455104, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1391455104_H #ifndef INTERNALENUMERATOR_1_T2368758583_H #define INTERNALENUMERATOR_1_T2368758583_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier> struct InternalEnumerator_1_t2368758583 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2368758583, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2368758583, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2368758583_H #ifndef INTERNALENUMERATOR_1_T336067628_H #define INTERNALENUMERATOR_1_T336067628_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Resources.ResourceLocator> struct InternalEnumerator_1_t336067628 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t336067628, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t336067628, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T336067628_H #ifndef INTERNALENUMERATOR_1_T2509660479_H #define INTERNALENUMERATOR_1_T2509660479_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron> struct InternalEnumerator_1_t2509660479 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2509660479, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2509660479, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2509660479_H #ifndef INTERNALENUMERATOR_1_T4258502304_H #define INTERNALENUMERATOR_1_T4258502304_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Runtime.InteropServices.GCHandle> struct InternalEnumerator_1_t4258502304 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4258502304, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4258502304, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4258502304_H #ifndef INTERNALENUMERATOR_1_T97533275_H #define INTERNALENUMERATOR_1_T97533275_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.BinaryTypeEnum> struct InternalEnumerator_1_t97533275 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t97533275, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t97533275, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T97533275_H #ifndef INTERNALENUMERATOR_1_T705145798_H #define INTERNALENUMERATOR_1_T705145798_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.InternalPrimitiveTypeE> struct InternalEnumerator_1_t705145798 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t705145798, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t705145798, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T705145798_H #ifndef INTERNALENUMERATOR_1_T2576641779_H #define INTERNALENUMERATOR_1_T2576641779_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.SByte> struct InternalEnumerator_1_t2576641779 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2576641779, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2576641779, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2576641779_H #ifndef INTERNALENUMERATOR_1_T1040666831_H #define INTERNALENUMERATOR_1_T1040666831_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus> struct InternalEnumerator_1_t1040666831 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1040666831, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1040666831, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1040666831_H #ifndef INTERNALENUMERATOR_1_T2304330891_H #define INTERNALENUMERATOR_1_T2304330891_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Single> struct InternalEnumerator_1_t2304330891 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2304330891, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2304330891, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2304330891_H #ifndef INTERNALENUMERATOR_1_T1197344072_H #define INTERNALENUMERATOR_1_T1197344072_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.TermInfoStrings> struct InternalEnumerator_1_t1197344072 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1197344072, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1197344072, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1197344072_H #ifndef INTERNALENUMERATOR_1_T3817381692_H #define INTERNALENUMERATOR_1_T3817381692_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping> struct InternalEnumerator_1_t3817381692 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3817381692, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3817381692, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3817381692_H #ifndef INTERNALENUMERATOR_1_T999909712_H #define INTERNALENUMERATOR_1_T999909712_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexOptions> struct InternalEnumerator_1_t999909712 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t999909712, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t999909712, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T999909712_H #ifndef INTERNALENUMERATOR_1_T3720489021_H #define INTERNALENUMERATOR_1_T3720489021_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Threading.CancellationTokenRegistration> struct InternalEnumerator_1_t3720489021 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3720489021, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3720489021, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3720489021_H #ifndef INTERNALENUMERATOR_1_T1788223366_H #define INTERNALENUMERATOR_1_T1788223366_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.TimeSpan> struct InternalEnumerator_1_t1788223366 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1788223366, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1788223366, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1788223366_H #ifndef INTERNALENUMERATOR_1_T3894288204_H #define INTERNALENUMERATOR_1_T3894288204_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.TypeCode> struct InternalEnumerator_1_t3894288204 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3894288204, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3894288204, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3894288204_H #ifndef INTERNALENUMERATOR_1_T3084789075_H #define INTERNALENUMERATOR_1_T3084789075_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.UInt16> struct InternalEnumerator_1_t3084789075 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3084789075, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3084789075, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3084789075_H #ifndef INTERNALENUMERATOR_1_T3467126095_H #define INTERNALENUMERATOR_1_T3467126095_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.UInt32> struct InternalEnumerator_1_t3467126095 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3467126095, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3467126095, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3467126095_H #ifndef INTERNALENUMERATOR_1_T746136913_H #define INTERNALENUMERATOR_1_T746136913_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.UInt64> struct InternalEnumerator_1_t746136913 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t746136913, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t746136913, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T746136913_H #ifndef INTERNALENUMERATOR_1_T2238108544_H #define INTERNALENUMERATOR_1_T2238108544_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map> struct InternalEnumerator_1_t2238108544 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2238108544, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2238108544, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2238108544_H #ifndef INTERNALENUMERATOR_1_T1497033053_H #define INTERNALENUMERATOR_1_T1497033053_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Xml.Schema.RangePositionInfo> struct InternalEnumerator_1_t1497033053 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1497033053, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1497033053, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1497033053_H #ifndef INTERNALENUMERATOR_1_T2961444816_H #define INTERNALENUMERATOR_1_T2961444816_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Xml.Schema.SequenceNode/SequenceConstructPosContext> struct InternalEnumerator_1_t2961444816 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2961444816, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2961444816, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2961444816_H #ifndef INTERNALENUMERATOR_1_T4251741088_H #define INTERNALENUMERATOR_1_T4251741088_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry> struct InternalEnumerator_1_t4251741088 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4251741088, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4251741088, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4251741088_H #ifndef INTERNALENUMERATOR_1_T3530687067_H #define INTERNALENUMERATOR_1_T3530687067_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Xml.Schema.XmlTypeCode> struct InternalEnumerator_1_t3530687067 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3530687067, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3530687067, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3530687067_H #ifndef INTERNALENUMERATOR_1_T2797522318_H #define INTERNALENUMERATOR_1_T2797522318_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Xml.Schema.XsdBuilder/State> struct InternalEnumerator_1_t2797522318 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2797522318, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2797522318, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2797522318_H #ifndef INTERNALENUMERATOR_1_T3736052605_H #define INTERNALENUMERATOR_1_T3736052605_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Xml.XPath.XPathResultType> struct InternalEnumerator_1_t3736052605 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3736052605, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3736052605, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3736052605_H #ifndef INTERNALENUMERATOR_1_T774706396_H #define INTERNALENUMERATOR_1_T774706396_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Xml.XmlNamespaceManager/NamespaceDeclaration> struct InternalEnumerator_1_t774706396 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t774706396, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t774706396, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T774706396_H #ifndef INTERNALENUMERATOR_1_T190180728_H #define INTERNALENUMERATOR_1_T190180728_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Xml.XmlNodeReaderNavigator/VirtualAttribute> struct InternalEnumerator_1_t190180728 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t190180728, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t190180728, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T190180728_H #ifndef INTERNALENUMERATOR_1_T2687399039_H #define INTERNALENUMERATOR_1_T2687399039_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Xml.XmlTextReaderImpl/ParsingState> struct InternalEnumerator_1_t2687399039 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2687399039, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2687399039, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2687399039_H #ifndef INTERNALENUMERATOR_1_T3125320633_H #define INTERNALENUMERATOR_1_T3125320633_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Xml.XmlTextWriter/Namespace> struct InternalEnumerator_1_t3125320633 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3125320633, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3125320633, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3125320633_H #ifndef INTERNALENUMERATOR_1_T2699603464_H #define INTERNALENUMERATOR_1_T2699603464_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Xml.XmlTextWriter/State> struct InternalEnumerator_1_t2699603464 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2699603464, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2699603464, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2699603464_H #ifndef INTERNALENUMERATOR_1_T138735238_H #define INTERNALENUMERATOR_1_T138735238_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<System.Xml.XmlTextWriter/TagInfo> struct InternalEnumerator_1_t138735238 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t138735238, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t138735238, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T138735238_H #ifndef INTERNALENUMERATOR_1_T2859408749_H #define INTERNALENUMERATOR_1_T2859408749_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<TMPro.MaterialReference> struct InternalEnumerator_1_t2859408749 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2859408749, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2859408749, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2859408749_H #ifndef INTERNALENUMERATOR_1_T3955461704_H #define INTERNALENUMERATOR_1_T3955461704_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData> struct InternalEnumerator_1_t3955461704 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3955461704, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3955461704, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3955461704_H #ifndef INTERNALENUMERATOR_1_T4092690914_H #define INTERNALENUMERATOR_1_T4092690914_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<TMPro.TMP_CharacterInfo> struct InternalEnumerator_1_t4092690914 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4092690914, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4092690914, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4092690914_H #ifndef INTERNALENUMERATOR_1_T1823365184_H #define INTERNALENUMERATOR_1_T1823365184_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<TMPro.TMP_FontWeights> struct InternalEnumerator_1_t1823365184 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1823365184, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1823365184, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1823365184_H #ifndef INTERNALENUMERATOR_1_T2036005402_H #define INTERNALENUMERATOR_1_T2036005402_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<TMPro.TMP_InputField/ContentType> struct InternalEnumerator_1_t2036005402 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2036005402, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2036005402, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2036005402_H #ifndef INTERNALENUMERATOR_1_T1986695753_H #define INTERNALENUMERATOR_1_T1986695753_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<TMPro.TMP_LineInfo> struct InternalEnumerator_1_t1986695753 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1986695753, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1986695753, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1986695753_H #ifndef INTERNALENUMERATOR_1_T1999147593_H #define INTERNALENUMERATOR_1_T1999147593_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<TMPro.TMP_LinkInfo> struct InternalEnumerator_1_t1999147593 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1999147593, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1999147593, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1999147593_H #ifndef INTERNALENUMERATOR_1_T3678811751_H #define INTERNALENUMERATOR_1_T3678811751_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<TMPro.TMP_MeshInfo> struct InternalEnumerator_1_t3678811751 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3678811751, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3678811751, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3678811751_H #ifndef INTERNALENUMERATOR_1_T3515494750_H #define INTERNALENUMERATOR_1_T3515494750_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<TMPro.TMP_PageInfo> struct InternalEnumerator_1_t3515494750 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3515494750, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3515494750, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3515494750_H #ifndef INTERNALENUMERATOR_1_T4238130420_H #define INTERNALENUMERATOR_1_T4238130420_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<TMPro.TMP_WordInfo> struct InternalEnumerator_1_t4238130420 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4238130420, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4238130420, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4238130420_H #ifndef INTERNALENUMERATOR_1_T648888057_H #define INTERNALENUMERATOR_1_T648888057_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<TMPro.TextAlignmentOptions> struct InternalEnumerator_1_t648888057 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t648888057, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t648888057, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T648888057_H #ifndef INTERNALENUMERATOR_1_T2081488426_H #define INTERNALENUMERATOR_1_T2081488426_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<TMPro.XML_TagAttribute> struct InternalEnumerator_1_t2081488426 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2081488426, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2081488426, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2081488426_H #ifndef INTERNALENUMERATOR_1_T2493041948_H #define INTERNALENUMERATOR_1_T2493041948_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock> struct InternalEnumerator_1_t2493041948 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2493041948, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2493041948, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2493041948_H #ifndef INTERNALENUMERATOR_1_T3145728153_H #define INTERNALENUMERATOR_1_T3145728153_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.Camera/StereoscopicEye> struct InternalEnumerator_1_t3145728153 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3145728153, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3145728153, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3145728153_H #ifndef INTERNALENUMERATOR_1_T3507565409_H #define INTERNALENUMERATOR_1_T3507565409_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.Color32> struct InternalEnumerator_1_t3507565409 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3507565409, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3507565409, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3507565409_H #ifndef INTERNALENUMERATOR_1_T3462750441_H #define INTERNALENUMERATOR_1_T3462750441_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.Color> struct InternalEnumerator_1_t3462750441 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3462750441, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3462750441, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3462750441_H #ifndef INTERNALENUMERATOR_1_T370852074_H #define INTERNALENUMERATOR_1_T370852074_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.ContactPoint> struct InternalEnumerator_1_t370852074 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t370852074, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t370852074, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T370852074_H #ifndef INTERNALENUMERATOR_1_T4267370966_H #define INTERNALENUMERATOR_1_T4267370966_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult> struct InternalEnumerator_1_t4267370966 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4267370966, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4267370966, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4267370966_H #ifndef INTERNALENUMERATOR_1_T1012836222_H #define INTERNALENUMERATOR_1_T1012836222_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem> struct InternalEnumerator_1_t1012836222 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1012836222, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1012836222, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1012836222_H #ifndef INTERNALENUMERATOR_1_T818507063_H #define INTERNALENUMERATOR_1_T818507063_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.Keyframe> struct InternalEnumerator_1_t818507063 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t818507063, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t818507063, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T818507063_H #ifndef INTERNALENUMERATOR_1_T2724965960_H #define INTERNALENUMERATOR_1_T2724965960_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.Matrix4x4> struct InternalEnumerator_1_t2724965960 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2724965960, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2724965960, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2724965960_H #ifndef INTERNALENUMERATOR_1_T1907557438_H #define INTERNALENUMERATOR_1_T1907557438_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.Plane> struct InternalEnumerator_1_t1907557438 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1907557438, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1907557438, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1907557438_H #ifndef INTERNALENUMERATOR_1_T1261324826_H #define INTERNALENUMERATOR_1_T1261324826_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding> struct InternalEnumerator_1_t1261324826 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1261324826, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1261324826, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1261324826_H #ifndef INTERNALENUMERATOR_1_T3186646106_H #define INTERNALENUMERATOR_1_T3186646106_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D> struct InternalEnumerator_1_t3186646106 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3186646106, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3186646106, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3186646106_H #ifndef INTERNALENUMERATOR_1_T1963066083_H #define INTERNALENUMERATOR_1_T1963066083_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.RaycastHit> struct InternalEnumerator_1_t1963066083 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1963066083, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1963066083, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1963066083_H #ifndef INTERNALENUMERATOR_1_T4136673857_H #define INTERNALENUMERATOR_1_T4136673857_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo> struct InternalEnumerator_1_t4136673857 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4136673857, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4136673857, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4136673857_H #ifndef INTERNALENUMERATOR_1_T1582286363_H #define INTERNALENUMERATOR_1_T1582286363_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData> struct InternalEnumerator_1_t1582286363 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1582286363, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1582286363, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1582286363_H #ifndef INTERNALENUMERATOR_1_T3032373948_H #define INTERNALENUMERATOR_1_T3032373948_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData> struct InternalEnumerator_1_t3032373948 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3032373948, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3032373948, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3032373948_H #ifndef INTERNALENUMERATOR_1_T3608229949_H #define INTERNALENUMERATOR_1_T3608229949_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.TextureFormat> struct InternalEnumerator_1_t3608229949 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3608229949, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3608229949, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3608229949_H #ifndef INTERNALENUMERATOR_1_T2828920985_H #define INTERNALENUMERATOR_1_T2828920985_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.Touch> struct InternalEnumerator_1_t2828920985 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2828920985, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2828920985, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2828920985_H #ifndef INTERNALENUMERATOR_1_T2437661819_H #define INTERNALENUMERATOR_1_T2437661819_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.TouchScreenKeyboardType> struct InternalEnumerator_1_t2437661819 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2437661819, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2437661819, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2437661819_H #ifndef INTERNALENUMERATOR_1_T29289820_H #define INTERNALENUMERATOR_1_T29289820_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.UI.AspectRatioFitter/AspectMode> struct InternalEnumerator_1_t29289820 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t29289820, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t29289820, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T29289820_H #ifndef INTERNALENUMERATOR_1_T3046095691_H #define INTERNALENUMERATOR_1_T3046095691_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.UI.ColorBlock> struct InternalEnumerator_1_t3046095691 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3046095691, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3046095691, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3046095691_H #ifndef INTERNALENUMERATOR_1_T4174945331_H #define INTERNALENUMERATOR_1_T4174945331_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.UI.ContentSizeFitter/FitMode> struct InternalEnumerator_1_t4174945331 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4174945331, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t4174945331, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T4174945331_H #ifndef INTERNALENUMERATOR_1_T2074521687_H #define INTERNALENUMERATOR_1_T2074521687_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.UI.Image/FillMethod> struct InternalEnumerator_1_t2074521687 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2074521687, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2074521687, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2074521687_H #ifndef INTERNALENUMERATOR_1_T2059945645_H #define INTERNALENUMERATOR_1_T2059945645_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.UI.Image/Type> struct InternalEnumerator_1_t2059945645 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2059945645, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2059945645, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2059945645_H #ifndef INTERNALENUMERATOR_1_T664011258_H #define INTERNALENUMERATOR_1_T664011258_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/CharacterValidation> struct InternalEnumerator_1_t664011258 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t664011258, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t664011258, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T664011258_H #ifndef INTERNALENUMERATOR_1_T2694367513_H #define INTERNALENUMERATOR_1_T2694367513_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType> struct InternalEnumerator_1_t2694367513 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2694367513, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2694367513, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2694367513_H #ifndef INTERNALENUMERATOR_1_T2677464796_H #define INTERNALENUMERATOR_1_T2677464796_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/InputType> struct InternalEnumerator_1_t2677464796 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2677464796, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2677464796, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2677464796_H #ifndef INTERNALENUMERATOR_1_T826745290_H #define INTERNALENUMERATOR_1_T826745290_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/LineType> struct InternalEnumerator_1_t826745290 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t826745290, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t826745290, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T826745290_H #ifndef INTERNALENUMERATOR_1_T3956380696_H #define INTERNALENUMERATOR_1_T3956380696_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.UI.Navigation> struct InternalEnumerator_1_t3956380696 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3956380696, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t3956380696, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T3956380696_H #ifndef INTERNALENUMERATOR_1_T82811174_H #define INTERNALENUMERATOR_1_T82811174_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.UI.Scrollbar/Direction> struct InternalEnumerator_1_t82811174 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t82811174, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t82811174, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T82811174_H #ifndef INTERNALENUMERATOR_1_T2676972748_H #define INTERNALENUMERATOR_1_T2676972748_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.UI.Selectable/Transition> struct InternalEnumerator_1_t2676972748 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2676972748, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t2676972748, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T2676972748_H #ifndef INTERNALENUMERATOR_1_T1244973352_H #define INTERNALENUMERATOR_1_T1244973352_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array/InternalEnumerator`1<UnityEngine.UI.Slider/Direction> struct InternalEnumerator_1_t1244973352 { public: // System.Array System.Array/InternalEnumerator`1::array RuntimeArray * ___array_0; // System.Int32 System.Array/InternalEnumerator`1::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1244973352, ___array_0)); } inline RuntimeArray * get_array_0() const { return ___array_0; } inline RuntimeArray ** get_address_of_array_0() { return &___array_0; } inline void set_array_0(RuntimeArray * value) { ___array_0 = value; Il2CppCodeGenWriteBarrier((&___array_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(InternalEnumerator_1_t1244973352, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALENUMERATOR_1_T1244973352_H #ifndef ARRAYSEGMENT_1_T283560987_H #define ARRAYSEGMENT_1_T283560987_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArraySegment`1<System.Byte> struct ArraySegment_1_t283560987 { public: // T[] System.ArraySegment`1::_array ByteU5BU5D_t4116647657* ____array_0; // System.Int32 System.ArraySegment`1::_offset int32_t ____offset_1; // System.Int32 System.ArraySegment`1::_count int32_t ____count_2; public: inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArraySegment_1_t283560987, ____array_0)); } inline ByteU5BU5D_t4116647657* get__array_0() const { return ____array_0; } inline ByteU5BU5D_t4116647657** get_address_of__array_0() { return &____array_0; } inline void set__array_0(ByteU5BU5D_t4116647657* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((&____array_0), value); } inline static int32_t get_offset_of__offset_1() { return static_cast<int32_t>(offsetof(ArraySegment_1_t283560987, ____offset_1)); } inline int32_t get__offset_1() const { return ____offset_1; } inline int32_t* get_address_of__offset_1() { return &____offset_1; } inline void set__offset_1(int32_t value) { ____offset_1 = value; } inline static int32_t get_offset_of__count_2() { return static_cast<int32_t>(offsetof(ArraySegment_1_t283560987, ____count_2)); } inline int32_t get__count_2() const { return ____count_2; } inline int32_t* get_address_of__count_2() { return &____count_2; } inline void set__count_2(int32_t value) { ____count_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARRAYSEGMENT_1_T283560987_H #ifndef BOOLEAN_T97287965_H #define BOOLEAN_T97287965_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean struct Boolean_t97287965 { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t97287965, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_t97287965_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((&___TrueString_5), value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((&___FalseString_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BOOLEAN_T97287965_H #ifndef BYTE_T1134296376_H #define BYTE_T1134296376_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Byte struct Byte_t1134296376 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_t1134296376, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BYTE_T1134296376_H #ifndef CHAR_T3634460470_H #define CHAR_T3634460470_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Char struct Char_t3634460470 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_t3634460470, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; struct Char_t3634460470_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_t4116647657* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_t4116647657* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_t4116647657** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_t4116647657* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((&___categoryForLatin1_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CHAR_T3634460470_H #ifndef DICTIONARYENTRY_T3123975638_H #define DICTIONARYENTRY_T3123975638_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.DictionaryEntry struct DictionaryEntry_t3123975638 { public: // System.Object System.Collections.DictionaryEntry::_key RuntimeObject * ____key_0; // System.Object System.Collections.DictionaryEntry::_value RuntimeObject * ____value_1; public: inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_t3123975638, ____key_0)); } inline RuntimeObject * get__key_0() const { return ____key_0; } inline RuntimeObject ** get_address_of__key_0() { return &____key_0; } inline void set__key_0(RuntimeObject * value) { ____key_0 = value; Il2CppCodeGenWriteBarrier((&____key_0), value); } inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_t3123975638, ____value_1)); } inline RuntimeObject * get__value_1() const { return ____value_1; } inline RuntimeObject ** get_address_of__value_1() { return &____value_1; } inline void set__value_1(RuntimeObject * value) { ____value_1 = value; Il2CppCodeGenWriteBarrier((&____value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_t3123975638_marshaled_pinvoke { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // Native definition for COM marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_t3123975638_marshaled_com { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; #endif // DICTIONARYENTRY_T3123975638_H #ifndef ENTRY_T600865784_H #define ENTRY_T600865784_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean> struct Entry_t600865784 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value bool ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t600865784, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t600865784, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t600865784, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t600865784, ___value_3)); } inline bool get_value_3() const { return ___value_3; } inline bool* get_address_of_value_3() { return &___value_3; } inline void set_value_3(bool value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T600865784_H #ifndef ENTRY_T4138038289_H #define ENTRY_T4138038289_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char> struct Entry_t4138038289 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value Il2CppChar ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t4138038289, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t4138038289, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t4138038289, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t4138038289, ___value_3)); } inline Il2CppChar get_value_3() const { return ___value_3; } inline Il2CppChar* get_address_of_value_3() { return &___value_3; } inline void set_value_3(Il2CppChar value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T4138038289_H #ifndef ENTRY_T3454523572_H #define ENTRY_T3454523572_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32> struct Entry_t3454523572 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t3454523572, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t3454523572, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t3454523572, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t3454523572, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T3454523572_H #ifndef ENTRY_T4240145123_H #define ENTRY_T4240145123_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64> struct Entry_t4240145123 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value int64_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t4240145123, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t4240145123, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t4240145123, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t4240145123, ___value_3)); } inline int64_t get_value_3() const { return ___value_3; } inline int64_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int64_t value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T4240145123_H #ifndef ENTRY_T3583683983_H #define ENTRY_T3583683983_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object> struct Entry_t3583683983 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t3583683983, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t3583683983, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t3583683983, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t3583683983, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((&___value_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T3583683983_H #ifndef ENTRY_T1462643140_H #define ENTRY_T1462643140_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object> struct Entry_t1462643140 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int64_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t1462643140, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t1462643140, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t1462643140, ___key_2)); } inline int64_t get_key_2() const { return ___key_2; } inline int64_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int64_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t1462643140, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((&___value_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T1462643140_H #ifndef ENTRY_T3059558737_H #define ENTRY_T3059558737_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean> struct Entry_t3059558737 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value bool ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t3059558737, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t3059558737, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t3059558737, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((&___key_2), value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t3059558737, ___value_3)); } inline bool get_value_3() const { return ___value_3; } inline bool* get_address_of_value_3() { return &___value_3; } inline void set_value_3(bool value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T3059558737_H #ifndef ENTRY_T1618249229_H #define ENTRY_T1618249229_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32> struct Entry_t1618249229 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t1618249229, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t1618249229, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t1618249229, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((&___key_2), value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t1618249229, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T1618249229_H #ifndef ENTRY_T1747409640_H #define ENTRY_T1747409640_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object> struct Entry_t1747409640 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t1747409640, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t1747409640, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t1747409640, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((&___key_2), value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t1747409640, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((&___value_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T1747409640_H #ifndef ENTRY_T845028434_H #define ENTRY_T845028434_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16> struct Entry_t845028434 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value uint16_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t845028434, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t845028434, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t845028434, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((&___key_2), value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t845028434, ___value_3)); } inline uint16_t get_value_3() const { return ___value_3; } inline uint16_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(uint16_t value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T845028434_H #ifndef SLOT_T3916936346_H #define SLOT_T3916936346_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.HashSet`1/Slot<System.Int32> struct Slot_t3916936346 { public: // System.Int32 System.Collections.Generic.HashSet`1/Slot::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.HashSet`1/Slot::next int32_t ___next_1; // T System.Collections.Generic.HashSet`1/Slot::value int32_t ___value_2; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_t3916936346, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Slot_t3916936346, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_value_2() { return static_cast<int32_t>(offsetof(Slot_t3916936346, ___value_2)); } inline int32_t get_value_2() const { return ___value_2; } inline int32_t* get_address_of_value_2() { return &___value_2; } inline void set_value_2(int32_t value) { ___value_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SLOT_T3916936346_H #ifndef SLOT_T4046096757_H #define SLOT_T4046096757_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.HashSet`1/Slot<System.Object> struct Slot_t4046096757 { public: // System.Int32 System.Collections.Generic.HashSet`1/Slot::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.HashSet`1/Slot::next int32_t ___next_1; // T System.Collections.Generic.HashSet`1/Slot::value RuntimeObject * ___value_2; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_t4046096757, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Slot_t4046096757, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_value_2() { return static_cast<int32_t>(offsetof(Slot_t4046096757, ___value_2)); } inline RuntimeObject * get_value_2() const { return ___value_2; } inline RuntimeObject ** get_address_of_value_2() { return &___value_2; } inline void set_value_2(RuntimeObject * value) { ___value_2 = value; Il2CppCodeGenWriteBarrier((&___value_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SLOT_T4046096757_H #ifndef KEYVALUEPAIR_2_T1383673463_H #define KEYVALUEPAIR_2_T1383673463_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean> struct KeyValuePair_2_t1383673463 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value bool ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1383673463, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1383673463, ___value_1)); } inline bool get_value_1() const { return ___value_1; } inline bool* get_address_of_value_1() { return &___value_1; } inline void set_value_1(bool value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T1383673463_H #ifndef KEYVALUEPAIR_2_T625878672_H #define KEYVALUEPAIR_2_T625878672_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char> struct KeyValuePair_2_t625878672 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value Il2CppChar ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t625878672, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t625878672, ___value_1)); } inline Il2CppChar get_value_1() const { return ___value_1; } inline Il2CppChar* get_address_of_value_1() { return &___value_1; } inline void set_value_1(Il2CppChar value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T625878672_H #ifndef KEYVALUEPAIR_2_T4237331251_H #define KEYVALUEPAIR_2_T4237331251_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32> struct KeyValuePair_2_t4237331251 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t4237331251, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t4237331251, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T4237331251_H #ifndef KEYVALUEPAIR_2_T727985506_H #define KEYVALUEPAIR_2_T727985506_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64> struct KeyValuePair_2_t727985506 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int64_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t727985506, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t727985506, ___value_1)); } inline int64_t get_value_1() const { return ___value_1; } inline int64_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int64_t value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T727985506_H #ifndef KEYVALUEPAIR_2_T71524366_H #define KEYVALUEPAIR_2_T71524366_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object> struct KeyValuePair_2_t71524366 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t71524366, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t71524366, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T71524366_H #ifndef KEYVALUEPAIR_2_T2245450819_H #define KEYVALUEPAIR_2_T2245450819_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object> struct KeyValuePair_2_t2245450819 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int64_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2245450819, ___key_0)); } inline int64_t get_key_0() const { return ___key_0; } inline int64_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int64_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2245450819, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T2245450819_H #ifndef KEYVALUEPAIR_2_T3842366416_H #define KEYVALUEPAIR_2_T3842366416_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean> struct KeyValuePair_2_t3842366416 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value bool ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3842366416, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3842366416, ___value_1)); } inline bool get_value_1() const { return ___value_1; } inline bool* get_address_of_value_1() { return &___value_1; } inline void set_value_1(bool value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T3842366416_H #ifndef KEYVALUEPAIR_2_T2401056908_H #define KEYVALUEPAIR_2_T2401056908_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32> struct KeyValuePair_2_t2401056908 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2401056908, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2401056908, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T2401056908_H #ifndef KEYVALUEPAIR_2_T2530217319_H #define KEYVALUEPAIR_2_T2530217319_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object> struct KeyValuePair_2_t2530217319 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2530217319, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2530217319, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T2530217319_H #ifndef KEYVALUEPAIR_2_T1627836113_H #define KEYVALUEPAIR_2_T1627836113_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16> struct KeyValuePair_2_t1627836113 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value uint16_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1627836113, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1627836113, ___value_1)); } inline uint16_t get_value_1() const { return ___value_1; } inline uint16_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(uint16_t value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T1627836113_H #ifndef ENUMERATOR_T2146457487_H #define ENUMERATOR_T2146457487_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<System.Object> struct Enumerator_t2146457487 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t257213610 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current RuntimeObject * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2146457487, ___list_0)); } inline List_1_t257213610 * get_list_0() const { return ___list_0; } inline List_1_t257213610 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t257213610 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2146457487, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2146457487, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2146457487, ___current_3)); } inline RuntimeObject * get_current_3() const { return ___current_3; } inline RuntimeObject ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(RuntimeObject * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((&___current_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T2146457487_H #ifndef BUCKET_T758131704_H #define BUCKET_T758131704_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Hashtable/bucket struct bucket_t758131704 { public: // System.Object System.Collections.Hashtable/bucket::key RuntimeObject * ___key_0; // System.Object System.Collections.Hashtable/bucket::val RuntimeObject * ___val_1; // System.Int32 System.Collections.Hashtable/bucket::hash_coll int32_t ___hash_coll_2; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(bucket_t758131704, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_val_1() { return static_cast<int32_t>(offsetof(bucket_t758131704, ___val_1)); } inline RuntimeObject * get_val_1() const { return ___val_1; } inline RuntimeObject ** get_address_of_val_1() { return &___val_1; } inline void set_val_1(RuntimeObject * value) { ___val_1 = value; Il2CppCodeGenWriteBarrier((&___val_1), value); } inline static int32_t get_offset_of_hash_coll_2() { return static_cast<int32_t>(offsetof(bucket_t758131704, ___hash_coll_2)); } inline int32_t get_hash_coll_2() const { return ___hash_coll_2; } inline int32_t* get_address_of_hash_coll_2() { return &___hash_coll_2; } inline void set_hash_coll_2(int32_t value) { ___hash_coll_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Collections.Hashtable/bucket struct bucket_t758131704_marshaled_pinvoke { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___val_1; int32_t ___hash_coll_2; }; // Native definition for COM marshalling of System.Collections.Hashtable/bucket struct bucket_t758131704_marshaled_com { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___val_1; int32_t ___hash_coll_2; }; #endif // BUCKET_T758131704_H #ifndef ATTRIBUTEENTRY_T1001010863_H #define ATTRIBUTEENTRY_T1001010863_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.AttributeCollection/AttributeEntry struct AttributeEntry_t1001010863 { public: // System.Type System.ComponentModel.AttributeCollection/AttributeEntry::type Type_t * ___type_0; // System.Int32 System.ComponentModel.AttributeCollection/AttributeEntry::index int32_t ___index_1; public: inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(AttributeEntry_t1001010863, ___type_0)); } inline Type_t * get_type_0() const { return ___type_0; } inline Type_t ** get_address_of_type_0() { return &___type_0; } inline void set_type_0(Type_t * value) { ___type_0 = value; Il2CppCodeGenWriteBarrier((&___type_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(AttributeEntry_t1001010863, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.ComponentModel.AttributeCollection/AttributeEntry struct AttributeEntry_t1001010863_marshaled_pinvoke { Type_t * ___type_0; int32_t ___index_1; }; // Native definition for COM marshalling of System.ComponentModel.AttributeCollection/AttributeEntry struct AttributeEntry_t1001010863_marshaled_com { Type_t * ___type_0; int32_t ___index_1; }; #endif // ATTRIBUTEENTRY_T1001010863_H #ifndef DATETIME_T3738529785_H #define DATETIME_T3738529785_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTime struct DateTime_t3738529785 { public: // System.UInt64 System.DateTime::dateData uint64_t ___dateData_44; public: inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_t3738529785, ___dateData_44)); } inline uint64_t get_dateData_44() const { return ___dateData_44; } inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; } inline void set_dateData_44(uint64_t value) { ___dateData_44 = value; } }; struct DateTime_t3738529785_StaticFields { public: // System.Int32[] System.DateTime::DaysToMonth365 Int32U5BU5D_t385246372* ___DaysToMonth365_29; // System.Int32[] System.DateTime::DaysToMonth366 Int32U5BU5D_t385246372* ___DaysToMonth366_30; // System.DateTime System.DateTime::MinValue DateTime_t3738529785 ___MinValue_31; // System.DateTime System.DateTime::MaxValue DateTime_t3738529785 ___MaxValue_32; public: inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___DaysToMonth365_29)); } inline Int32U5BU5D_t385246372* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; } inline Int32U5BU5D_t385246372** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; } inline void set_DaysToMonth365_29(Int32U5BU5D_t385246372* value) { ___DaysToMonth365_29 = value; Il2CppCodeGenWriteBarrier((&___DaysToMonth365_29), value); } inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___DaysToMonth366_30)); } inline Int32U5BU5D_t385246372* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; } inline Int32U5BU5D_t385246372** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; } inline void set_DaysToMonth366_30(Int32U5BU5D_t385246372* value) { ___DaysToMonth366_30 = value; Il2CppCodeGenWriteBarrier((&___DaysToMonth366_30), value); } inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___MinValue_31)); } inline DateTime_t3738529785 get_MinValue_31() const { return ___MinValue_31; } inline DateTime_t3738529785 * get_address_of_MinValue_31() { return &___MinValue_31; } inline void set_MinValue_31(DateTime_t3738529785 value) { ___MinValue_31 = value; } inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___MaxValue_32)); } inline DateTime_t3738529785 get_MaxValue_32() const { return ___MaxValue_32; } inline DateTime_t3738529785 * get_address_of_MaxValue_32() { return &___MaxValue_32; } inline void set_MaxValue_32(DateTime_t3738529785 value) { ___MaxValue_32 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIME_T3738529785_H #ifndef DECIMAL_T2948259380_H #define DECIMAL_T2948259380_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Decimal struct Decimal_t2948259380 { public: // System.Int32 System.Decimal::flags int32_t ___flags_14; // System.Int32 System.Decimal::hi int32_t ___hi_15; // System.Int32 System.Decimal::lo int32_t ___lo_16; // System.Int32 System.Decimal::mid int32_t ___mid_17; public: inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___flags_14)); } inline int32_t get_flags_14() const { return ___flags_14; } inline int32_t* get_address_of_flags_14() { return &___flags_14; } inline void set_flags_14(int32_t value) { ___flags_14 = value; } inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___hi_15)); } inline int32_t get_hi_15() const { return ___hi_15; } inline int32_t* get_address_of_hi_15() { return &___hi_15; } inline void set_hi_15(int32_t value) { ___hi_15 = value; } inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___lo_16)); } inline int32_t get_lo_16() const { return ___lo_16; } inline int32_t* get_address_of_lo_16() { return &___lo_16; } inline void set_lo_16(int32_t value) { ___lo_16 = value; } inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___mid_17)); } inline int32_t get_mid_17() const { return ___mid_17; } inline int32_t* get_address_of_mid_17() { return &___mid_17; } inline void set_mid_17(int32_t value) { ___mid_17 = value; } }; struct Decimal_t2948259380_StaticFields { public: // System.UInt32[] System.Decimal::Powers10 UInt32U5BU5D_t2770800703* ___Powers10_6; // System.Decimal System.Decimal::Zero Decimal_t2948259380 ___Zero_7; // System.Decimal System.Decimal::One Decimal_t2948259380 ___One_8; // System.Decimal System.Decimal::MinusOne Decimal_t2948259380 ___MinusOne_9; // System.Decimal System.Decimal::MaxValue Decimal_t2948259380 ___MaxValue_10; // System.Decimal System.Decimal::MinValue Decimal_t2948259380 ___MinValue_11; // System.Decimal System.Decimal::NearNegativeZero Decimal_t2948259380 ___NearNegativeZero_12; // System.Decimal System.Decimal::NearPositiveZero Decimal_t2948259380 ___NearPositiveZero_13; public: inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___Powers10_6)); } inline UInt32U5BU5D_t2770800703* get_Powers10_6() const { return ___Powers10_6; } inline UInt32U5BU5D_t2770800703** get_address_of_Powers10_6() { return &___Powers10_6; } inline void set_Powers10_6(UInt32U5BU5D_t2770800703* value) { ___Powers10_6 = value; Il2CppCodeGenWriteBarrier((&___Powers10_6), value); } inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___Zero_7)); } inline Decimal_t2948259380 get_Zero_7() const { return ___Zero_7; } inline Decimal_t2948259380 * get_address_of_Zero_7() { return &___Zero_7; } inline void set_Zero_7(Decimal_t2948259380 value) { ___Zero_7 = value; } inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___One_8)); } inline Decimal_t2948259380 get_One_8() const { return ___One_8; } inline Decimal_t2948259380 * get_address_of_One_8() { return &___One_8; } inline void set_One_8(Decimal_t2948259380 value) { ___One_8 = value; } inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MinusOne_9)); } inline Decimal_t2948259380 get_MinusOne_9() const { return ___MinusOne_9; } inline Decimal_t2948259380 * get_address_of_MinusOne_9() { return &___MinusOne_9; } inline void set_MinusOne_9(Decimal_t2948259380 value) { ___MinusOne_9 = value; } inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MaxValue_10)); } inline Decimal_t2948259380 get_MaxValue_10() const { return ___MaxValue_10; } inline Decimal_t2948259380 * get_address_of_MaxValue_10() { return &___MaxValue_10; } inline void set_MaxValue_10(Decimal_t2948259380 value) { ___MaxValue_10 = value; } inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MinValue_11)); } inline Decimal_t2948259380 get_MinValue_11() const { return ___MinValue_11; } inline Decimal_t2948259380 * get_address_of_MinValue_11() { return &___MinValue_11; } inline void set_MinValue_11(Decimal_t2948259380 value) { ___MinValue_11 = value; } inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___NearNegativeZero_12)); } inline Decimal_t2948259380 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; } inline Decimal_t2948259380 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; } inline void set_NearNegativeZero_12(Decimal_t2948259380 value) { ___NearNegativeZero_12 = value; } inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___NearPositiveZero_13)); } inline Decimal_t2948259380 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; } inline Decimal_t2948259380 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; } inline void set_NearPositiveZero_13(Decimal_t2948259380 value) { ___NearPositiveZero_13 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DECIMAL_T2948259380_H #ifndef DOUBLE_T594665363_H #define DOUBLE_T594665363_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Double struct Double_t594665363 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t594665363, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; struct Double_t594665363_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t594665363_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DOUBLE_T594665363_H #ifndef ENUM_T4135868527_H #define ENUM_T4135868527_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Enum struct Enum_t4135868527 : public ValueType_t3640485471 { public: public: }; struct Enum_t4135868527_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t3528271667* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t4135868527_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t3528271667* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t3528271667** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t3528271667* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((&___enumSeperatorCharArray_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Enum struct Enum_t4135868527_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t4135868527_marshaled_com { }; #endif // ENUM_T4135868527_H #ifndef INTERNALCODEPAGEDATAITEM_T2575532933_H #define INTERNALCODEPAGEDATAITEM_T2575532933_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.InternalCodePageDataItem struct InternalCodePageDataItem_t2575532933 { public: // System.UInt16 System.Globalization.InternalCodePageDataItem::codePage uint16_t ___codePage_0; // System.UInt16 System.Globalization.InternalCodePageDataItem::uiFamilyCodePage uint16_t ___uiFamilyCodePage_1; // System.UInt32 System.Globalization.InternalCodePageDataItem::flags uint32_t ___flags_2; // System.String System.Globalization.InternalCodePageDataItem::Names String_t* ___Names_3; public: inline static int32_t get_offset_of_codePage_0() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t2575532933, ___codePage_0)); } inline uint16_t get_codePage_0() const { return ___codePage_0; } inline uint16_t* get_address_of_codePage_0() { return &___codePage_0; } inline void set_codePage_0(uint16_t value) { ___codePage_0 = value; } inline static int32_t get_offset_of_uiFamilyCodePage_1() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t2575532933, ___uiFamilyCodePage_1)); } inline uint16_t get_uiFamilyCodePage_1() const { return ___uiFamilyCodePage_1; } inline uint16_t* get_address_of_uiFamilyCodePage_1() { return &___uiFamilyCodePage_1; } inline void set_uiFamilyCodePage_1(uint16_t value) { ___uiFamilyCodePage_1 = value; } inline static int32_t get_offset_of_flags_2() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t2575532933, ___flags_2)); } inline uint32_t get_flags_2() const { return ___flags_2; } inline uint32_t* get_address_of_flags_2() { return &___flags_2; } inline void set_flags_2(uint32_t value) { ___flags_2 = value; } inline static int32_t get_offset_of_Names_3() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t2575532933, ___Names_3)); } inline String_t* get_Names_3() const { return ___Names_3; } inline String_t** get_address_of_Names_3() { return &___Names_3; } inline void set_Names_3(String_t* value) { ___Names_3 = value; Il2CppCodeGenWriteBarrier((&___Names_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Globalization.InternalCodePageDataItem struct InternalCodePageDataItem_t2575532933_marshaled_pinvoke { uint16_t ___codePage_0; uint16_t ___uiFamilyCodePage_1; uint32_t ___flags_2; char* ___Names_3; }; // Native definition for COM marshalling of System.Globalization.InternalCodePageDataItem struct InternalCodePageDataItem_t2575532933_marshaled_com { uint16_t ___codePage_0; uint16_t ___uiFamilyCodePage_1; uint32_t ___flags_2; Il2CppChar* ___Names_3; }; #endif // INTERNALCODEPAGEDATAITEM_T2575532933_H #ifndef INTERNALENCODINGDATAITEM_T3158859817_H #define INTERNALENCODINGDATAITEM_T3158859817_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.InternalEncodingDataItem struct InternalEncodingDataItem_t3158859817 { public: // System.String System.Globalization.InternalEncodingDataItem::webName String_t* ___webName_0; // System.UInt16 System.Globalization.InternalEncodingDataItem::codePage uint16_t ___codePage_1; public: inline static int32_t get_offset_of_webName_0() { return static_cast<int32_t>(offsetof(InternalEncodingDataItem_t3158859817, ___webName_0)); } inline String_t* get_webName_0() const { return ___webName_0; } inline String_t** get_address_of_webName_0() { return &___webName_0; } inline void set_webName_0(String_t* value) { ___webName_0 = value; Il2CppCodeGenWriteBarrier((&___webName_0), value); } inline static int32_t get_offset_of_codePage_1() { return static_cast<int32_t>(offsetof(InternalEncodingDataItem_t3158859817, ___codePage_1)); } inline uint16_t get_codePage_1() const { return ___codePage_1; } inline uint16_t* get_address_of_codePage_1() { return &___codePage_1; } inline void set_codePage_1(uint16_t value) { ___codePage_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Globalization.InternalEncodingDataItem struct InternalEncodingDataItem_t3158859817_marshaled_pinvoke { char* ___webName_0; uint16_t ___codePage_1; }; // Native definition for COM marshalling of System.Globalization.InternalEncodingDataItem struct InternalEncodingDataItem_t3158859817_marshaled_com { Il2CppChar* ___webName_0; uint16_t ___codePage_1; }; #endif // INTERNALENCODINGDATAITEM_T3158859817_H #ifndef GUID_T_H #define GUID_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Guid struct Guid_t { public: // System.Int32 System.Guid::_a int32_t ____a_1; // System.Int16 System.Guid::_b int16_t ____b_2; // System.Int16 System.Guid::_c int16_t ____c_3; // System.Byte System.Guid::_d uint8_t ____d_4; // System.Byte System.Guid::_e uint8_t ____e_5; // System.Byte System.Guid::_f uint8_t ____f_6; // System.Byte System.Guid::_g uint8_t ____g_7; // System.Byte System.Guid::_h uint8_t ____h_8; // System.Byte System.Guid::_i uint8_t ____i_9; // System.Byte System.Guid::_j uint8_t ____j_10; // System.Byte System.Guid::_k uint8_t ____k_11; public: inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); } inline int32_t get__a_1() const { return ____a_1; } inline int32_t* get_address_of__a_1() { return &____a_1; } inline void set__a_1(int32_t value) { ____a_1 = value; } inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); } inline int16_t get__b_2() const { return ____b_2; } inline int16_t* get_address_of__b_2() { return &____b_2; } inline void set__b_2(int16_t value) { ____b_2 = value; } inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); } inline int16_t get__c_3() const { return ____c_3; } inline int16_t* get_address_of__c_3() { return &____c_3; } inline void set__c_3(int16_t value) { ____c_3 = value; } inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); } inline uint8_t get__d_4() const { return ____d_4; } inline uint8_t* get_address_of__d_4() { return &____d_4; } inline void set__d_4(uint8_t value) { ____d_4 = value; } inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); } inline uint8_t get__e_5() const { return ____e_5; } inline uint8_t* get_address_of__e_5() { return &____e_5; } inline void set__e_5(uint8_t value) { ____e_5 = value; } inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); } inline uint8_t get__f_6() const { return ____f_6; } inline uint8_t* get_address_of__f_6() { return &____f_6; } inline void set__f_6(uint8_t value) { ____f_6 = value; } inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); } inline uint8_t get__g_7() const { return ____g_7; } inline uint8_t* get_address_of__g_7() { return &____g_7; } inline void set__g_7(uint8_t value) { ____g_7 = value; } inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); } inline uint8_t get__h_8() const { return ____h_8; } inline uint8_t* get_address_of__h_8() { return &____h_8; } inline void set__h_8(uint8_t value) { ____h_8 = value; } inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); } inline uint8_t get__i_9() const { return ____i_9; } inline uint8_t* get_address_of__i_9() { return &____i_9; } inline void set__i_9(uint8_t value) { ____i_9 = value; } inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); } inline uint8_t get__j_10() const { return ____j_10; } inline uint8_t* get_address_of__j_10() { return &____j_10; } inline void set__j_10(uint8_t value) { ____j_10 = value; } inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); } inline uint8_t get__k_11() const { return ____k_11; } inline uint8_t* get_address_of__k_11() { return &____k_11; } inline void set__k_11(uint8_t value) { ____k_11 = value; } }; struct Guid_t_StaticFields { public: // System.Guid System.Guid::Empty Guid_t ___Empty_0; // System.Object System.Guid::_rngAccess RuntimeObject * ____rngAccess_12; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng RandomNumberGenerator_t386037858 * ____rng_13; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng RandomNumberGenerator_t386037858 * ____fastRng_14; public: inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); } inline Guid_t get_Empty_0() const { return ___Empty_0; } inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(Guid_t value) { ___Empty_0 = value; } inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); } inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; } inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; } inline void set__rngAccess_12(RuntimeObject * value) { ____rngAccess_12 = value; Il2CppCodeGenWriteBarrier((&____rngAccess_12), value); } inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); } inline RandomNumberGenerator_t386037858 * get__rng_13() const { return ____rng_13; } inline RandomNumberGenerator_t386037858 ** get_address_of__rng_13() { return &____rng_13; } inline void set__rng_13(RandomNumberGenerator_t386037858 * value) { ____rng_13 = value; Il2CppCodeGenWriteBarrier((&____rng_13), value); } inline static int32_t get_offset_of__fastRng_14() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_14)); } inline RandomNumberGenerator_t386037858 * get__fastRng_14() const { return ____fastRng_14; } inline RandomNumberGenerator_t386037858 ** get_address_of__fastRng_14() { return &____fastRng_14; } inline void set__fastRng_14(RandomNumberGenerator_t386037858 * value) { ____fastRng_14 = value; Il2CppCodeGenWriteBarrier((&____fastRng_14), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // GUID_T_H #ifndef INT16_T2552820387_H #define INT16_T2552820387_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int16 struct Int16_t2552820387 { public: // System.Int16 System.Int16::m_value int16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t2552820387, ___m_value_0)); } inline int16_t get_m_value_0() const { return ___m_value_0; } inline int16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int16_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT16_T2552820387_H #ifndef INT32_T2950945753_H #define INT32_T2950945753_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 struct Int32_t2950945753 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t2950945753, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT32_T2950945753_H #ifndef INT64_T3736567304_H #define INT64_T3736567304_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int64 struct Int64_t3736567304 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t3736567304, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT64_T3736567304_H #ifndef INTPTR_T_H #define INTPTR_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTPTR_T_H #ifndef SELECTARRAYITERATOR_2_T819778152_H #define SELECTARRAYITERATOR_2_T819778152_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/SelectArrayIterator`2<System.Object,System.Object> struct SelectArrayIterator_2_t819778152 : public Iterator_1_t2034466501 { public: // TSource[] System.Linq.Enumerable/SelectArrayIterator`2::_source ObjectU5BU5D_t2843939325* ____source_3; // System.Func`2<TSource,TResult> System.Linq.Enumerable/SelectArrayIterator`2::_selector Func_2_t2447130374 * ____selector_4; public: inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(SelectArrayIterator_2_t819778152, ____source_3)); } inline ObjectU5BU5D_t2843939325* get__source_3() const { return ____source_3; } inline ObjectU5BU5D_t2843939325** get_address_of__source_3() { return &____source_3; } inline void set__source_3(ObjectU5BU5D_t2843939325* value) { ____source_3 = value; Il2CppCodeGenWriteBarrier((&____source_3), value); } inline static int32_t get_offset_of__selector_4() { return static_cast<int32_t>(offsetof(SelectArrayIterator_2_t819778152, ____selector_4)); } inline Func_2_t2447130374 * get__selector_4() const { return ____selector_4; } inline Func_2_t2447130374 ** get_address_of__selector_4() { return &____selector_4; } inline void set__selector_4(Func_2_t2447130374 * value) { ____selector_4 = value; Il2CppCodeGenWriteBarrier((&____selector_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SELECTARRAYITERATOR_2_T819778152_H #ifndef SELECTENUMERABLEITERATOR_2_T4232181467_H #define SELECTENUMERABLEITERATOR_2_T4232181467_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/SelectEnumerableIterator`2<System.Object,System.Object> struct SelectEnumerableIterator_2_t4232181467 : public Iterator_1_t2034466501 { public: // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/SelectEnumerableIterator`2::_source RuntimeObject* ____source_3; // System.Func`2<TSource,TResult> System.Linq.Enumerable/SelectEnumerableIterator`2::_selector Func_2_t2447130374 * ____selector_4; // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/SelectEnumerableIterator`2::_enumerator RuntimeObject* ____enumerator_5; public: inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(SelectEnumerableIterator_2_t4232181467, ____source_3)); } inline RuntimeObject* get__source_3() const { return ____source_3; } inline RuntimeObject** get_address_of__source_3() { return &____source_3; } inline void set__source_3(RuntimeObject* value) { ____source_3 = value; Il2CppCodeGenWriteBarrier((&____source_3), value); } inline static int32_t get_offset_of__selector_4() { return static_cast<int32_t>(offsetof(SelectEnumerableIterator_2_t4232181467, ____selector_4)); } inline Func_2_t2447130374 * get__selector_4() const { return ____selector_4; } inline Func_2_t2447130374 ** get_address_of__selector_4() { return &____selector_4; } inline void set__selector_4(Func_2_t2447130374 * value) { ____selector_4 = value; Il2CppCodeGenWriteBarrier((&____selector_4), value); } inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(SelectEnumerableIterator_2_t4232181467, ____enumerator_5)); } inline RuntimeObject* get__enumerator_5() const { return ____enumerator_5; } inline RuntimeObject** get_address_of__enumerator_5() { return &____enumerator_5; } inline void set__enumerator_5(RuntimeObject* value) { ____enumerator_5 = value; Il2CppCodeGenWriteBarrier((&____enumerator_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SELECTENUMERABLEITERATOR_2_T4232181467_H #ifndef SELECTILISTITERATOR_2_T3601768299_H #define SELECTILISTITERATOR_2_T3601768299_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/SelectIListIterator`2<System.Object,System.Object> struct SelectIListIterator_2_t3601768299 : public Iterator_1_t2034466501 { public: // System.Collections.Generic.IList`1<TSource> System.Linq.Enumerable/SelectIListIterator`2::_source RuntimeObject* ____source_3; // System.Func`2<TSource,TResult> System.Linq.Enumerable/SelectIListIterator`2::_selector Func_2_t2447130374 * ____selector_4; // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/SelectIListIterator`2::_enumerator RuntimeObject* ____enumerator_5; public: inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(SelectIListIterator_2_t3601768299, ____source_3)); } inline RuntimeObject* get__source_3() const { return ____source_3; } inline RuntimeObject** get_address_of__source_3() { return &____source_3; } inline void set__source_3(RuntimeObject* value) { ____source_3 = value; Il2CppCodeGenWriteBarrier((&____source_3), value); } inline static int32_t get_offset_of__selector_4() { return static_cast<int32_t>(offsetof(SelectIListIterator_2_t3601768299, ____selector_4)); } inline Func_2_t2447130374 * get__selector_4() const { return ____selector_4; } inline Func_2_t2447130374 ** get_address_of__selector_4() { return &____selector_4; } inline void set__selector_4(Func_2_t2447130374 * value) { ____selector_4 = value; Il2CppCodeGenWriteBarrier((&____selector_4), value); } inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(SelectIListIterator_2_t3601768299, ____enumerator_5)); } inline RuntimeObject* get__enumerator_5() const { return ____enumerator_5; } inline RuntimeObject** get_address_of__enumerator_5() { return &____enumerator_5; } inline void set__enumerator_5(RuntimeObject* value) { ____enumerator_5 = value; Il2CppCodeGenWriteBarrier((&____enumerator_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SELECTILISTITERATOR_2_T3601768299_H #ifndef SELECTIPARTITIONITERATOR_2_T2131188771_H #define SELECTIPARTITIONITERATOR_2_T2131188771_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/SelectIPartitionIterator`2<System.Object,System.Object> struct SelectIPartitionIterator_2_t2131188771 : public Iterator_1_t2034466501 { public: // System.Linq.IPartition`1<TSource> System.Linq.Enumerable/SelectIPartitionIterator`2::_source RuntimeObject* ____source_3; // System.Func`2<TSource,TResult> System.Linq.Enumerable/SelectIPartitionIterator`2::_selector Func_2_t2447130374 * ____selector_4; // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/SelectIPartitionIterator`2::_enumerator RuntimeObject* ____enumerator_5; public: inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(SelectIPartitionIterator_2_t2131188771, ____source_3)); } inline RuntimeObject* get__source_3() const { return ____source_3; } inline RuntimeObject** get_address_of__source_3() { return &____source_3; } inline void set__source_3(RuntimeObject* value) { ____source_3 = value; Il2CppCodeGenWriteBarrier((&____source_3), value); } inline static int32_t get_offset_of__selector_4() { return static_cast<int32_t>(offsetof(SelectIPartitionIterator_2_t2131188771, ____selector_4)); } inline Func_2_t2447130374 * get__selector_4() const { return ____selector_4; } inline Func_2_t2447130374 ** get_address_of__selector_4() { return &____selector_4; } inline void set__selector_4(Func_2_t2447130374 * value) { ____selector_4 = value; Il2CppCodeGenWriteBarrier((&____selector_4), value); } inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(SelectIPartitionIterator_2_t2131188771, ____enumerator_5)); } inline RuntimeObject* get__enumerator_5() const { return ____enumerator_5; } inline RuntimeObject** get_address_of__enumerator_5() { return &____enumerator_5; } inline void set__enumerator_5(RuntimeObject* value) { ____enumerator_5 = value; Il2CppCodeGenWriteBarrier((&____enumerator_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SELECTIPARTITIONITERATOR_2_T2131188771_H #ifndef WHEREARRAYITERATOR_1_T1891928581_H #define WHEREARRAYITERATOR_1_T1891928581_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/WhereArrayIterator`1<System.Object> struct WhereArrayIterator_1_t1891928581 : public Iterator_1_t2034466501 { public: // TSource[] System.Linq.Enumerable/WhereArrayIterator`1::_source ObjectU5BU5D_t2843939325* ____source_3; // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereArrayIterator`1::_predicate Func_2_t3759279471 * ____predicate_4; public: inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereArrayIterator_1_t1891928581, ____source_3)); } inline ObjectU5BU5D_t2843939325* get__source_3() const { return ____source_3; } inline ObjectU5BU5D_t2843939325** get_address_of__source_3() { return &____source_3; } inline void set__source_3(ObjectU5BU5D_t2843939325* value) { ____source_3 = value; Il2CppCodeGenWriteBarrier((&____source_3), value); } inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereArrayIterator_1_t1891928581, ____predicate_4)); } inline Func_2_t3759279471 * get__predicate_4() const { return ____predicate_4; } inline Func_2_t3759279471 ** get_address_of__predicate_4() { return &____predicate_4; } inline void set__predicate_4(Func_2_t3759279471 * value) { ____predicate_4 = value; Il2CppCodeGenWriteBarrier((&____predicate_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WHEREARRAYITERATOR_1_T1891928581_H #ifndef WHEREENUMERABLEITERATOR_1_T2185640491_H #define WHEREENUMERABLEITERATOR_1_T2185640491_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object> struct WhereEnumerableIterator_1_t2185640491 : public Iterator_1_t2034466501 { public: // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::_source RuntimeObject* ____source_3; // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereEnumerableIterator`1::_predicate Func_2_t3759279471 * ____predicate_4; // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::_enumerator RuntimeObject* ____enumerator_5; public: inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t2185640491, ____source_3)); } inline RuntimeObject* get__source_3() const { return ____source_3; } inline RuntimeObject** get_address_of__source_3() { return &____source_3; } inline void set__source_3(RuntimeObject* value) { ____source_3 = value; Il2CppCodeGenWriteBarrier((&____source_3), value); } inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t2185640491, ____predicate_4)); } inline Func_2_t3759279471 * get__predicate_4() const { return ____predicate_4; } inline Func_2_t3759279471 ** get_address_of__predicate_4() { return &____predicate_4; } inline void set__predicate_4(Func_2_t3759279471 * value) { ____predicate_4 = value; Il2CppCodeGenWriteBarrier((&____predicate_4), value); } inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t2185640491, ____enumerator_5)); } inline RuntimeObject* get__enumerator_5() const { return ____enumerator_5; } inline RuntimeObject** get_address_of__enumerator_5() { return &____enumerator_5; } inline void set__enumerator_5(RuntimeObject* value) { ____enumerator_5 = value; Il2CppCodeGenWriteBarrier((&____enumerator_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WHEREENUMERABLEITERATOR_1_T2185640491_H #ifndef WHERESELECTARRAYITERATOR_2_T1355832803_H #define WHERESELECTARRAYITERATOR_2_T1355832803_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/WhereSelectArrayIterator`2<System.Object,System.Object> struct WhereSelectArrayIterator_2_t1355832803 : public Iterator_1_t2034466501 { public: // TSource[] System.Linq.Enumerable/WhereSelectArrayIterator`2::_source ObjectU5BU5D_t2843939325* ____source_3; // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectArrayIterator`2::_predicate Func_2_t3759279471 * ____predicate_4; // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectArrayIterator`2::_selector Func_2_t2447130374 * ____selector_5; public: inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereSelectArrayIterator_2_t1355832803, ____source_3)); } inline ObjectU5BU5D_t2843939325* get__source_3() const { return ____source_3; } inline ObjectU5BU5D_t2843939325** get_address_of__source_3() { return &____source_3; } inline void set__source_3(ObjectU5BU5D_t2843939325* value) { ____source_3 = value; Il2CppCodeGenWriteBarrier((&____source_3), value); } inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereSelectArrayIterator_2_t1355832803, ____predicate_4)); } inline Func_2_t3759279471 * get__predicate_4() const { return ____predicate_4; } inline Func_2_t3759279471 ** get_address_of__predicate_4() { return &____predicate_4; } inline void set__predicate_4(Func_2_t3759279471 * value) { ____predicate_4 = value; Il2CppCodeGenWriteBarrier((&____predicate_4), value); } inline static int32_t get_offset_of__selector_5() { return static_cast<int32_t>(offsetof(WhereSelectArrayIterator_2_t1355832803, ____selector_5)); } inline Func_2_t2447130374 * get__selector_5() const { return ____selector_5; } inline Func_2_t2447130374 ** get_address_of__selector_5() { return &____selector_5; } inline void set__selector_5(Func_2_t2447130374 * value) { ____selector_5 = value; Il2CppCodeGenWriteBarrier((&____selector_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WHERESELECTARRAYITERATOR_2_T1355832803_H #ifndef WHERESELECTENUMERABLEITERATOR_2_T1553622305_H #define WHERESELECTENUMERABLEITERATOR_2_T1553622305_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object> struct WhereSelectEnumerableIterator_2_t1553622305 : public Iterator_1_t2034466501 { public: // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::_source RuntimeObject* ____source_3; // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::_predicate Func_2_t3759279471 * ____predicate_4; // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::_selector Func_2_t2447130374 * ____selector_5; // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::_enumerator RuntimeObject* ____enumerator_6; public: inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereSelectEnumerableIterator_2_t1553622305, ____source_3)); } inline RuntimeObject* get__source_3() const { return ____source_3; } inline RuntimeObject** get_address_of__source_3() { return &____source_3; } inline void set__source_3(RuntimeObject* value) { ____source_3 = value; Il2CppCodeGenWriteBarrier((&____source_3), value); } inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereSelectEnumerableIterator_2_t1553622305, ____predicate_4)); } inline Func_2_t3759279471 * get__predicate_4() const { return ____predicate_4; } inline Func_2_t3759279471 ** get_address_of__predicate_4() { return &____predicate_4; } inline void set__predicate_4(Func_2_t3759279471 * value) { ____predicate_4 = value; Il2CppCodeGenWriteBarrier((&____predicate_4), value); } inline static int32_t get_offset_of__selector_5() { return static_cast<int32_t>(offsetof(WhereSelectEnumerableIterator_2_t1553622305, ____selector_5)); } inline Func_2_t2447130374 * get__selector_5() const { return ____selector_5; } inline Func_2_t2447130374 ** get_address_of__selector_5() { return &____selector_5; } inline void set__selector_5(Func_2_t2447130374 * value) { ____selector_5 = value; Il2CppCodeGenWriteBarrier((&____selector_5), value); } inline static int32_t get_offset_of__enumerator_6() { return static_cast<int32_t>(offsetof(WhereSelectEnumerableIterator_2_t1553622305, ____enumerator_6)); } inline RuntimeObject* get__enumerator_6() const { return ____enumerator_6; } inline RuntimeObject** get_address_of__enumerator_6() { return &____enumerator_6; } inline void set__enumerator_6(RuntimeObject* value) { ____enumerator_6 = value; Il2CppCodeGenWriteBarrier((&____enumerator_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WHERESELECTENUMERABLEITERATOR_2_T1553622305_H #ifndef ALIGNMENTUNION_T208902285_H #define ALIGNMENTUNION_T208902285_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.NetworkInformation.AlignmentUnion struct AlignmentUnion_t208902285 { public: union { #pragma pack(push, tp, 1) struct { // System.UInt64 System.Net.NetworkInformation.AlignmentUnion::Alignment uint64_t ___Alignment_0; }; #pragma pack(pop, tp) struct { uint64_t ___Alignment_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.Int32 System.Net.NetworkInformation.AlignmentUnion::Length int32_t ___Length_1; }; #pragma pack(pop, tp) struct { int32_t ___Length_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___IfIndex_2_OffsetPadding[4]; // System.Int32 System.Net.NetworkInformation.AlignmentUnion::IfIndex int32_t ___IfIndex_2; }; #pragma pack(pop, tp) struct { char ___IfIndex_2_OffsetPadding_forAlignmentOnly[4]; int32_t ___IfIndex_2_forAlignmentOnly; }; }; public: inline static int32_t get_offset_of_Alignment_0() { return static_cast<int32_t>(offsetof(AlignmentUnion_t208902285, ___Alignment_0)); } inline uint64_t get_Alignment_0() const { return ___Alignment_0; } inline uint64_t* get_address_of_Alignment_0() { return &___Alignment_0; } inline void set_Alignment_0(uint64_t value) { ___Alignment_0 = value; } inline static int32_t get_offset_of_Length_1() { return static_cast<int32_t>(offsetof(AlignmentUnion_t208902285, ___Length_1)); } inline int32_t get_Length_1() const { return ___Length_1; } inline int32_t* get_address_of_Length_1() { return &___Length_1; } inline void set_Length_1(int32_t value) { ___Length_1 = value; } inline static int32_t get_offset_of_IfIndex_2() { return static_cast<int32_t>(offsetof(AlignmentUnion_t208902285, ___IfIndex_2)); } inline int32_t get_IfIndex_2() const { return ___IfIndex_2; } inline int32_t* get_address_of_IfIndex_2() { return &___IfIndex_2; } inline void set_IfIndex_2(int32_t value) { ___IfIndex_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ALIGNMENTUNION_T208902285_H #ifndef FORMATPARAM_T4194474082_H #define FORMATPARAM_T4194474082_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ParameterizedStrings/FormatParam struct FormatParam_t4194474082 { public: // System.Int32 System.ParameterizedStrings/FormatParam::_int32 int32_t ____int32_0; // System.String System.ParameterizedStrings/FormatParam::_string String_t* ____string_1; public: inline static int32_t get_offset_of__int32_0() { return static_cast<int32_t>(offsetof(FormatParam_t4194474082, ____int32_0)); } inline int32_t get__int32_0() const { return ____int32_0; } inline int32_t* get_address_of__int32_0() { return &____int32_0; } inline void set__int32_0(int32_t value) { ____int32_0 = value; } inline static int32_t get_offset_of__string_1() { return static_cast<int32_t>(offsetof(FormatParam_t4194474082, ____string_1)); } inline String_t* get__string_1() const { return ____string_1; } inline String_t** get_address_of__string_1() { return &____string_1; } inline void set__string_1(String_t* value) { ____string_1 = value; Il2CppCodeGenWriteBarrier((&____string_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.ParameterizedStrings/FormatParam struct FormatParam_t4194474082_marshaled_pinvoke { int32_t ____int32_0; char* ____string_1; }; // Native definition for COM marshalling of System.ParameterizedStrings/FormatParam struct FormatParam_t4194474082_marshaled_com { int32_t ____int32_0; Il2CppChar* ____string_1; }; #endif // FORMATPARAM_T4194474082_H #ifndef CUSTOMATTRIBUTETYPEDARGUMENT_T2723150157_H #define CUSTOMATTRIBUTETYPEDARGUMENT_T2723150157_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.CustomAttributeTypedArgument struct CustomAttributeTypedArgument_t2723150157 { public: // System.Type System.Reflection.CustomAttributeTypedArgument::argumentType Type_t * ___argumentType_0; // System.Object System.Reflection.CustomAttributeTypedArgument::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_argumentType_0() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t2723150157, ___argumentType_0)); } inline Type_t * get_argumentType_0() const { return ___argumentType_0; } inline Type_t ** get_address_of_argumentType_0() { return &___argumentType_0; } inline void set_argumentType_0(Type_t * value) { ___argumentType_0 = value; Il2CppCodeGenWriteBarrier((&___argumentType_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t2723150157, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeTypedArgument struct CustomAttributeTypedArgument_t2723150157_marshaled_pinvoke { Type_t * ___argumentType_0; Il2CppIUnknown* ___value_1; }; // Native definition for COM marshalling of System.Reflection.CustomAttributeTypedArgument struct CustomAttributeTypedArgument_t2723150157_marshaled_com { Type_t * ___argumentType_0; Il2CppIUnknown* ___value_1; }; #endif // CUSTOMATTRIBUTETYPEDARGUMENT_T2723150157_H #ifndef ILEXCEPTIONBLOCK_T3961874966_H #define ILEXCEPTIONBLOCK_T3961874966_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Emit.ILExceptionBlock struct ILExceptionBlock_t3961874966 { public: // System.Type System.Reflection.Emit.ILExceptionBlock::extype Type_t * ___extype_5; // System.Int32 System.Reflection.Emit.ILExceptionBlock::type int32_t ___type_6; // System.Int32 System.Reflection.Emit.ILExceptionBlock::start int32_t ___start_7; // System.Int32 System.Reflection.Emit.ILExceptionBlock::len int32_t ___len_8; // System.Int32 System.Reflection.Emit.ILExceptionBlock::filter_offset int32_t ___filter_offset_9; public: inline static int32_t get_offset_of_extype_5() { return static_cast<int32_t>(offsetof(ILExceptionBlock_t3961874966, ___extype_5)); } inline Type_t * get_extype_5() const { return ___extype_5; } inline Type_t ** get_address_of_extype_5() { return &___extype_5; } inline void set_extype_5(Type_t * value) { ___extype_5 = value; Il2CppCodeGenWriteBarrier((&___extype_5), value); } inline static int32_t get_offset_of_type_6() { return static_cast<int32_t>(offsetof(ILExceptionBlock_t3961874966, ___type_6)); } inline int32_t get_type_6() const { return ___type_6; } inline int32_t* get_address_of_type_6() { return &___type_6; } inline void set_type_6(int32_t value) { ___type_6 = value; } inline static int32_t get_offset_of_start_7() { return static_cast<int32_t>(offsetof(ILExceptionBlock_t3961874966, ___start_7)); } inline int32_t get_start_7() const { return ___start_7; } inline int32_t* get_address_of_start_7() { return &___start_7; } inline void set_start_7(int32_t value) { ___start_7 = value; } inline static int32_t get_offset_of_len_8() { return static_cast<int32_t>(offsetof(ILExceptionBlock_t3961874966, ___len_8)); } inline int32_t get_len_8() const { return ___len_8; } inline int32_t* get_address_of_len_8() { return &___len_8; } inline void set_len_8(int32_t value) { ___len_8 = value; } inline static int32_t get_offset_of_filter_offset_9() { return static_cast<int32_t>(offsetof(ILExceptionBlock_t3961874966, ___filter_offset_9)); } inline int32_t get_filter_offset_9() const { return ___filter_offset_9; } inline int32_t* get_address_of_filter_offset_9() { return &___filter_offset_9; } inline void set_filter_offset_9(int32_t value) { ___filter_offset_9 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.Emit.ILExceptionBlock struct ILExceptionBlock_t3961874966_marshaled_pinvoke { Type_t * ___extype_5; int32_t ___type_6; int32_t ___start_7; int32_t ___len_8; int32_t ___filter_offset_9; }; // Native definition for COM marshalling of System.Reflection.Emit.ILExceptionBlock struct ILExceptionBlock_t3961874966_marshaled_com { Type_t * ___extype_5; int32_t ___type_6; int32_t ___start_7; int32_t ___len_8; int32_t ___filter_offset_9; }; #endif // ILEXCEPTIONBLOCK_T3961874966_H #ifndef LABELDATA_T360167391_H #define LABELDATA_T360167391_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Emit.ILGenerator/LabelData struct LabelData_t360167391 { public: // System.Int32 System.Reflection.Emit.ILGenerator/LabelData::addr int32_t ___addr_0; // System.Int32 System.Reflection.Emit.ILGenerator/LabelData::maxStack int32_t ___maxStack_1; public: inline static int32_t get_offset_of_addr_0() { return static_cast<int32_t>(offsetof(LabelData_t360167391, ___addr_0)); } inline int32_t get_addr_0() const { return ___addr_0; } inline int32_t* get_address_of_addr_0() { return &___addr_0; } inline void set_addr_0(int32_t value) { ___addr_0 = value; } inline static int32_t get_offset_of_maxStack_1() { return static_cast<int32_t>(offsetof(LabelData_t360167391, ___maxStack_1)); } inline int32_t get_maxStack_1() const { return ___maxStack_1; } inline int32_t* get_address_of_maxStack_1() { return &___maxStack_1; } inline void set_maxStack_1(int32_t value) { ___maxStack_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LABELDATA_T360167391_H #ifndef LABELFIXUP_T858502054_H #define LABELFIXUP_T858502054_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Emit.ILGenerator/LabelFixup struct LabelFixup_t858502054 { public: // System.Int32 System.Reflection.Emit.ILGenerator/LabelFixup::offset int32_t ___offset_0; // System.Int32 System.Reflection.Emit.ILGenerator/LabelFixup::pos int32_t ___pos_1; // System.Int32 System.Reflection.Emit.ILGenerator/LabelFixup::label_idx int32_t ___label_idx_2; public: inline static int32_t get_offset_of_offset_0() { return static_cast<int32_t>(offsetof(LabelFixup_t858502054, ___offset_0)); } inline int32_t get_offset_0() const { return ___offset_0; } inline int32_t* get_address_of_offset_0() { return &___offset_0; } inline void set_offset_0(int32_t value) { ___offset_0 = value; } inline static int32_t get_offset_of_pos_1() { return static_cast<int32_t>(offsetof(LabelFixup_t858502054, ___pos_1)); } inline int32_t get_pos_1() const { return ___pos_1; } inline int32_t* get_address_of_pos_1() { return &___pos_1; } inline void set_pos_1(int32_t value) { ___pos_1 = value; } inline static int32_t get_offset_of_label_idx_2() { return static_cast<int32_t>(offsetof(LabelFixup_t858502054, ___label_idx_2)); } inline int32_t get_label_idx_2() const { return ___label_idx_2; } inline int32_t* get_address_of_label_idx_2() { return &___label_idx_2; } inline void set_label_idx_2(int32_t value) { ___label_idx_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LABELFIXUP_T858502054_H #ifndef ILTOKENINFO_T2325775114_H #define ILTOKENINFO_T2325775114_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Emit.ILTokenInfo struct ILTokenInfo_t2325775114 { public: // System.Reflection.MemberInfo System.Reflection.Emit.ILTokenInfo::member MemberInfo_t * ___member_0; // System.Int32 System.Reflection.Emit.ILTokenInfo::code_pos int32_t ___code_pos_1; public: inline static int32_t get_offset_of_member_0() { return static_cast<int32_t>(offsetof(ILTokenInfo_t2325775114, ___member_0)); } inline MemberInfo_t * get_member_0() const { return ___member_0; } inline MemberInfo_t ** get_address_of_member_0() { return &___member_0; } inline void set_member_0(MemberInfo_t * value) { ___member_0 = value; Il2CppCodeGenWriteBarrier((&___member_0), value); } inline static int32_t get_offset_of_code_pos_1() { return static_cast<int32_t>(offsetof(ILTokenInfo_t2325775114, ___code_pos_1)); } inline int32_t get_code_pos_1() const { return ___code_pos_1; } inline int32_t* get_address_of_code_pos_1() { return &___code_pos_1; } inline void set_code_pos_1(int32_t value) { ___code_pos_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.Emit.ILTokenInfo struct ILTokenInfo_t2325775114_marshaled_pinvoke { MemberInfo_t * ___member_0; int32_t ___code_pos_1; }; // Native definition for COM marshalling of System.Reflection.Emit.ILTokenInfo struct ILTokenInfo_t2325775114_marshaled_com { MemberInfo_t * ___member_0; int32_t ___code_pos_1; }; #endif // ILTOKENINFO_T2325775114_H #ifndef LABEL_T2281661643_H #define LABEL_T2281661643_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Emit.Label struct Label_t2281661643 { public: // System.Int32 System.Reflection.Emit.Label::label int32_t ___label_0; public: inline static int32_t get_offset_of_label_0() { return static_cast<int32_t>(offsetof(Label_t2281661643, ___label_0)); } inline int32_t get_label_0() const { return ___label_0; } inline int32_t* get_address_of_label_0() { return &___label_0; } inline void set_label_0(int32_t value) { ___label_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LABEL_T2281661643_H #ifndef MONOWIN32RESOURCE_T1904229483_H #define MONOWIN32RESOURCE_T1904229483_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Emit.MonoWin32Resource struct MonoWin32Resource_t1904229483 { public: // System.Int32 System.Reflection.Emit.MonoWin32Resource::res_type int32_t ___res_type_0; // System.Int32 System.Reflection.Emit.MonoWin32Resource::res_id int32_t ___res_id_1; // System.Int32 System.Reflection.Emit.MonoWin32Resource::lang_id int32_t ___lang_id_2; // System.Byte[] System.Reflection.Emit.MonoWin32Resource::data ByteU5BU5D_t4116647657* ___data_3; public: inline static int32_t get_offset_of_res_type_0() { return static_cast<int32_t>(offsetof(MonoWin32Resource_t1904229483, ___res_type_0)); } inline int32_t get_res_type_0() const { return ___res_type_0; } inline int32_t* get_address_of_res_type_0() { return &___res_type_0; } inline void set_res_type_0(int32_t value) { ___res_type_0 = value; } inline static int32_t get_offset_of_res_id_1() { return static_cast<int32_t>(offsetof(MonoWin32Resource_t1904229483, ___res_id_1)); } inline int32_t get_res_id_1() const { return ___res_id_1; } inline int32_t* get_address_of_res_id_1() { return &___res_id_1; } inline void set_res_id_1(int32_t value) { ___res_id_1 = value; } inline static int32_t get_offset_of_lang_id_2() { return static_cast<int32_t>(offsetof(MonoWin32Resource_t1904229483, ___lang_id_2)); } inline int32_t get_lang_id_2() const { return ___lang_id_2; } inline int32_t* get_address_of_lang_id_2() { return &___lang_id_2; } inline void set_lang_id_2(int32_t value) { ___lang_id_2 = value; } inline static int32_t get_offset_of_data_3() { return static_cast<int32_t>(offsetof(MonoWin32Resource_t1904229483, ___data_3)); } inline ByteU5BU5D_t4116647657* get_data_3() const { return ___data_3; } inline ByteU5BU5D_t4116647657** get_address_of_data_3() { return &___data_3; } inline void set_data_3(ByteU5BU5D_t4116647657* value) { ___data_3 = value; Il2CppCodeGenWriteBarrier((&___data_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.Emit.MonoWin32Resource struct MonoWin32Resource_t1904229483_marshaled_pinvoke { int32_t ___res_type_0; int32_t ___res_id_1; int32_t ___lang_id_2; uint8_t* ___data_3; }; // Native definition for COM marshalling of System.Reflection.Emit.MonoWin32Resource struct MonoWin32Resource_t1904229483_marshaled_com { int32_t ___res_type_0; int32_t ___res_id_1; int32_t ___lang_id_2; uint8_t* ___data_3; }; #endif // MONOWIN32RESOURCE_T1904229483_H #ifndef METHODBASE_T_H #define METHODBASE_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MethodBase struct MethodBase_t : public MemberInfo_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // METHODBASE_T_H #ifndef PARAMETERMODIFIER_T1461694466_H #define PARAMETERMODIFIER_T1461694466_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.ParameterModifier struct ParameterModifier_t1461694466 { public: // System.Boolean[] System.Reflection.ParameterModifier::_byRef BooleanU5BU5D_t2897418192* ____byRef_0; public: inline static int32_t get_offset_of__byRef_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t1461694466, ____byRef_0)); } inline BooleanU5BU5D_t2897418192* get__byRef_0() const { return ____byRef_0; } inline BooleanU5BU5D_t2897418192** get_address_of__byRef_0() { return &____byRef_0; } inline void set__byRef_0(BooleanU5BU5D_t2897418192* value) { ____byRef_0 = value; Il2CppCodeGenWriteBarrier((&____byRef_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier struct ParameterModifier_t1461694466_marshaled_pinvoke { int32_t* ____byRef_0; }; // Native definition for COM marshalling of System.Reflection.ParameterModifier struct ParameterModifier_t1461694466_marshaled_com { int32_t* ____byRef_0; }; #endif // PARAMETERMODIFIER_T1461694466_H #ifndef RESOURCELOCATOR_T3723970807_H #define RESOURCELOCATOR_T3723970807_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Resources.ResourceLocator struct ResourceLocator_t3723970807 { public: // System.Object System.Resources.ResourceLocator::_value RuntimeObject * ____value_0; // System.Int32 System.Resources.ResourceLocator::_dataPos int32_t ____dataPos_1; public: inline static int32_t get_offset_of__value_0() { return static_cast<int32_t>(offsetof(ResourceLocator_t3723970807, ____value_0)); } inline RuntimeObject * get__value_0() const { return ____value_0; } inline RuntimeObject ** get_address_of__value_0() { return &____value_0; } inline void set__value_0(RuntimeObject * value) { ____value_0 = value; Il2CppCodeGenWriteBarrier((&____value_0), value); } inline static int32_t get_offset_of__dataPos_1() { return static_cast<int32_t>(offsetof(ResourceLocator_t3723970807, ____dataPos_1)); } inline int32_t get__dataPos_1() const { return ____dataPos_1; } inline int32_t* get_address_of__dataPos_1() { return &____dataPos_1; } inline void set__dataPos_1(int32_t value) { ____dataPos_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Resources.ResourceLocator struct ResourceLocator_t3723970807_marshaled_pinvoke { Il2CppIUnknown* ____value_0; int32_t ____dataPos_1; }; // Native definition for COM marshalling of System.Resources.ResourceLocator struct ResourceLocator_t3723970807_marshaled_com { Il2CppIUnknown* ____value_0; int32_t ____dataPos_1; }; #endif // RESOURCELOCATOR_T3723970807_H #ifndef EPHEMERON_T1602596362_H #define EPHEMERON_T1602596362_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.CompilerServices.Ephemeron struct Ephemeron_t1602596362 { public: // System.Object System.Runtime.CompilerServices.Ephemeron::key RuntimeObject * ___key_0; // System.Object System.Runtime.CompilerServices.Ephemeron::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(Ephemeron_t1602596362, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(Ephemeron_t1602596362, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.Ephemeron struct Ephemeron_t1602596362_marshaled_pinvoke { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___value_1; }; // Native definition for COM marshalling of System.Runtime.CompilerServices.Ephemeron struct Ephemeron_t1602596362_marshaled_com { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___value_1; }; #endif // EPHEMERON_T1602596362_H #ifndef GCHANDLE_T3351438187_H #define GCHANDLE_T3351438187_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.InteropServices.GCHandle struct GCHandle_t3351438187 { public: // System.Int32 System.Runtime.InteropServices.GCHandle::handle int32_t ___handle_0; public: inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t3351438187, ___handle_0)); } inline int32_t get_handle_0() const { return ___handle_0; } inline int32_t* get_address_of_handle_0() { return &___handle_0; } inline void set_handle_0(int32_t value) { ___handle_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // GCHANDLE_T3351438187_H #ifndef SBYTE_T1669577662_H #define SBYTE_T1669577662_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.SByte struct SByte_t1669577662 { public: // System.SByte System.SByte::m_value int8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t1669577662, ___m_value_0)); } inline int8_t get_m_value_0() const { return ___m_value_0; } inline int8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int8_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SBYTE_T1669577662_H #ifndef SINGLE_T1397266774_H #define SINGLE_T1397266774_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Single struct Single_t1397266774 { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_t1397266774, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SINGLE_T1397266774_H #ifndef SYSTEMEXCEPTION_T176217640_H #define SYSTEMEXCEPTION_T176217640_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.SystemException struct SystemException_t176217640 : public Exception_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SYSTEMEXCEPTION_T176217640_H #ifndef LOWERCASEMAPPING_T2910317575_H #define LOWERCASEMAPPING_T2910317575_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping struct LowerCaseMapping_t2910317575 { public: // System.Char System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping::_chMin Il2CppChar ____chMin_0; // System.Char System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping::_chMax Il2CppChar ____chMax_1; // System.Int32 System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping::_lcOp int32_t ____lcOp_2; // System.Int32 System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping::_data int32_t ____data_3; public: inline static int32_t get_offset_of__chMin_0() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t2910317575, ____chMin_0)); } inline Il2CppChar get__chMin_0() const { return ____chMin_0; } inline Il2CppChar* get_address_of__chMin_0() { return &____chMin_0; } inline void set__chMin_0(Il2CppChar value) { ____chMin_0 = value; } inline static int32_t get_offset_of__chMax_1() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t2910317575, ____chMax_1)); } inline Il2CppChar get__chMax_1() const { return ____chMax_1; } inline Il2CppChar* get_address_of__chMax_1() { return &____chMax_1; } inline void set__chMax_1(Il2CppChar value) { ____chMax_1 = value; } inline static int32_t get_offset_of__lcOp_2() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t2910317575, ____lcOp_2)); } inline int32_t get__lcOp_2() const { return ____lcOp_2; } inline int32_t* get_address_of__lcOp_2() { return &____lcOp_2; } inline void set__lcOp_2(int32_t value) { ____lcOp_2 = value; } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t2910317575, ____data_3)); } inline int32_t get__data_3() const { return ____data_3; } inline int32_t* get_address_of__data_3() { return &____data_3; } inline void set__data_3(int32_t value) { ____data_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping struct LowerCaseMapping_t2910317575_marshaled_pinvoke { uint8_t ____chMin_0; uint8_t ____chMax_1; int32_t ____lcOp_2; int32_t ____data_3; }; // Native definition for COM marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping struct LowerCaseMapping_t2910317575_marshaled_com { uint8_t ____chMin_0; uint8_t ____chMax_1; int32_t ____lcOp_2; int32_t ____data_3; }; #endif // LOWERCASEMAPPING_T2910317575_H #ifndef SPARSELYPOPULATEDARRAYADDINFO_1_T223515617_H #define SPARSELYPOPULATEDARRAYADDINFO_1_T223515617_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo> struct SparselyPopulatedArrayAddInfo_1_t223515617 { public: // System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1::m_source SparselyPopulatedArrayFragment_1_t4161250538 * ___m_source_0; // System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1::m_index int32_t ___m_index_1; public: inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t223515617, ___m_source_0)); } inline SparselyPopulatedArrayFragment_1_t4161250538 * get_m_source_0() const { return ___m_source_0; } inline SparselyPopulatedArrayFragment_1_t4161250538 ** get_address_of_m_source_0() { return &___m_source_0; } inline void set_m_source_0(SparselyPopulatedArrayFragment_1_t4161250538 * value) { ___m_source_0 = value; Il2CppCodeGenWriteBarrier((&___m_source_0), value); } inline static int32_t get_offset_of_m_index_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t223515617, ___m_index_1)); } inline int32_t get_m_index_1() const { return ___m_index_1; } inline int32_t* get_address_of_m_index_1() { return &___m_index_1; } inline void set_m_index_1(int32_t value) { ___m_index_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SPARSELYPOPULATEDARRAYADDINFO_1_T223515617_H #ifndef UINT16_T2177724958_H #define UINT16_T2177724958_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt16 struct UInt16_t2177724958 { public: // System.UInt16 System.UInt16::m_value uint16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_t2177724958, ___m_value_0)); } inline uint16_t get_m_value_0() const { return ___m_value_0; } inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint16_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT16_T2177724958_H #ifndef UINT32_T2560061978_H #define UINT32_T2560061978_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt32 struct UInt32_t2560061978 { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t2560061978, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT32_T2560061978_H #ifndef UINT64_T4134040092_H #define UINT64_T4134040092_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt64 struct UInt64_t4134040092 { public: // System.UInt64 System.UInt64::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_t4134040092, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UINT64_T4134040092_H #ifndef VOID_T1185182177_H #define VOID_T1185182177_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void struct Void_t1185182177 { public: union { struct { }; uint8_t Void_t1185182177__padding[1]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VOID_T1185182177_H #ifndef MAP_T1331044427_H #define MAP_T1331044427_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.FacetsChecker/FacetsCompiler/Map struct Map_t1331044427 { public: // System.Char System.Xml.Schema.FacetsChecker/FacetsCompiler/Map::match Il2CppChar ___match_0; // System.String System.Xml.Schema.FacetsChecker/FacetsCompiler/Map::replacement String_t* ___replacement_1; public: inline static int32_t get_offset_of_match_0() { return static_cast<int32_t>(offsetof(Map_t1331044427, ___match_0)); } inline Il2CppChar get_match_0() const { return ___match_0; } inline Il2CppChar* get_address_of_match_0() { return &___match_0; } inline void set_match_0(Il2CppChar value) { ___match_0 = value; } inline static int32_t get_offset_of_replacement_1() { return static_cast<int32_t>(offsetof(Map_t1331044427, ___replacement_1)); } inline String_t* get_replacement_1() const { return ___replacement_1; } inline String_t** get_address_of_replacement_1() { return &___replacement_1; } inline void set_replacement_1(String_t* value) { ___replacement_1 = value; Il2CppCodeGenWriteBarrier((&___replacement_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Xml.Schema.FacetsChecker/FacetsCompiler/Map struct Map_t1331044427_marshaled_pinvoke { uint8_t ___match_0; char* ___replacement_1; }; // Native definition for COM marshalling of System.Xml.Schema.FacetsChecker/FacetsCompiler/Map struct Map_t1331044427_marshaled_com { uint8_t ___match_0; Il2CppChar* ___replacement_1; }; #endif // MAP_T1331044427_H #ifndef RANGEPOSITIONINFO_T589968936_H #define RANGEPOSITIONINFO_T589968936_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.RangePositionInfo struct RangePositionInfo_t589968936 { public: // System.Xml.Schema.BitSet System.Xml.Schema.RangePositionInfo::curpos BitSet_t1154229585 * ___curpos_0; // System.Decimal[] System.Xml.Schema.RangePositionInfo::rangeCounters DecimalU5BU5D_t1145110141* ___rangeCounters_1; public: inline static int32_t get_offset_of_curpos_0() { return static_cast<int32_t>(offsetof(RangePositionInfo_t589968936, ___curpos_0)); } inline BitSet_t1154229585 * get_curpos_0() const { return ___curpos_0; } inline BitSet_t1154229585 ** get_address_of_curpos_0() { return &___curpos_0; } inline void set_curpos_0(BitSet_t1154229585 * value) { ___curpos_0 = value; Il2CppCodeGenWriteBarrier((&___curpos_0), value); } inline static int32_t get_offset_of_rangeCounters_1() { return static_cast<int32_t>(offsetof(RangePositionInfo_t589968936, ___rangeCounters_1)); } inline DecimalU5BU5D_t1145110141* get_rangeCounters_1() const { return ___rangeCounters_1; } inline DecimalU5BU5D_t1145110141** get_address_of_rangeCounters_1() { return &___rangeCounters_1; } inline void set_rangeCounters_1(DecimalU5BU5D_t1145110141* value) { ___rangeCounters_1 = value; Il2CppCodeGenWriteBarrier((&___rangeCounters_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Xml.Schema.RangePositionInfo struct RangePositionInfo_t589968936_marshaled_pinvoke { BitSet_t1154229585 * ___curpos_0; Decimal_t2948259380 * ___rangeCounters_1; }; // Native definition for COM marshalling of System.Xml.Schema.RangePositionInfo struct RangePositionInfo_t589968936_marshaled_com { BitSet_t1154229585 * ___curpos_0; Decimal_t2948259380 * ___rangeCounters_1; }; #endif // RANGEPOSITIONINFO_T589968936_H #ifndef SEQUENCECONSTRUCTPOSCONTEXT_T2054380699_H #define SEQUENCECONSTRUCTPOSCONTEXT_T2054380699_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.SequenceNode/SequenceConstructPosContext struct SequenceConstructPosContext_t2054380699 { public: // System.Xml.Schema.SequenceNode System.Xml.Schema.SequenceNode/SequenceConstructPosContext::this_ SequenceNode_t3837141573 * ___this__0; // System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::firstpos BitSet_t1154229585 * ___firstpos_1; // System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::lastpos BitSet_t1154229585 * ___lastpos_2; // System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::lastposLeft BitSet_t1154229585 * ___lastposLeft_3; // System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::firstposRight BitSet_t1154229585 * ___firstposRight_4; public: inline static int32_t get_offset_of_this__0() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t2054380699, ___this__0)); } inline SequenceNode_t3837141573 * get_this__0() const { return ___this__0; } inline SequenceNode_t3837141573 ** get_address_of_this__0() { return &___this__0; } inline void set_this__0(SequenceNode_t3837141573 * value) { ___this__0 = value; Il2CppCodeGenWriteBarrier((&___this__0), value); } inline static int32_t get_offset_of_firstpos_1() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t2054380699, ___firstpos_1)); } inline BitSet_t1154229585 * get_firstpos_1() const { return ___firstpos_1; } inline BitSet_t1154229585 ** get_address_of_firstpos_1() { return &___firstpos_1; } inline void set_firstpos_1(BitSet_t1154229585 * value) { ___firstpos_1 = value; Il2CppCodeGenWriteBarrier((&___firstpos_1), value); } inline static int32_t get_offset_of_lastpos_2() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t2054380699, ___lastpos_2)); } inline BitSet_t1154229585 * get_lastpos_2() const { return ___lastpos_2; } inline BitSet_t1154229585 ** get_address_of_lastpos_2() { return &___lastpos_2; } inline void set_lastpos_2(BitSet_t1154229585 * value) { ___lastpos_2 = value; Il2CppCodeGenWriteBarrier((&___lastpos_2), value); } inline static int32_t get_offset_of_lastposLeft_3() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t2054380699, ___lastposLeft_3)); } inline BitSet_t1154229585 * get_lastposLeft_3() const { return ___lastposLeft_3; } inline BitSet_t1154229585 ** get_address_of_lastposLeft_3() { return &___lastposLeft_3; } inline void set_lastposLeft_3(BitSet_t1154229585 * value) { ___lastposLeft_3 = value; Il2CppCodeGenWriteBarrier((&___lastposLeft_3), value); } inline static int32_t get_offset_of_firstposRight_4() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t2054380699, ___firstposRight_4)); } inline BitSet_t1154229585 * get_firstposRight_4() const { return ___firstposRight_4; } inline BitSet_t1154229585 ** get_address_of_firstposRight_4() { return &___firstposRight_4; } inline void set_firstposRight_4(BitSet_t1154229585 * value) { ___firstposRight_4 = value; Il2CppCodeGenWriteBarrier((&___firstposRight_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Xml.Schema.SequenceNode/SequenceConstructPosContext struct SequenceConstructPosContext_t2054380699_marshaled_pinvoke { SequenceNode_t3837141573 * ___this__0; BitSet_t1154229585 * ___firstpos_1; BitSet_t1154229585 * ___lastpos_2; BitSet_t1154229585 * ___lastposLeft_3; BitSet_t1154229585 * ___firstposRight_4; }; // Native definition for COM marshalling of System.Xml.Schema.SequenceNode/SequenceConstructPosContext struct SequenceConstructPosContext_t2054380699_marshaled_com { SequenceNode_t3837141573 * ___this__0; BitSet_t1154229585 * ___firstpos_1; BitSet_t1154229585 * ___lastpos_2; BitSet_t1154229585 * ___lastposLeft_3; BitSet_t1154229585 * ___firstposRight_4; }; #endif // SEQUENCECONSTRUCTPOSCONTEXT_T2054380699_H #ifndef XMLSCHEMAOBJECTENTRY_T3344676971_H #define XMLSCHEMAOBJECTENTRY_T3344676971_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry struct XmlSchemaObjectEntry_t3344676971 { public: // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry::qname XmlQualifiedName_t2760654312 * ___qname_0; // System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry::xso XmlSchemaObject_t1315720168 * ___xso_1; public: inline static int32_t get_offset_of_qname_0() { return static_cast<int32_t>(offsetof(XmlSchemaObjectEntry_t3344676971, ___qname_0)); } inline XmlQualifiedName_t2760654312 * get_qname_0() const { return ___qname_0; } inline XmlQualifiedName_t2760654312 ** get_address_of_qname_0() { return &___qname_0; } inline void set_qname_0(XmlQualifiedName_t2760654312 * value) { ___qname_0 = value; Il2CppCodeGenWriteBarrier((&___qname_0), value); } inline static int32_t get_offset_of_xso_1() { return static_cast<int32_t>(offsetof(XmlSchemaObjectEntry_t3344676971, ___xso_1)); } inline XmlSchemaObject_t1315720168 * get_xso_1() const { return ___xso_1; } inline XmlSchemaObject_t1315720168 ** get_address_of_xso_1() { return &___xso_1; } inline void set_xso_1(XmlSchemaObject_t1315720168 * value) { ___xso_1 = value; Il2CppCodeGenWriteBarrier((&___xso_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry struct XmlSchemaObjectEntry_t3344676971_marshaled_pinvoke { XmlQualifiedName_t2760654312 * ___qname_0; XmlSchemaObject_t1315720168 * ___xso_1; }; // Native definition for COM marshalling of System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry struct XmlSchemaObjectEntry_t3344676971_marshaled_com { XmlQualifiedName_t2760654312 * ___qname_0; XmlSchemaObject_t1315720168 * ___xso_1; }; #endif // XMLSCHEMAOBJECTENTRY_T3344676971_H #ifndef NAMESPACEDECLARATION_T4162609575_H #define NAMESPACEDECLARATION_T4162609575_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlNamespaceManager/NamespaceDeclaration struct NamespaceDeclaration_t4162609575 { public: // System.String System.Xml.XmlNamespaceManager/NamespaceDeclaration::prefix String_t* ___prefix_0; // System.String System.Xml.XmlNamespaceManager/NamespaceDeclaration::uri String_t* ___uri_1; // System.Int32 System.Xml.XmlNamespaceManager/NamespaceDeclaration::scopeId int32_t ___scopeId_2; // System.Int32 System.Xml.XmlNamespaceManager/NamespaceDeclaration::previousNsIndex int32_t ___previousNsIndex_3; public: inline static int32_t get_offset_of_prefix_0() { return static_cast<int32_t>(offsetof(NamespaceDeclaration_t4162609575, ___prefix_0)); } inline String_t* get_prefix_0() const { return ___prefix_0; } inline String_t** get_address_of_prefix_0() { return &___prefix_0; } inline void set_prefix_0(String_t* value) { ___prefix_0 = value; Il2CppCodeGenWriteBarrier((&___prefix_0), value); } inline static int32_t get_offset_of_uri_1() { return static_cast<int32_t>(offsetof(NamespaceDeclaration_t4162609575, ___uri_1)); } inline String_t* get_uri_1() const { return ___uri_1; } inline String_t** get_address_of_uri_1() { return &___uri_1; } inline void set_uri_1(String_t* value) { ___uri_1 = value; Il2CppCodeGenWriteBarrier((&___uri_1), value); } inline static int32_t get_offset_of_scopeId_2() { return static_cast<int32_t>(offsetof(NamespaceDeclaration_t4162609575, ___scopeId_2)); } inline int32_t get_scopeId_2() const { return ___scopeId_2; } inline int32_t* get_address_of_scopeId_2() { return &___scopeId_2; } inline void set_scopeId_2(int32_t value) { ___scopeId_2 = value; } inline static int32_t get_offset_of_previousNsIndex_3() { return static_cast<int32_t>(offsetof(NamespaceDeclaration_t4162609575, ___previousNsIndex_3)); } inline int32_t get_previousNsIndex_3() const { return ___previousNsIndex_3; } inline int32_t* get_address_of_previousNsIndex_3() { return &___previousNsIndex_3; } inline void set_previousNsIndex_3(int32_t value) { ___previousNsIndex_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Xml.XmlNamespaceManager/NamespaceDeclaration struct NamespaceDeclaration_t4162609575_marshaled_pinvoke { char* ___prefix_0; char* ___uri_1; int32_t ___scopeId_2; int32_t ___previousNsIndex_3; }; // Native definition for COM marshalling of System.Xml.XmlNamespaceManager/NamespaceDeclaration struct NamespaceDeclaration_t4162609575_marshaled_com { Il2CppChar* ___prefix_0; Il2CppChar* ___uri_1; int32_t ___scopeId_2; int32_t ___previousNsIndex_3; }; #endif // NAMESPACEDECLARATION_T4162609575_H #ifndef VIRTUALATTRIBUTE_T3578083907_H #define VIRTUALATTRIBUTE_T3578083907_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlNodeReaderNavigator/VirtualAttribute struct VirtualAttribute_t3578083907 { public: // System.String System.Xml.XmlNodeReaderNavigator/VirtualAttribute::name String_t* ___name_0; // System.String System.Xml.XmlNodeReaderNavigator/VirtualAttribute::value String_t* ___value_1; public: inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(VirtualAttribute_t3578083907, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((&___name_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(VirtualAttribute_t3578083907, ___value_1)); } inline String_t* get_value_1() const { return ___value_1; } inline String_t** get_address_of_value_1() { return &___value_1; } inline void set_value_1(String_t* value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Xml.XmlNodeReaderNavigator/VirtualAttribute struct VirtualAttribute_t3578083907_marshaled_pinvoke { char* ___name_0; char* ___value_1; }; // Native definition for COM marshalling of System.Xml.XmlNodeReaderNavigator/VirtualAttribute struct VirtualAttribute_t3578083907_marshaled_com { Il2CppChar* ___name_0; Il2CppChar* ___value_1; }; #endif // VIRTUALATTRIBUTE_T3578083907_H #ifndef PARSINGSTATE_T1780334922_H #define PARSINGSTATE_T1780334922_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlTextReaderImpl/ParsingState struct ParsingState_t1780334922 { public: // System.Char[] System.Xml.XmlTextReaderImpl/ParsingState::chars CharU5BU5D_t3528271667* ___chars_0; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::charPos int32_t ___charPos_1; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::charsUsed int32_t ___charsUsed_2; // System.Text.Encoding System.Xml.XmlTextReaderImpl/ParsingState::encoding Encoding_t1523322056 * ___encoding_3; // System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::appendMode bool ___appendMode_4; // System.IO.Stream System.Xml.XmlTextReaderImpl/ParsingState::stream Stream_t1273022909 * ___stream_5; // System.Text.Decoder System.Xml.XmlTextReaderImpl/ParsingState::decoder Decoder_t2204182725 * ___decoder_6; // System.Byte[] System.Xml.XmlTextReaderImpl/ParsingState::bytes ByteU5BU5D_t4116647657* ___bytes_7; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::bytePos int32_t ___bytePos_8; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::bytesUsed int32_t ___bytesUsed_9; // System.IO.TextReader System.Xml.XmlTextReaderImpl/ParsingState::textReader TextReader_t283511965 * ___textReader_10; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::lineNo int32_t ___lineNo_11; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::lineStartPos int32_t ___lineStartPos_12; // System.String System.Xml.XmlTextReaderImpl/ParsingState::baseUriStr String_t* ___baseUriStr_13; // System.Uri System.Xml.XmlTextReaderImpl/ParsingState::baseUri Uri_t100236324 * ___baseUri_14; // System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::isEof bool ___isEof_15; // System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::isStreamEof bool ___isStreamEof_16; // System.Xml.IDtdEntityInfo System.Xml.XmlTextReaderImpl/ParsingState::entity RuntimeObject* ___entity_17; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::entityId int32_t ___entityId_18; // System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::eolNormalized bool ___eolNormalized_19; // System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::entityResolvedManually bool ___entityResolvedManually_20; public: inline static int32_t get_offset_of_chars_0() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___chars_0)); } inline CharU5BU5D_t3528271667* get_chars_0() const { return ___chars_0; } inline CharU5BU5D_t3528271667** get_address_of_chars_0() { return &___chars_0; } inline void set_chars_0(CharU5BU5D_t3528271667* value) { ___chars_0 = value; Il2CppCodeGenWriteBarrier((&___chars_0), value); } inline static int32_t get_offset_of_charPos_1() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___charPos_1)); } inline int32_t get_charPos_1() const { return ___charPos_1; } inline int32_t* get_address_of_charPos_1() { return &___charPos_1; } inline void set_charPos_1(int32_t value) { ___charPos_1 = value; } inline static int32_t get_offset_of_charsUsed_2() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___charsUsed_2)); } inline int32_t get_charsUsed_2() const { return ___charsUsed_2; } inline int32_t* get_address_of_charsUsed_2() { return &___charsUsed_2; } inline void set_charsUsed_2(int32_t value) { ___charsUsed_2 = value; } inline static int32_t get_offset_of_encoding_3() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___encoding_3)); } inline Encoding_t1523322056 * get_encoding_3() const { return ___encoding_3; } inline Encoding_t1523322056 ** get_address_of_encoding_3() { return &___encoding_3; } inline void set_encoding_3(Encoding_t1523322056 * value) { ___encoding_3 = value; Il2CppCodeGenWriteBarrier((&___encoding_3), value); } inline static int32_t get_offset_of_appendMode_4() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___appendMode_4)); } inline bool get_appendMode_4() const { return ___appendMode_4; } inline bool* get_address_of_appendMode_4() { return &___appendMode_4; } inline void set_appendMode_4(bool value) { ___appendMode_4 = value; } inline static int32_t get_offset_of_stream_5() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___stream_5)); } inline Stream_t1273022909 * get_stream_5() const { return ___stream_5; } inline Stream_t1273022909 ** get_address_of_stream_5() { return &___stream_5; } inline void set_stream_5(Stream_t1273022909 * value) { ___stream_5 = value; Il2CppCodeGenWriteBarrier((&___stream_5), value); } inline static int32_t get_offset_of_decoder_6() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___decoder_6)); } inline Decoder_t2204182725 * get_decoder_6() const { return ___decoder_6; } inline Decoder_t2204182725 ** get_address_of_decoder_6() { return &___decoder_6; } inline void set_decoder_6(Decoder_t2204182725 * value) { ___decoder_6 = value; Il2CppCodeGenWriteBarrier((&___decoder_6), value); } inline static int32_t get_offset_of_bytes_7() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___bytes_7)); } inline ByteU5BU5D_t4116647657* get_bytes_7() const { return ___bytes_7; } inline ByteU5BU5D_t4116647657** get_address_of_bytes_7() { return &___bytes_7; } inline void set_bytes_7(ByteU5BU5D_t4116647657* value) { ___bytes_7 = value; Il2CppCodeGenWriteBarrier((&___bytes_7), value); } inline static int32_t get_offset_of_bytePos_8() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___bytePos_8)); } inline int32_t get_bytePos_8() const { return ___bytePos_8; } inline int32_t* get_address_of_bytePos_8() { return &___bytePos_8; } inline void set_bytePos_8(int32_t value) { ___bytePos_8 = value; } inline static int32_t get_offset_of_bytesUsed_9() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___bytesUsed_9)); } inline int32_t get_bytesUsed_9() const { return ___bytesUsed_9; } inline int32_t* get_address_of_bytesUsed_9() { return &___bytesUsed_9; } inline void set_bytesUsed_9(int32_t value) { ___bytesUsed_9 = value; } inline static int32_t get_offset_of_textReader_10() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___textReader_10)); } inline TextReader_t283511965 * get_textReader_10() const { return ___textReader_10; } inline TextReader_t283511965 ** get_address_of_textReader_10() { return &___textReader_10; } inline void set_textReader_10(TextReader_t283511965 * value) { ___textReader_10 = value; Il2CppCodeGenWriteBarrier((&___textReader_10), value); } inline static int32_t get_offset_of_lineNo_11() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___lineNo_11)); } inline int32_t get_lineNo_11() const { return ___lineNo_11; } inline int32_t* get_address_of_lineNo_11() { return &___lineNo_11; } inline void set_lineNo_11(int32_t value) { ___lineNo_11 = value; } inline static int32_t get_offset_of_lineStartPos_12() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___lineStartPos_12)); } inline int32_t get_lineStartPos_12() const { return ___lineStartPos_12; } inline int32_t* get_address_of_lineStartPos_12() { return &___lineStartPos_12; } inline void set_lineStartPos_12(int32_t value) { ___lineStartPos_12 = value; } inline static int32_t get_offset_of_baseUriStr_13() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___baseUriStr_13)); } inline String_t* get_baseUriStr_13() const { return ___baseUriStr_13; } inline String_t** get_address_of_baseUriStr_13() { return &___baseUriStr_13; } inline void set_baseUriStr_13(String_t* value) { ___baseUriStr_13 = value; Il2CppCodeGenWriteBarrier((&___baseUriStr_13), value); } inline static int32_t get_offset_of_baseUri_14() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___baseUri_14)); } inline Uri_t100236324 * get_baseUri_14() const { return ___baseUri_14; } inline Uri_t100236324 ** get_address_of_baseUri_14() { return &___baseUri_14; } inline void set_baseUri_14(Uri_t100236324 * value) { ___baseUri_14 = value; Il2CppCodeGenWriteBarrier((&___baseUri_14), value); } inline static int32_t get_offset_of_isEof_15() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___isEof_15)); } inline bool get_isEof_15() const { return ___isEof_15; } inline bool* get_address_of_isEof_15() { return &___isEof_15; } inline void set_isEof_15(bool value) { ___isEof_15 = value; } inline static int32_t get_offset_of_isStreamEof_16() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___isStreamEof_16)); } inline bool get_isStreamEof_16() const { return ___isStreamEof_16; } inline bool* get_address_of_isStreamEof_16() { return &___isStreamEof_16; } inline void set_isStreamEof_16(bool value) { ___isStreamEof_16 = value; } inline static int32_t get_offset_of_entity_17() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___entity_17)); } inline RuntimeObject* get_entity_17() const { return ___entity_17; } inline RuntimeObject** get_address_of_entity_17() { return &___entity_17; } inline void set_entity_17(RuntimeObject* value) { ___entity_17 = value; Il2CppCodeGenWriteBarrier((&___entity_17), value); } inline static int32_t get_offset_of_entityId_18() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___entityId_18)); } inline int32_t get_entityId_18() const { return ___entityId_18; } inline int32_t* get_address_of_entityId_18() { return &___entityId_18; } inline void set_entityId_18(int32_t value) { ___entityId_18 = value; } inline static int32_t get_offset_of_eolNormalized_19() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___eolNormalized_19)); } inline bool get_eolNormalized_19() const { return ___eolNormalized_19; } inline bool* get_address_of_eolNormalized_19() { return &___eolNormalized_19; } inline void set_eolNormalized_19(bool value) { ___eolNormalized_19 = value; } inline static int32_t get_offset_of_entityResolvedManually_20() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___entityResolvedManually_20)); } inline bool get_entityResolvedManually_20() const { return ___entityResolvedManually_20; } inline bool* get_address_of_entityResolvedManually_20() { return &___entityResolvedManually_20; } inline void set_entityResolvedManually_20(bool value) { ___entityResolvedManually_20 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Xml.XmlTextReaderImpl/ParsingState struct ParsingState_t1780334922_marshaled_pinvoke { uint8_t* ___chars_0; int32_t ___charPos_1; int32_t ___charsUsed_2; Encoding_t1523322056 * ___encoding_3; int32_t ___appendMode_4; Stream_t1273022909 * ___stream_5; Decoder_t2204182725 * ___decoder_6; uint8_t* ___bytes_7; int32_t ___bytePos_8; int32_t ___bytesUsed_9; TextReader_t283511965 * ___textReader_10; int32_t ___lineNo_11; int32_t ___lineStartPos_12; char* ___baseUriStr_13; Uri_t100236324 * ___baseUri_14; int32_t ___isEof_15; int32_t ___isStreamEof_16; RuntimeObject* ___entity_17; int32_t ___entityId_18; int32_t ___eolNormalized_19; int32_t ___entityResolvedManually_20; }; // Native definition for COM marshalling of System.Xml.XmlTextReaderImpl/ParsingState struct ParsingState_t1780334922_marshaled_com { uint8_t* ___chars_0; int32_t ___charPos_1; int32_t ___charsUsed_2; Encoding_t1523322056 * ___encoding_3; int32_t ___appendMode_4; Stream_t1273022909 * ___stream_5; Decoder_t2204182725 * ___decoder_6; uint8_t* ___bytes_7; int32_t ___bytePos_8; int32_t ___bytesUsed_9; TextReader_t283511965 * ___textReader_10; int32_t ___lineNo_11; int32_t ___lineStartPos_12; Il2CppChar* ___baseUriStr_13; Uri_t100236324 * ___baseUri_14; int32_t ___isEof_15; int32_t ___isStreamEof_16; RuntimeObject* ___entity_17; int32_t ___entityId_18; int32_t ___eolNormalized_19; int32_t ___entityResolvedManually_20; }; #endif // PARSINGSTATE_T1780334922_H #ifndef NAMESPACE_T2218256516_H #define NAMESPACE_T2218256516_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlTextWriter/Namespace struct Namespace_t2218256516 { public: // System.String System.Xml.XmlTextWriter/Namespace::prefix String_t* ___prefix_0; // System.String System.Xml.XmlTextWriter/Namespace::ns String_t* ___ns_1; // System.Boolean System.Xml.XmlTextWriter/Namespace::declared bool ___declared_2; // System.Int32 System.Xml.XmlTextWriter/Namespace::prevNsIndex int32_t ___prevNsIndex_3; public: inline static int32_t get_offset_of_prefix_0() { return static_cast<int32_t>(offsetof(Namespace_t2218256516, ___prefix_0)); } inline String_t* get_prefix_0() const { return ___prefix_0; } inline String_t** get_address_of_prefix_0() { return &___prefix_0; } inline void set_prefix_0(String_t* value) { ___prefix_0 = value; Il2CppCodeGenWriteBarrier((&___prefix_0), value); } inline static int32_t get_offset_of_ns_1() { return static_cast<int32_t>(offsetof(Namespace_t2218256516, ___ns_1)); } inline String_t* get_ns_1() const { return ___ns_1; } inline String_t** get_address_of_ns_1() { return &___ns_1; } inline void set_ns_1(String_t* value) { ___ns_1 = value; Il2CppCodeGenWriteBarrier((&___ns_1), value); } inline static int32_t get_offset_of_declared_2() { return static_cast<int32_t>(offsetof(Namespace_t2218256516, ___declared_2)); } inline bool get_declared_2() const { return ___declared_2; } inline bool* get_address_of_declared_2() { return &___declared_2; } inline void set_declared_2(bool value) { ___declared_2 = value; } inline static int32_t get_offset_of_prevNsIndex_3() { return static_cast<int32_t>(offsetof(Namespace_t2218256516, ___prevNsIndex_3)); } inline int32_t get_prevNsIndex_3() const { return ___prevNsIndex_3; } inline int32_t* get_address_of_prevNsIndex_3() { return &___prevNsIndex_3; } inline void set_prevNsIndex_3(int32_t value) { ___prevNsIndex_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Xml.XmlTextWriter/Namespace struct Namespace_t2218256516_marshaled_pinvoke { char* ___prefix_0; char* ___ns_1; int32_t ___declared_2; int32_t ___prevNsIndex_3; }; // Native definition for COM marshalling of System.Xml.XmlTextWriter/Namespace struct Namespace_t2218256516_marshaled_com { Il2CppChar* ___prefix_0; Il2CppChar* ___ns_1; int32_t ___declared_2; int32_t ___prevNsIndex_3; }; #endif // NAMESPACE_T2218256516_H #ifndef MATERIALREFERENCE_T1952344632_H #define MATERIALREFERENCE_T1952344632_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.MaterialReference struct MaterialReference_t1952344632 { public: // System.Int32 TMPro.MaterialReference::index int32_t ___index_0; // TMPro.TMP_FontAsset TMPro.MaterialReference::fontAsset TMP_FontAsset_t364381626 * ___fontAsset_1; // TMPro.TMP_SpriteAsset TMPro.MaterialReference::spriteAsset TMP_SpriteAsset_t484820633 * ___spriteAsset_2; // UnityEngine.Material TMPro.MaterialReference::material Material_t340375123 * ___material_3; // System.Boolean TMPro.MaterialReference::isDefaultMaterial bool ___isDefaultMaterial_4; // System.Boolean TMPro.MaterialReference::isFallbackMaterial bool ___isFallbackMaterial_5; // UnityEngine.Material TMPro.MaterialReference::fallbackMaterial Material_t340375123 * ___fallbackMaterial_6; // System.Single TMPro.MaterialReference::padding float ___padding_7; // System.Int32 TMPro.MaterialReference::referenceCount int32_t ___referenceCount_8; public: inline static int32_t get_offset_of_index_0() { return static_cast<int32_t>(offsetof(MaterialReference_t1952344632, ___index_0)); } inline int32_t get_index_0() const { return ___index_0; } inline int32_t* get_address_of_index_0() { return &___index_0; } inline void set_index_0(int32_t value) { ___index_0 = value; } inline static int32_t get_offset_of_fontAsset_1() { return static_cast<int32_t>(offsetof(MaterialReference_t1952344632, ___fontAsset_1)); } inline TMP_FontAsset_t364381626 * get_fontAsset_1() const { return ___fontAsset_1; } inline TMP_FontAsset_t364381626 ** get_address_of_fontAsset_1() { return &___fontAsset_1; } inline void set_fontAsset_1(TMP_FontAsset_t364381626 * value) { ___fontAsset_1 = value; Il2CppCodeGenWriteBarrier((&___fontAsset_1), value); } inline static int32_t get_offset_of_spriteAsset_2() { return static_cast<int32_t>(offsetof(MaterialReference_t1952344632, ___spriteAsset_2)); } inline TMP_SpriteAsset_t484820633 * get_spriteAsset_2() const { return ___spriteAsset_2; } inline TMP_SpriteAsset_t484820633 ** get_address_of_spriteAsset_2() { return &___spriteAsset_2; } inline void set_spriteAsset_2(TMP_SpriteAsset_t484820633 * value) { ___spriteAsset_2 = value; Il2CppCodeGenWriteBarrier((&___spriteAsset_2), value); } inline static int32_t get_offset_of_material_3() { return static_cast<int32_t>(offsetof(MaterialReference_t1952344632, ___material_3)); } inline Material_t340375123 * get_material_3() const { return ___material_3; } inline Material_t340375123 ** get_address_of_material_3() { return &___material_3; } inline void set_material_3(Material_t340375123 * value) { ___material_3 = value; Il2CppCodeGenWriteBarrier((&___material_3), value); } inline static int32_t get_offset_of_isDefaultMaterial_4() { return static_cast<int32_t>(offsetof(MaterialReference_t1952344632, ___isDefaultMaterial_4)); } inline bool get_isDefaultMaterial_4() const { return ___isDefaultMaterial_4; } inline bool* get_address_of_isDefaultMaterial_4() { return &___isDefaultMaterial_4; } inline void set_isDefaultMaterial_4(bool value) { ___isDefaultMaterial_4 = value; } inline static int32_t get_offset_of_isFallbackMaterial_5() { return static_cast<int32_t>(offsetof(MaterialReference_t1952344632, ___isFallbackMaterial_5)); } inline bool get_isFallbackMaterial_5() const { return ___isFallbackMaterial_5; } inline bool* get_address_of_isFallbackMaterial_5() { return &___isFallbackMaterial_5; } inline void set_isFallbackMaterial_5(bool value) { ___isFallbackMaterial_5 = value; } inline static int32_t get_offset_of_fallbackMaterial_6() { return static_cast<int32_t>(offsetof(MaterialReference_t1952344632, ___fallbackMaterial_6)); } inline Material_t340375123 * get_fallbackMaterial_6() const { return ___fallbackMaterial_6; } inline Material_t340375123 ** get_address_of_fallbackMaterial_6() { return &___fallbackMaterial_6; } inline void set_fallbackMaterial_6(Material_t340375123 * value) { ___fallbackMaterial_6 = value; Il2CppCodeGenWriteBarrier((&___fallbackMaterial_6), value); } inline static int32_t get_offset_of_padding_7() { return static_cast<int32_t>(offsetof(MaterialReference_t1952344632, ___padding_7)); } inline float get_padding_7() const { return ___padding_7; } inline float* get_address_of_padding_7() { return &___padding_7; } inline void set_padding_7(float value) { ___padding_7 = value; } inline static int32_t get_offset_of_referenceCount_8() { return static_cast<int32_t>(offsetof(MaterialReference_t1952344632, ___referenceCount_8)); } inline int32_t get_referenceCount_8() const { return ___referenceCount_8; } inline int32_t* get_address_of_referenceCount_8() { return &___referenceCount_8; } inline void set_referenceCount_8(int32_t value) { ___referenceCount_8 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of TMPro.MaterialReference struct MaterialReference_t1952344632_marshaled_pinvoke { int32_t ___index_0; TMP_FontAsset_t364381626 * ___fontAsset_1; TMP_SpriteAsset_t484820633 * ___spriteAsset_2; Material_t340375123 * ___material_3; int32_t ___isDefaultMaterial_4; int32_t ___isFallbackMaterial_5; Material_t340375123 * ___fallbackMaterial_6; float ___padding_7; int32_t ___referenceCount_8; }; // Native definition for COM marshalling of TMPro.MaterialReference struct MaterialReference_t1952344632_marshaled_com { int32_t ___index_0; TMP_FontAsset_t364381626 * ___fontAsset_1; TMP_SpriteAsset_t484820633 * ___spriteAsset_2; Material_t340375123 * ___material_3; int32_t ___isDefaultMaterial_4; int32_t ___isFallbackMaterial_5; Material_t340375123 * ___fallbackMaterial_6; float ___padding_7; int32_t ___referenceCount_8; }; #endif // MATERIALREFERENCE_T1952344632_H #ifndef SPRITEFRAME_T3912389194_H #define SPRITEFRAME_T3912389194_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.SpriteAssetUtilities.TexturePacker/SpriteFrame struct SpriteFrame_t3912389194 { public: // System.Single TMPro.SpriteAssetUtilities.TexturePacker/SpriteFrame::x float ___x_0; // System.Single TMPro.SpriteAssetUtilities.TexturePacker/SpriteFrame::y float ___y_1; // System.Single TMPro.SpriteAssetUtilities.TexturePacker/SpriteFrame::w float ___w_2; // System.Single TMPro.SpriteAssetUtilities.TexturePacker/SpriteFrame::h float ___h_3; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(SpriteFrame_t3912389194, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(SpriteFrame_t3912389194, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } inline static int32_t get_offset_of_w_2() { return static_cast<int32_t>(offsetof(SpriteFrame_t3912389194, ___w_2)); } inline float get_w_2() const { return ___w_2; } inline float* get_address_of_w_2() { return &___w_2; } inline void set_w_2(float value) { ___w_2 = value; } inline static int32_t get_offset_of_h_3() { return static_cast<int32_t>(offsetof(SpriteFrame_t3912389194, ___h_3)); } inline float get_h_3() const { return ___h_3; } inline float* get_address_of_h_3() { return &___h_3; } inline void set_h_3(float value) { ___h_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SPRITEFRAME_T3912389194_H #ifndef SPRITESIZE_T3355290999_H #define SPRITESIZE_T3355290999_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.SpriteAssetUtilities.TexturePacker/SpriteSize struct SpriteSize_t3355290999 { public: // System.Single TMPro.SpriteAssetUtilities.TexturePacker/SpriteSize::w float ___w_0; // System.Single TMPro.SpriteAssetUtilities.TexturePacker/SpriteSize::h float ___h_1; public: inline static int32_t get_offset_of_w_0() { return static_cast<int32_t>(offsetof(SpriteSize_t3355290999, ___w_0)); } inline float get_w_0() const { return ___w_0; } inline float* get_address_of_w_0() { return &___w_0; } inline void set_w_0(float value) { ___w_0 = value; } inline static int32_t get_offset_of_h_1() { return static_cast<int32_t>(offsetof(SpriteSize_t3355290999, ___h_1)); } inline float get_h_1() const { return ___h_1; } inline float* get_address_of_h_1() { return &___h_1; } inline void set_h_1(float value) { ___h_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SPRITESIZE_T3355290999_H #ifndef TMP_FONTWEIGHTS_T916301067_H #define TMP_FONTWEIGHTS_T916301067_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.TMP_FontWeights struct TMP_FontWeights_t916301067 { public: // TMPro.TMP_FontAsset TMPro.TMP_FontWeights::regularTypeface TMP_FontAsset_t364381626 * ___regularTypeface_0; // TMPro.TMP_FontAsset TMPro.TMP_FontWeights::italicTypeface TMP_FontAsset_t364381626 * ___italicTypeface_1; public: inline static int32_t get_offset_of_regularTypeface_0() { return static_cast<int32_t>(offsetof(TMP_FontWeights_t916301067, ___regularTypeface_0)); } inline TMP_FontAsset_t364381626 * get_regularTypeface_0() const { return ___regularTypeface_0; } inline TMP_FontAsset_t364381626 ** get_address_of_regularTypeface_0() { return &___regularTypeface_0; } inline void set_regularTypeface_0(TMP_FontAsset_t364381626 * value) { ___regularTypeface_0 = value; Il2CppCodeGenWriteBarrier((&___regularTypeface_0), value); } inline static int32_t get_offset_of_italicTypeface_1() { return static_cast<int32_t>(offsetof(TMP_FontWeights_t916301067, ___italicTypeface_1)); } inline TMP_FontAsset_t364381626 * get_italicTypeface_1() const { return ___italicTypeface_1; } inline TMP_FontAsset_t364381626 ** get_address_of_italicTypeface_1() { return &___italicTypeface_1; } inline void set_italicTypeface_1(TMP_FontAsset_t364381626 * value) { ___italicTypeface_1 = value; Il2CppCodeGenWriteBarrier((&___italicTypeface_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of TMPro.TMP_FontWeights struct TMP_FontWeights_t916301067_marshaled_pinvoke { TMP_FontAsset_t364381626 * ___regularTypeface_0; TMP_FontAsset_t364381626 * ___italicTypeface_1; }; // Native definition for COM marshalling of TMPro.TMP_FontWeights struct TMP_FontWeights_t916301067_marshaled_com { TMP_FontAsset_t364381626 * ___regularTypeface_0; TMP_FontAsset_t364381626 * ___italicTypeface_1; }; #endif // TMP_FONTWEIGHTS_T916301067_H #ifndef TMP_LINKINFO_T1092083476_H #define TMP_LINKINFO_T1092083476_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.TMP_LinkInfo struct TMP_LinkInfo_t1092083476 { public: // TMPro.TMP_Text TMPro.TMP_LinkInfo::textComponent TMP_Text_t2599618874 * ___textComponent_0; // System.Int32 TMPro.TMP_LinkInfo::hashCode int32_t ___hashCode_1; // System.Int32 TMPro.TMP_LinkInfo::linkIdFirstCharacterIndex int32_t ___linkIdFirstCharacterIndex_2; // System.Int32 TMPro.TMP_LinkInfo::linkIdLength int32_t ___linkIdLength_3; // System.Int32 TMPro.TMP_LinkInfo::linkTextfirstCharacterIndex int32_t ___linkTextfirstCharacterIndex_4; // System.Int32 TMPro.TMP_LinkInfo::linkTextLength int32_t ___linkTextLength_5; // System.Char[] TMPro.TMP_LinkInfo::linkID CharU5BU5D_t3528271667* ___linkID_6; public: inline static int32_t get_offset_of_textComponent_0() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t1092083476, ___textComponent_0)); } inline TMP_Text_t2599618874 * get_textComponent_0() const { return ___textComponent_0; } inline TMP_Text_t2599618874 ** get_address_of_textComponent_0() { return &___textComponent_0; } inline void set_textComponent_0(TMP_Text_t2599618874 * value) { ___textComponent_0 = value; Il2CppCodeGenWriteBarrier((&___textComponent_0), value); } inline static int32_t get_offset_of_hashCode_1() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t1092083476, ___hashCode_1)); } inline int32_t get_hashCode_1() const { return ___hashCode_1; } inline int32_t* get_address_of_hashCode_1() { return &___hashCode_1; } inline void set_hashCode_1(int32_t value) { ___hashCode_1 = value; } inline static int32_t get_offset_of_linkIdFirstCharacterIndex_2() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t1092083476, ___linkIdFirstCharacterIndex_2)); } inline int32_t get_linkIdFirstCharacterIndex_2() const { return ___linkIdFirstCharacterIndex_2; } inline int32_t* get_address_of_linkIdFirstCharacterIndex_2() { return &___linkIdFirstCharacterIndex_2; } inline void set_linkIdFirstCharacterIndex_2(int32_t value) { ___linkIdFirstCharacterIndex_2 = value; } inline static int32_t get_offset_of_linkIdLength_3() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t1092083476, ___linkIdLength_3)); } inline int32_t get_linkIdLength_3() const { return ___linkIdLength_3; } inline int32_t* get_address_of_linkIdLength_3() { return &___linkIdLength_3; } inline void set_linkIdLength_3(int32_t value) { ___linkIdLength_3 = value; } inline static int32_t get_offset_of_linkTextfirstCharacterIndex_4() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t1092083476, ___linkTextfirstCharacterIndex_4)); } inline int32_t get_linkTextfirstCharacterIndex_4() const { return ___linkTextfirstCharacterIndex_4; } inline int32_t* get_address_of_linkTextfirstCharacterIndex_4() { return &___linkTextfirstCharacterIndex_4; } inline void set_linkTextfirstCharacterIndex_4(int32_t value) { ___linkTextfirstCharacterIndex_4 = value; } inline static int32_t get_offset_of_linkTextLength_5() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t1092083476, ___linkTextLength_5)); } inline int32_t get_linkTextLength_5() const { return ___linkTextLength_5; } inline int32_t* get_address_of_linkTextLength_5() { return &___linkTextLength_5; } inline void set_linkTextLength_5(int32_t value) { ___linkTextLength_5 = value; } inline static int32_t get_offset_of_linkID_6() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t1092083476, ___linkID_6)); } inline CharU5BU5D_t3528271667* get_linkID_6() const { return ___linkID_6; } inline CharU5BU5D_t3528271667** get_address_of_linkID_6() { return &___linkID_6; } inline void set_linkID_6(CharU5BU5D_t3528271667* value) { ___linkID_6 = value; Il2CppCodeGenWriteBarrier((&___linkID_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of TMPro.TMP_LinkInfo struct TMP_LinkInfo_t1092083476_marshaled_pinvoke { TMP_Text_t2599618874 * ___textComponent_0; int32_t ___hashCode_1; int32_t ___linkIdFirstCharacterIndex_2; int32_t ___linkIdLength_3; int32_t ___linkTextfirstCharacterIndex_4; int32_t ___linkTextLength_5; uint8_t* ___linkID_6; }; // Native definition for COM marshalling of TMPro.TMP_LinkInfo struct TMP_LinkInfo_t1092083476_marshaled_com { TMP_Text_t2599618874 * ___textComponent_0; int32_t ___hashCode_1; int32_t ___linkIdFirstCharacterIndex_2; int32_t ___linkIdLength_3; int32_t ___linkTextfirstCharacterIndex_4; int32_t ___linkTextLength_5; uint8_t* ___linkID_6; }; #endif // TMP_LINKINFO_T1092083476_H #ifndef TMP_PAGEINFO_T2608430633_H #define TMP_PAGEINFO_T2608430633_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.TMP_PageInfo struct TMP_PageInfo_t2608430633 { public: // System.Int32 TMPro.TMP_PageInfo::firstCharacterIndex int32_t ___firstCharacterIndex_0; // System.Int32 TMPro.TMP_PageInfo::lastCharacterIndex int32_t ___lastCharacterIndex_1; // System.Single TMPro.TMP_PageInfo::ascender float ___ascender_2; // System.Single TMPro.TMP_PageInfo::baseLine float ___baseLine_3; // System.Single TMPro.TMP_PageInfo::descender float ___descender_4; public: inline static int32_t get_offset_of_firstCharacterIndex_0() { return static_cast<int32_t>(offsetof(TMP_PageInfo_t2608430633, ___firstCharacterIndex_0)); } inline int32_t get_firstCharacterIndex_0() const { return ___firstCharacterIndex_0; } inline int32_t* get_address_of_firstCharacterIndex_0() { return &___firstCharacterIndex_0; } inline void set_firstCharacterIndex_0(int32_t value) { ___firstCharacterIndex_0 = value; } inline static int32_t get_offset_of_lastCharacterIndex_1() { return static_cast<int32_t>(offsetof(TMP_PageInfo_t2608430633, ___lastCharacterIndex_1)); } inline int32_t get_lastCharacterIndex_1() const { return ___lastCharacterIndex_1; } inline int32_t* get_address_of_lastCharacterIndex_1() { return &___lastCharacterIndex_1; } inline void set_lastCharacterIndex_1(int32_t value) { ___lastCharacterIndex_1 = value; } inline static int32_t get_offset_of_ascender_2() { return static_cast<int32_t>(offsetof(TMP_PageInfo_t2608430633, ___ascender_2)); } inline float get_ascender_2() const { return ___ascender_2; } inline float* get_address_of_ascender_2() { return &___ascender_2; } inline void set_ascender_2(float value) { ___ascender_2 = value; } inline static int32_t get_offset_of_baseLine_3() { return static_cast<int32_t>(offsetof(TMP_PageInfo_t2608430633, ___baseLine_3)); } inline float get_baseLine_3() const { return ___baseLine_3; } inline float* get_address_of_baseLine_3() { return &___baseLine_3; } inline void set_baseLine_3(float value) { ___baseLine_3 = value; } inline static int32_t get_offset_of_descender_4() { return static_cast<int32_t>(offsetof(TMP_PageInfo_t2608430633, ___descender_4)); } inline float get_descender_4() const { return ___descender_4; } inline float* get_address_of_descender_4() { return &___descender_4; } inline void set_descender_4(float value) { ___descender_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TMP_PAGEINFO_T2608430633_H #ifndef TMP_WORDINFO_T3331066303_H #define TMP_WORDINFO_T3331066303_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.TMP_WordInfo struct TMP_WordInfo_t3331066303 { public: // TMPro.TMP_Text TMPro.TMP_WordInfo::textComponent TMP_Text_t2599618874 * ___textComponent_0; // System.Int32 TMPro.TMP_WordInfo::firstCharacterIndex int32_t ___firstCharacterIndex_1; // System.Int32 TMPro.TMP_WordInfo::lastCharacterIndex int32_t ___lastCharacterIndex_2; // System.Int32 TMPro.TMP_WordInfo::characterCount int32_t ___characterCount_3; public: inline static int32_t get_offset_of_textComponent_0() { return static_cast<int32_t>(offsetof(TMP_WordInfo_t3331066303, ___textComponent_0)); } inline TMP_Text_t2599618874 * get_textComponent_0() const { return ___textComponent_0; } inline TMP_Text_t2599618874 ** get_address_of_textComponent_0() { return &___textComponent_0; } inline void set_textComponent_0(TMP_Text_t2599618874 * value) { ___textComponent_0 = value; Il2CppCodeGenWriteBarrier((&___textComponent_0), value); } inline static int32_t get_offset_of_firstCharacterIndex_1() { return static_cast<int32_t>(offsetof(TMP_WordInfo_t3331066303, ___firstCharacterIndex_1)); } inline int32_t get_firstCharacterIndex_1() const { return ___firstCharacterIndex_1; } inline int32_t* get_address_of_firstCharacterIndex_1() { return &___firstCharacterIndex_1; } inline void set_firstCharacterIndex_1(int32_t value) { ___firstCharacterIndex_1 = value; } inline static int32_t get_offset_of_lastCharacterIndex_2() { return static_cast<int32_t>(offsetof(TMP_WordInfo_t3331066303, ___lastCharacterIndex_2)); } inline int32_t get_lastCharacterIndex_2() const { return ___lastCharacterIndex_2; } inline int32_t* get_address_of_lastCharacterIndex_2() { return &___lastCharacterIndex_2; } inline void set_lastCharacterIndex_2(int32_t value) { ___lastCharacterIndex_2 = value; } inline static int32_t get_offset_of_characterCount_3() { return static_cast<int32_t>(offsetof(TMP_WordInfo_t3331066303, ___characterCount_3)); } inline int32_t get_characterCount_3() const { return ___characterCount_3; } inline int32_t* get_address_of_characterCount_3() { return &___characterCount_3; } inline void set_characterCount_3(int32_t value) { ___characterCount_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of TMPro.TMP_WordInfo struct TMP_WordInfo_t3331066303_marshaled_pinvoke { TMP_Text_t2599618874 * ___textComponent_0; int32_t ___firstCharacterIndex_1; int32_t ___lastCharacterIndex_2; int32_t ___characterCount_3; }; // Native definition for COM marshalling of TMPro.TMP_WordInfo struct TMP_WordInfo_t3331066303_marshaled_com { TMP_Text_t2599618874 * ___textComponent_0; int32_t ___firstCharacterIndex_1; int32_t ___lastCharacterIndex_2; int32_t ___characterCount_3; }; #endif // TMP_WORDINFO_T3331066303_H #ifndef ORDERBLOCK_T1585977831_H #define ORDERBLOCK_T1585977831_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.BeforeRenderHelper/OrderBlock struct OrderBlock_t1585977831 { public: // System.Int32 UnityEngine.BeforeRenderHelper/OrderBlock::order int32_t ___order_0; // UnityEngine.Events.UnityAction UnityEngine.BeforeRenderHelper/OrderBlock::callback UnityAction_t3245792599 * ___callback_1; public: inline static int32_t get_offset_of_order_0() { return static_cast<int32_t>(offsetof(OrderBlock_t1585977831, ___order_0)); } inline int32_t get_order_0() const { return ___order_0; } inline int32_t* get_address_of_order_0() { return &___order_0; } inline void set_order_0(int32_t value) { ___order_0 = value; } inline static int32_t get_offset_of_callback_1() { return static_cast<int32_t>(offsetof(OrderBlock_t1585977831, ___callback_1)); } inline UnityAction_t3245792599 * get_callback_1() const { return ___callback_1; } inline UnityAction_t3245792599 ** get_address_of_callback_1() { return &___callback_1; } inline void set_callback_1(UnityAction_t3245792599 * value) { ___callback_1 = value; Il2CppCodeGenWriteBarrier((&___callback_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.BeforeRenderHelper/OrderBlock struct OrderBlock_t1585977831_marshaled_pinvoke { int32_t ___order_0; Il2CppMethodPointer ___callback_1; }; // Native definition for COM marshalling of UnityEngine.BeforeRenderHelper/OrderBlock struct OrderBlock_t1585977831_marshaled_com { int32_t ___order_0; Il2CppMethodPointer ___callback_1; }; #endif // ORDERBLOCK_T1585977831_H #ifndef COLOR_T2555686324_H #define COLOR_T2555686324_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Color struct Color_t2555686324 { public: // System.Single UnityEngine.Color::r float ___r_0; // System.Single UnityEngine.Color::g float ___g_1; // System.Single UnityEngine.Color::b float ___b_2; // System.Single UnityEngine.Color::a float ___a_3; public: inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___r_0)); } inline float get_r_0() const { return ___r_0; } inline float* get_address_of_r_0() { return &___r_0; } inline void set_r_0(float value) { ___r_0 = value; } inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___g_1)); } inline float get_g_1() const { return ___g_1; } inline float* get_address_of_g_1() { return &___g_1; } inline void set_g_1(float value) { ___g_1 = value; } inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___b_2)); } inline float get_b_2() const { return ___b_2; } inline float* get_address_of_b_2() { return &___b_2; } inline void set_b_2(float value) { ___b_2 = value; } inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___a_3)); } inline float get_a_3() const { return ___a_3; } inline float* get_address_of_a_3() { return &___a_3; } inline void set_a_3(float value) { ___a_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COLOR_T2555686324_H #ifndef COLOR32_T2600501292_H #define COLOR32_T2600501292_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Color32 struct Color32_t2600501292 { public: union { #pragma pack(push, tp, 1) struct { // System.Int32 UnityEngine.Color32::rgba int32_t ___rgba_0; }; #pragma pack(pop, tp) struct { int32_t ___rgba_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.Byte UnityEngine.Color32::r uint8_t ___r_1; }; #pragma pack(pop, tp) struct { uint8_t ___r_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___g_2_OffsetPadding[1]; // System.Byte UnityEngine.Color32::g uint8_t ___g_2; }; #pragma pack(pop, tp) struct { char ___g_2_OffsetPadding_forAlignmentOnly[1]; uint8_t ___g_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___b_3_OffsetPadding[2]; // System.Byte UnityEngine.Color32::b uint8_t ___b_3; }; #pragma pack(pop, tp) struct { char ___b_3_OffsetPadding_forAlignmentOnly[2]; uint8_t ___b_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___a_4_OffsetPadding[3]; // System.Byte UnityEngine.Color32::a uint8_t ___a_4; }; #pragma pack(pop, tp) struct { char ___a_4_OffsetPadding_forAlignmentOnly[3]; uint8_t ___a_4_forAlignmentOnly; }; }; public: inline static int32_t get_offset_of_rgba_0() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___rgba_0)); } inline int32_t get_rgba_0() const { return ___rgba_0; } inline int32_t* get_address_of_rgba_0() { return &___rgba_0; } inline void set_rgba_0(int32_t value) { ___rgba_0 = value; } inline static int32_t get_offset_of_r_1() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___r_1)); } inline uint8_t get_r_1() const { return ___r_1; } inline uint8_t* get_address_of_r_1() { return &___r_1; } inline void set_r_1(uint8_t value) { ___r_1 = value; } inline static int32_t get_offset_of_g_2() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___g_2)); } inline uint8_t get_g_2() const { return ___g_2; } inline uint8_t* get_address_of_g_2() { return &___g_2; } inline void set_g_2(uint8_t value) { ___g_2 = value; } inline static int32_t get_offset_of_b_3() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___b_3)); } inline uint8_t get_b_3() const { return ___b_3; } inline uint8_t* get_address_of_b_3() { return &___b_3; } inline void set_b_3(uint8_t value) { ___b_3 = value; } inline static int32_t get_offset_of_a_4() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___a_4)); } inline uint8_t get_a_4() const { return ___a_4; } inline uint8_t* get_address_of_a_4() { return &___a_4; } inline void set_a_4(uint8_t value) { ___a_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COLOR32_T2600501292_H #ifndef BASEEVENTDATA_T3903027533_H #define BASEEVENTDATA_T3903027533_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.EventSystems.BaseEventData struct BaseEventData_t3903027533 : public AbstractEventData_t4171500731 { public: // UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.BaseEventData::m_EventSystem EventSystem_t1003666588 * ___m_EventSystem_1; public: inline static int32_t get_offset_of_m_EventSystem_1() { return static_cast<int32_t>(offsetof(BaseEventData_t3903027533, ___m_EventSystem_1)); } inline EventSystem_t1003666588 * get_m_EventSystem_1() const { return ___m_EventSystem_1; } inline EventSystem_t1003666588 ** get_address_of_m_EventSystem_1() { return &___m_EventSystem_1; } inline void set_m_EventSystem_1(EventSystem_t1003666588 * value) { ___m_EventSystem_1 = value; Il2CppCodeGenWriteBarrier((&___m_EventSystem_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BASEEVENTDATA_T3903027533_H #ifndef KEYFRAME_T4206410242_H #define KEYFRAME_T4206410242_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Keyframe struct Keyframe_t4206410242 { public: // System.Single UnityEngine.Keyframe::m_Time float ___m_Time_0; // System.Single UnityEngine.Keyframe::m_Value float ___m_Value_1; // System.Single UnityEngine.Keyframe::m_InTangent float ___m_InTangent_2; // System.Single UnityEngine.Keyframe::m_OutTangent float ___m_OutTangent_3; // System.Int32 UnityEngine.Keyframe::m_WeightedMode int32_t ___m_WeightedMode_4; // System.Single UnityEngine.Keyframe::m_InWeight float ___m_InWeight_5; // System.Single UnityEngine.Keyframe::m_OutWeight float ___m_OutWeight_6; public: inline static int32_t get_offset_of_m_Time_0() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_Time_0)); } inline float get_m_Time_0() const { return ___m_Time_0; } inline float* get_address_of_m_Time_0() { return &___m_Time_0; } inline void set_m_Time_0(float value) { ___m_Time_0 = value; } inline static int32_t get_offset_of_m_Value_1() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_Value_1)); } inline float get_m_Value_1() const { return ___m_Value_1; } inline float* get_address_of_m_Value_1() { return &___m_Value_1; } inline void set_m_Value_1(float value) { ___m_Value_1 = value; } inline static int32_t get_offset_of_m_InTangent_2() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_InTangent_2)); } inline float get_m_InTangent_2() const { return ___m_InTangent_2; } inline float* get_address_of_m_InTangent_2() { return &___m_InTangent_2; } inline void set_m_InTangent_2(float value) { ___m_InTangent_2 = value; } inline static int32_t get_offset_of_m_OutTangent_3() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_OutTangent_3)); } inline float get_m_OutTangent_3() const { return ___m_OutTangent_3; } inline float* get_address_of_m_OutTangent_3() { return &___m_OutTangent_3; } inline void set_m_OutTangent_3(float value) { ___m_OutTangent_3 = value; } inline static int32_t get_offset_of_m_WeightedMode_4() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_WeightedMode_4)); } inline int32_t get_m_WeightedMode_4() const { return ___m_WeightedMode_4; } inline int32_t* get_address_of_m_WeightedMode_4() { return &___m_WeightedMode_4; } inline void set_m_WeightedMode_4(int32_t value) { ___m_WeightedMode_4 = value; } inline static int32_t get_offset_of_m_InWeight_5() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_InWeight_5)); } inline float get_m_InWeight_5() const { return ___m_InWeight_5; } inline float* get_address_of_m_InWeight_5() { return &___m_InWeight_5; } inline void set_m_InWeight_5(float value) { ___m_InWeight_5 = value; } inline static int32_t get_offset_of_m_OutWeight_6() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_OutWeight_6)); } inline float get_m_OutWeight_6() const { return ___m_OutWeight_6; } inline float* get_address_of_m_OutWeight_6() { return &___m_OutWeight_6; } inline void set_m_OutWeight_6(float value) { ___m_OutWeight_6 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYFRAME_T4206410242_H #ifndef MATRIX4X4_T1817901843_H #define MATRIX4X4_T1817901843_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Matrix4x4 struct Matrix4x4_t1817901843 { public: // System.Single UnityEngine.Matrix4x4::m00 float ___m00_0; // System.Single UnityEngine.Matrix4x4::m10 float ___m10_1; // System.Single UnityEngine.Matrix4x4::m20 float ___m20_2; // System.Single UnityEngine.Matrix4x4::m30 float ___m30_3; // System.Single UnityEngine.Matrix4x4::m01 float ___m01_4; // System.Single UnityEngine.Matrix4x4::m11 float ___m11_5; // System.Single UnityEngine.Matrix4x4::m21 float ___m21_6; // System.Single UnityEngine.Matrix4x4::m31 float ___m31_7; // System.Single UnityEngine.Matrix4x4::m02 float ___m02_8; // System.Single UnityEngine.Matrix4x4::m12 float ___m12_9; // System.Single UnityEngine.Matrix4x4::m22 float ___m22_10; // System.Single UnityEngine.Matrix4x4::m32 float ___m32_11; // System.Single UnityEngine.Matrix4x4::m03 float ___m03_12; // System.Single UnityEngine.Matrix4x4::m13 float ___m13_13; // System.Single UnityEngine.Matrix4x4::m23 float ___m23_14; // System.Single UnityEngine.Matrix4x4::m33 float ___m33_15; public: inline static int32_t get_offset_of_m00_0() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843, ___m00_0)); } inline float get_m00_0() const { return ___m00_0; } inline float* get_address_of_m00_0() { return &___m00_0; } inline void set_m00_0(float value) { ___m00_0 = value; } inline static int32_t get_offset_of_m10_1() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843, ___m10_1)); } inline float get_m10_1() const { return ___m10_1; } inline float* get_address_of_m10_1() { return &___m10_1; } inline void set_m10_1(float value) { ___m10_1 = value; } inline static int32_t get_offset_of_m20_2() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843, ___m20_2)); } inline float get_m20_2() const { return ___m20_2; } inline float* get_address_of_m20_2() { return &___m20_2; } inline void set_m20_2(float value) { ___m20_2 = value; } inline static int32_t get_offset_of_m30_3() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843, ___m30_3)); } inline float get_m30_3() const { return ___m30_3; } inline float* get_address_of_m30_3() { return &___m30_3; } inline void set_m30_3(float value) { ___m30_3 = value; } inline static int32_t get_offset_of_m01_4() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843, ___m01_4)); } inline float get_m01_4() const { return ___m01_4; } inline float* get_address_of_m01_4() { return &___m01_4; } inline void set_m01_4(float value) { ___m01_4 = value; } inline static int32_t get_offset_of_m11_5() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843, ___m11_5)); } inline float get_m11_5() const { return ___m11_5; } inline float* get_address_of_m11_5() { return &___m11_5; } inline void set_m11_5(float value) { ___m11_5 = value; } inline static int32_t get_offset_of_m21_6() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843, ___m21_6)); } inline float get_m21_6() const { return ___m21_6; } inline float* get_address_of_m21_6() { return &___m21_6; } inline void set_m21_6(float value) { ___m21_6 = value; } inline static int32_t get_offset_of_m31_7() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843, ___m31_7)); } inline float get_m31_7() const { return ___m31_7; } inline float* get_address_of_m31_7() { return &___m31_7; } inline void set_m31_7(float value) { ___m31_7 = value; } inline static int32_t get_offset_of_m02_8() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843, ___m02_8)); } inline float get_m02_8() const { return ___m02_8; } inline float* get_address_of_m02_8() { return &___m02_8; } inline void set_m02_8(float value) { ___m02_8 = value; } inline static int32_t get_offset_of_m12_9() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843, ___m12_9)); } inline float get_m12_9() const { return ___m12_9; } inline float* get_address_of_m12_9() { return &___m12_9; } inline void set_m12_9(float value) { ___m12_9 = value; } inline static int32_t get_offset_of_m22_10() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843, ___m22_10)); } inline float get_m22_10() const { return ___m22_10; } inline float* get_address_of_m22_10() { return &___m22_10; } inline void set_m22_10(float value) { ___m22_10 = value; } inline static int32_t get_offset_of_m32_11() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843, ___m32_11)); } inline float get_m32_11() const { return ___m32_11; } inline float* get_address_of_m32_11() { return &___m32_11; } inline void set_m32_11(float value) { ___m32_11 = value; } inline static int32_t get_offset_of_m03_12() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843, ___m03_12)); } inline float get_m03_12() const { return ___m03_12; } inline float* get_address_of_m03_12() { return &___m03_12; } inline void set_m03_12(float value) { ___m03_12 = value; } inline static int32_t get_offset_of_m13_13() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843, ___m13_13)); } inline float get_m13_13() const { return ___m13_13; } inline float* get_address_of_m13_13() { return &___m13_13; } inline void set_m13_13(float value) { ___m13_13 = value; } inline static int32_t get_offset_of_m23_14() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843, ___m23_14)); } inline float get_m23_14() const { return ___m23_14; } inline float* get_address_of_m23_14() { return &___m23_14; } inline void set_m23_14(float value) { ___m23_14 = value; } inline static int32_t get_offset_of_m33_15() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843, ___m33_15)); } inline float get_m33_15() const { return ___m33_15; } inline float* get_address_of_m33_15() { return &___m33_15; } inline void set_m33_15(float value) { ___m33_15 = value; } }; struct Matrix4x4_t1817901843_StaticFields { public: // UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix Matrix4x4_t1817901843 ___zeroMatrix_16; // UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix Matrix4x4_t1817901843 ___identityMatrix_17; public: inline static int32_t get_offset_of_zeroMatrix_16() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843_StaticFields, ___zeroMatrix_16)); } inline Matrix4x4_t1817901843 get_zeroMatrix_16() const { return ___zeroMatrix_16; } inline Matrix4x4_t1817901843 * get_address_of_zeroMatrix_16() { return &___zeroMatrix_16; } inline void set_zeroMatrix_16(Matrix4x4_t1817901843 value) { ___zeroMatrix_16 = value; } inline static int32_t get_offset_of_identityMatrix_17() { return static_cast<int32_t>(offsetof(Matrix4x4_t1817901843_StaticFields, ___identityMatrix_17)); } inline Matrix4x4_t1817901843 get_identityMatrix_17() const { return ___identityMatrix_17; } inline Matrix4x4_t1817901843 * get_address_of_identityMatrix_17() { return &___identityMatrix_17; } inline void set_identityMatrix_17(Matrix4x4_t1817901843 value) { ___identityMatrix_17 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MATRIX4X4_T1817901843_H #ifndef QUATERNION_T2301928331_H #define QUATERNION_T2301928331_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Quaternion struct Quaternion_t2301928331 { public: // System.Single UnityEngine.Quaternion::x float ___x_0; // System.Single UnityEngine.Quaternion::y float ___y_1; // System.Single UnityEngine.Quaternion::z float ___z_2; // System.Single UnityEngine.Quaternion::w float ___w_3; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Quaternion_t2301928331, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Quaternion_t2301928331, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Quaternion_t2301928331, ___z_2)); } inline float get_z_2() const { return ___z_2; } inline float* get_address_of_z_2() { return &___z_2; } inline void set_z_2(float value) { ___z_2 = value; } inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(Quaternion_t2301928331, ___w_3)); } inline float get_w_3() const { return ___w_3; } inline float* get_address_of_w_3() { return &___w_3; } inline void set_w_3(float value) { ___w_3 = value; } }; struct Quaternion_t2301928331_StaticFields { public: // UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion Quaternion_t2301928331 ___identityQuaternion_4; public: inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t2301928331_StaticFields, ___identityQuaternion_4)); } inline Quaternion_t2301928331 get_identityQuaternion_4() const { return ___identityQuaternion_4; } inline Quaternion_t2301928331 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; } inline void set_identityQuaternion_4(Quaternion_t2301928331 value) { ___identityQuaternion_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // QUATERNION_T2301928331_H #ifndef HITINFO_T3229609740_H #define HITINFO_T3229609740_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.SendMouseEvents/HitInfo struct HitInfo_t3229609740 { public: // UnityEngine.GameObject UnityEngine.SendMouseEvents/HitInfo::target GameObject_t1113636619 * ___target_0; // UnityEngine.Camera UnityEngine.SendMouseEvents/HitInfo::camera Camera_t4157153871 * ___camera_1; public: inline static int32_t get_offset_of_target_0() { return static_cast<int32_t>(offsetof(HitInfo_t3229609740, ___target_0)); } inline GameObject_t1113636619 * get_target_0() const { return ___target_0; } inline GameObject_t1113636619 ** get_address_of_target_0() { return &___target_0; } inline void set_target_0(GameObject_t1113636619 * value) { ___target_0 = value; Il2CppCodeGenWriteBarrier((&___target_0), value); } inline static int32_t get_offset_of_camera_1() { return static_cast<int32_t>(offsetof(HitInfo_t3229609740, ___camera_1)); } inline Camera_t4157153871 * get_camera_1() const { return ___camera_1; } inline Camera_t4157153871 ** get_address_of_camera_1() { return &___camera_1; } inline void set_camera_1(Camera_t4157153871 * value) { ___camera_1 = value; Il2CppCodeGenWriteBarrier((&___camera_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.SendMouseEvents/HitInfo struct HitInfo_t3229609740_marshaled_pinvoke { GameObject_t1113636619 * ___target_0; Camera_t4157153871 * ___camera_1; }; // Native definition for COM marshalling of UnityEngine.SendMouseEvents/HitInfo struct HitInfo_t3229609740_marshaled_com { GameObject_t1113636619 * ___target_0; Camera_t4157153871 * ___camera_1; }; #endif // HITINFO_T3229609740_H #ifndef GCACHIEVEMENTDATA_T675222246_H #define GCACHIEVEMENTDATA_T675222246_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.SocialPlatforms.GameCenter.GcAchievementData struct GcAchievementData_t675222246 { public: // System.String UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Identifier String_t* ___m_Identifier_0; // System.Double UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_PercentCompleted double ___m_PercentCompleted_1; // System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Completed int32_t ___m_Completed_2; // System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Hidden int32_t ___m_Hidden_3; // System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_LastReportedDate int32_t ___m_LastReportedDate_4; public: inline static int32_t get_offset_of_m_Identifier_0() { return static_cast<int32_t>(offsetof(GcAchievementData_t675222246, ___m_Identifier_0)); } inline String_t* get_m_Identifier_0() const { return ___m_Identifier_0; } inline String_t** get_address_of_m_Identifier_0() { return &___m_Identifier_0; } inline void set_m_Identifier_0(String_t* value) { ___m_Identifier_0 = value; Il2CppCodeGenWriteBarrier((&___m_Identifier_0), value); } inline static int32_t get_offset_of_m_PercentCompleted_1() { return static_cast<int32_t>(offsetof(GcAchievementData_t675222246, ___m_PercentCompleted_1)); } inline double get_m_PercentCompleted_1() const { return ___m_PercentCompleted_1; } inline double* get_address_of_m_PercentCompleted_1() { return &___m_PercentCompleted_1; } inline void set_m_PercentCompleted_1(double value) { ___m_PercentCompleted_1 = value; } inline static int32_t get_offset_of_m_Completed_2() { return static_cast<int32_t>(offsetof(GcAchievementData_t675222246, ___m_Completed_2)); } inline int32_t get_m_Completed_2() const { return ___m_Completed_2; } inline int32_t* get_address_of_m_Completed_2() { return &___m_Completed_2; } inline void set_m_Completed_2(int32_t value) { ___m_Completed_2 = value; } inline static int32_t get_offset_of_m_Hidden_3() { return static_cast<int32_t>(offsetof(GcAchievementData_t675222246, ___m_Hidden_3)); } inline int32_t get_m_Hidden_3() const { return ___m_Hidden_3; } inline int32_t* get_address_of_m_Hidden_3() { return &___m_Hidden_3; } inline void set_m_Hidden_3(int32_t value) { ___m_Hidden_3 = value; } inline static int32_t get_offset_of_m_LastReportedDate_4() { return static_cast<int32_t>(offsetof(GcAchievementData_t675222246, ___m_LastReportedDate_4)); } inline int32_t get_m_LastReportedDate_4() const { return ___m_LastReportedDate_4; } inline int32_t* get_address_of_m_LastReportedDate_4() { return &___m_LastReportedDate_4; } inline void set_m_LastReportedDate_4(int32_t value) { ___m_LastReportedDate_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.SocialPlatforms.GameCenter.GcAchievementData struct GcAchievementData_t675222246_marshaled_pinvoke { char* ___m_Identifier_0; double ___m_PercentCompleted_1; int32_t ___m_Completed_2; int32_t ___m_Hidden_3; int32_t ___m_LastReportedDate_4; }; // Native definition for COM marshalling of UnityEngine.SocialPlatforms.GameCenter.GcAchievementData struct GcAchievementData_t675222246_marshaled_com { Il2CppChar* ___m_Identifier_0; double ___m_PercentCompleted_1; int32_t ___m_Completed_2; int32_t ___m_Hidden_3; int32_t ___m_LastReportedDate_4; }; #endif // GCACHIEVEMENTDATA_T675222246_H #ifndef GCSCOREDATA_T2125309831_H #define GCSCOREDATA_T2125309831_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.SocialPlatforms.GameCenter.GcScoreData struct GcScoreData_t2125309831 { public: // System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Category String_t* ___m_Category_0; // System.UInt32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_ValueLow uint32_t ___m_ValueLow_1; // System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_ValueHigh int32_t ___m_ValueHigh_2; // System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Date int32_t ___m_Date_3; // System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_FormattedValue String_t* ___m_FormattedValue_4; // System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_PlayerID String_t* ___m_PlayerID_5; // System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Rank int32_t ___m_Rank_6; public: inline static int32_t get_offset_of_m_Category_0() { return static_cast<int32_t>(offsetof(GcScoreData_t2125309831, ___m_Category_0)); } inline String_t* get_m_Category_0() const { return ___m_Category_0; } inline String_t** get_address_of_m_Category_0() { return &___m_Category_0; } inline void set_m_Category_0(String_t* value) { ___m_Category_0 = value; Il2CppCodeGenWriteBarrier((&___m_Category_0), value); } inline static int32_t get_offset_of_m_ValueLow_1() { return static_cast<int32_t>(offsetof(GcScoreData_t2125309831, ___m_ValueLow_1)); } inline uint32_t get_m_ValueLow_1() const { return ___m_ValueLow_1; } inline uint32_t* get_address_of_m_ValueLow_1() { return &___m_ValueLow_1; } inline void set_m_ValueLow_1(uint32_t value) { ___m_ValueLow_1 = value; } inline static int32_t get_offset_of_m_ValueHigh_2() { return static_cast<int32_t>(offsetof(GcScoreData_t2125309831, ___m_ValueHigh_2)); } inline int32_t get_m_ValueHigh_2() const { return ___m_ValueHigh_2; } inline int32_t* get_address_of_m_ValueHigh_2() { return &___m_ValueHigh_2; } inline void set_m_ValueHigh_2(int32_t value) { ___m_ValueHigh_2 = value; } inline static int32_t get_offset_of_m_Date_3() { return static_cast<int32_t>(offsetof(GcScoreData_t2125309831, ___m_Date_3)); } inline int32_t get_m_Date_3() const { return ___m_Date_3; } inline int32_t* get_address_of_m_Date_3() { return &___m_Date_3; } inline void set_m_Date_3(int32_t value) { ___m_Date_3 = value; } inline static int32_t get_offset_of_m_FormattedValue_4() { return static_cast<int32_t>(offsetof(GcScoreData_t2125309831, ___m_FormattedValue_4)); } inline String_t* get_m_FormattedValue_4() const { return ___m_FormattedValue_4; } inline String_t** get_address_of_m_FormattedValue_4() { return &___m_FormattedValue_4; } inline void set_m_FormattedValue_4(String_t* value) { ___m_FormattedValue_4 = value; Il2CppCodeGenWriteBarrier((&___m_FormattedValue_4), value); } inline static int32_t get_offset_of_m_PlayerID_5() { return static_cast<int32_t>(offsetof(GcScoreData_t2125309831, ___m_PlayerID_5)); } inline String_t* get_m_PlayerID_5() const { return ___m_PlayerID_5; } inline String_t** get_address_of_m_PlayerID_5() { return &___m_PlayerID_5; } inline void set_m_PlayerID_5(String_t* value) { ___m_PlayerID_5 = value; Il2CppCodeGenWriteBarrier((&___m_PlayerID_5), value); } inline static int32_t get_offset_of_m_Rank_6() { return static_cast<int32_t>(offsetof(GcScoreData_t2125309831, ___m_Rank_6)); } inline int32_t get_m_Rank_6() const { return ___m_Rank_6; } inline int32_t* get_address_of_m_Rank_6() { return &___m_Rank_6; } inline void set_m_Rank_6(int32_t value) { ___m_Rank_6 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.SocialPlatforms.GameCenter.GcScoreData struct GcScoreData_t2125309831_marshaled_pinvoke { char* ___m_Category_0; uint32_t ___m_ValueLow_1; int32_t ___m_ValueHigh_2; int32_t ___m_Date_3; char* ___m_FormattedValue_4; char* ___m_PlayerID_5; int32_t ___m_Rank_6; }; // Native definition for COM marshalling of UnityEngine.SocialPlatforms.GameCenter.GcScoreData struct GcScoreData_t2125309831_marshaled_com { Il2CppChar* ___m_Category_0; uint32_t ___m_ValueLow_1; int32_t ___m_ValueHigh_2; int32_t ___m_Date_3; Il2CppChar* ___m_FormattedValue_4; Il2CppChar* ___m_PlayerID_5; int32_t ___m_Rank_6; }; #endif // GCSCOREDATA_T2125309831_H #ifndef SPRITESTATE_T1362986479_H #define SPRITESTATE_T1362986479_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UI.SpriteState struct SpriteState_t1362986479 { public: // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_HighlightedSprite Sprite_t280657092 * ___m_HighlightedSprite_0; // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_PressedSprite Sprite_t280657092 * ___m_PressedSprite_1; // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_DisabledSprite Sprite_t280657092 * ___m_DisabledSprite_2; public: inline static int32_t get_offset_of_m_HighlightedSprite_0() { return static_cast<int32_t>(offsetof(SpriteState_t1362986479, ___m_HighlightedSprite_0)); } inline Sprite_t280657092 * get_m_HighlightedSprite_0() const { return ___m_HighlightedSprite_0; } inline Sprite_t280657092 ** get_address_of_m_HighlightedSprite_0() { return &___m_HighlightedSprite_0; } inline void set_m_HighlightedSprite_0(Sprite_t280657092 * value) { ___m_HighlightedSprite_0 = value; Il2CppCodeGenWriteBarrier((&___m_HighlightedSprite_0), value); } inline static int32_t get_offset_of_m_PressedSprite_1() { return static_cast<int32_t>(offsetof(SpriteState_t1362986479, ___m_PressedSprite_1)); } inline Sprite_t280657092 * get_m_PressedSprite_1() const { return ___m_PressedSprite_1; } inline Sprite_t280657092 ** get_address_of_m_PressedSprite_1() { return &___m_PressedSprite_1; } inline void set_m_PressedSprite_1(Sprite_t280657092 * value) { ___m_PressedSprite_1 = value; Il2CppCodeGenWriteBarrier((&___m_PressedSprite_1), value); } inline static int32_t get_offset_of_m_DisabledSprite_2() { return static_cast<int32_t>(offsetof(SpriteState_t1362986479, ___m_DisabledSprite_2)); } inline Sprite_t280657092 * get_m_DisabledSprite_2() const { return ___m_DisabledSprite_2; } inline Sprite_t280657092 ** get_address_of_m_DisabledSprite_2() { return &___m_DisabledSprite_2; } inline void set_m_DisabledSprite_2(Sprite_t280657092 * value) { ___m_DisabledSprite_2 = value; Il2CppCodeGenWriteBarrier((&___m_DisabledSprite_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.UI.SpriteState struct SpriteState_t1362986479_marshaled_pinvoke { Sprite_t280657092 * ___m_HighlightedSprite_0; Sprite_t280657092 * ___m_PressedSprite_1; Sprite_t280657092 * ___m_DisabledSprite_2; }; // Native definition for COM marshalling of UnityEngine.UI.SpriteState struct SpriteState_t1362986479_marshaled_com { Sprite_t280657092 * ___m_HighlightedSprite_0; Sprite_t280657092 * ___m_PressedSprite_1; Sprite_t280657092 * ___m_DisabledSprite_2; }; #endif // SPRITESTATE_T1362986479_H #ifndef UILINEINFO_T4195266810_H #define UILINEINFO_T4195266810_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UILineInfo struct UILineInfo_t4195266810 { public: // System.Int32 UnityEngine.UILineInfo::startCharIdx int32_t ___startCharIdx_0; // System.Int32 UnityEngine.UILineInfo::height int32_t ___height_1; // System.Single UnityEngine.UILineInfo::topY float ___topY_2; // System.Single UnityEngine.UILineInfo::leading float ___leading_3; public: inline static int32_t get_offset_of_startCharIdx_0() { return static_cast<int32_t>(offsetof(UILineInfo_t4195266810, ___startCharIdx_0)); } inline int32_t get_startCharIdx_0() const { return ___startCharIdx_0; } inline int32_t* get_address_of_startCharIdx_0() { return &___startCharIdx_0; } inline void set_startCharIdx_0(int32_t value) { ___startCharIdx_0 = value; } inline static int32_t get_offset_of_height_1() { return static_cast<int32_t>(offsetof(UILineInfo_t4195266810, ___height_1)); } inline int32_t get_height_1() const { return ___height_1; } inline int32_t* get_address_of_height_1() { return &___height_1; } inline void set_height_1(int32_t value) { ___height_1 = value; } inline static int32_t get_offset_of_topY_2() { return static_cast<int32_t>(offsetof(UILineInfo_t4195266810, ___topY_2)); } inline float get_topY_2() const { return ___topY_2; } inline float* get_address_of_topY_2() { return &___topY_2; } inline void set_topY_2(float value) { ___topY_2 = value; } inline static int32_t get_offset_of_leading_3() { return static_cast<int32_t>(offsetof(UILineInfo_t4195266810, ___leading_3)); } inline float get_leading_3() const { return ___leading_3; } inline float* get_address_of_leading_3() { return &___leading_3; } inline void set_leading_3(float value) { ___leading_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UILINEINFO_T4195266810_H #ifndef WORKREQUEST_T1354518612_H #define WORKREQUEST_T1354518612_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UnitySynchronizationContext/WorkRequest struct WorkRequest_t1354518612 { public: // System.Threading.SendOrPostCallback UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateCallback SendOrPostCallback_t2750080073 * ___m_DelagateCallback_0; // System.Object UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateState RuntimeObject * ___m_DelagateState_1; // System.Threading.ManualResetEvent UnityEngine.UnitySynchronizationContext/WorkRequest::m_WaitHandle ManualResetEvent_t451242010 * ___m_WaitHandle_2; public: inline static int32_t get_offset_of_m_DelagateCallback_0() { return static_cast<int32_t>(offsetof(WorkRequest_t1354518612, ___m_DelagateCallback_0)); } inline SendOrPostCallback_t2750080073 * get_m_DelagateCallback_0() const { return ___m_DelagateCallback_0; } inline SendOrPostCallback_t2750080073 ** get_address_of_m_DelagateCallback_0() { return &___m_DelagateCallback_0; } inline void set_m_DelagateCallback_0(SendOrPostCallback_t2750080073 * value) { ___m_DelagateCallback_0 = value; Il2CppCodeGenWriteBarrier((&___m_DelagateCallback_0), value); } inline static int32_t get_offset_of_m_DelagateState_1() { return static_cast<int32_t>(offsetof(WorkRequest_t1354518612, ___m_DelagateState_1)); } inline RuntimeObject * get_m_DelagateState_1() const { return ___m_DelagateState_1; } inline RuntimeObject ** get_address_of_m_DelagateState_1() { return &___m_DelagateState_1; } inline void set_m_DelagateState_1(RuntimeObject * value) { ___m_DelagateState_1 = value; Il2CppCodeGenWriteBarrier((&___m_DelagateState_1), value); } inline static int32_t get_offset_of_m_WaitHandle_2() { return static_cast<int32_t>(offsetof(WorkRequest_t1354518612, ___m_WaitHandle_2)); } inline ManualResetEvent_t451242010 * get_m_WaitHandle_2() const { return ___m_WaitHandle_2; } inline ManualResetEvent_t451242010 ** get_address_of_m_WaitHandle_2() { return &___m_WaitHandle_2; } inline void set_m_WaitHandle_2(ManualResetEvent_t451242010 * value) { ___m_WaitHandle_2 = value; Il2CppCodeGenWriteBarrier((&___m_WaitHandle_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest struct WorkRequest_t1354518612_marshaled_pinvoke { Il2CppMethodPointer ___m_DelagateCallback_0; Il2CppIUnknown* ___m_DelagateState_1; ManualResetEvent_t451242010 * ___m_WaitHandle_2; }; // Native definition for COM marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest struct WorkRequest_t1354518612_marshaled_com { Il2CppMethodPointer ___m_DelagateCallback_0; Il2CppIUnknown* ___m_DelagateState_1; ManualResetEvent_t451242010 * ___m_WaitHandle_2; }; #endif // WORKREQUEST_T1354518612_H #ifndef VECTOR2_T2156229523_H #define VECTOR2_T2156229523_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Vector2 struct Vector2_t2156229523 { public: // System.Single UnityEngine.Vector2::x float ___x_0; // System.Single UnityEngine.Vector2::y float ___y_1; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_t2156229523, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_t2156229523, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } }; struct Vector2_t2156229523_StaticFields { public: // UnityEngine.Vector2 UnityEngine.Vector2::zeroVector Vector2_t2156229523 ___zeroVector_2; // UnityEngine.Vector2 UnityEngine.Vector2::oneVector Vector2_t2156229523 ___oneVector_3; // UnityEngine.Vector2 UnityEngine.Vector2::upVector Vector2_t2156229523 ___upVector_4; // UnityEngine.Vector2 UnityEngine.Vector2::downVector Vector2_t2156229523 ___downVector_5; // UnityEngine.Vector2 UnityEngine.Vector2::leftVector Vector2_t2156229523 ___leftVector_6; // UnityEngine.Vector2 UnityEngine.Vector2::rightVector Vector2_t2156229523 ___rightVector_7; // UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector Vector2_t2156229523 ___positiveInfinityVector_8; // UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector Vector2_t2156229523 ___negativeInfinityVector_9; public: inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___zeroVector_2)); } inline Vector2_t2156229523 get_zeroVector_2() const { return ___zeroVector_2; } inline Vector2_t2156229523 * get_address_of_zeroVector_2() { return &___zeroVector_2; } inline void set_zeroVector_2(Vector2_t2156229523 value) { ___zeroVector_2 = value; } inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___oneVector_3)); } inline Vector2_t2156229523 get_oneVector_3() const { return ___oneVector_3; } inline Vector2_t2156229523 * get_address_of_oneVector_3() { return &___oneVector_3; } inline void set_oneVector_3(Vector2_t2156229523 value) { ___oneVector_3 = value; } inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___upVector_4)); } inline Vector2_t2156229523 get_upVector_4() const { return ___upVector_4; } inline Vector2_t2156229523 * get_address_of_upVector_4() { return &___upVector_4; } inline void set_upVector_4(Vector2_t2156229523 value) { ___upVector_4 = value; } inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___downVector_5)); } inline Vector2_t2156229523 get_downVector_5() const { return ___downVector_5; } inline Vector2_t2156229523 * get_address_of_downVector_5() { return &___downVector_5; } inline void set_downVector_5(Vector2_t2156229523 value) { ___downVector_5 = value; } inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___leftVector_6)); } inline Vector2_t2156229523 get_leftVector_6() const { return ___leftVector_6; } inline Vector2_t2156229523 * get_address_of_leftVector_6() { return &___leftVector_6; } inline void set_leftVector_6(Vector2_t2156229523 value) { ___leftVector_6 = value; } inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___rightVector_7)); } inline Vector2_t2156229523 get_rightVector_7() const { return ___rightVector_7; } inline Vector2_t2156229523 * get_address_of_rightVector_7() { return &___rightVector_7; } inline void set_rightVector_7(Vector2_t2156229523 value) { ___rightVector_7 = value; } inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___positiveInfinityVector_8)); } inline Vector2_t2156229523 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; } inline Vector2_t2156229523 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; } inline void set_positiveInfinityVector_8(Vector2_t2156229523 value) { ___positiveInfinityVector_8 = value; } inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___negativeInfinityVector_9)); } inline Vector2_t2156229523 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; } inline Vector2_t2156229523 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; } inline void set_negativeInfinityVector_9(Vector2_t2156229523 value) { ___negativeInfinityVector_9 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VECTOR2_T2156229523_H #ifndef VECTOR3_T3722313464_H #define VECTOR3_T3722313464_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Vector3 struct Vector3_t3722313464 { public: // System.Single UnityEngine.Vector3::x float ___x_2; // System.Single UnityEngine.Vector3::y float ___y_3; // System.Single UnityEngine.Vector3::z float ___z_4; public: inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___x_2)); } inline float get_x_2() const { return ___x_2; } inline float* get_address_of_x_2() { return &___x_2; } inline void set_x_2(float value) { ___x_2 = value; } inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___y_3)); } inline float get_y_3() const { return ___y_3; } inline float* get_address_of_y_3() { return &___y_3; } inline void set_y_3(float value) { ___y_3 = value; } inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___z_4)); } inline float get_z_4() const { return ___z_4; } inline float* get_address_of_z_4() { return &___z_4; } inline void set_z_4(float value) { ___z_4 = value; } }; struct Vector3_t3722313464_StaticFields { public: // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector Vector3_t3722313464 ___zeroVector_5; // UnityEngine.Vector3 UnityEngine.Vector3::oneVector Vector3_t3722313464 ___oneVector_6; // UnityEngine.Vector3 UnityEngine.Vector3::upVector Vector3_t3722313464 ___upVector_7; // UnityEngine.Vector3 UnityEngine.Vector3::downVector Vector3_t3722313464 ___downVector_8; // UnityEngine.Vector3 UnityEngine.Vector3::leftVector Vector3_t3722313464 ___leftVector_9; // UnityEngine.Vector3 UnityEngine.Vector3::rightVector Vector3_t3722313464 ___rightVector_10; // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector Vector3_t3722313464 ___forwardVector_11; // UnityEngine.Vector3 UnityEngine.Vector3::backVector Vector3_t3722313464 ___backVector_12; // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector Vector3_t3722313464 ___positiveInfinityVector_13; // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector Vector3_t3722313464 ___negativeInfinityVector_14; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___zeroVector_5)); } inline Vector3_t3722313464 get_zeroVector_5() const { return ___zeroVector_5; } inline Vector3_t3722313464 * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector3_t3722313464 value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___oneVector_6)); } inline Vector3_t3722313464 get_oneVector_6() const { return ___oneVector_6; } inline Vector3_t3722313464 * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector3_t3722313464 value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___upVector_7)); } inline Vector3_t3722313464 get_upVector_7() const { return ___upVector_7; } inline Vector3_t3722313464 * get_address_of_upVector_7() { return &___upVector_7; } inline void set_upVector_7(Vector3_t3722313464 value) { ___upVector_7 = value; } inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___downVector_8)); } inline Vector3_t3722313464 get_downVector_8() const { return ___downVector_8; } inline Vector3_t3722313464 * get_address_of_downVector_8() { return &___downVector_8; } inline void set_downVector_8(Vector3_t3722313464 value) { ___downVector_8 = value; } inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___leftVector_9)); } inline Vector3_t3722313464 get_leftVector_9() const { return ___leftVector_9; } inline Vector3_t3722313464 * get_address_of_leftVector_9() { return &___leftVector_9; } inline void set_leftVector_9(Vector3_t3722313464 value) { ___leftVector_9 = value; } inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___rightVector_10)); } inline Vector3_t3722313464 get_rightVector_10() const { return ___rightVector_10; } inline Vector3_t3722313464 * get_address_of_rightVector_10() { return &___rightVector_10; } inline void set_rightVector_10(Vector3_t3722313464 value) { ___rightVector_10 = value; } inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___forwardVector_11)); } inline Vector3_t3722313464 get_forwardVector_11() const { return ___forwardVector_11; } inline Vector3_t3722313464 * get_address_of_forwardVector_11() { return &___forwardVector_11; } inline void set_forwardVector_11(Vector3_t3722313464 value) { ___forwardVector_11 = value; } inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___backVector_12)); } inline Vector3_t3722313464 get_backVector_12() const { return ___backVector_12; } inline Vector3_t3722313464 * get_address_of_backVector_12() { return &___backVector_12; } inline void set_backVector_12(Vector3_t3722313464 value) { ___backVector_12 = value; } inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___positiveInfinityVector_13)); } inline Vector3_t3722313464 get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; } inline Vector3_t3722313464 * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; } inline void set_positiveInfinityVector_13(Vector3_t3722313464 value) { ___positiveInfinityVector_13 = value; } inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___negativeInfinityVector_14)); } inline Vector3_t3722313464 get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; } inline Vector3_t3722313464 * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; } inline void set_negativeInfinityVector_14(Vector3_t3722313464 value) { ___negativeInfinityVector_14 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VECTOR3_T3722313464_H #ifndef VECTOR4_T3319028937_H #define VECTOR4_T3319028937_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Vector4 struct Vector4_t3319028937 { public: // System.Single UnityEngine.Vector4::x float ___x_1; // System.Single UnityEngine.Vector4::y float ___y_2; // System.Single UnityEngine.Vector4::z float ___z_3; // System.Single UnityEngine.Vector4::w float ___w_4; public: inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___x_1)); } inline float get_x_1() const { return ___x_1; } inline float* get_address_of_x_1() { return &___x_1; } inline void set_x_1(float value) { ___x_1 = value; } inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___y_2)); } inline float get_y_2() const { return ___y_2; } inline float* get_address_of_y_2() { return &___y_2; } inline void set_y_2(float value) { ___y_2 = value; } inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___z_3)); } inline float get_z_3() const { return ___z_3; } inline float* get_address_of_z_3() { return &___z_3; } inline void set_z_3(float value) { ___z_3 = value; } inline static int32_t get_offset_of_w_4() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___w_4)); } inline float get_w_4() const { return ___w_4; } inline float* get_address_of_w_4() { return &___w_4; } inline void set_w_4(float value) { ___w_4 = value; } }; struct Vector4_t3319028937_StaticFields { public: // UnityEngine.Vector4 UnityEngine.Vector4::zeroVector Vector4_t3319028937 ___zeroVector_5; // UnityEngine.Vector4 UnityEngine.Vector4::oneVector Vector4_t3319028937 ___oneVector_6; // UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector Vector4_t3319028937 ___positiveInfinityVector_7; // UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector Vector4_t3319028937 ___negativeInfinityVector_8; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___zeroVector_5)); } inline Vector4_t3319028937 get_zeroVector_5() const { return ___zeroVector_5; } inline Vector4_t3319028937 * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector4_t3319028937 value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___oneVector_6)); } inline Vector4_t3319028937 get_oneVector_6() const { return ___oneVector_6; } inline Vector4_t3319028937 * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector4_t3319028937 value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___positiveInfinityVector_7)); } inline Vector4_t3319028937 get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; } inline Vector4_t3319028937 * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; } inline void set_positiveInfinityVector_7(Vector4_t3319028937 value) { ___positiveInfinityVector_7 = value; } inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___negativeInfinityVector_8)); } inline Vector4_t3319028937 get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; } inline Vector4_t3319028937 * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; } inline void set_negativeInfinityVector_8(Vector4_t3319028937 value) { ___negativeInfinityVector_8 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VECTOR4_T3319028937_H #ifndef WEBCAMDEVICE_T1322781432_H #define WEBCAMDEVICE_T1322781432_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.WebCamDevice struct WebCamDevice_t1322781432 { public: // System.String UnityEngine.WebCamDevice::m_Name String_t* ___m_Name_0; // System.Int32 UnityEngine.WebCamDevice::m_Flags int32_t ___m_Flags_1; public: inline static int32_t get_offset_of_m_Name_0() { return static_cast<int32_t>(offsetof(WebCamDevice_t1322781432, ___m_Name_0)); } inline String_t* get_m_Name_0() const { return ___m_Name_0; } inline String_t** get_address_of_m_Name_0() { return &___m_Name_0; } inline void set_m_Name_0(String_t* value) { ___m_Name_0 = value; Il2CppCodeGenWriteBarrier((&___m_Name_0), value); } inline static int32_t get_offset_of_m_Flags_1() { return static_cast<int32_t>(offsetof(WebCamDevice_t1322781432, ___m_Flags_1)); } inline int32_t get_m_Flags_1() const { return ___m_Flags_1; } inline int32_t* get_address_of_m_Flags_1() { return &___m_Flags_1; } inline void set_m_Flags_1(int32_t value) { ___m_Flags_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.WebCamDevice struct WebCamDevice_t1322781432_marshaled_pinvoke { char* ___m_Name_0; int32_t ___m_Flags_1; }; // Native definition for COM marshalling of UnityEngine.WebCamDevice struct WebCamDevice_t1322781432_marshaled_com { Il2CppChar* ___m_Name_0; int32_t ___m_Flags_1; }; #endif // WEBCAMDEVICE_T1322781432_H #ifndef EYEWEARCALIBRATIONREADINGDATA_T937256773_H #define EYEWEARCALIBRATIONREADINGDATA_T937256773_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData struct EyewearCalibrationReadingData_t937256773 { public: // System.Single[] Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData::pose SingleU5BU5D_t1444911251* ___pose_0; // System.Single Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData::scale float ___scale_1; // System.Single Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData::centerX float ___centerX_2; // System.Single Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData::centerY float ___centerY_3; // System.Int32 Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData::type int32_t ___type_4; public: inline static int32_t get_offset_of_pose_0() { return static_cast<int32_t>(offsetof(EyewearCalibrationReadingData_t937256773, ___pose_0)); } inline SingleU5BU5D_t1444911251* get_pose_0() const { return ___pose_0; } inline SingleU5BU5D_t1444911251** get_address_of_pose_0() { return &___pose_0; } inline void set_pose_0(SingleU5BU5D_t1444911251* value) { ___pose_0 = value; Il2CppCodeGenWriteBarrier((&___pose_0), value); } inline static int32_t get_offset_of_scale_1() { return static_cast<int32_t>(offsetof(EyewearCalibrationReadingData_t937256773, ___scale_1)); } inline float get_scale_1() const { return ___scale_1; } inline float* get_address_of_scale_1() { return &___scale_1; } inline void set_scale_1(float value) { ___scale_1 = value; } inline static int32_t get_offset_of_centerX_2() { return static_cast<int32_t>(offsetof(EyewearCalibrationReadingData_t937256773, ___centerX_2)); } inline float get_centerX_2() const { return ___centerX_2; } inline float* get_address_of_centerX_2() { return &___centerX_2; } inline void set_centerX_2(float value) { ___centerX_2 = value; } inline static int32_t get_offset_of_centerY_3() { return static_cast<int32_t>(offsetof(EyewearCalibrationReadingData_t937256773, ___centerY_3)); } inline float get_centerY_3() const { return ___centerY_3; } inline float* get_address_of_centerY_3() { return &___centerY_3; } inline void set_centerY_3(float value) { ___centerY_3 = value; } inline static int32_t get_offset_of_type_4() { return static_cast<int32_t>(offsetof(EyewearCalibrationReadingData_t937256773, ___type_4)); } inline int32_t get_type_4() const { return ___type_4; } inline int32_t* get_address_of_type_4() { return &___type_4; } inline void set_type_4(int32_t value) { ___type_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData #pragma pack(push, tp, 1) struct EyewearCalibrationReadingData_t937256773_marshaled_pinvoke { float* ___pose_0; float ___scale_1; float ___centerX_2; float ___centerY_3; int32_t ___type_4; }; #pragma pack(pop, tp) // Native definition for COM marshalling of Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData #pragma pack(push, tp, 1) struct EyewearCalibrationReadingData_t937256773_marshaled_com { float* ___pose_0; float ___scale_1; float ___centerX_2; float ___centerY_3; int32_t ___type_4; }; #pragma pack(pop, tp) #endif // EYEWEARCALIBRATIONREADINGDATA_T937256773_H #ifndef VIRTUALBUTTONDATA_T1117953748_H #define VIRTUALBUTTONDATA_T1117953748_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.TrackerData/VirtualButtonData #pragma pack(push, tp, 1) struct VirtualButtonData_t1117953748 { public: // System.Int32 Vuforia.TrackerData/VirtualButtonData::id int32_t ___id_0; // System.Int32 Vuforia.TrackerData/VirtualButtonData::isPressed int32_t ___isPressed_1; public: inline static int32_t get_offset_of_id_0() { return static_cast<int32_t>(offsetof(VirtualButtonData_t1117953748, ___id_0)); } inline int32_t get_id_0() const { return ___id_0; } inline int32_t* get_address_of_id_0() { return &___id_0; } inline void set_id_0(int32_t value) { ___id_0 = value; } inline static int32_t get_offset_of_isPressed_1() { return static_cast<int32_t>(offsetof(VirtualButtonData_t1117953748, ___isPressed_1)); } inline int32_t get_isPressed_1() const { return ___isPressed_1; } inline int32_t* get_address_of_isPressed_1() { return &___isPressed_1; } inline void set_isPressed_1(int32_t value) { ___isPressed_1 = value; } }; #pragma pack(pop, tp) #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VIRTUALBUTTONDATA_T1117953748_H #ifndef TRACKABLEIDPAIR_T4227350457_H #define TRACKABLEIDPAIR_T4227350457_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.VuforiaManager/TrackableIdPair struct TrackableIdPair_t4227350457 { public: // System.Int32 Vuforia.VuforiaManager/TrackableIdPair::TrackableId int32_t ___TrackableId_0; // System.Int32 Vuforia.VuforiaManager/TrackableIdPair::ResultId int32_t ___ResultId_1; public: inline static int32_t get_offset_of_TrackableId_0() { return static_cast<int32_t>(offsetof(TrackableIdPair_t4227350457, ___TrackableId_0)); } inline int32_t get_TrackableId_0() const { return ___TrackableId_0; } inline int32_t* get_address_of_TrackableId_0() { return &___TrackableId_0; } inline void set_TrackableId_0(int32_t value) { ___TrackableId_0 = value; } inline static int32_t get_offset_of_ResultId_1() { return static_cast<int32_t>(offsetof(TrackableIdPair_t4227350457, ___ResultId_1)); } inline int32_t get_ResultId_1() const { return ___ResultId_1; } inline int32_t* get_address_of_ResultId_1() { return &___ResultId_1; } inline void set_ResultId_1(int32_t value) { ___ResultId_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TRACKABLEIDPAIR_T4227350457_H #ifndef VEC2I_T3527036565_H #define VEC2I_T3527036565_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.VuforiaRenderer/Vec2I #pragma pack(push, tp, 1) struct Vec2I_t3527036565 { public: // System.Int32 Vuforia.VuforiaRenderer/Vec2I::x int32_t ___x_0; // System.Int32 Vuforia.VuforiaRenderer/Vec2I::y int32_t ___y_1; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vec2I_t3527036565, ___x_0)); } inline int32_t get_x_0() const { return ___x_0; } inline int32_t* get_address_of_x_0() { return &___x_0; } inline void set_x_0(int32_t value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vec2I_t3527036565, ___y_1)); } inline int32_t get_y_1() const { return ___y_1; } inline int32_t* get_address_of_y_1() { return &___y_1; } inline void set_y_1(int32_t value) { ___y_1 = value; } }; #pragma pack(pop, tp) #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VEC2I_T3527036565_H #ifndef LEANFINGER_T3506292858_H #define LEANFINGER_T3506292858_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Lean.Touch.LeanFinger struct LeanFinger_t3506292858 : public RuntimeObject { public: // System.Int32 Lean.Touch.LeanFinger::Index int32_t ___Index_0; // System.Single Lean.Touch.LeanFinger::Age float ___Age_1; // System.Boolean Lean.Touch.LeanFinger::Set bool ___Set_2; // System.Boolean Lean.Touch.LeanFinger::LastSet bool ___LastSet_3; // System.Boolean Lean.Touch.LeanFinger::Tap bool ___Tap_4; // System.Int32 Lean.Touch.LeanFinger::TapCount int32_t ___TapCount_5; // System.Boolean Lean.Touch.LeanFinger::Swipe bool ___Swipe_6; // System.Boolean Lean.Touch.LeanFinger::Old bool ___Old_7; // System.Boolean Lean.Touch.LeanFinger::Expired bool ___Expired_8; // System.Single Lean.Touch.LeanFinger::LastPressure float ___LastPressure_9; // System.Single Lean.Touch.LeanFinger::Pressure float ___Pressure_10; // UnityEngine.Vector2 Lean.Touch.LeanFinger::StartScreenPosition Vector2_t2156229523 ___StartScreenPosition_11; // UnityEngine.Vector2 Lean.Touch.LeanFinger::LastScreenPosition Vector2_t2156229523 ___LastScreenPosition_12; // UnityEngine.Vector2 Lean.Touch.LeanFinger::ScreenPosition Vector2_t2156229523 ___ScreenPosition_13; // System.Boolean Lean.Touch.LeanFinger::StartedOverGui bool ___StartedOverGui_14; // System.Collections.Generic.List`1<Lean.Touch.LeanSnapshot> Lean.Touch.LeanFinger::Snapshots List_1_t1313621403 * ___Snapshots_15; public: inline static int32_t get_offset_of_Index_0() { return static_cast<int32_t>(offsetof(LeanFinger_t3506292858, ___Index_0)); } inline int32_t get_Index_0() const { return ___Index_0; } inline int32_t* get_address_of_Index_0() { return &___Index_0; } inline void set_Index_0(int32_t value) { ___Index_0 = value; } inline static int32_t get_offset_of_Age_1() { return static_cast<int32_t>(offsetof(LeanFinger_t3506292858, ___Age_1)); } inline float get_Age_1() const { return ___Age_1; } inline float* get_address_of_Age_1() { return &___Age_1; } inline void set_Age_1(float value) { ___Age_1 = value; } inline static int32_t get_offset_of_Set_2() { return static_cast<int32_t>(offsetof(LeanFinger_t3506292858, ___Set_2)); } inline bool get_Set_2() const { return ___Set_2; } inline bool* get_address_of_Set_2() { return &___Set_2; } inline void set_Set_2(bool value) { ___Set_2 = value; } inline static int32_t get_offset_of_LastSet_3() { return static_cast<int32_t>(offsetof(LeanFinger_t3506292858, ___LastSet_3)); } inline bool get_LastSet_3() const { return ___LastSet_3; } inline bool* get_address_of_LastSet_3() { return &___LastSet_3; } inline void set_LastSet_3(bool value) { ___LastSet_3 = value; } inline static int32_t get_offset_of_Tap_4() { return static_cast<int32_t>(offsetof(LeanFinger_t3506292858, ___Tap_4)); } inline bool get_Tap_4() const { return ___Tap_4; } inline bool* get_address_of_Tap_4() { return &___Tap_4; } inline void set_Tap_4(bool value) { ___Tap_4 = value; } inline static int32_t get_offset_of_TapCount_5() { return static_cast<int32_t>(offsetof(LeanFinger_t3506292858, ___TapCount_5)); } inline int32_t get_TapCount_5() const { return ___TapCount_5; } inline int32_t* get_address_of_TapCount_5() { return &___TapCount_5; } inline void set_TapCount_5(int32_t value) { ___TapCount_5 = value; } inline static int32_t get_offset_of_Swipe_6() { return static_cast<int32_t>(offsetof(LeanFinger_t3506292858, ___Swipe_6)); } inline bool get_Swipe_6() const { return ___Swipe_6; } inline bool* get_address_of_Swipe_6() { return &___Swipe_6; } inline void set_Swipe_6(bool value) { ___Swipe_6 = value; } inline static int32_t get_offset_of_Old_7() { return static_cast<int32_t>(offsetof(LeanFinger_t3506292858, ___Old_7)); } inline bool get_Old_7() const { return ___Old_7; } inline bool* get_address_of_Old_7() { return &___Old_7; } inline void set_Old_7(bool value) { ___Old_7 = value; } inline static int32_t get_offset_of_Expired_8() { return static_cast<int32_t>(offsetof(LeanFinger_t3506292858, ___Expired_8)); } inline bool get_Expired_8() const { return ___Expired_8; } inline bool* get_address_of_Expired_8() { return &___Expired_8; } inline void set_Expired_8(bool value) { ___Expired_8 = value; } inline static int32_t get_offset_of_LastPressure_9() { return static_cast<int32_t>(offsetof(LeanFinger_t3506292858, ___LastPressure_9)); } inline float get_LastPressure_9() const { return ___LastPressure_9; } inline float* get_address_of_LastPressure_9() { return &___LastPressure_9; } inline void set_LastPressure_9(float value) { ___LastPressure_9 = value; } inline static int32_t get_offset_of_Pressure_10() { return static_cast<int32_t>(offsetof(LeanFinger_t3506292858, ___Pressure_10)); } inline float get_Pressure_10() const { return ___Pressure_10; } inline float* get_address_of_Pressure_10() { return &___Pressure_10; } inline void set_Pressure_10(float value) { ___Pressure_10 = value; } inline static int32_t get_offset_of_StartScreenPosition_11() { return static_cast<int32_t>(offsetof(LeanFinger_t3506292858, ___StartScreenPosition_11)); } inline Vector2_t2156229523 get_StartScreenPosition_11() const { return ___StartScreenPosition_11; } inline Vector2_t2156229523 * get_address_of_StartScreenPosition_11() { return &___StartScreenPosition_11; } inline void set_StartScreenPosition_11(Vector2_t2156229523 value) { ___StartScreenPosition_11 = value; } inline static int32_t get_offset_of_LastScreenPosition_12() { return static_cast<int32_t>(offsetof(LeanFinger_t3506292858, ___LastScreenPosition_12)); } inline Vector2_t2156229523 get_LastScreenPosition_12() const { return ___LastScreenPosition_12; } inline Vector2_t2156229523 * get_address_of_LastScreenPosition_12() { return &___LastScreenPosition_12; } inline void set_LastScreenPosition_12(Vector2_t2156229523 value) { ___LastScreenPosition_12 = value; } inline static int32_t get_offset_of_ScreenPosition_13() { return static_cast<int32_t>(offsetof(LeanFinger_t3506292858, ___ScreenPosition_13)); } inline Vector2_t2156229523 get_ScreenPosition_13() const { return ___ScreenPosition_13; } inline Vector2_t2156229523 * get_address_of_ScreenPosition_13() { return &___ScreenPosition_13; } inline void set_ScreenPosition_13(Vector2_t2156229523 value) { ___ScreenPosition_13 = value; } inline static int32_t get_offset_of_StartedOverGui_14() { return static_cast<int32_t>(offsetof(LeanFinger_t3506292858, ___StartedOverGui_14)); } inline bool get_StartedOverGui_14() const { return ___StartedOverGui_14; } inline bool* get_address_of_StartedOverGui_14() { return &___StartedOverGui_14; } inline void set_StartedOverGui_14(bool value) { ___StartedOverGui_14 = value; } inline static int32_t get_offset_of_Snapshots_15() { return static_cast<int32_t>(offsetof(LeanFinger_t3506292858, ___Snapshots_15)); } inline List_1_t1313621403 * get_Snapshots_15() const { return ___Snapshots_15; } inline List_1_t1313621403 ** get_address_of_Snapshots_15() { return &___Snapshots_15; } inline void set_Snapshots_15(List_1_t1313621403 * value) { ___Snapshots_15 = value; Il2CppCodeGenWriteBarrier((&___Snapshots_15), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LEANFINGER_T3506292858_H #ifndef OP_T2046805169_H #define OP_T2046805169_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // MS.Internal.Xml.XPath.Operator/Op struct Op_t2046805169 { public: // System.Int32 MS.Internal.Xml.XPath.Operator/Op::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Op_t2046805169, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OP_T2046805169_H #ifndef SSLCIPHERSUITE_T3309122048_H #define SSLCIPHERSUITE_T3309122048_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.AppleTls.SslCipherSuite struct SslCipherSuite_t3309122048 { public: // System.UInt16 Mono.AppleTls.SslCipherSuite::value__ uint16_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SslCipherSuite_t3309122048, ___value___2)); } inline uint16_t get_value___2() const { return ___value___2; } inline uint16_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint16_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SSLCIPHERSUITE_T3309122048_H #ifndef SSLSTATUS_T191981556_H #define SSLSTATUS_T191981556_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.AppleTls.SslStatus struct SslStatus_t191981556 { public: // System.Int32 Mono.AppleTls.SslStatus::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SslStatus_t191981556, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SSLSTATUS_T191981556_H #ifndef CIPHERSUITECODE_T732562211_H #define CIPHERSUITECODE_T732562211_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Security.Interface.CipherSuiteCode struct CipherSuiteCode_t732562211 { public: // System.UInt16 Mono.Security.Interface.CipherSuiteCode::value__ uint16_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CipherSuiteCode_t732562211, ___value___2)); } inline uint16_t get_value___2() const { return ___value___2; } inline uint16_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint16_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CIPHERSUITECODE_T732562211_H #ifndef UNITYTLS_CIPHERSUITE_T1735159395_H #define UNITYTLS_CIPHERSUITE_T1735159395_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Unity.UnityTls/unitytls_ciphersuite struct unitytls_ciphersuite_t1735159395 { public: // System.UInt32 Mono.Unity.UnityTls/unitytls_ciphersuite::value__ uint32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(unitytls_ciphersuite_t1735159395, ___value___2)); } inline uint32_t get_value___2() const { return ___value___2; } inline uint32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UNITYTLS_CIPHERSUITE_T1735159395_H #ifndef SWITCHVALUESTATE_T2805251467_H #define SWITCHVALUESTATE_T2805251467_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.AppContext/SwitchValueState struct SwitchValueState_t2805251467 { public: // System.Int32 System.AppContext/SwitchValueState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SwitchValueState_t2805251467, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SWITCHVALUESTATE_T2805251467_H #ifndef ARGUMENTEXCEPTION_T132251570_H #define ARGUMENTEXCEPTION_T132251570_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentException struct ArgumentException_t132251570 : public SystemException_t176217640 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_t132251570, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((&___m_paramName_17), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTEXCEPTION_T132251570_H #ifndef ENTRY_T2089797520_H #define ENTRY_T2089797520_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef> struct Entry_t2089797520 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key XPathNodeRef_t3498189018 ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value XPathNodeRef_t3498189018 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t2089797520, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t2089797520, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t2089797520, ___key_2)); } inline XPathNodeRef_t3498189018 get_key_2() const { return ___key_2; } inline XPathNodeRef_t3498189018 * get_address_of_key_2() { return &___key_2; } inline void set_key_2(XPathNodeRef_t3498189018 value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t2089797520, ___value_3)); } inline XPathNodeRef_t3498189018 get_value_3() const { return ___value_3; } inline XPathNodeRef_t3498189018 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(XPathNodeRef_t3498189018 value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T2089797520_H #ifndef ENTRY_T3743988185_H #define ENTRY_T3743988185_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object> struct Entry_t3743988185 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key Guid_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t3743988185, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t3743988185, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t3743988185, ___key_2)); } inline Guid_t get_key_2() const { return ___key_2; } inline Guid_t * get_address_of_key_2() { return &___key_2; } inline void set_key_2(Guid_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t3743988185, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((&___value_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T3743988185_H #ifndef ENTRY_T1621531567_H #define ENTRY_T1621531567_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData> struct Entry_t1621531567 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value VirtualButtonData_t1117953748 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t1621531567, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t1621531567, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t1621531567, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t1621531567, ___value_3)); } inline VirtualButtonData_t1117953748 get_value_3() const { return ___value_3; } inline VirtualButtonData_t1117953748 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(VirtualButtonData_t1117953748 value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T1621531567_H #ifndef ENTRY_T2391274283_H #define ENTRY_T2391274283_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator> struct Entry_t2391274283 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value ResourceLocator_t3723970807 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t2391274283, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t2391274283, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t2391274283, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((&___key_2), value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t2391274283, ___value_3)); } inline ResourceLocator_t3723970807 get_value_3() const { return ___value_3; } inline ResourceLocator_t3723970807 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(ResourceLocator_t3723970807 value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T2391274283_H #ifndef KEYVALUEPAIR_2_T2872605199_H #define KEYVALUEPAIR_2_T2872605199_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef> struct KeyValuePair_2_t2872605199 { public: // TKey System.Collections.Generic.KeyValuePair`2::key XPathNodeRef_t3498189018 ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value XPathNodeRef_t3498189018 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2872605199, ___key_0)); } inline XPathNodeRef_t3498189018 get_key_0() const { return ___key_0; } inline XPathNodeRef_t3498189018 * get_address_of_key_0() { return &___key_0; } inline void set_key_0(XPathNodeRef_t3498189018 value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2872605199, ___value_1)); } inline XPathNodeRef_t3498189018 get_value_1() const { return ___value_1; } inline XPathNodeRef_t3498189018 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(XPathNodeRef_t3498189018 value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T2872605199_H #ifndef KEYVALUEPAIR_2_T870930286_H #define KEYVALUEPAIR_2_T870930286_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object> struct KeyValuePair_2_t870930286 { public: // TKey System.Collections.Generic.KeyValuePair`2::key DateTime_t3738529785 ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t870930286, ___key_0)); } inline DateTime_t3738529785 get_key_0() const { return ___key_0; } inline DateTime_t3738529785 * get_address_of_key_0() { return &___key_0; } inline void set_key_0(DateTime_t3738529785 value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t870930286, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T870930286_H #ifndef KEYVALUEPAIR_2_T231828568_H #define KEYVALUEPAIR_2_T231828568_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object> struct KeyValuePair_2_t231828568 { public: // TKey System.Collections.Generic.KeyValuePair`2::key Guid_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t231828568, ___key_0)); } inline Guid_t get_key_0() const { return ___key_0; } inline Guid_t * get_address_of_key_0() { return &___key_0; } inline void set_key_0(Guid_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t231828568, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T231828568_H #ifndef KEYVALUEPAIR_2_T2404339246_H #define KEYVALUEPAIR_2_T2404339246_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData> struct KeyValuePair_2_t2404339246 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value VirtualButtonData_t1117953748 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2404339246, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2404339246, ___value_1)); } inline VirtualButtonData_t1117953748 get_value_1() const { return ___value_1; } inline VirtualButtonData_t1117953748 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(VirtualButtonData_t1117953748 value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T2404339246_H #ifndef KEYVALUEPAIR_2_T3174081962_H #define KEYVALUEPAIR_2_T3174081962_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator> struct KeyValuePair_2_t3174081962 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value ResourceLocator_t3723970807 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3174081962, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3174081962, ___value_1)); } inline ResourceLocator_t3723970807 get_value_1() const { return ___value_1; } inline ResourceLocator_t3723970807 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(ResourceLocator_t3723970807 value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T3174081962_H #ifndef DATETIMEOFFSET_T3229287507_H #define DATETIMEOFFSET_T3229287507_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTimeOffset struct DateTimeOffset_t3229287507 { public: // System.DateTime System.DateTimeOffset::m_dateTime DateTime_t3738529785 ___m_dateTime_2; // System.Int16 System.DateTimeOffset::m_offsetMinutes int16_t ___m_offsetMinutes_3; public: inline static int32_t get_offset_of_m_dateTime_2() { return static_cast<int32_t>(offsetof(DateTimeOffset_t3229287507, ___m_dateTime_2)); } inline DateTime_t3738529785 get_m_dateTime_2() const { return ___m_dateTime_2; } inline DateTime_t3738529785 * get_address_of_m_dateTime_2() { return &___m_dateTime_2; } inline void set_m_dateTime_2(DateTime_t3738529785 value) { ___m_dateTime_2 = value; } inline static int32_t get_offset_of_m_offsetMinutes_3() { return static_cast<int32_t>(offsetof(DateTimeOffset_t3229287507, ___m_offsetMinutes_3)); } inline int16_t get_m_offsetMinutes_3() const { return ___m_offsetMinutes_3; } inline int16_t* get_address_of_m_offsetMinutes_3() { return &___m_offsetMinutes_3; } inline void set_m_offsetMinutes_3(int16_t value) { ___m_offsetMinutes_3 = value; } }; struct DateTimeOffset_t3229287507_StaticFields { public: // System.DateTimeOffset System.DateTimeOffset::MinValue DateTimeOffset_t3229287507 ___MinValue_0; // System.DateTimeOffset System.DateTimeOffset::MaxValue DateTimeOffset_t3229287507 ___MaxValue_1; public: inline static int32_t get_offset_of_MinValue_0() { return static_cast<int32_t>(offsetof(DateTimeOffset_t3229287507_StaticFields, ___MinValue_0)); } inline DateTimeOffset_t3229287507 get_MinValue_0() const { return ___MinValue_0; } inline DateTimeOffset_t3229287507 * get_address_of_MinValue_0() { return &___MinValue_0; } inline void set_MinValue_0(DateTimeOffset_t3229287507 value) { ___MinValue_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(DateTimeOffset_t3229287507_StaticFields, ___MaxValue_1)); } inline DateTimeOffset_t3229287507 get_MaxValue_1() const { return ___MaxValue_1; } inline DateTimeOffset_t3229287507 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(DateTimeOffset_t3229287507 value) { ___MaxValue_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIMEOFFSET_T3229287507_H #ifndef DS_T2232270370_H #define DS_T2232270370_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTimeParse/DS struct DS_t2232270370 { public: // System.Int32 System.DateTimeParse/DS::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DS_t2232270370, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DS_T2232270370_H #ifndef DELEGATE_T1188392813_H #define DELEGATE_T1188392813_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Delegate struct Delegate_t1188392813 : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::extra_arg intptr_t ___extra_arg_5; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_6; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t1677132599 * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((&___m_target_2), value); } inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((&___method_info_7), value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((&___original_method_info_8), value); } inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___data_9)); } inline DelegateData_t1677132599 * get_data_9() const { return ___data_9; } inline DelegateData_t1677132599 ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t1677132599 * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((&___data_9), value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Delegate struct Delegate_t1188392813_marshaled_pinvoke { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1677132599 * ___data_9; int32_t ___method_is_virtual_10; }; // Native definition for COM marshalling of System.Delegate struct Delegate_t1188392813_marshaled_com { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1677132599 * ___data_9; int32_t ___method_is_virtual_10; }; #endif // DELEGATE_T1188392813_H #ifndef HS_T3339773016_H #define HS_T3339773016_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.HebrewNumber/HS struct HS_t3339773016 { public: // System.Int32 System.Globalization.HebrewNumber/HS::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(HS_t3339773016, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // HS_T3339773016_H #ifndef TTT_T2628677491_H #define TTT_T2628677491_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.TimeSpanParse/TTT struct TTT_t2628677491 { public: // System.Int32 System.Globalization.TimeSpanParse/TTT::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TTT_t2628677491, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TTT_T2628677491_H #ifndef SELECTLISTITERATOR_2_T1742702623_H #define SELECTLISTITERATOR_2_T1742702623_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/SelectListIterator`2<System.Object,System.Object> struct SelectListIterator_2_t1742702623 : public Iterator_1_t2034466501 { public: // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/SelectListIterator`2::_source List_1_t257213610 * ____source_3; // System.Func`2<TSource,TResult> System.Linq.Enumerable/SelectListIterator`2::_selector Func_2_t2447130374 * ____selector_4; // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/SelectListIterator`2::_enumerator Enumerator_t2146457487 ____enumerator_5; public: inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(SelectListIterator_2_t1742702623, ____source_3)); } inline List_1_t257213610 * get__source_3() const { return ____source_3; } inline List_1_t257213610 ** get_address_of__source_3() { return &____source_3; } inline void set__source_3(List_1_t257213610 * value) { ____source_3 = value; Il2CppCodeGenWriteBarrier((&____source_3), value); } inline static int32_t get_offset_of__selector_4() { return static_cast<int32_t>(offsetof(SelectListIterator_2_t1742702623, ____selector_4)); } inline Func_2_t2447130374 * get__selector_4() const { return ____selector_4; } inline Func_2_t2447130374 ** get_address_of__selector_4() { return &____selector_4; } inline void set__selector_4(Func_2_t2447130374 * value) { ____selector_4 = value; Il2CppCodeGenWriteBarrier((&____selector_4), value); } inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(SelectListIterator_2_t1742702623, ____enumerator_5)); } inline Enumerator_t2146457487 get__enumerator_5() const { return ____enumerator_5; } inline Enumerator_t2146457487 * get_address_of__enumerator_5() { return &____enumerator_5; } inline void set__enumerator_5(Enumerator_t2146457487 value) { ____enumerator_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SELECTLISTITERATOR_2_T1742702623_H #ifndef WHERELISTITERATOR_1_T944815607_H #define WHERELISTITERATOR_1_T944815607_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/WhereListIterator`1<System.Object> struct WhereListIterator_1_t944815607 : public Iterator_1_t2034466501 { public: // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereListIterator`1::_source List_1_t257213610 * ____source_3; // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereListIterator`1::_predicate Func_2_t3759279471 * ____predicate_4; // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereListIterator`1::_enumerator Enumerator_t2146457487 ____enumerator_5; public: inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereListIterator_1_t944815607, ____source_3)); } inline List_1_t257213610 * get__source_3() const { return ____source_3; } inline List_1_t257213610 ** get_address_of__source_3() { return &____source_3; } inline void set__source_3(List_1_t257213610 * value) { ____source_3 = value; Il2CppCodeGenWriteBarrier((&____source_3), value); } inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereListIterator_1_t944815607, ____predicate_4)); } inline Func_2_t3759279471 * get__predicate_4() const { return ____predicate_4; } inline Func_2_t3759279471 ** get_address_of__predicate_4() { return &____predicate_4; } inline void set__predicate_4(Func_2_t3759279471 * value) { ____predicate_4 = value; Il2CppCodeGenWriteBarrier((&____predicate_4), value); } inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(WhereListIterator_1_t944815607, ____enumerator_5)); } inline Enumerator_t2146457487 get__enumerator_5() const { return ____enumerator_5; } inline Enumerator_t2146457487 * get_address_of__enumerator_5() { return &____enumerator_5; } inline void set__enumerator_5(Enumerator_t2146457487 value) { ____enumerator_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WHERELISTITERATOR_1_T944815607_H #ifndef WHERESELECTLISTITERATOR_2_T2661109023_H #define WHERESELECTLISTITERATOR_2_T2661109023_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object> struct WhereSelectListIterator_2_t2661109023 : public Iterator_1_t2034466501 { public: // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::_source List_1_t257213610 * ____source_3; // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::_predicate Func_2_t3759279471 * ____predicate_4; // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::_selector Func_2_t2447130374 * ____selector_5; // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::_enumerator Enumerator_t2146457487 ____enumerator_6; public: inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereSelectListIterator_2_t2661109023, ____source_3)); } inline List_1_t257213610 * get__source_3() const { return ____source_3; } inline List_1_t257213610 ** get_address_of__source_3() { return &____source_3; } inline void set__source_3(List_1_t257213610 * value) { ____source_3 = value; Il2CppCodeGenWriteBarrier((&____source_3), value); } inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereSelectListIterator_2_t2661109023, ____predicate_4)); } inline Func_2_t3759279471 * get__predicate_4() const { return ____predicate_4; } inline Func_2_t3759279471 ** get_address_of__predicate_4() { return &____predicate_4; } inline void set__predicate_4(Func_2_t3759279471 * value) { ____predicate_4 = value; Il2CppCodeGenWriteBarrier((&____predicate_4), value); } inline static int32_t get_offset_of__selector_5() { return static_cast<int32_t>(offsetof(WhereSelectListIterator_2_t2661109023, ____selector_5)); } inline Func_2_t2447130374 * get__selector_5() const { return ____selector_5; } inline Func_2_t2447130374 ** get_address_of__selector_5() { return &____selector_5; } inline void set__selector_5(Func_2_t2447130374 * value) { ____selector_5 = value; Il2CppCodeGenWriteBarrier((&____selector_5), value); } inline static int32_t get_offset_of__enumerator_6() { return static_cast<int32_t>(offsetof(WhereSelectListIterator_2_t2661109023, ____enumerator_6)); } inline Enumerator_t2146457487 get__enumerator_6() const { return ____enumerator_6; } inline Enumerator_t2146457487 * get_address_of__enumerator_6() { return &____enumerator_6; } inline void set__enumerator_6(Enumerator_t2146457487 value) { ____enumerator_6 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WHERESELECTLISTITERATOR_2_T2661109023_H #ifndef COOKIETOKEN_T385055808_H #define COOKIETOKEN_T385055808_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.CookieToken struct CookieToken_t385055808 { public: // System.Int32 System.Net.CookieToken::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CookieToken_t385055808, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COOKIETOKEN_T385055808_H #ifndef COOKIEVARIANT_T1245073431_H #define COOKIEVARIANT_T1245073431_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.CookieVariant struct CookieVariant_t1245073431 { public: // System.Int32 System.Net.CookieVariant::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CookieVariant_t1245073431, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COOKIEVARIANT_T1245073431_H #ifndef NETWORKINTERFACETYPE_T616418749_H #define NETWORKINTERFACETYPE_T616418749_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.NetworkInformation.NetworkInterfaceType struct NetworkInterfaceType_t616418749 { public: // System.Int32 System.Net.NetworkInformation.NetworkInterfaceType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NetworkInterfaceType_t616418749, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NETWORKINTERFACETYPE_T616418749_H #ifndef OPERATIONALSTATUS_T2709089529_H #define OPERATIONALSTATUS_T2709089529_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.NetworkInformation.OperationalStatus struct OperationalStatus_t2709089529 { public: // System.Int32 System.Net.NetworkInformation.OperationalStatus::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(OperationalStatus_t2709089529, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OPERATIONALSTATUS_T2709089529_H #ifndef WSABUF_T1998059390_H #define WSABUF_T1998059390_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.Sockets.Socket/WSABUF struct WSABUF_t1998059390 { public: // System.Int32 System.Net.Sockets.Socket/WSABUF::len int32_t ___len_0; // System.IntPtr System.Net.Sockets.Socket/WSABUF::buf intptr_t ___buf_1; public: inline static int32_t get_offset_of_len_0() { return static_cast<int32_t>(offsetof(WSABUF_t1998059390, ___len_0)); } inline int32_t get_len_0() const { return ___len_0; } inline int32_t* get_address_of_len_0() { return &___len_0; } inline void set_len_0(int32_t value) { ___len_0 = value; } inline static int32_t get_offset_of_buf_1() { return static_cast<int32_t>(offsetof(WSABUF_t1998059390, ___buf_1)); } inline intptr_t get_buf_1() const { return ___buf_1; } inline intptr_t* get_address_of_buf_1() { return &___buf_1; } inline void set_buf_1(intptr_t value) { ___buf_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WSABUF_T1998059390_H #ifndef RFCCHAR_T2905409930_H #define RFCCHAR_T2905409930_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.WebHeaderCollection/RfcChar struct RfcChar_t2905409930 { public: // System.Byte System.Net.WebHeaderCollection/RfcChar::value__ uint8_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RfcChar_t2905409930, ___value___2)); } inline uint8_t get_value___2() const { return ___value___2; } inline uint8_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint8_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RFCCHAR_T2905409930_H #ifndef NOTSUPPORTEDEXCEPTION_T1314879016_H #define NOTSUPPORTEDEXCEPTION_T1314879016_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.NotSupportedException struct NotSupportedException_t1314879016 : public SystemException_t176217640 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NOTSUPPORTEDEXCEPTION_T1314879016_H #ifndef RANKEXCEPTION_T3812021567_H #define RANKEXCEPTION_T3812021567_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.RankException struct RankException_t3812021567 : public SystemException_t176217640 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RANKEXCEPTION_T3812021567_H #ifndef BINDINGFLAGS_T2721792723_H #define BINDINGFLAGS_T2721792723_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.BindingFlags struct BindingFlags_t2721792723 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_t2721792723, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BINDINGFLAGS_T2721792723_H #ifndef CUSTOMATTRIBUTENAMEDARGUMENT_T287865710_H #define CUSTOMATTRIBUTENAMEDARGUMENT_T287865710_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.CustomAttributeNamedArgument struct CustomAttributeNamedArgument_t287865710 { public: // System.Reflection.CustomAttributeTypedArgument System.Reflection.CustomAttributeNamedArgument::typedArgument CustomAttributeTypedArgument_t2723150157 ___typedArgument_0; // System.Reflection.MemberInfo System.Reflection.CustomAttributeNamedArgument::memberInfo MemberInfo_t * ___memberInfo_1; public: inline static int32_t get_offset_of_typedArgument_0() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t287865710, ___typedArgument_0)); } inline CustomAttributeTypedArgument_t2723150157 get_typedArgument_0() const { return ___typedArgument_0; } inline CustomAttributeTypedArgument_t2723150157 * get_address_of_typedArgument_0() { return &___typedArgument_0; } inline void set_typedArgument_0(CustomAttributeTypedArgument_t2723150157 value) { ___typedArgument_0 = value; } inline static int32_t get_offset_of_memberInfo_1() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t287865710, ___memberInfo_1)); } inline MemberInfo_t * get_memberInfo_1() const { return ___memberInfo_1; } inline MemberInfo_t ** get_address_of_memberInfo_1() { return &___memberInfo_1; } inline void set_memberInfo_1(MemberInfo_t * value) { ___memberInfo_1 = value; Il2CppCodeGenWriteBarrier((&___memberInfo_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeNamedArgument struct CustomAttributeNamedArgument_t287865710_marshaled_pinvoke { CustomAttributeTypedArgument_t2723150157_marshaled_pinvoke ___typedArgument_0; MemberInfo_t * ___memberInfo_1; }; // Native definition for COM marshalling of System.Reflection.CustomAttributeNamedArgument struct CustomAttributeNamedArgument_t287865710_marshaled_com { CustomAttributeTypedArgument_t2723150157_marshaled_com ___typedArgument_0; MemberInfo_t * ___memberInfo_1; }; #endif // CUSTOMATTRIBUTENAMEDARGUMENT_T287865710_H #ifndef ILEXCEPTIONINFO_T237856010_H #define ILEXCEPTIONINFO_T237856010_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Emit.ILExceptionInfo struct ILExceptionInfo_t237856010 { public: // System.Reflection.Emit.ILExceptionBlock[] System.Reflection.Emit.ILExceptionInfo::handlers ILExceptionBlockU5BU5D_t2996808915* ___handlers_0; // System.Int32 System.Reflection.Emit.ILExceptionInfo::start int32_t ___start_1; // System.Int32 System.Reflection.Emit.ILExceptionInfo::len int32_t ___len_2; // System.Reflection.Emit.Label System.Reflection.Emit.ILExceptionInfo::end Label_t2281661643 ___end_3; public: inline static int32_t get_offset_of_handlers_0() { return static_cast<int32_t>(offsetof(ILExceptionInfo_t237856010, ___handlers_0)); } inline ILExceptionBlockU5BU5D_t2996808915* get_handlers_0() const { return ___handlers_0; } inline ILExceptionBlockU5BU5D_t2996808915** get_address_of_handlers_0() { return &___handlers_0; } inline void set_handlers_0(ILExceptionBlockU5BU5D_t2996808915* value) { ___handlers_0 = value; Il2CppCodeGenWriteBarrier((&___handlers_0), value); } inline static int32_t get_offset_of_start_1() { return static_cast<int32_t>(offsetof(ILExceptionInfo_t237856010, ___start_1)); } inline int32_t get_start_1() const { return ___start_1; } inline int32_t* get_address_of_start_1() { return &___start_1; } inline void set_start_1(int32_t value) { ___start_1 = value; } inline static int32_t get_offset_of_len_2() { return static_cast<int32_t>(offsetof(ILExceptionInfo_t237856010, ___len_2)); } inline int32_t get_len_2() const { return ___len_2; } inline int32_t* get_address_of_len_2() { return &___len_2; } inline void set_len_2(int32_t value) { ___len_2 = value; } inline static int32_t get_offset_of_end_3() { return static_cast<int32_t>(offsetof(ILExceptionInfo_t237856010, ___end_3)); } inline Label_t2281661643 get_end_3() const { return ___end_3; } inline Label_t2281661643 * get_address_of_end_3() { return &___end_3; } inline void set_end_3(Label_t2281661643 value) { ___end_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.Emit.ILExceptionInfo struct ILExceptionInfo_t237856010_marshaled_pinvoke { ILExceptionBlock_t3961874966_marshaled_pinvoke* ___handlers_0; int32_t ___start_1; int32_t ___len_2; Label_t2281661643 ___end_3; }; // Native definition for COM marshalling of System.Reflection.Emit.ILExceptionInfo struct ILExceptionInfo_t237856010_marshaled_com { ILExceptionBlock_t3961874966_marshaled_com* ___handlers_0; int32_t ___start_1; int32_t ___len_2; Label_t2281661643 ___end_3; }; #endif // ILEXCEPTIONINFO_T237856010_H #ifndef METHODINFO_T_H #define METHODINFO_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MethodInfo struct MethodInfo_t : public MethodBase_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // METHODINFO_T_H #ifndef RESOURCEATTRIBUTES_T3997964906_H #define RESOURCEATTRIBUTES_T3997964906_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.ResourceAttributes struct ResourceAttributes_t3997964906 { public: // System.Int32 System.Reflection.ResourceAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ResourceAttributes_t3997964906, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RESOURCEATTRIBUTES_T3997964906_H #ifndef BINARYTYPEENUM_T3485436454_H #define BINARYTYPEENUM_T3485436454_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.Formatters.Binary.BinaryTypeEnum struct BinaryTypeEnum_t3485436454 { public: // System.Int32 System.Runtime.Serialization.Formatters.Binary.BinaryTypeEnum::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BinaryTypeEnum_t3485436454, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BINARYTYPEENUM_T3485436454_H #ifndef INTERNALPRIMITIVETYPEE_T4093048977_H #define INTERNALPRIMITIVETYPEE_T4093048977_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.Formatters.Binary.InternalPrimitiveTypeE struct InternalPrimitiveTypeE_t4093048977 { public: // System.Int32 System.Runtime.Serialization.Formatters.Binary.InternalPrimitiveTypeE::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InternalPrimitiveTypeE_t4093048977, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALPRIMITIVETYPEE_T4093048977_H #ifndef RUNTIMETYPEHANDLE_T3027515415_H #define RUNTIMETYPEHANDLE_T3027515415_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.RuntimeTypeHandle struct RuntimeTypeHandle_t3027515415 { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t3027515415, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMETYPEHANDLE_T3027515415_H #ifndef X509CHAINSTATUSFLAGS_T1026973125_H #define X509CHAINSTATUSFLAGS_T1026973125_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.X509Certificates.X509ChainStatusFlags struct X509ChainStatusFlags_t1026973125 { public: // System.Int32 System.Security.Cryptography.X509Certificates.X509ChainStatusFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(X509ChainStatusFlags_t1026973125, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // X509CHAINSTATUSFLAGS_T1026973125_H #ifndef SECURITYACTION_T569814076_H #define SECURITYACTION_T569814076_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Permissions.SecurityAction struct SecurityAction_t569814076 { public: // System.Int32 System.Security.Permissions.SecurityAction::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SecurityAction_t569814076, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SECURITYACTION_T569814076_H #ifndef TERMINFOSTRINGS_T290279955_H #define TERMINFOSTRINGS_T290279955_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.TermInfoStrings struct TermInfoStrings_t290279955 { public: // System.Int32 System.TermInfoStrings::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TermInfoStrings_t290279955, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TERMINFOSTRINGS_T290279955_H #ifndef REGEXOPTIONS_T92845595_H #define REGEXOPTIONS_T92845595_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.RegularExpressions.RegexOptions struct RegexOptions_t92845595 { public: // System.Int32 System.Text.RegularExpressions.RegexOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RegexOptions_t92845595, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // REGEXOPTIONS_T92845595_H #ifndef CANCELLATIONTOKENREGISTRATION_T2813424904_H #define CANCELLATIONTOKENREGISTRATION_T2813424904_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.CancellationTokenRegistration struct CancellationTokenRegistration_t2813424904 { public: // System.Threading.CancellationCallbackInfo System.Threading.CancellationTokenRegistration::m_callbackInfo CancellationCallbackInfo_t322720759 * ___m_callbackInfo_0; // System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo> System.Threading.CancellationTokenRegistration::m_registrationInfo SparselyPopulatedArrayAddInfo_1_t223515617 ___m_registrationInfo_1; public: inline static int32_t get_offset_of_m_callbackInfo_0() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_t2813424904, ___m_callbackInfo_0)); } inline CancellationCallbackInfo_t322720759 * get_m_callbackInfo_0() const { return ___m_callbackInfo_0; } inline CancellationCallbackInfo_t322720759 ** get_address_of_m_callbackInfo_0() { return &___m_callbackInfo_0; } inline void set_m_callbackInfo_0(CancellationCallbackInfo_t322720759 * value) { ___m_callbackInfo_0 = value; Il2CppCodeGenWriteBarrier((&___m_callbackInfo_0), value); } inline static int32_t get_offset_of_m_registrationInfo_1() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_t2813424904, ___m_registrationInfo_1)); } inline SparselyPopulatedArrayAddInfo_1_t223515617 get_m_registrationInfo_1() const { return ___m_registrationInfo_1; } inline SparselyPopulatedArrayAddInfo_1_t223515617 * get_address_of_m_registrationInfo_1() { return &___m_registrationInfo_1; } inline void set_m_registrationInfo_1(SparselyPopulatedArrayAddInfo_1_t223515617 value) { ___m_registrationInfo_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Threading.CancellationTokenRegistration struct CancellationTokenRegistration_t2813424904_marshaled_pinvoke { CancellationCallbackInfo_t322720759 * ___m_callbackInfo_0; SparselyPopulatedArrayAddInfo_1_t223515617 ___m_registrationInfo_1; }; // Native definition for COM marshalling of System.Threading.CancellationTokenRegistration struct CancellationTokenRegistration_t2813424904_marshaled_com { CancellationCallbackInfo_t322720759 * ___m_callbackInfo_0; SparselyPopulatedArrayAddInfo_1_t223515617 ___m_registrationInfo_1; }; #endif // CANCELLATIONTOKENREGISTRATION_T2813424904_H #ifndef TIMESPAN_T881159249_H #define TIMESPAN_T881159249_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.TimeSpan struct TimeSpan_t881159249 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_22; public: inline static int32_t get_offset_of__ticks_22() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249, ____ticks_22)); } inline int64_t get__ticks_22() const { return ____ticks_22; } inline int64_t* get_address_of__ticks_22() { return &____ticks_22; } inline void set__ticks_22(int64_t value) { ____ticks_22 = value; } }; struct TimeSpan_t881159249_StaticFields { public: // System.TimeSpan System.TimeSpan::Zero TimeSpan_t881159249 ___Zero_19; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_t881159249 ___MaxValue_20; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_t881159249 ___MinValue_21; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked bool ____legacyConfigChecked_23; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode bool ____legacyMode_24; public: inline static int32_t get_offset_of_Zero_19() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___Zero_19)); } inline TimeSpan_t881159249 get_Zero_19() const { return ___Zero_19; } inline TimeSpan_t881159249 * get_address_of_Zero_19() { return &___Zero_19; } inline void set_Zero_19(TimeSpan_t881159249 value) { ___Zero_19 = value; } inline static int32_t get_offset_of_MaxValue_20() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___MaxValue_20)); } inline TimeSpan_t881159249 get_MaxValue_20() const { return ___MaxValue_20; } inline TimeSpan_t881159249 * get_address_of_MaxValue_20() { return &___MaxValue_20; } inline void set_MaxValue_20(TimeSpan_t881159249 value) { ___MaxValue_20 = value; } inline static int32_t get_offset_of_MinValue_21() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___MinValue_21)); } inline TimeSpan_t881159249 get_MinValue_21() const { return ___MinValue_21; } inline TimeSpan_t881159249 * get_address_of_MinValue_21() { return &___MinValue_21; } inline void set_MinValue_21(TimeSpan_t881159249 value) { ___MinValue_21 = value; } inline static int32_t get_offset_of__legacyConfigChecked_23() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ____legacyConfigChecked_23)); } inline bool get__legacyConfigChecked_23() const { return ____legacyConfigChecked_23; } inline bool* get_address_of__legacyConfigChecked_23() { return &____legacyConfigChecked_23; } inline void set__legacyConfigChecked_23(bool value) { ____legacyConfigChecked_23 = value; } inline static int32_t get_offset_of__legacyMode_24() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ____legacyMode_24)); } inline bool get__legacyMode_24() const { return ____legacyMode_24; } inline bool* get_address_of__legacyMode_24() { return &____legacyMode_24; } inline void set__legacyMode_24(bool value) { ____legacyMode_24 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TIMESPAN_T881159249_H #ifndef TYPECODE_T2987224087_H #define TYPECODE_T2987224087_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.TypeCode struct TypeCode_t2987224087 { public: // System.Int32 System.TypeCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeCode_t2987224087, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPECODE_T2987224087_H #ifndef XMLTYPECODE_T2623622950_H #define XMLTYPECODE_T2623622950_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlTypeCode struct XmlTypeCode_t2623622950 { public: // System.Int32 System.Xml.Schema.XmlTypeCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(XmlTypeCode_t2623622950, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLTYPECODE_T2623622950_H #ifndef STATE_T1890458201_H #define STATE_T1890458201_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XsdBuilder/State struct State_t1890458201 { public: // System.Int32 System.Xml.Schema.XsdBuilder/State::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(State_t1890458201, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STATE_T1890458201_H #ifndef XPATHRESULTTYPE_T2828988488_H #define XPATHRESULTTYPE_T2828988488_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XPath.XPathResultType struct XPathResultType_t2828988488 { public: // System.Int32 System.Xml.XPath.XPathResultType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(XPathResultType_t2828988488, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XPATHRESULTTYPE_T2828988488_H #ifndef XMLSPACE_T3324193251_H #define XMLSPACE_T3324193251_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlSpace struct XmlSpace_t3324193251 { public: // System.Int32 System.Xml.XmlSpace::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(XmlSpace_t3324193251, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSPACE_T3324193251_H #ifndef NAMESPACESTATE_T853084585_H #define NAMESPACESTATE_T853084585_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlTextWriter/NamespaceState struct NamespaceState_t853084585 { public: // System.Int32 System.Xml.XmlTextWriter/NamespaceState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NamespaceState_t853084585, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NAMESPACESTATE_T853084585_H #ifndef STATE_T1792539347_H #define STATE_T1792539347_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlTextWriter/State struct State_t1792539347 { public: // System.Int32 System.Xml.XmlTextWriter/State::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(State_t1792539347, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STATE_T1792539347_H #ifndef EXTENTS_T3837212874_H #define EXTENTS_T3837212874_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.Extents struct Extents_t3837212874 { public: // UnityEngine.Vector2 TMPro.Extents::min Vector2_t2156229523 ___min_0; // UnityEngine.Vector2 TMPro.Extents::max Vector2_t2156229523 ___max_1; public: inline static int32_t get_offset_of_min_0() { return static_cast<int32_t>(offsetof(Extents_t3837212874, ___min_0)); } inline Vector2_t2156229523 get_min_0() const { return ___min_0; } inline Vector2_t2156229523 * get_address_of_min_0() { return &___min_0; } inline void set_min_0(Vector2_t2156229523 value) { ___min_0 = value; } inline static int32_t get_offset_of_max_1() { return static_cast<int32_t>(offsetof(Extents_t3837212874, ___max_1)); } inline Vector2_t2156229523 get_max_1() const { return ___max_1; } inline Vector2_t2156229523 * get_address_of_max_1() { return &___max_1; } inline void set_max_1(Vector2_t2156229523 value) { ___max_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EXTENTS_T3837212874_H #ifndef FONTSTYLES_T3828945032_H #define FONTSTYLES_T3828945032_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.FontStyles struct FontStyles_t3828945032 { public: // System.Int32 TMPro.FontStyles::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FontStyles_t3828945032, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FONTSTYLES_T3828945032_H #ifndef SPRITEDATA_T3048397587_H #define SPRITEDATA_T3048397587_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.SpriteAssetUtilities.TexturePacker/SpriteData struct SpriteData_t3048397587 { public: // System.String TMPro.SpriteAssetUtilities.TexturePacker/SpriteData::filename String_t* ___filename_0; // TMPro.SpriteAssetUtilities.TexturePacker/SpriteFrame TMPro.SpriteAssetUtilities.TexturePacker/SpriteData::frame SpriteFrame_t3912389194 ___frame_1; // System.Boolean TMPro.SpriteAssetUtilities.TexturePacker/SpriteData::rotated bool ___rotated_2; // System.Boolean TMPro.SpriteAssetUtilities.TexturePacker/SpriteData::trimmed bool ___trimmed_3; // TMPro.SpriteAssetUtilities.TexturePacker/SpriteFrame TMPro.SpriteAssetUtilities.TexturePacker/SpriteData::spriteSourceSize SpriteFrame_t3912389194 ___spriteSourceSize_4; // TMPro.SpriteAssetUtilities.TexturePacker/SpriteSize TMPro.SpriteAssetUtilities.TexturePacker/SpriteData::sourceSize SpriteSize_t3355290999 ___sourceSize_5; // UnityEngine.Vector2 TMPro.SpriteAssetUtilities.TexturePacker/SpriteData::pivot Vector2_t2156229523 ___pivot_6; public: inline static int32_t get_offset_of_filename_0() { return static_cast<int32_t>(offsetof(SpriteData_t3048397587, ___filename_0)); } inline String_t* get_filename_0() const { return ___filename_0; } inline String_t** get_address_of_filename_0() { return &___filename_0; } inline void set_filename_0(String_t* value) { ___filename_0 = value; Il2CppCodeGenWriteBarrier((&___filename_0), value); } inline static int32_t get_offset_of_frame_1() { return static_cast<int32_t>(offsetof(SpriteData_t3048397587, ___frame_1)); } inline SpriteFrame_t3912389194 get_frame_1() const { return ___frame_1; } inline SpriteFrame_t3912389194 * get_address_of_frame_1() { return &___frame_1; } inline void set_frame_1(SpriteFrame_t3912389194 value) { ___frame_1 = value; } inline static int32_t get_offset_of_rotated_2() { return static_cast<int32_t>(offsetof(SpriteData_t3048397587, ___rotated_2)); } inline bool get_rotated_2() const { return ___rotated_2; } inline bool* get_address_of_rotated_2() { return &___rotated_2; } inline void set_rotated_2(bool value) { ___rotated_2 = value; } inline static int32_t get_offset_of_trimmed_3() { return static_cast<int32_t>(offsetof(SpriteData_t3048397587, ___trimmed_3)); } inline bool get_trimmed_3() const { return ___trimmed_3; } inline bool* get_address_of_trimmed_3() { return &___trimmed_3; } inline void set_trimmed_3(bool value) { ___trimmed_3 = value; } inline static int32_t get_offset_of_spriteSourceSize_4() { return static_cast<int32_t>(offsetof(SpriteData_t3048397587, ___spriteSourceSize_4)); } inline SpriteFrame_t3912389194 get_spriteSourceSize_4() const { return ___spriteSourceSize_4; } inline SpriteFrame_t3912389194 * get_address_of_spriteSourceSize_4() { return &___spriteSourceSize_4; } inline void set_spriteSourceSize_4(SpriteFrame_t3912389194 value) { ___spriteSourceSize_4 = value; } inline static int32_t get_offset_of_sourceSize_5() { return static_cast<int32_t>(offsetof(SpriteData_t3048397587, ___sourceSize_5)); } inline SpriteSize_t3355290999 get_sourceSize_5() const { return ___sourceSize_5; } inline SpriteSize_t3355290999 * get_address_of_sourceSize_5() { return &___sourceSize_5; } inline void set_sourceSize_5(SpriteSize_t3355290999 value) { ___sourceSize_5 = value; } inline static int32_t get_offset_of_pivot_6() { return static_cast<int32_t>(offsetof(SpriteData_t3048397587, ___pivot_6)); } inline Vector2_t2156229523 get_pivot_6() const { return ___pivot_6; } inline Vector2_t2156229523 * get_address_of_pivot_6() { return &___pivot_6; } inline void set_pivot_6(Vector2_t2156229523 value) { ___pivot_6 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of TMPro.SpriteAssetUtilities.TexturePacker/SpriteData struct SpriteData_t3048397587_marshaled_pinvoke { char* ___filename_0; SpriteFrame_t3912389194 ___frame_1; int32_t ___rotated_2; int32_t ___trimmed_3; SpriteFrame_t3912389194 ___spriteSourceSize_4; SpriteSize_t3355290999 ___sourceSize_5; Vector2_t2156229523 ___pivot_6; }; // Native definition for COM marshalling of TMPro.SpriteAssetUtilities.TexturePacker/SpriteData struct SpriteData_t3048397587_marshaled_com { Il2CppChar* ___filename_0; SpriteFrame_t3912389194 ___frame_1; int32_t ___rotated_2; int32_t ___trimmed_3; SpriteFrame_t3912389194 ___spriteSourceSize_4; SpriteSize_t3355290999 ___sourceSize_5; Vector2_t2156229523 ___pivot_6; }; #endif // SPRITEDATA_T3048397587_H #ifndef CHARACTERVALIDATION_T3801396403_H #define CHARACTERVALIDATION_T3801396403_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.TMP_InputField/CharacterValidation struct CharacterValidation_t3801396403 { public: // System.Int32 TMPro.TMP_InputField/CharacterValidation::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CharacterValidation_t3801396403, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CHARACTERVALIDATION_T3801396403_H #ifndef CONTENTTYPE_T1128941285_H #define CONTENTTYPE_T1128941285_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.TMP_InputField/ContentType struct ContentType_t1128941285 { public: // System.Int32 TMPro.TMP_InputField/ContentType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ContentType_t1128941285, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONTENTTYPE_T1128941285_H #ifndef INPUTTYPE_T2510134850_H #define INPUTTYPE_T2510134850_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.TMP_InputField/InputType struct InputType_t2510134850 { public: // System.Int32 TMPro.TMP_InputField/InputType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InputType_t2510134850, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INPUTTYPE_T2510134850_H #ifndef LINETYPE_T2817627283_H #define LINETYPE_T2817627283_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.TMP_InputField/LineType struct LineType_t2817627283 { public: // System.Int32 TMPro.TMP_InputField/LineType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LineType_t2817627283, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LINETYPE_T2817627283_H #ifndef TMP_MESHINFO_T2771747634_H #define TMP_MESHINFO_T2771747634_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.TMP_MeshInfo struct TMP_MeshInfo_t2771747634 { public: // UnityEngine.Mesh TMPro.TMP_MeshInfo::mesh Mesh_t3648964284 * ___mesh_3; // System.Int32 TMPro.TMP_MeshInfo::vertexCount int32_t ___vertexCount_4; // UnityEngine.Vector3[] TMPro.TMP_MeshInfo::vertices Vector3U5BU5D_t1718750761* ___vertices_5; // UnityEngine.Vector3[] TMPro.TMP_MeshInfo::normals Vector3U5BU5D_t1718750761* ___normals_6; // UnityEngine.Vector4[] TMPro.TMP_MeshInfo::tangents Vector4U5BU5D_t934056436* ___tangents_7; // UnityEngine.Vector2[] TMPro.TMP_MeshInfo::uvs0 Vector2U5BU5D_t1457185986* ___uvs0_8; // UnityEngine.Vector2[] TMPro.TMP_MeshInfo::uvs2 Vector2U5BU5D_t1457185986* ___uvs2_9; // UnityEngine.Color32[] TMPro.TMP_MeshInfo::colors32 Color32U5BU5D_t3850468773* ___colors32_10; // System.Int32[] TMPro.TMP_MeshInfo::triangles Int32U5BU5D_t385246372* ___triangles_11; public: inline static int32_t get_offset_of_mesh_3() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t2771747634, ___mesh_3)); } inline Mesh_t3648964284 * get_mesh_3() const { return ___mesh_3; } inline Mesh_t3648964284 ** get_address_of_mesh_3() { return &___mesh_3; } inline void set_mesh_3(Mesh_t3648964284 * value) { ___mesh_3 = value; Il2CppCodeGenWriteBarrier((&___mesh_3), value); } inline static int32_t get_offset_of_vertexCount_4() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t2771747634, ___vertexCount_4)); } inline int32_t get_vertexCount_4() const { return ___vertexCount_4; } inline int32_t* get_address_of_vertexCount_4() { return &___vertexCount_4; } inline void set_vertexCount_4(int32_t value) { ___vertexCount_4 = value; } inline static int32_t get_offset_of_vertices_5() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t2771747634, ___vertices_5)); } inline Vector3U5BU5D_t1718750761* get_vertices_5() const { return ___vertices_5; } inline Vector3U5BU5D_t1718750761** get_address_of_vertices_5() { return &___vertices_5; } inline void set_vertices_5(Vector3U5BU5D_t1718750761* value) { ___vertices_5 = value; Il2CppCodeGenWriteBarrier((&___vertices_5), value); } inline static int32_t get_offset_of_normals_6() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t2771747634, ___normals_6)); } inline Vector3U5BU5D_t1718750761* get_normals_6() const { return ___normals_6; } inline Vector3U5BU5D_t1718750761** get_address_of_normals_6() { return &___normals_6; } inline void set_normals_6(Vector3U5BU5D_t1718750761* value) { ___normals_6 = value; Il2CppCodeGenWriteBarrier((&___normals_6), value); } inline static int32_t get_offset_of_tangents_7() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t2771747634, ___tangents_7)); } inline Vector4U5BU5D_t934056436* get_tangents_7() const { return ___tangents_7; } inline Vector4U5BU5D_t934056436** get_address_of_tangents_7() { return &___tangents_7; } inline void set_tangents_7(Vector4U5BU5D_t934056436* value) { ___tangents_7 = value; Il2CppCodeGenWriteBarrier((&___tangents_7), value); } inline static int32_t get_offset_of_uvs0_8() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t2771747634, ___uvs0_8)); } inline Vector2U5BU5D_t1457185986* get_uvs0_8() const { return ___uvs0_8; } inline Vector2U5BU5D_t1457185986** get_address_of_uvs0_8() { return &___uvs0_8; } inline void set_uvs0_8(Vector2U5BU5D_t1457185986* value) { ___uvs0_8 = value; Il2CppCodeGenWriteBarrier((&___uvs0_8), value); } inline static int32_t get_offset_of_uvs2_9() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t2771747634, ___uvs2_9)); } inline Vector2U5BU5D_t1457185986* get_uvs2_9() const { return ___uvs2_9; } inline Vector2U5BU5D_t1457185986** get_address_of_uvs2_9() { return &___uvs2_9; } inline void set_uvs2_9(Vector2U5BU5D_t1457185986* value) { ___uvs2_9 = value; Il2CppCodeGenWriteBarrier((&___uvs2_9), value); } inline static int32_t get_offset_of_colors32_10() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t2771747634, ___colors32_10)); } inline Color32U5BU5D_t3850468773* get_colors32_10() const { return ___colors32_10; } inline Color32U5BU5D_t3850468773** get_address_of_colors32_10() { return &___colors32_10; } inline void set_colors32_10(Color32U5BU5D_t3850468773* value) { ___colors32_10 = value; Il2CppCodeGenWriteBarrier((&___colors32_10), value); } inline static int32_t get_offset_of_triangles_11() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t2771747634, ___triangles_11)); } inline Int32U5BU5D_t385246372* get_triangles_11() const { return ___triangles_11; } inline Int32U5BU5D_t385246372** get_address_of_triangles_11() { return &___triangles_11; } inline void set_triangles_11(Int32U5BU5D_t385246372* value) { ___triangles_11 = value; Il2CppCodeGenWriteBarrier((&___triangles_11), value); } }; struct TMP_MeshInfo_t2771747634_StaticFields { public: // UnityEngine.Color32 TMPro.TMP_MeshInfo::s_DefaultColor Color32_t2600501292 ___s_DefaultColor_0; // UnityEngine.Vector3 TMPro.TMP_MeshInfo::s_DefaultNormal Vector3_t3722313464 ___s_DefaultNormal_1; // UnityEngine.Vector4 TMPro.TMP_MeshInfo::s_DefaultTangent Vector4_t3319028937 ___s_DefaultTangent_2; public: inline static int32_t get_offset_of_s_DefaultColor_0() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t2771747634_StaticFields, ___s_DefaultColor_0)); } inline Color32_t2600501292 get_s_DefaultColor_0() const { return ___s_DefaultColor_0; } inline Color32_t2600501292 * get_address_of_s_DefaultColor_0() { return &___s_DefaultColor_0; } inline void set_s_DefaultColor_0(Color32_t2600501292 value) { ___s_DefaultColor_0 = value; } inline static int32_t get_offset_of_s_DefaultNormal_1() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t2771747634_StaticFields, ___s_DefaultNormal_1)); } inline Vector3_t3722313464 get_s_DefaultNormal_1() const { return ___s_DefaultNormal_1; } inline Vector3_t3722313464 * get_address_of_s_DefaultNormal_1() { return &___s_DefaultNormal_1; } inline void set_s_DefaultNormal_1(Vector3_t3722313464 value) { ___s_DefaultNormal_1 = value; } inline static int32_t get_offset_of_s_DefaultTangent_2() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t2771747634_StaticFields, ___s_DefaultTangent_2)); } inline Vector4_t3319028937 get_s_DefaultTangent_2() const { return ___s_DefaultTangent_2; } inline Vector4_t3319028937 * get_address_of_s_DefaultTangent_2() { return &___s_DefaultTangent_2; } inline void set_s_DefaultTangent_2(Vector4_t3319028937 value) { ___s_DefaultTangent_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of TMPro.TMP_MeshInfo struct TMP_MeshInfo_t2771747634_marshaled_pinvoke { Mesh_t3648964284 * ___mesh_3; int32_t ___vertexCount_4; Vector3_t3722313464 * ___vertices_5; Vector3_t3722313464 * ___normals_6; Vector4_t3319028937 * ___tangents_7; Vector2_t2156229523 * ___uvs0_8; Vector2_t2156229523 * ___uvs2_9; Color32_t2600501292 * ___colors32_10; int32_t* ___triangles_11; }; // Native definition for COM marshalling of TMPro.TMP_MeshInfo struct TMP_MeshInfo_t2771747634_marshaled_com { Mesh_t3648964284 * ___mesh_3; int32_t ___vertexCount_4; Vector3_t3722313464 * ___vertices_5; Vector3_t3722313464 * ___normals_6; Vector4_t3319028937 * ___tangents_7; Vector2_t2156229523 * ___uvs0_8; Vector2_t2156229523 * ___uvs2_9; Color32_t2600501292 * ___colors32_10; int32_t* ___triangles_11; }; #endif // TMP_MESHINFO_T2771747634_H #ifndef TMP_TEXTELEMENTTYPE_T1276645592_H #define TMP_TEXTELEMENTTYPE_T1276645592_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.TMP_TextElementType struct TMP_TextElementType_t1276645592 { public: // System.Int32 TMPro.TMP_TextElementType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TMP_TextElementType_t1276645592, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TMP_TEXTELEMENTTYPE_T1276645592_H #ifndef TMP_VERTEX_T2404176824_H #define TMP_VERTEX_T2404176824_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.TMP_Vertex struct TMP_Vertex_t2404176824 { public: // UnityEngine.Vector3 TMPro.TMP_Vertex::position Vector3_t3722313464 ___position_0; // UnityEngine.Vector2 TMPro.TMP_Vertex::uv Vector2_t2156229523 ___uv_1; // UnityEngine.Vector2 TMPro.TMP_Vertex::uv2 Vector2_t2156229523 ___uv2_2; // UnityEngine.Vector2 TMPro.TMP_Vertex::uv4 Vector2_t2156229523 ___uv4_3; // UnityEngine.Color32 TMPro.TMP_Vertex::color Color32_t2600501292 ___color_4; public: inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(TMP_Vertex_t2404176824, ___position_0)); } inline Vector3_t3722313464 get_position_0() const { return ___position_0; } inline Vector3_t3722313464 * get_address_of_position_0() { return &___position_0; } inline void set_position_0(Vector3_t3722313464 value) { ___position_0 = value; } inline static int32_t get_offset_of_uv_1() { return static_cast<int32_t>(offsetof(TMP_Vertex_t2404176824, ___uv_1)); } inline Vector2_t2156229523 get_uv_1() const { return ___uv_1; } inline Vector2_t2156229523 * get_address_of_uv_1() { return &___uv_1; } inline void set_uv_1(Vector2_t2156229523 value) { ___uv_1 = value; } inline static int32_t get_offset_of_uv2_2() { return static_cast<int32_t>(offsetof(TMP_Vertex_t2404176824, ___uv2_2)); } inline Vector2_t2156229523 get_uv2_2() const { return ___uv2_2; } inline Vector2_t2156229523 * get_address_of_uv2_2() { return &___uv2_2; } inline void set_uv2_2(Vector2_t2156229523 value) { ___uv2_2 = value; } inline static int32_t get_offset_of_uv4_3() { return static_cast<int32_t>(offsetof(TMP_Vertex_t2404176824, ___uv4_3)); } inline Vector2_t2156229523 get_uv4_3() const { return ___uv4_3; } inline Vector2_t2156229523 * get_address_of_uv4_3() { return &___uv4_3; } inline void set_uv4_3(Vector2_t2156229523 value) { ___uv4_3 = value; } inline static int32_t get_offset_of_color_4() { return static_cast<int32_t>(offsetof(TMP_Vertex_t2404176824, ___color_4)); } inline Color32_t2600501292 get_color_4() const { return ___color_4; } inline Color32_t2600501292 * get_address_of_color_4() { return &___color_4; } inline void set_color_4(Color32_t2600501292 value) { ___color_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TMP_VERTEX_T2404176824_H #ifndef TAGTYPE_T123236451_H #define TAGTYPE_T123236451_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.TagType struct TagType_t123236451 { public: // System.Int32 TMPro.TagType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TagType_t123236451, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TAGTYPE_T123236451_H #ifndef TEXTALIGNMENTOPTIONS_T4036791236_H #define TEXTALIGNMENTOPTIONS_T4036791236_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.TextAlignmentOptions struct TextAlignmentOptions_t4036791236 { public: // System.Int32 TMPro.TextAlignmentOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextAlignmentOptions_t4036791236, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TEXTALIGNMENTOPTIONS_T4036791236_H #ifndef STEREOSCOPICEYE_T2238664036_H #define STEREOSCOPICEYE_T2238664036_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Camera/StereoscopicEye struct StereoscopicEye_t2238664036 { public: // System.Int32 UnityEngine.Camera/StereoscopicEye::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StereoscopicEye_t2238664036, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STEREOSCOPICEYE_T2238664036_H #ifndef CONTACTPOINT_T3758755253_H #define CONTACTPOINT_T3758755253_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.ContactPoint struct ContactPoint_t3758755253 { public: // UnityEngine.Vector3 UnityEngine.ContactPoint::m_Point Vector3_t3722313464 ___m_Point_0; // UnityEngine.Vector3 UnityEngine.ContactPoint::m_Normal Vector3_t3722313464 ___m_Normal_1; // System.Int32 UnityEngine.ContactPoint::m_ThisColliderInstanceID int32_t ___m_ThisColliderInstanceID_2; // System.Int32 UnityEngine.ContactPoint::m_OtherColliderInstanceID int32_t ___m_OtherColliderInstanceID_3; // System.Single UnityEngine.ContactPoint::m_Separation float ___m_Separation_4; public: inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(ContactPoint_t3758755253, ___m_Point_0)); } inline Vector3_t3722313464 get_m_Point_0() const { return ___m_Point_0; } inline Vector3_t3722313464 * get_address_of_m_Point_0() { return &___m_Point_0; } inline void set_m_Point_0(Vector3_t3722313464 value) { ___m_Point_0 = value; } inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(ContactPoint_t3758755253, ___m_Normal_1)); } inline Vector3_t3722313464 get_m_Normal_1() const { return ___m_Normal_1; } inline Vector3_t3722313464 * get_address_of_m_Normal_1() { return &___m_Normal_1; } inline void set_m_Normal_1(Vector3_t3722313464 value) { ___m_Normal_1 = value; } inline static int32_t get_offset_of_m_ThisColliderInstanceID_2() { return static_cast<int32_t>(offsetof(ContactPoint_t3758755253, ___m_ThisColliderInstanceID_2)); } inline int32_t get_m_ThisColliderInstanceID_2() const { return ___m_ThisColliderInstanceID_2; } inline int32_t* get_address_of_m_ThisColliderInstanceID_2() { return &___m_ThisColliderInstanceID_2; } inline void set_m_ThisColliderInstanceID_2(int32_t value) { ___m_ThisColliderInstanceID_2 = value; } inline static int32_t get_offset_of_m_OtherColliderInstanceID_3() { return static_cast<int32_t>(offsetof(ContactPoint_t3758755253, ___m_OtherColliderInstanceID_3)); } inline int32_t get_m_OtherColliderInstanceID_3() const { return ___m_OtherColliderInstanceID_3; } inline int32_t* get_address_of_m_OtherColliderInstanceID_3() { return &___m_OtherColliderInstanceID_3; } inline void set_m_OtherColliderInstanceID_3(int32_t value) { ___m_OtherColliderInstanceID_3 = value; } inline static int32_t get_offset_of_m_Separation_4() { return static_cast<int32_t>(offsetof(ContactPoint_t3758755253, ___m_Separation_4)); } inline float get_m_Separation_4() const { return ___m_Separation_4; } inline float* get_address_of_m_Separation_4() { return &___m_Separation_4; } inline void set_m_Separation_4(float value) { ___m_Separation_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONTACTPOINT_T3758755253_H #ifndef RAYCASTRESULT_T3360306849_H #define RAYCASTRESULT_T3360306849_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.EventSystems.RaycastResult struct RaycastResult_t3360306849 { public: // UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::m_GameObject GameObject_t1113636619 * ___m_GameObject_0; // UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.RaycastResult::module BaseRaycaster_t4150874583 * ___module_1; // System.Single UnityEngine.EventSystems.RaycastResult::distance float ___distance_2; // System.Single UnityEngine.EventSystems.RaycastResult::index float ___index_3; // System.Int32 UnityEngine.EventSystems.RaycastResult::depth int32_t ___depth_4; // System.Int32 UnityEngine.EventSystems.RaycastResult::sortingLayer int32_t ___sortingLayer_5; // System.Int32 UnityEngine.EventSystems.RaycastResult::sortingOrder int32_t ___sortingOrder_6; // UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldPosition Vector3_t3722313464 ___worldPosition_7; // UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldNormal Vector3_t3722313464 ___worldNormal_8; // UnityEngine.Vector2 UnityEngine.EventSystems.RaycastResult::screenPosition Vector2_t2156229523 ___screenPosition_9; public: inline static int32_t get_offset_of_m_GameObject_0() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___m_GameObject_0)); } inline GameObject_t1113636619 * get_m_GameObject_0() const { return ___m_GameObject_0; } inline GameObject_t1113636619 ** get_address_of_m_GameObject_0() { return &___m_GameObject_0; } inline void set_m_GameObject_0(GameObject_t1113636619 * value) { ___m_GameObject_0 = value; Il2CppCodeGenWriteBarrier((&___m_GameObject_0), value); } inline static int32_t get_offset_of_module_1() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___module_1)); } inline BaseRaycaster_t4150874583 * get_module_1() const { return ___module_1; } inline BaseRaycaster_t4150874583 ** get_address_of_module_1() { return &___module_1; } inline void set_module_1(BaseRaycaster_t4150874583 * value) { ___module_1 = value; Il2CppCodeGenWriteBarrier((&___module_1), value); } inline static int32_t get_offset_of_distance_2() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___distance_2)); } inline float get_distance_2() const { return ___distance_2; } inline float* get_address_of_distance_2() { return &___distance_2; } inline void set_distance_2(float value) { ___distance_2 = value; } inline static int32_t get_offset_of_index_3() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___index_3)); } inline float get_index_3() const { return ___index_3; } inline float* get_address_of_index_3() { return &___index_3; } inline void set_index_3(float value) { ___index_3 = value; } inline static int32_t get_offset_of_depth_4() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___depth_4)); } inline int32_t get_depth_4() const { return ___depth_4; } inline int32_t* get_address_of_depth_4() { return &___depth_4; } inline void set_depth_4(int32_t value) { ___depth_4 = value; } inline static int32_t get_offset_of_sortingLayer_5() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___sortingLayer_5)); } inline int32_t get_sortingLayer_5() const { return ___sortingLayer_5; } inline int32_t* get_address_of_sortingLayer_5() { return &___sortingLayer_5; } inline void set_sortingLayer_5(int32_t value) { ___sortingLayer_5 = value; } inline static int32_t get_offset_of_sortingOrder_6() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___sortingOrder_6)); } inline int32_t get_sortingOrder_6() const { return ___sortingOrder_6; } inline int32_t* get_address_of_sortingOrder_6() { return &___sortingOrder_6; } inline void set_sortingOrder_6(int32_t value) { ___sortingOrder_6 = value; } inline static int32_t get_offset_of_worldPosition_7() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___worldPosition_7)); } inline Vector3_t3722313464 get_worldPosition_7() const { return ___worldPosition_7; } inline Vector3_t3722313464 * get_address_of_worldPosition_7() { return &___worldPosition_7; } inline void set_worldPosition_7(Vector3_t3722313464 value) { ___worldPosition_7 = value; } inline static int32_t get_offset_of_worldNormal_8() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___worldNormal_8)); } inline Vector3_t3722313464 get_worldNormal_8() const { return ___worldNormal_8; } inline Vector3_t3722313464 * get_address_of_worldNormal_8() { return &___worldNormal_8; } inline void set_worldNormal_8(Vector3_t3722313464 value) { ___worldNormal_8 = value; } inline static int32_t get_offset_of_screenPosition_9() { return static_cast<int32_t>(offsetof(RaycastResult_t3360306849, ___screenPosition_9)); } inline Vector2_t2156229523 get_screenPosition_9() const { return ___screenPosition_9; } inline Vector2_t2156229523 * get_address_of_screenPosition_9() { return &___screenPosition_9; } inline void set_screenPosition_9(Vector2_t2156229523 value) { ___screenPosition_9 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.EventSystems.RaycastResult struct RaycastResult_t3360306849_marshaled_pinvoke { GameObject_t1113636619 * ___m_GameObject_0; BaseRaycaster_t4150874583 * ___module_1; float ___distance_2; float ___index_3; int32_t ___depth_4; int32_t ___sortingLayer_5; int32_t ___sortingOrder_6; Vector3_t3722313464 ___worldPosition_7; Vector3_t3722313464 ___worldNormal_8; Vector2_t2156229523 ___screenPosition_9; }; // Native definition for COM marshalling of UnityEngine.EventSystems.RaycastResult struct RaycastResult_t3360306849_marshaled_com { GameObject_t1113636619 * ___m_GameObject_0; BaseRaycaster_t4150874583 * ___module_1; float ___distance_2; float ___index_3; int32_t ___depth_4; int32_t ___sortingLayer_5; int32_t ___sortingOrder_6; Vector3_t3722313464 ___worldPosition_7; Vector3_t3722313464 ___worldNormal_8; Vector2_t2156229523 ___screenPosition_9; }; #endif // RAYCASTRESULT_T3360306849_H #ifndef PLAYERLOOPSYSTEM_T105772105_H #define PLAYERLOOPSYSTEM_T105772105_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Experimental.LowLevel.PlayerLoopSystem struct PlayerLoopSystem_t105772105 { public: // System.Type UnityEngine.Experimental.LowLevel.PlayerLoopSystem::type Type_t * ___type_0; // UnityEngine.Experimental.LowLevel.PlayerLoopSystem[] UnityEngine.Experimental.LowLevel.PlayerLoopSystem::subSystemList PlayerLoopSystemU5BU5D_t1150299252* ___subSystemList_1; // UnityEngine.Experimental.LowLevel.PlayerLoopSystem/UpdateFunction UnityEngine.Experimental.LowLevel.PlayerLoopSystem::updateDelegate UpdateFunction_t377278577 * ___updateDelegate_2; // System.IntPtr UnityEngine.Experimental.LowLevel.PlayerLoopSystem::updateFunction intptr_t ___updateFunction_3; // System.IntPtr UnityEngine.Experimental.LowLevel.PlayerLoopSystem::loopConditionFunction intptr_t ___loopConditionFunction_4; public: inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t105772105, ___type_0)); } inline Type_t * get_type_0() const { return ___type_0; } inline Type_t ** get_address_of_type_0() { return &___type_0; } inline void set_type_0(Type_t * value) { ___type_0 = value; Il2CppCodeGenWriteBarrier((&___type_0), value); } inline static int32_t get_offset_of_subSystemList_1() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t105772105, ___subSystemList_1)); } inline PlayerLoopSystemU5BU5D_t1150299252* get_subSystemList_1() const { return ___subSystemList_1; } inline PlayerLoopSystemU5BU5D_t1150299252** get_address_of_subSystemList_1() { return &___subSystemList_1; } inline void set_subSystemList_1(PlayerLoopSystemU5BU5D_t1150299252* value) { ___subSystemList_1 = value; Il2CppCodeGenWriteBarrier((&___subSystemList_1), value); } inline static int32_t get_offset_of_updateDelegate_2() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t105772105, ___updateDelegate_2)); } inline UpdateFunction_t377278577 * get_updateDelegate_2() const { return ___updateDelegate_2; } inline UpdateFunction_t377278577 ** get_address_of_updateDelegate_2() { return &___updateDelegate_2; } inline void set_updateDelegate_2(UpdateFunction_t377278577 * value) { ___updateDelegate_2 = value; Il2CppCodeGenWriteBarrier((&___updateDelegate_2), value); } inline static int32_t get_offset_of_updateFunction_3() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t105772105, ___updateFunction_3)); } inline intptr_t get_updateFunction_3() const { return ___updateFunction_3; } inline intptr_t* get_address_of_updateFunction_3() { return &___updateFunction_3; } inline void set_updateFunction_3(intptr_t value) { ___updateFunction_3 = value; } inline static int32_t get_offset_of_loopConditionFunction_4() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t105772105, ___loopConditionFunction_4)); } inline intptr_t get_loopConditionFunction_4() const { return ___loopConditionFunction_4; } inline intptr_t* get_address_of_loopConditionFunction_4() { return &___loopConditionFunction_4; } inline void set_loopConditionFunction_4(intptr_t value) { ___loopConditionFunction_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.Experimental.LowLevel.PlayerLoopSystem struct PlayerLoopSystem_t105772105_marshaled_pinvoke { Type_t * ___type_0; PlayerLoopSystem_t105772105_marshaled_pinvoke* ___subSystemList_1; Il2CppMethodPointer ___updateDelegate_2; intptr_t ___updateFunction_3; intptr_t ___loopConditionFunction_4; }; // Native definition for COM marshalling of UnityEngine.Experimental.LowLevel.PlayerLoopSystem struct PlayerLoopSystem_t105772105_marshaled_com { Type_t * ___type_0; PlayerLoopSystem_t105772105_marshaled_com* ___subSystemList_1; Il2CppMethodPointer ___updateDelegate_2; intptr_t ___updateFunction_3; intptr_t ___loopConditionFunction_4; }; #endif // PLAYERLOOPSYSTEM_T105772105_H #ifndef OBJECT_T631007953_H #define OBJECT_T631007953_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Object struct Object_t631007953 : public RuntimeObject { public: // System.IntPtr UnityEngine.Object::m_CachedPtr intptr_t ___m_CachedPtr_0; public: inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_t631007953, ___m_CachedPtr_0)); } inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; } inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; } inline void set_m_CachedPtr_0(intptr_t value) { ___m_CachedPtr_0 = value; } }; struct Object_t631007953_StaticFields { public: // System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1; public: inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_t631007953_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); } inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; } inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; } inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value) { ___OffsetOfInstanceIDInCPlusPlusObject_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.Object struct Object_t631007953_marshaled_pinvoke { intptr_t ___m_CachedPtr_0; }; // Native definition for COM marshalling of UnityEngine.Object struct Object_t631007953_marshaled_com { intptr_t ___m_CachedPtr_0; }; #endif // OBJECT_T631007953_H #ifndef PLANE_T1000493321_H #define PLANE_T1000493321_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Plane struct Plane_t1000493321 { public: // UnityEngine.Vector3 UnityEngine.Plane::m_Normal Vector3_t3722313464 ___m_Normal_0; // System.Single UnityEngine.Plane::m_Distance float ___m_Distance_1; public: inline static int32_t get_offset_of_m_Normal_0() { return static_cast<int32_t>(offsetof(Plane_t1000493321, ___m_Normal_0)); } inline Vector3_t3722313464 get_m_Normal_0() const { return ___m_Normal_0; } inline Vector3_t3722313464 * get_address_of_m_Normal_0() { return &___m_Normal_0; } inline void set_m_Normal_0(Vector3_t3722313464 value) { ___m_Normal_0 = value; } inline static int32_t get_offset_of_m_Distance_1() { return static_cast<int32_t>(offsetof(Plane_t1000493321, ___m_Distance_1)); } inline float get_m_Distance_1() const { return ___m_Distance_1; } inline float* get_address_of_m_Distance_1() { return &___m_Distance_1; } inline void set_m_Distance_1(float value) { ___m_Distance_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PLANE_T1000493321_H #ifndef PLAYABLEHANDLE_T1095853803_H #define PLAYABLEHANDLE_T1095853803_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Playables.PlayableHandle struct PlayableHandle_t1095853803 { public: // System.IntPtr UnityEngine.Playables.PlayableHandle::m_Handle intptr_t ___m_Handle_0; // System.UInt32 UnityEngine.Playables.PlayableHandle::m_Version uint32_t ___m_Version_1; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableHandle_t1095853803, ___m_Handle_0)); } inline intptr_t get_m_Handle_0() const { return ___m_Handle_0; } inline intptr_t* get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(intptr_t value) { ___m_Handle_0 = value; } inline static int32_t get_offset_of_m_Version_1() { return static_cast<int32_t>(offsetof(PlayableHandle_t1095853803, ___m_Version_1)); } inline uint32_t get_m_Version_1() const { return ___m_Version_1; } inline uint32_t* get_address_of_m_Version_1() { return &___m_Version_1; } inline void set_m_Version_1(uint32_t value) { ___m_Version_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PLAYABLEHANDLE_T1095853803_H #ifndef RAYCASTHIT_T1056001966_H #define RAYCASTHIT_T1056001966_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.RaycastHit struct RaycastHit_t1056001966 { public: // UnityEngine.Vector3 UnityEngine.RaycastHit::m_Point Vector3_t3722313464 ___m_Point_0; // UnityEngine.Vector3 UnityEngine.RaycastHit::m_Normal Vector3_t3722313464 ___m_Normal_1; // System.UInt32 UnityEngine.RaycastHit::m_FaceID uint32_t ___m_FaceID_2; // System.Single UnityEngine.RaycastHit::m_Distance float ___m_Distance_3; // UnityEngine.Vector2 UnityEngine.RaycastHit::m_UV Vector2_t2156229523 ___m_UV_4; // System.Int32 UnityEngine.RaycastHit::m_Collider int32_t ___m_Collider_5; public: inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_Point_0)); } inline Vector3_t3722313464 get_m_Point_0() const { return ___m_Point_0; } inline Vector3_t3722313464 * get_address_of_m_Point_0() { return &___m_Point_0; } inline void set_m_Point_0(Vector3_t3722313464 value) { ___m_Point_0 = value; } inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_Normal_1)); } inline Vector3_t3722313464 get_m_Normal_1() const { return ___m_Normal_1; } inline Vector3_t3722313464 * get_address_of_m_Normal_1() { return &___m_Normal_1; } inline void set_m_Normal_1(Vector3_t3722313464 value) { ___m_Normal_1 = value; } inline static int32_t get_offset_of_m_FaceID_2() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_FaceID_2)); } inline uint32_t get_m_FaceID_2() const { return ___m_FaceID_2; } inline uint32_t* get_address_of_m_FaceID_2() { return &___m_FaceID_2; } inline void set_m_FaceID_2(uint32_t value) { ___m_FaceID_2 = value; } inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_Distance_3)); } inline float get_m_Distance_3() const { return ___m_Distance_3; } inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; } inline void set_m_Distance_3(float value) { ___m_Distance_3 = value; } inline static int32_t get_offset_of_m_UV_4() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_UV_4)); } inline Vector2_t2156229523 get_m_UV_4() const { return ___m_UV_4; } inline Vector2_t2156229523 * get_address_of_m_UV_4() { return &___m_UV_4; } inline void set_m_UV_4(Vector2_t2156229523 value) { ___m_UV_4 = value; } inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_Collider_5)); } inline int32_t get_m_Collider_5() const { return ___m_Collider_5; } inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; } inline void set_m_Collider_5(int32_t value) { ___m_Collider_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RAYCASTHIT_T1056001966_H #ifndef RAYCASTHIT2D_T2279581989_H #define RAYCASTHIT2D_T2279581989_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.RaycastHit2D struct RaycastHit2D_t2279581989 { public: // UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Centroid Vector2_t2156229523 ___m_Centroid_0; // UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Point Vector2_t2156229523 ___m_Point_1; // UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Normal Vector2_t2156229523 ___m_Normal_2; // System.Single UnityEngine.RaycastHit2D::m_Distance float ___m_Distance_3; // System.Single UnityEngine.RaycastHit2D::m_Fraction float ___m_Fraction_4; // System.Int32 UnityEngine.RaycastHit2D::m_Collider int32_t ___m_Collider_5; public: inline static int32_t get_offset_of_m_Centroid_0() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Centroid_0)); } inline Vector2_t2156229523 get_m_Centroid_0() const { return ___m_Centroid_0; } inline Vector2_t2156229523 * get_address_of_m_Centroid_0() { return &___m_Centroid_0; } inline void set_m_Centroid_0(Vector2_t2156229523 value) { ___m_Centroid_0 = value; } inline static int32_t get_offset_of_m_Point_1() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Point_1)); } inline Vector2_t2156229523 get_m_Point_1() const { return ___m_Point_1; } inline Vector2_t2156229523 * get_address_of_m_Point_1() { return &___m_Point_1; } inline void set_m_Point_1(Vector2_t2156229523 value) { ___m_Point_1 = value; } inline static int32_t get_offset_of_m_Normal_2() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Normal_2)); } inline Vector2_t2156229523 get_m_Normal_2() const { return ___m_Normal_2; } inline Vector2_t2156229523 * get_address_of_m_Normal_2() { return &___m_Normal_2; } inline void set_m_Normal_2(Vector2_t2156229523 value) { ___m_Normal_2 = value; } inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Distance_3)); } inline float get_m_Distance_3() const { return ___m_Distance_3; } inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; } inline void set_m_Distance_3(float value) { ___m_Distance_3 = value; } inline static int32_t get_offset_of_m_Fraction_4() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Fraction_4)); } inline float get_m_Fraction_4() const { return ___m_Fraction_4; } inline float* get_address_of_m_Fraction_4() { return &___m_Fraction_4; } inline void set_m_Fraction_4(float value) { ___m_Fraction_4 = value; } inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Collider_5)); } inline int32_t get_m_Collider_5() const { return ___m_Collider_5; } inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; } inline void set_m_Collider_5(int32_t value) { ___m_Collider_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RAYCASTHIT2D_T2279581989_H #ifndef TEXTUREFORMAT_T2701165832_H #define TEXTUREFORMAT_T2701165832_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.TextureFormat struct TextureFormat_t2701165832 { public: // System.Int32 UnityEngine.TextureFormat::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextureFormat_t2701165832, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TEXTUREFORMAT_T2701165832_H #ifndef TOUCHPHASE_T72348083_H #define TOUCHPHASE_T72348083_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.TouchPhase struct TouchPhase_t72348083 { public: // System.Int32 UnityEngine.TouchPhase::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TouchPhase_t72348083, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TOUCHPHASE_T72348083_H #ifndef TOUCHSCREENKEYBOARDTYPE_T1530597702_H #define TOUCHSCREENKEYBOARDTYPE_T1530597702_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.TouchScreenKeyboardType struct TouchScreenKeyboardType_t1530597702 { public: // System.Int32 UnityEngine.TouchScreenKeyboardType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TouchScreenKeyboardType_t1530597702, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TOUCHSCREENKEYBOARDTYPE_T1530597702_H #ifndef TOUCHTYPE_T2034578258_H #define TOUCHTYPE_T2034578258_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.TouchType struct TouchType_t2034578258 { public: // System.Int32 UnityEngine.TouchType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TouchType_t2034578258, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TOUCHTYPE_T2034578258_H #ifndef ASPECTMODE_T3417192999_H #define ASPECTMODE_T3417192999_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UI.AspectRatioFitter/AspectMode struct AspectMode_t3417192999 { public: // System.Int32 UnityEngine.UI.AspectRatioFitter/AspectMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AspectMode_t3417192999, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ASPECTMODE_T3417192999_H #ifndef COLORBLOCK_T2139031574_H #define COLORBLOCK_T2139031574_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UI.ColorBlock struct ColorBlock_t2139031574 { public: // UnityEngine.Color UnityEngine.UI.ColorBlock::m_NormalColor Color_t2555686324 ___m_NormalColor_0; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_HighlightedColor Color_t2555686324 ___m_HighlightedColor_1; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_PressedColor Color_t2555686324 ___m_PressedColor_2; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_DisabledColor Color_t2555686324 ___m_DisabledColor_3; // System.Single UnityEngine.UI.ColorBlock::m_ColorMultiplier float ___m_ColorMultiplier_4; // System.Single UnityEngine.UI.ColorBlock::m_FadeDuration float ___m_FadeDuration_5; public: inline static int32_t get_offset_of_m_NormalColor_0() { return static_cast<int32_t>(offsetof(ColorBlock_t2139031574, ___m_NormalColor_0)); } inline Color_t2555686324 get_m_NormalColor_0() const { return ___m_NormalColor_0; } inline Color_t2555686324 * get_address_of_m_NormalColor_0() { return &___m_NormalColor_0; } inline void set_m_NormalColor_0(Color_t2555686324 value) { ___m_NormalColor_0 = value; } inline static int32_t get_offset_of_m_HighlightedColor_1() { return static_cast<int32_t>(offsetof(ColorBlock_t2139031574, ___m_HighlightedColor_1)); } inline Color_t2555686324 get_m_HighlightedColor_1() const { return ___m_HighlightedColor_1; } inline Color_t2555686324 * get_address_of_m_HighlightedColor_1() { return &___m_HighlightedColor_1; } inline void set_m_HighlightedColor_1(Color_t2555686324 value) { ___m_HighlightedColor_1 = value; } inline static int32_t get_offset_of_m_PressedColor_2() { return static_cast<int32_t>(offsetof(ColorBlock_t2139031574, ___m_PressedColor_2)); } inline Color_t2555686324 get_m_PressedColor_2() const { return ___m_PressedColor_2; } inline Color_t2555686324 * get_address_of_m_PressedColor_2() { return &___m_PressedColor_2; } inline void set_m_PressedColor_2(Color_t2555686324 value) { ___m_PressedColor_2 = value; } inline static int32_t get_offset_of_m_DisabledColor_3() { return static_cast<int32_t>(offsetof(ColorBlock_t2139031574, ___m_DisabledColor_3)); } inline Color_t2555686324 get_m_DisabledColor_3() const { return ___m_DisabledColor_3; } inline Color_t2555686324 * get_address_of_m_DisabledColor_3() { return &___m_DisabledColor_3; } inline void set_m_DisabledColor_3(Color_t2555686324 value) { ___m_DisabledColor_3 = value; } inline static int32_t get_offset_of_m_ColorMultiplier_4() { return static_cast<int32_t>(offsetof(ColorBlock_t2139031574, ___m_ColorMultiplier_4)); } inline float get_m_ColorMultiplier_4() const { return ___m_ColorMultiplier_4; } inline float* get_address_of_m_ColorMultiplier_4() { return &___m_ColorMultiplier_4; } inline void set_m_ColorMultiplier_4(float value) { ___m_ColorMultiplier_4 = value; } inline static int32_t get_offset_of_m_FadeDuration_5() { return static_cast<int32_t>(offsetof(ColorBlock_t2139031574, ___m_FadeDuration_5)); } inline float get_m_FadeDuration_5() const { return ___m_FadeDuration_5; } inline float* get_address_of_m_FadeDuration_5() { return &___m_FadeDuration_5; } inline void set_m_FadeDuration_5(float value) { ___m_FadeDuration_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COLORBLOCK_T2139031574_H #ifndef FITMODE_T3267881214_H #define FITMODE_T3267881214_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UI.ContentSizeFitter/FitMode struct FitMode_t3267881214 { public: // System.Int32 UnityEngine.UI.ContentSizeFitter/FitMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FitMode_t3267881214, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FITMODE_T3267881214_H #ifndef FILLMETHOD_T1167457570_H #define FILLMETHOD_T1167457570_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UI.Image/FillMethod struct FillMethod_t1167457570 { public: // System.Int32 UnityEngine.UI.Image/FillMethod::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FillMethod_t1167457570, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FILLMETHOD_T1167457570_H #ifndef TYPE_T1152881528_H #define TYPE_T1152881528_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UI.Image/Type struct Type_t1152881528 { public: // System.Int32 UnityEngine.UI.Image/Type::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Type_t1152881528, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPE_T1152881528_H #ifndef CHARACTERVALIDATION_T4051914437_H #define CHARACTERVALIDATION_T4051914437_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UI.InputField/CharacterValidation struct CharacterValidation_t4051914437 { public: // System.Int32 UnityEngine.UI.InputField/CharacterValidation::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CharacterValidation_t4051914437, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CHARACTERVALIDATION_T4051914437_H #ifndef CONTENTTYPE_T1787303396_H #define CONTENTTYPE_T1787303396_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UI.InputField/ContentType struct ContentType_t1787303396 { public: // System.Int32 UnityEngine.UI.InputField/ContentType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ContentType_t1787303396, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONTENTTYPE_T1787303396_H #ifndef INPUTTYPE_T1770400679_H #define INPUTTYPE_T1770400679_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UI.InputField/InputType struct InputType_t1770400679 { public: // System.Int32 UnityEngine.UI.InputField/InputType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InputType_t1770400679, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INPUTTYPE_T1770400679_H #ifndef LINETYPE_T4214648469_H #define LINETYPE_T4214648469_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UI.InputField/LineType struct LineType_t4214648469 { public: // System.Int32 UnityEngine.UI.InputField/LineType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LineType_t4214648469, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LINETYPE_T4214648469_H #ifndef MODE_T1066900953_H #define MODE_T1066900953_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UI.Navigation/Mode struct Mode_t1066900953 { public: // System.Int32 UnityEngine.UI.Navigation/Mode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Mode_t1066900953, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MODE_T1066900953_H #ifndef DIRECTION_T3470714353_H #define DIRECTION_T3470714353_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UI.Scrollbar/Direction struct Direction_t3470714353 { public: // System.Int32 UnityEngine.UI.Scrollbar/Direction::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Direction_t3470714353, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DIRECTION_T3470714353_H #ifndef TRANSITION_T1769908631_H #define TRANSITION_T1769908631_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UI.Selectable/Transition struct Transition_t1769908631 { public: // System.Int32 UnityEngine.UI.Selectable/Transition::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Transition_t1769908631, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TRANSITION_T1769908631_H #ifndef DIRECTION_T337909235_H #define DIRECTION_T337909235_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UI.Slider/Direction struct Direction_t337909235 { public: // System.Int32 UnityEngine.UI.Slider/Direction::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Direction_t337909235, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DIRECTION_T337909235_H #ifndef UICHARINFO_T75501106_H #define UICHARINFO_T75501106_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UICharInfo struct UICharInfo_t75501106 { public: // UnityEngine.Vector2 UnityEngine.UICharInfo::cursorPos Vector2_t2156229523 ___cursorPos_0; // System.Single UnityEngine.UICharInfo::charWidth float ___charWidth_1; public: inline static int32_t get_offset_of_cursorPos_0() { return static_cast<int32_t>(offsetof(UICharInfo_t75501106, ___cursorPos_0)); } inline Vector2_t2156229523 get_cursorPos_0() const { return ___cursorPos_0; } inline Vector2_t2156229523 * get_address_of_cursorPos_0() { return &___cursorPos_0; } inline void set_cursorPos_0(Vector2_t2156229523 value) { ___cursorPos_0 = value; } inline static int32_t get_offset_of_charWidth_1() { return static_cast<int32_t>(offsetof(UICharInfo_t75501106, ___charWidth_1)); } inline float get_charWidth_1() const { return ___charWidth_1; } inline float* get_address_of_charWidth_1() { return &___charWidth_1; } inline void set_charWidth_1(float value) { ___charWidth_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UICHARINFO_T75501106_H #ifndef UIVERTEX_T4057497605_H #define UIVERTEX_T4057497605_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UIVertex struct UIVertex_t4057497605 { public: // UnityEngine.Vector3 UnityEngine.UIVertex::position Vector3_t3722313464 ___position_0; // UnityEngine.Vector3 UnityEngine.UIVertex::normal Vector3_t3722313464 ___normal_1; // UnityEngine.Vector4 UnityEngine.UIVertex::tangent Vector4_t3319028937 ___tangent_2; // UnityEngine.Color32 UnityEngine.UIVertex::color Color32_t2600501292 ___color_3; // UnityEngine.Vector2 UnityEngine.UIVertex::uv0 Vector2_t2156229523 ___uv0_4; // UnityEngine.Vector2 UnityEngine.UIVertex::uv1 Vector2_t2156229523 ___uv1_5; // UnityEngine.Vector2 UnityEngine.UIVertex::uv2 Vector2_t2156229523 ___uv2_6; // UnityEngine.Vector2 UnityEngine.UIVertex::uv3 Vector2_t2156229523 ___uv3_7; public: inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___position_0)); } inline Vector3_t3722313464 get_position_0() const { return ___position_0; } inline Vector3_t3722313464 * get_address_of_position_0() { return &___position_0; } inline void set_position_0(Vector3_t3722313464 value) { ___position_0 = value; } inline static int32_t get_offset_of_normal_1() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___normal_1)); } inline Vector3_t3722313464 get_normal_1() const { return ___normal_1; } inline Vector3_t3722313464 * get_address_of_normal_1() { return &___normal_1; } inline void set_normal_1(Vector3_t3722313464 value) { ___normal_1 = value; } inline static int32_t get_offset_of_tangent_2() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___tangent_2)); } inline Vector4_t3319028937 get_tangent_2() const { return ___tangent_2; } inline Vector4_t3319028937 * get_address_of_tangent_2() { return &___tangent_2; } inline void set_tangent_2(Vector4_t3319028937 value) { ___tangent_2 = value; } inline static int32_t get_offset_of_color_3() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___color_3)); } inline Color32_t2600501292 get_color_3() const { return ___color_3; } inline Color32_t2600501292 * get_address_of_color_3() { return &___color_3; } inline void set_color_3(Color32_t2600501292 value) { ___color_3 = value; } inline static int32_t get_offset_of_uv0_4() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___uv0_4)); } inline Vector2_t2156229523 get_uv0_4() const { return ___uv0_4; } inline Vector2_t2156229523 * get_address_of_uv0_4() { return &___uv0_4; } inline void set_uv0_4(Vector2_t2156229523 value) { ___uv0_4 = value; } inline static int32_t get_offset_of_uv1_5() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___uv1_5)); } inline Vector2_t2156229523 get_uv1_5() const { return ___uv1_5; } inline Vector2_t2156229523 * get_address_of_uv1_5() { return &___uv1_5; } inline void set_uv1_5(Vector2_t2156229523 value) { ___uv1_5 = value; } inline static int32_t get_offset_of_uv2_6() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___uv2_6)); } inline Vector2_t2156229523 get_uv2_6() const { return ___uv2_6; } inline Vector2_t2156229523 * get_address_of_uv2_6() { return &___uv2_6; } inline void set_uv2_6(Vector2_t2156229523 value) { ___uv2_6 = value; } inline static int32_t get_offset_of_uv3_7() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___uv3_7)); } inline Vector2_t2156229523 get_uv3_7() const { return ___uv3_7; } inline Vector2_t2156229523 * get_address_of_uv3_7() { return &___uv3_7; } inline void set_uv3_7(Vector2_t2156229523 value) { ___uv3_7 = value; } }; struct UIVertex_t4057497605_StaticFields { public: // UnityEngine.Color32 UnityEngine.UIVertex::s_DefaultColor Color32_t2600501292 ___s_DefaultColor_8; // UnityEngine.Vector4 UnityEngine.UIVertex::s_DefaultTangent Vector4_t3319028937 ___s_DefaultTangent_9; // UnityEngine.UIVertex UnityEngine.UIVertex::simpleVert UIVertex_t4057497605 ___simpleVert_10; public: inline static int32_t get_offset_of_s_DefaultColor_8() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605_StaticFields, ___s_DefaultColor_8)); } inline Color32_t2600501292 get_s_DefaultColor_8() const { return ___s_DefaultColor_8; } inline Color32_t2600501292 * get_address_of_s_DefaultColor_8() { return &___s_DefaultColor_8; } inline void set_s_DefaultColor_8(Color32_t2600501292 value) { ___s_DefaultColor_8 = value; } inline static int32_t get_offset_of_s_DefaultTangent_9() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605_StaticFields, ___s_DefaultTangent_9)); } inline Vector4_t3319028937 get_s_DefaultTangent_9() const { return ___s_DefaultTangent_9; } inline Vector4_t3319028937 * get_address_of_s_DefaultTangent_9() { return &___s_DefaultTangent_9; } inline void set_s_DefaultTangent_9(Vector4_t3319028937 value) { ___s_DefaultTangent_9 = value; } inline static int32_t get_offset_of_simpleVert_10() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605_StaticFields, ___simpleVert_10)); } inline UIVertex_t4057497605 get_simpleVert_10() const { return ___simpleVert_10; } inline UIVertex_t4057497605 * get_address_of_simpleVert_10() { return &___simpleVert_10; } inline void set_simpleVert_10(UIVertex_t4057497605 value) { ___simpleVert_10 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // UIVERTEX_T4057497605_H #ifndef CAMERADEVICEMODE_T2478715656_H #define CAMERADEVICEMODE_T2478715656_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.CameraDevice/CameraDeviceMode struct CameraDeviceMode_t2478715656 { public: // System.Int32 Vuforia.CameraDevice/CameraDeviceMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CameraDeviceMode_t2478715656, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CAMERADEVICEMODE_T2478715656_H #ifndef CAMERADIRECTION_T637748435_H #define CAMERADIRECTION_T637748435_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.CameraDevice/CameraDirection struct CameraDirection_t637748435 { public: // System.Int32 Vuforia.CameraDevice/CameraDirection::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CameraDirection_t637748435, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CAMERADIRECTION_T637748435_H #ifndef DATATYPE_T1354848506_H #define DATATYPE_T1354848506_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.CameraDevice/CameraField/DataType struct DataType_t1354848506 { public: // System.Int32 Vuforia.CameraDevice/CameraField/DataType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DataType_t1354848506, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATATYPE_T1354848506_H #ifndef ALIGNMENTTYPE_T1920855420_H #define ALIGNMENTTYPE_T1920855420_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.EyewearDevice/EyewearCalibrationReading/AlignmentType struct AlignmentType_t1920855420 { public: // System.Int32 Vuforia.EyewearDevice/EyewearCalibrationReading/AlignmentType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AlignmentType_t1920855420, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ALIGNMENTTYPE_T1920855420_H #ifndef PIXEL_FORMAT_T3209881435_H #define PIXEL_FORMAT_T3209881435_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.Image/PIXEL_FORMAT struct PIXEL_FORMAT_t3209881435 { public: // System.Int32 Vuforia.Image/PIXEL_FORMAT::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PIXEL_FORMAT_t3209881435, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PIXEL_FORMAT_T3209881435_H #ifndef STATUS_T1100905814_H #define STATUS_T1100905814_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.TrackableBehaviour/Status struct Status_t1100905814 { public: // System.Int32 Vuforia.TrackableBehaviour/Status::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Status_t1100905814, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STATUS_T1100905814_H #ifndef INSTANCEIDDATA_T3520832738_H #define INSTANCEIDDATA_T3520832738_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.TrackerData/InstanceIdData #pragma pack(push, tp, 1) struct InstanceIdData_t3520832738 { public: // System.UInt64 Vuforia.TrackerData/InstanceIdData::numericValue uint64_t ___numericValue_0; // System.IntPtr Vuforia.TrackerData/InstanceIdData::buffer intptr_t ___buffer_1; // System.IntPtr Vuforia.TrackerData/InstanceIdData::reserved intptr_t ___reserved_2; // System.UInt32 Vuforia.TrackerData/InstanceIdData::dataLength uint32_t ___dataLength_3; // System.Int32 Vuforia.TrackerData/InstanceIdData::dataType int32_t ___dataType_4; public: inline static int32_t get_offset_of_numericValue_0() { return static_cast<int32_t>(offsetof(InstanceIdData_t3520832738, ___numericValue_0)); } inline uint64_t get_numericValue_0() const { return ___numericValue_0; } inline uint64_t* get_address_of_numericValue_0() { return &___numericValue_0; } inline void set_numericValue_0(uint64_t value) { ___numericValue_0 = value; } inline static int32_t get_offset_of_buffer_1() { return static_cast<int32_t>(offsetof(InstanceIdData_t3520832738, ___buffer_1)); } inline intptr_t get_buffer_1() const { return ___buffer_1; } inline intptr_t* get_address_of_buffer_1() { return &___buffer_1; } inline void set_buffer_1(intptr_t value) { ___buffer_1 = value; } inline static int32_t get_offset_of_reserved_2() { return static_cast<int32_t>(offsetof(InstanceIdData_t3520832738, ___reserved_2)); } inline intptr_t get_reserved_2() const { return ___reserved_2; } inline intptr_t* get_address_of_reserved_2() { return &___reserved_2; } inline void set_reserved_2(intptr_t value) { ___reserved_2 = value; } inline static int32_t get_offset_of_dataLength_3() { return static_cast<int32_t>(offsetof(InstanceIdData_t3520832738, ___dataLength_3)); } inline uint32_t get_dataLength_3() const { return ___dataLength_3; } inline uint32_t* get_address_of_dataLength_3() { return &___dataLength_3; } inline void set_dataLength_3(uint32_t value) { ___dataLength_3 = value; } inline static int32_t get_offset_of_dataType_4() { return static_cast<int32_t>(offsetof(InstanceIdData_t3520832738, ___dataType_4)); } inline int32_t get_dataType_4() const { return ___dataType_4; } inline int32_t* get_address_of_dataType_4() { return &___dataType_4; } inline void set_dataType_4(int32_t value) { ___dataType_4 = value; } }; #pragma pack(pop, tp) #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INSTANCEIDDATA_T3520832738_H #ifndef POSEDATA_T3794839648_H #define POSEDATA_T3794839648_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.TrackerData/PoseData #pragma pack(push, tp, 1) struct PoseData_t3794839648 { public: // UnityEngine.Vector3 Vuforia.TrackerData/PoseData::position Vector3_t3722313464 ___position_0; // UnityEngine.Quaternion Vuforia.TrackerData/PoseData::orientation Quaternion_t2301928331 ___orientation_1; // System.Int32 Vuforia.TrackerData/PoseData::unused int32_t ___unused_2; public: inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(PoseData_t3794839648, ___position_0)); } inline Vector3_t3722313464 get_position_0() const { return ___position_0; } inline Vector3_t3722313464 * get_address_of_position_0() { return &___position_0; } inline void set_position_0(Vector3_t3722313464 value) { ___position_0 = value; } inline static int32_t get_offset_of_orientation_1() { return static_cast<int32_t>(offsetof(PoseData_t3794839648, ___orientation_1)); } inline Quaternion_t2301928331 get_orientation_1() const { return ___orientation_1; } inline Quaternion_t2301928331 * get_address_of_orientation_1() { return &___orientation_1; } inline void set_orientation_1(Quaternion_t2301928331 value) { ___orientation_1 = value; } inline static int32_t get_offset_of_unused_2() { return static_cast<int32_t>(offsetof(PoseData_t3794839648, ___unused_2)); } inline int32_t get_unused_2() const { return ___unused_2; } inline int32_t* get_address_of_unused_2() { return &___unused_2; } inline void set_unused_2(int32_t value) { ___unused_2 = value; } }; #pragma pack(pop, tp) #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // POSEDATA_T3794839648_H #ifndef INITIALIZABLEBOOL_T3274999204_H #define INITIALIZABLEBOOL_T3274999204_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.VuforiaRuntimeUtilities/InitializableBool struct InitializableBool_t3274999204 { public: // System.Int32 Vuforia.VuforiaRuntimeUtilities/InitializableBool::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InitializableBool_t3274999204, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INITIALIZABLEBOOL_T3274999204_H #ifndef PROFILEDATA_T3519391925_H #define PROFILEDATA_T3519391925_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.WebCamProfile/ProfileData struct ProfileData_t3519391925 { public: // Vuforia.VuforiaRenderer/Vec2I Vuforia.WebCamProfile/ProfileData::RequestedTextureSize Vec2I_t3527036565 ___RequestedTextureSize_0; // Vuforia.VuforiaRenderer/Vec2I Vuforia.WebCamProfile/ProfileData::ResampledTextureSize Vec2I_t3527036565 ___ResampledTextureSize_1; // System.Int32 Vuforia.WebCamProfile/ProfileData::RequestedFPS int32_t ___RequestedFPS_2; public: inline static int32_t get_offset_of_RequestedTextureSize_0() { return static_cast<int32_t>(offsetof(ProfileData_t3519391925, ___RequestedTextureSize_0)); } inline Vec2I_t3527036565 get_RequestedTextureSize_0() const { return ___RequestedTextureSize_0; } inline Vec2I_t3527036565 * get_address_of_RequestedTextureSize_0() { return &___RequestedTextureSize_0; } inline void set_RequestedTextureSize_0(Vec2I_t3527036565 value) { ___RequestedTextureSize_0 = value; } inline static int32_t get_offset_of_ResampledTextureSize_1() { return static_cast<int32_t>(offsetof(ProfileData_t3519391925, ___ResampledTextureSize_1)); } inline Vec2I_t3527036565 get_ResampledTextureSize_1() const { return ___ResampledTextureSize_1; } inline Vec2I_t3527036565 * get_address_of_ResampledTextureSize_1() { return &___ResampledTextureSize_1; } inline void set_ResampledTextureSize_1(Vec2I_t3527036565 value) { ___ResampledTextureSize_1 = value; } inline static int32_t get_offset_of_RequestedFPS_2() { return static_cast<int32_t>(offsetof(ProfileData_t3519391925, ___RequestedFPS_2)); } inline int32_t get_RequestedFPS_2() const { return ___RequestedFPS_2; } inline int32_t* get_address_of_RequestedFPS_2() { return &___RequestedFPS_2; } inline void set_RequestedFPS_2(int32_t value) { ___RequestedFPS_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PROFILEDATA_T3519391925_H #ifndef ARGUMENTNULLEXCEPTION_T1615371798_H #define ARGUMENTNULLEXCEPTION_T1615371798_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentNullException struct ArgumentNullException_t1615371798 : public ArgumentException_t132251570 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTNULLEXCEPTION_T1615371798_H #ifndef ENTRY_T1604483633_H #define ENTRY_T1604483633_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackableBehaviour/Status> struct Entry_t1604483633 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t1604483633, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t1604483633, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t1604483633, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t1604483633, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T1604483633_H #ifndef ENTRY_T1472554943_H #define ENTRY_T1472554943_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.AppContext/SwitchValueState> struct Entry_t1472554943 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t1472554943, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t1472554943, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t1472554943, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((&___key_2), value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t1472554943, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T1472554943_H #ifndef ENTRY_T2186695401_H #define ENTRY_T2186695401_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData> struct Entry_t2186695401 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value ProfileData_t3519391925 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t2186695401, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t2186695401, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t2186695401, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((&___key_2), value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t2186695401, ___value_3)); } inline ProfileData_t3519391925 get_value_3() const { return ___value_3; } inline ProfileData_t3519391925 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(ProfileData_t3519391925 value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T2186695401_H #ifndef ENTRY_T1932439066_H #define ENTRY_T1932439066_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,System.Single> struct Entry_t1932439066 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value float ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t1932439066, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t1932439066, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t1932439066, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t1932439066, ___value_3)); } inline float get_value_3() const { return ___value_3; } inline float* get_address_of_value_3() { return &___value_3; } inline void set_value_3(float value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T1932439066_H #ifndef ENTRY_T2353074135_H #define ENTRY_T2353074135_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4> struct Entry_t2353074135 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value Matrix4x4_t1817901843 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t2353074135, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t2353074135, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t2353074135, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t2353074135, ___value_3)); } inline Matrix4x4_t1817901843 get_value_3() const { return ___value_3; } inline Matrix4x4_t1817901843 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(Matrix4x4_t1817901843 value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T2353074135_H #ifndef ENTRY_T2691401815_H #define ENTRY_T2691401815_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2> struct Entry_t2691401815 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value Vector2_t2156229523 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t2691401815, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t2691401815, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t2691401815, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t2691401815, ___value_3)); } inline Vector2_t2156229523 get_value_3() const { return ___value_3; } inline Vector2_t2156229523 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(Vector2_t2156229523 value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T2691401815_H #ifndef ENTRY_T3285567941_H #define ENTRY_T3285567941_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<Vuforia.Image/PIXEL_FORMAT,System.Object> struct Entry_t3285567941 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t3285567941, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t3285567941, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t3285567941, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t3285567941, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((&___value_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T3285567941_H #ifndef ENTRY_T2906627609_H #define ENTRY_T2906627609_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<Vuforia.Image/PIXEL_FORMAT,UnityEngine.TextureFormat> struct Entry_t2906627609 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t2906627609, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t2906627609, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t2906627609, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t2906627609, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T2906627609_H #ifndef KEYVALUEPAIR_2_T2387291312_H #define KEYVALUEPAIR_2_T2387291312_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackableBehaviour/Status> struct KeyValuePair_2_t2387291312 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2387291312, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2387291312, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T2387291312_H #ifndef KEYVALUEPAIR_2_T2255362622_H #define KEYVALUEPAIR_2_T2255362622_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState> struct KeyValuePair_2_t2255362622 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2255362622, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2255362622, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T2255362622_H #ifndef KEYVALUEPAIR_2_T2969503080_H #define KEYVALUEPAIR_2_T2969503080_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData> struct KeyValuePair_2_t2969503080 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value ProfileData_t3519391925 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2969503080, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2969503080, ___value_1)); } inline ProfileData_t3519391925 get_value_1() const { return ___value_1; } inline ProfileData_t3519391925 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(ProfileData_t3519391925 value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T2969503080_H #ifndef KEYVALUEPAIR_2_T2715246745_H #define KEYVALUEPAIR_2_T2715246745_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,System.Single> struct KeyValuePair_2_t2715246745 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value float ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2715246745, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2715246745, ___value_1)); } inline float get_value_1() const { return ___value_1; } inline float* get_address_of_value_1() { return &___value_1; } inline void set_value_1(float value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T2715246745_H #ifndef KEYVALUEPAIR_2_T3135881814_H #define KEYVALUEPAIR_2_T3135881814_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4> struct KeyValuePair_2_t3135881814 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value Matrix4x4_t1817901843 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3135881814, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3135881814, ___value_1)); } inline Matrix4x4_t1817901843 get_value_1() const { return ___value_1; } inline Matrix4x4_t1817901843 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(Matrix4x4_t1817901843 value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T3135881814_H #ifndef KEYVALUEPAIR_2_T3474209494_H #define KEYVALUEPAIR_2_T3474209494_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2> struct KeyValuePair_2_t3474209494 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value Vector2_t2156229523 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3474209494, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3474209494, ___value_1)); } inline Vector2_t2156229523 get_value_1() const { return ___value_1; } inline Vector2_t2156229523 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(Vector2_t2156229523 value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T3474209494_H #ifndef KEYVALUEPAIR_2_T4068375620_H #define KEYVALUEPAIR_2_T4068375620_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<Vuforia.Image/PIXEL_FORMAT,System.Object> struct KeyValuePair_2_t4068375620 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t4068375620, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t4068375620, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T4068375620_H #ifndef KEYVALUEPAIR_2_T3689435288_H #define KEYVALUEPAIR_2_T3689435288_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<Vuforia.Image/PIXEL_FORMAT,UnityEngine.TextureFormat> struct KeyValuePair_2_t3689435288 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3689435288, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3689435288, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T3689435288_H #ifndef TIMESPANTOKEN_T993347374_H #define TIMESPANTOKEN_T993347374_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.TimeSpanParse/TimeSpanToken struct TimeSpanToken_t993347374 { public: // System.Globalization.TimeSpanParse/TTT System.Globalization.TimeSpanParse/TimeSpanToken::ttt int32_t ___ttt_0; // System.Int32 System.Globalization.TimeSpanParse/TimeSpanToken::num int32_t ___num_1; // System.Int32 System.Globalization.TimeSpanParse/TimeSpanToken::zeroes int32_t ___zeroes_2; // System.String System.Globalization.TimeSpanParse/TimeSpanToken::sep String_t* ___sep_3; public: inline static int32_t get_offset_of_ttt_0() { return static_cast<int32_t>(offsetof(TimeSpanToken_t993347374, ___ttt_0)); } inline int32_t get_ttt_0() const { return ___ttt_0; } inline int32_t* get_address_of_ttt_0() { return &___ttt_0; } inline void set_ttt_0(int32_t value) { ___ttt_0 = value; } inline static int32_t get_offset_of_num_1() { return static_cast<int32_t>(offsetof(TimeSpanToken_t993347374, ___num_1)); } inline int32_t get_num_1() const { return ___num_1; } inline int32_t* get_address_of_num_1() { return &___num_1; } inline void set_num_1(int32_t value) { ___num_1 = value; } inline static int32_t get_offset_of_zeroes_2() { return static_cast<int32_t>(offsetof(TimeSpanToken_t993347374, ___zeroes_2)); } inline int32_t get_zeroes_2() const { return ___zeroes_2; } inline int32_t* get_address_of_zeroes_2() { return &___zeroes_2; } inline void set_zeroes_2(int32_t value) { ___zeroes_2 = value; } inline static int32_t get_offset_of_sep_3() { return static_cast<int32_t>(offsetof(TimeSpanToken_t993347374, ___sep_3)); } inline String_t* get_sep_3() const { return ___sep_3; } inline String_t** get_address_of_sep_3() { return &___sep_3; } inline void set_sep_3(String_t* value) { ___sep_3 = value; Il2CppCodeGenWriteBarrier((&___sep_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Globalization.TimeSpanParse/TimeSpanToken struct TimeSpanToken_t993347374_marshaled_pinvoke { int32_t ___ttt_0; int32_t ___num_1; int32_t ___zeroes_2; char* ___sep_3; }; // Native definition for COM marshalling of System.Globalization.TimeSpanParse/TimeSpanToken struct TimeSpanToken_t993347374_marshaled_com { int32_t ___ttt_0; int32_t ___num_1; int32_t ___zeroes_2; Il2CppChar* ___sep_3; }; #endif // TIMESPANTOKEN_T993347374_H #ifndef MULTICASTDELEGATE_T_H #define MULTICASTDELEGATE_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t1188392813 { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_t1703627840* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_t1703627840* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_t1703627840** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_t1703627840* value) { ___delegates_11 = value; Il2CppCodeGenWriteBarrier((&___delegates_11), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t1188392813_marshaled_pinvoke { DelegateU5BU5D_t1703627840* ___delegates_11; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t1188392813_marshaled_com { DelegateU5BU5D_t1703627840* ___delegates_11; }; #endif // MULTICASTDELEGATE_T_H #ifndef RECOGNIZEDATTRIBUTE_T632074220_H #define RECOGNIZEDATTRIBUTE_T632074220_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.CookieTokenizer/RecognizedAttribute struct RecognizedAttribute_t632074220 { public: // System.String System.Net.CookieTokenizer/RecognizedAttribute::m_name String_t* ___m_name_0; // System.Net.CookieToken System.Net.CookieTokenizer/RecognizedAttribute::m_token int32_t ___m_token_1; public: inline static int32_t get_offset_of_m_name_0() { return static_cast<int32_t>(offsetof(RecognizedAttribute_t632074220, ___m_name_0)); } inline String_t* get_m_name_0() const { return ___m_name_0; } inline String_t** get_address_of_m_name_0() { return &___m_name_0; } inline void set_m_name_0(String_t* value) { ___m_name_0 = value; Il2CppCodeGenWriteBarrier((&___m_name_0), value); } inline static int32_t get_offset_of_m_token_1() { return static_cast<int32_t>(offsetof(RecognizedAttribute_t632074220, ___m_token_1)); } inline int32_t get_m_token_1() const { return ___m_token_1; } inline int32_t* get_address_of_m_token_1() { return &___m_token_1; } inline void set_m_token_1(int32_t value) { ___m_token_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Net.CookieTokenizer/RecognizedAttribute struct RecognizedAttribute_t632074220_marshaled_pinvoke { char* ___m_name_0; int32_t ___m_token_1; }; // Native definition for COM marshalling of System.Net.CookieTokenizer/RecognizedAttribute struct RecognizedAttribute_t632074220_marshaled_com { Il2CppChar* ___m_name_0; int32_t ___m_token_1; }; #endif // RECOGNIZEDATTRIBUTE_T632074220_H #ifndef HEADERVARIANTINFO_T1935685601_H #define HEADERVARIANTINFO_T1935685601_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.HeaderVariantInfo struct HeaderVariantInfo_t1935685601 { public: // System.String System.Net.HeaderVariantInfo::m_name String_t* ___m_name_0; // System.Net.CookieVariant System.Net.HeaderVariantInfo::m_variant int32_t ___m_variant_1; public: inline static int32_t get_offset_of_m_name_0() { return static_cast<int32_t>(offsetof(HeaderVariantInfo_t1935685601, ___m_name_0)); } inline String_t* get_m_name_0() const { return ___m_name_0; } inline String_t** get_address_of_m_name_0() { return &___m_name_0; } inline void set_m_name_0(String_t* value) { ___m_name_0 = value; Il2CppCodeGenWriteBarrier((&___m_name_0), value); } inline static int32_t get_offset_of_m_variant_1() { return static_cast<int32_t>(offsetof(HeaderVariantInfo_t1935685601, ___m_variant_1)); } inline int32_t get_m_variant_1() const { return ___m_variant_1; } inline int32_t* get_address_of_m_variant_1() { return &___m_variant_1; } inline void set_m_variant_1(int32_t value) { ___m_variant_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Net.HeaderVariantInfo struct HeaderVariantInfo_t1935685601_marshaled_pinvoke { char* ___m_name_0; int32_t ___m_variant_1; }; // Native definition for COM marshalling of System.Net.HeaderVariantInfo struct HeaderVariantInfo_t1935685601_marshaled_com { Il2CppChar* ___m_name_0; int32_t ___m_variant_1; }; #endif // HEADERVARIANTINFO_T1935685601_H #ifndef WIN32_IP_ADAPTER_ADDRESSES_T3463526328_H #define WIN32_IP_ADAPTER_ADDRESSES_T3463526328_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES struct Win32_IP_ADAPTER_ADDRESSES_t3463526328 { public: // System.Net.NetworkInformation.AlignmentUnion System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::Alignment AlignmentUnion_t208902285 ___Alignment_0; // System.IntPtr System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::Next intptr_t ___Next_1; // System.String System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::AdapterName String_t* ___AdapterName_2; // System.IntPtr System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::FirstUnicastAddress intptr_t ___FirstUnicastAddress_3; // System.IntPtr System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::FirstAnycastAddress intptr_t ___FirstAnycastAddress_4; // System.IntPtr System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::FirstMulticastAddress intptr_t ___FirstMulticastAddress_5; // System.IntPtr System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::FirstDnsServerAddress intptr_t ___FirstDnsServerAddress_6; // System.String System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::DnsSuffix String_t* ___DnsSuffix_7; // System.String System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::Description String_t* ___Description_8; // System.String System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::FriendlyName String_t* ___FriendlyName_9; // System.Byte[] System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::PhysicalAddress ByteU5BU5D_t4116647657* ___PhysicalAddress_10; // System.UInt32 System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::PhysicalAddressLength uint32_t ___PhysicalAddressLength_11; // System.UInt32 System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::Flags uint32_t ___Flags_12; // System.UInt32 System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::Mtu uint32_t ___Mtu_13; // System.Net.NetworkInformation.NetworkInterfaceType System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::IfType int32_t ___IfType_14; // System.Net.NetworkInformation.OperationalStatus System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::OperStatus int32_t ___OperStatus_15; // System.Int32 System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::Ipv6IfIndex int32_t ___Ipv6IfIndex_16; // System.UInt32[] System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::ZoneIndices UInt32U5BU5D_t2770800703* ___ZoneIndices_17; public: inline static int32_t get_offset_of_Alignment_0() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___Alignment_0)); } inline AlignmentUnion_t208902285 get_Alignment_0() const { return ___Alignment_0; } inline AlignmentUnion_t208902285 * get_address_of_Alignment_0() { return &___Alignment_0; } inline void set_Alignment_0(AlignmentUnion_t208902285 value) { ___Alignment_0 = value; } inline static int32_t get_offset_of_Next_1() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___Next_1)); } inline intptr_t get_Next_1() const { return ___Next_1; } inline intptr_t* get_address_of_Next_1() { return &___Next_1; } inline void set_Next_1(intptr_t value) { ___Next_1 = value; } inline static int32_t get_offset_of_AdapterName_2() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___AdapterName_2)); } inline String_t* get_AdapterName_2() const { return ___AdapterName_2; } inline String_t** get_address_of_AdapterName_2() { return &___AdapterName_2; } inline void set_AdapterName_2(String_t* value) { ___AdapterName_2 = value; Il2CppCodeGenWriteBarrier((&___AdapterName_2), value); } inline static int32_t get_offset_of_FirstUnicastAddress_3() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___FirstUnicastAddress_3)); } inline intptr_t get_FirstUnicastAddress_3() const { return ___FirstUnicastAddress_3; } inline intptr_t* get_address_of_FirstUnicastAddress_3() { return &___FirstUnicastAddress_3; } inline void set_FirstUnicastAddress_3(intptr_t value) { ___FirstUnicastAddress_3 = value; } inline static int32_t get_offset_of_FirstAnycastAddress_4() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___FirstAnycastAddress_4)); } inline intptr_t get_FirstAnycastAddress_4() const { return ___FirstAnycastAddress_4; } inline intptr_t* get_address_of_FirstAnycastAddress_4() { return &___FirstAnycastAddress_4; } inline void set_FirstAnycastAddress_4(intptr_t value) { ___FirstAnycastAddress_4 = value; } inline static int32_t get_offset_of_FirstMulticastAddress_5() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___FirstMulticastAddress_5)); } inline intptr_t get_FirstMulticastAddress_5() const { return ___FirstMulticastAddress_5; } inline intptr_t* get_address_of_FirstMulticastAddress_5() { return &___FirstMulticastAddress_5; } inline void set_FirstMulticastAddress_5(intptr_t value) { ___FirstMulticastAddress_5 = value; } inline static int32_t get_offset_of_FirstDnsServerAddress_6() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___FirstDnsServerAddress_6)); } inline intptr_t get_FirstDnsServerAddress_6() const { return ___FirstDnsServerAddress_6; } inline intptr_t* get_address_of_FirstDnsServerAddress_6() { return &___FirstDnsServerAddress_6; } inline void set_FirstDnsServerAddress_6(intptr_t value) { ___FirstDnsServerAddress_6 = value; } inline static int32_t get_offset_of_DnsSuffix_7() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___DnsSuffix_7)); } inline String_t* get_DnsSuffix_7() const { return ___DnsSuffix_7; } inline String_t** get_address_of_DnsSuffix_7() { return &___DnsSuffix_7; } inline void set_DnsSuffix_7(String_t* value) { ___DnsSuffix_7 = value; Il2CppCodeGenWriteBarrier((&___DnsSuffix_7), value); } inline static int32_t get_offset_of_Description_8() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___Description_8)); } inline String_t* get_Description_8() const { return ___Description_8; } inline String_t** get_address_of_Description_8() { return &___Description_8; } inline void set_Description_8(String_t* value) { ___Description_8 = value; Il2CppCodeGenWriteBarrier((&___Description_8), value); } inline static int32_t get_offset_of_FriendlyName_9() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___FriendlyName_9)); } inline String_t* get_FriendlyName_9() const { return ___FriendlyName_9; } inline String_t** get_address_of_FriendlyName_9() { return &___FriendlyName_9; } inline void set_FriendlyName_9(String_t* value) { ___FriendlyName_9 = value; Il2CppCodeGenWriteBarrier((&___FriendlyName_9), value); } inline static int32_t get_offset_of_PhysicalAddress_10() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___PhysicalAddress_10)); } inline ByteU5BU5D_t4116647657* get_PhysicalAddress_10() const { return ___PhysicalAddress_10; } inline ByteU5BU5D_t4116647657** get_address_of_PhysicalAddress_10() { return &___PhysicalAddress_10; } inline void set_PhysicalAddress_10(ByteU5BU5D_t4116647657* value) { ___PhysicalAddress_10 = value; Il2CppCodeGenWriteBarrier((&___PhysicalAddress_10), value); } inline static int32_t get_offset_of_PhysicalAddressLength_11() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___PhysicalAddressLength_11)); } inline uint32_t get_PhysicalAddressLength_11() const { return ___PhysicalAddressLength_11; } inline uint32_t* get_address_of_PhysicalAddressLength_11() { return &___PhysicalAddressLength_11; } inline void set_PhysicalAddressLength_11(uint32_t value) { ___PhysicalAddressLength_11 = value; } inline static int32_t get_offset_of_Flags_12() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___Flags_12)); } inline uint32_t get_Flags_12() const { return ___Flags_12; } inline uint32_t* get_address_of_Flags_12() { return &___Flags_12; } inline void set_Flags_12(uint32_t value) { ___Flags_12 = value; } inline static int32_t get_offset_of_Mtu_13() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___Mtu_13)); } inline uint32_t get_Mtu_13() const { return ___Mtu_13; } inline uint32_t* get_address_of_Mtu_13() { return &___Mtu_13; } inline void set_Mtu_13(uint32_t value) { ___Mtu_13 = value; } inline static int32_t get_offset_of_IfType_14() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___IfType_14)); } inline int32_t get_IfType_14() const { return ___IfType_14; } inline int32_t* get_address_of_IfType_14() { return &___IfType_14; } inline void set_IfType_14(int32_t value) { ___IfType_14 = value; } inline static int32_t get_offset_of_OperStatus_15() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___OperStatus_15)); } inline int32_t get_OperStatus_15() const { return ___OperStatus_15; } inline int32_t* get_address_of_OperStatus_15() { return &___OperStatus_15; } inline void set_OperStatus_15(int32_t value) { ___OperStatus_15 = value; } inline static int32_t get_offset_of_Ipv6IfIndex_16() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___Ipv6IfIndex_16)); } inline int32_t get_Ipv6IfIndex_16() const { return ___Ipv6IfIndex_16; } inline int32_t* get_address_of_Ipv6IfIndex_16() { return &___Ipv6IfIndex_16; } inline void set_Ipv6IfIndex_16(int32_t value) { ___Ipv6IfIndex_16 = value; } inline static int32_t get_offset_of_ZoneIndices_17() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___ZoneIndices_17)); } inline UInt32U5BU5D_t2770800703* get_ZoneIndices_17() const { return ___ZoneIndices_17; } inline UInt32U5BU5D_t2770800703** get_address_of_ZoneIndices_17() { return &___ZoneIndices_17; } inline void set_ZoneIndices_17(UInt32U5BU5D_t2770800703* value) { ___ZoneIndices_17 = value; Il2CppCodeGenWriteBarrier((&___ZoneIndices_17), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES struct Win32_IP_ADAPTER_ADDRESSES_t3463526328_marshaled_pinvoke { AlignmentUnion_t208902285 ___Alignment_0; intptr_t ___Next_1; char* ___AdapterName_2; intptr_t ___FirstUnicastAddress_3; intptr_t ___FirstAnycastAddress_4; intptr_t ___FirstMulticastAddress_5; intptr_t ___FirstDnsServerAddress_6; Il2CppChar* ___DnsSuffix_7; Il2CppChar* ___Description_8; Il2CppChar* ___FriendlyName_9; uint8_t ___PhysicalAddress_10[8]; uint32_t ___PhysicalAddressLength_11; uint32_t ___Flags_12; uint32_t ___Mtu_13; int32_t ___IfType_14; int32_t ___OperStatus_15; int32_t ___Ipv6IfIndex_16; uint32_t ___ZoneIndices_17[64]; }; // Native definition for COM marshalling of System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES struct Win32_IP_ADAPTER_ADDRESSES_t3463526328_marshaled_com { AlignmentUnion_t208902285 ___Alignment_0; intptr_t ___Next_1; char* ___AdapterName_2; intptr_t ___FirstUnicastAddress_3; intptr_t ___FirstAnycastAddress_4; intptr_t ___FirstMulticastAddress_5; intptr_t ___FirstDnsServerAddress_6; Il2CppChar* ___DnsSuffix_7; Il2CppChar* ___Description_8; Il2CppChar* ___FriendlyName_9; uint8_t ___PhysicalAddress_10[8]; uint32_t ___PhysicalAddressLength_11; uint32_t ___Flags_12; uint32_t ___Mtu_13; int32_t ___IfType_14; int32_t ___OperStatus_15; int32_t ___Ipv6IfIndex_16; uint32_t ___ZoneIndices_17[64]; }; #endif // WIN32_IP_ADAPTER_ADDRESSES_T3463526328_H #ifndef MONORESOURCE_T4103430009_H #define MONORESOURCE_T4103430009_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Emit.MonoResource struct MonoResource_t4103430009 { public: // System.Byte[] System.Reflection.Emit.MonoResource::data ByteU5BU5D_t4116647657* ___data_0; // System.String System.Reflection.Emit.MonoResource::name String_t* ___name_1; // System.String System.Reflection.Emit.MonoResource::filename String_t* ___filename_2; // System.Reflection.ResourceAttributes System.Reflection.Emit.MonoResource::attrs int32_t ___attrs_3; // System.Int32 System.Reflection.Emit.MonoResource::offset int32_t ___offset_4; // System.IO.Stream System.Reflection.Emit.MonoResource::stream Stream_t1273022909 * ___stream_5; public: inline static int32_t get_offset_of_data_0() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___data_0)); } inline ByteU5BU5D_t4116647657* get_data_0() const { return ___data_0; } inline ByteU5BU5D_t4116647657** get_address_of_data_0() { return &___data_0; } inline void set_data_0(ByteU5BU5D_t4116647657* value) { ___data_0 = value; Il2CppCodeGenWriteBarrier((&___data_0), value); } inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___name_1)); } inline String_t* get_name_1() const { return ___name_1; } inline String_t** get_address_of_name_1() { return &___name_1; } inline void set_name_1(String_t* value) { ___name_1 = value; Il2CppCodeGenWriteBarrier((&___name_1), value); } inline static int32_t get_offset_of_filename_2() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___filename_2)); } inline String_t* get_filename_2() const { return ___filename_2; } inline String_t** get_address_of_filename_2() { return &___filename_2; } inline void set_filename_2(String_t* value) { ___filename_2 = value; Il2CppCodeGenWriteBarrier((&___filename_2), value); } inline static int32_t get_offset_of_attrs_3() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___attrs_3)); } inline int32_t get_attrs_3() const { return ___attrs_3; } inline int32_t* get_address_of_attrs_3() { return &___attrs_3; } inline void set_attrs_3(int32_t value) { ___attrs_3 = value; } inline static int32_t get_offset_of_offset_4() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___offset_4)); } inline int32_t get_offset_4() const { return ___offset_4; } inline int32_t* get_address_of_offset_4() { return &___offset_4; } inline void set_offset_4(int32_t value) { ___offset_4 = value; } inline static int32_t get_offset_of_stream_5() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___stream_5)); } inline Stream_t1273022909 * get_stream_5() const { return ___stream_5; } inline Stream_t1273022909 ** get_address_of_stream_5() { return &___stream_5; } inline void set_stream_5(Stream_t1273022909 * value) { ___stream_5 = value; Il2CppCodeGenWriteBarrier((&___stream_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.Emit.MonoResource struct MonoResource_t4103430009_marshaled_pinvoke { uint8_t* ___data_0; char* ___name_1; char* ___filename_2; int32_t ___attrs_3; int32_t ___offset_4; Stream_t1273022909 * ___stream_5; }; // Native definition for COM marshalling of System.Reflection.Emit.MonoResource struct MonoResource_t4103430009_marshaled_com { uint8_t* ___data_0; Il2CppChar* ___name_1; Il2CppChar* ___filename_2; int32_t ___attrs_3; int32_t ___offset_4; Stream_t1273022909 * ___stream_5; }; #endif // MONORESOURCE_T4103430009_H #ifndef REFEMITPERMISSIONSET_T484390987_H #define REFEMITPERMISSIONSET_T484390987_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Emit.RefEmitPermissionSet struct RefEmitPermissionSet_t484390987 { public: // System.Security.Permissions.SecurityAction System.Reflection.Emit.RefEmitPermissionSet::action int32_t ___action_0; // System.String System.Reflection.Emit.RefEmitPermissionSet::pset String_t* ___pset_1; public: inline static int32_t get_offset_of_action_0() { return static_cast<int32_t>(offsetof(RefEmitPermissionSet_t484390987, ___action_0)); } inline int32_t get_action_0() const { return ___action_0; } inline int32_t* get_address_of_action_0() { return &___action_0; } inline void set_action_0(int32_t value) { ___action_0 = value; } inline static int32_t get_offset_of_pset_1() { return static_cast<int32_t>(offsetof(RefEmitPermissionSet_t484390987, ___pset_1)); } inline String_t* get_pset_1() const { return ___pset_1; } inline String_t** get_address_of_pset_1() { return &___pset_1; } inline void set_pset_1(String_t* value) { ___pset_1 = value; Il2CppCodeGenWriteBarrier((&___pset_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.Emit.RefEmitPermissionSet struct RefEmitPermissionSet_t484390987_marshaled_pinvoke { int32_t ___action_0; char* ___pset_1; }; // Native definition for COM marshalling of System.Reflection.Emit.RefEmitPermissionSet struct RefEmitPermissionSet_t484390987_marshaled_com { int32_t ___action_0; Il2CppChar* ___pset_1; }; #endif // REFEMITPERMISSIONSET_T484390987_H #ifndef X509CHAINSTATUS_T133602714_H #define X509CHAINSTATUS_T133602714_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Security.Cryptography.X509Certificates.X509ChainStatus struct X509ChainStatus_t133602714 { public: // System.Security.Cryptography.X509Certificates.X509ChainStatusFlags System.Security.Cryptography.X509Certificates.X509ChainStatus::status int32_t ___status_0; // System.String System.Security.Cryptography.X509Certificates.X509ChainStatus::info String_t* ___info_1; public: inline static int32_t get_offset_of_status_0() { return static_cast<int32_t>(offsetof(X509ChainStatus_t133602714, ___status_0)); } inline int32_t get_status_0() const { return ___status_0; } inline int32_t* get_address_of_status_0() { return &___status_0; } inline void set_status_0(int32_t value) { ___status_0 = value; } inline static int32_t get_offset_of_info_1() { return static_cast<int32_t>(offsetof(X509ChainStatus_t133602714, ___info_1)); } inline String_t* get_info_1() const { return ___info_1; } inline String_t** get_address_of_info_1() { return &___info_1; } inline void set_info_1(String_t* value) { ___info_1 = value; Il2CppCodeGenWriteBarrier((&___info_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Security.Cryptography.X509Certificates.X509ChainStatus struct X509ChainStatus_t133602714_marshaled_pinvoke { int32_t ___status_0; char* ___info_1; }; // Native definition for COM marshalling of System.Security.Cryptography.X509Certificates.X509ChainStatus struct X509ChainStatus_t133602714_marshaled_com { int32_t ___status_0; Il2CppChar* ___info_1; }; #endif // X509CHAINSTATUS_T133602714_H #ifndef TYPE_T_H #define TYPE_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_t3027515415 ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_t3027515415 get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_t3027515415 * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_t3027515415 value) { ____impl_9 = value; } }; struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t426314064 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t426314064 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t426314064 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t3940880105* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t2999457153 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t426314064 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t426314064 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t426314064 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((&___FilterAttribute_0), value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t426314064 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t426314064 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t426314064 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((&___FilterName_1), value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t426314064 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t426314064 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t426314064 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((&___FilterNameIgnoreCase_2), value); } inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((&___Missing_3), value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t3940880105* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t3940880105** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t3940880105* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((&___EmptyTypes_5), value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t2999457153 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t2999457153 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t2999457153 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((&___defaultBinder_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPE_T_H #ifndef TAGINFO_T3526638417_H #define TAGINFO_T3526638417_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlTextWriter/TagInfo struct TagInfo_t3526638417 { public: // System.String System.Xml.XmlTextWriter/TagInfo::name String_t* ___name_0; // System.String System.Xml.XmlTextWriter/TagInfo::prefix String_t* ___prefix_1; // System.String System.Xml.XmlTextWriter/TagInfo::defaultNs String_t* ___defaultNs_2; // System.Xml.XmlTextWriter/NamespaceState System.Xml.XmlTextWriter/TagInfo::defaultNsState int32_t ___defaultNsState_3; // System.Xml.XmlSpace System.Xml.XmlTextWriter/TagInfo::xmlSpace int32_t ___xmlSpace_4; // System.String System.Xml.XmlTextWriter/TagInfo::xmlLang String_t* ___xmlLang_5; // System.Int32 System.Xml.XmlTextWriter/TagInfo::prevNsTop int32_t ___prevNsTop_6; // System.Int32 System.Xml.XmlTextWriter/TagInfo::prefixCount int32_t ___prefixCount_7; // System.Boolean System.Xml.XmlTextWriter/TagInfo::mixed bool ___mixed_8; public: inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(TagInfo_t3526638417, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((&___name_0), value); } inline static int32_t get_offset_of_prefix_1() { return static_cast<int32_t>(offsetof(TagInfo_t3526638417, ___prefix_1)); } inline String_t* get_prefix_1() const { return ___prefix_1; } inline String_t** get_address_of_prefix_1() { return &___prefix_1; } inline void set_prefix_1(String_t* value) { ___prefix_1 = value; Il2CppCodeGenWriteBarrier((&___prefix_1), value); } inline static int32_t get_offset_of_defaultNs_2() { return static_cast<int32_t>(offsetof(TagInfo_t3526638417, ___defaultNs_2)); } inline String_t* get_defaultNs_2() const { return ___defaultNs_2; } inline String_t** get_address_of_defaultNs_2() { return &___defaultNs_2; } inline void set_defaultNs_2(String_t* value) { ___defaultNs_2 = value; Il2CppCodeGenWriteBarrier((&___defaultNs_2), value); } inline static int32_t get_offset_of_defaultNsState_3() { return static_cast<int32_t>(offsetof(TagInfo_t3526638417, ___defaultNsState_3)); } inline int32_t get_defaultNsState_3() const { return ___defaultNsState_3; } inline int32_t* get_address_of_defaultNsState_3() { return &___defaultNsState_3; } inline void set_defaultNsState_3(int32_t value) { ___defaultNsState_3 = value; } inline static int32_t get_offset_of_xmlSpace_4() { return static_cast<int32_t>(offsetof(TagInfo_t3526638417, ___xmlSpace_4)); } inline int32_t get_xmlSpace_4() const { return ___xmlSpace_4; } inline int32_t* get_address_of_xmlSpace_4() { return &___xmlSpace_4; } inline void set_xmlSpace_4(int32_t value) { ___xmlSpace_4 = value; } inline static int32_t get_offset_of_xmlLang_5() { return static_cast<int32_t>(offsetof(TagInfo_t3526638417, ___xmlLang_5)); } inline String_t* get_xmlLang_5() const { return ___xmlLang_5; } inline String_t** get_address_of_xmlLang_5() { return &___xmlLang_5; } inline void set_xmlLang_5(String_t* value) { ___xmlLang_5 = value; Il2CppCodeGenWriteBarrier((&___xmlLang_5), value); } inline static int32_t get_offset_of_prevNsTop_6() { return static_cast<int32_t>(offsetof(TagInfo_t3526638417, ___prevNsTop_6)); } inline int32_t get_prevNsTop_6() const { return ___prevNsTop_6; } inline int32_t* get_address_of_prevNsTop_6() { return &___prevNsTop_6; } inline void set_prevNsTop_6(int32_t value) { ___prevNsTop_6 = value; } inline static int32_t get_offset_of_prefixCount_7() { return static_cast<int32_t>(offsetof(TagInfo_t3526638417, ___prefixCount_7)); } inline int32_t get_prefixCount_7() const { return ___prefixCount_7; } inline int32_t* get_address_of_prefixCount_7() { return &___prefixCount_7; } inline void set_prefixCount_7(int32_t value) { ___prefixCount_7 = value; } inline static int32_t get_offset_of_mixed_8() { return static_cast<int32_t>(offsetof(TagInfo_t3526638417, ___mixed_8)); } inline bool get_mixed_8() const { return ___mixed_8; } inline bool* get_address_of_mixed_8() { return &___mixed_8; } inline void set_mixed_8(bool value) { ___mixed_8 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Xml.XmlTextWriter/TagInfo struct TagInfo_t3526638417_marshaled_pinvoke { char* ___name_0; char* ___prefix_1; char* ___defaultNs_2; int32_t ___defaultNsState_3; int32_t ___xmlSpace_4; char* ___xmlLang_5; int32_t ___prevNsTop_6; int32_t ___prefixCount_7; int32_t ___mixed_8; }; // Native definition for COM marshalling of System.Xml.XmlTextWriter/TagInfo struct TagInfo_t3526638417_marshaled_com { Il2CppChar* ___name_0; Il2CppChar* ___prefix_1; Il2CppChar* ___defaultNs_2; int32_t ___defaultNsState_3; int32_t ___xmlSpace_4; Il2CppChar* ___xmlLang_5; int32_t ___prevNsTop_6; int32_t ___prefixCount_7; int32_t ___mixed_8; }; #endif // TAGINFO_T3526638417_H #ifndef TMP_CHARACTERINFO_T3185626797_H #define TMP_CHARACTERINFO_T3185626797_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.TMP_CharacterInfo struct TMP_CharacterInfo_t3185626797 { public: // System.Char TMPro.TMP_CharacterInfo::character Il2CppChar ___character_0; // System.Int32 TMPro.TMP_CharacterInfo::index int32_t ___index_1; // TMPro.TMP_TextElementType TMPro.TMP_CharacterInfo::elementType int32_t ___elementType_2; // TMPro.TMP_TextElement TMPro.TMP_CharacterInfo::textElement TMP_TextElement_t129727469 * ___textElement_3; // TMPro.TMP_FontAsset TMPro.TMP_CharacterInfo::fontAsset TMP_FontAsset_t364381626 * ___fontAsset_4; // TMPro.TMP_SpriteAsset TMPro.TMP_CharacterInfo::spriteAsset TMP_SpriteAsset_t484820633 * ___spriteAsset_5; // System.Int32 TMPro.TMP_CharacterInfo::spriteIndex int32_t ___spriteIndex_6; // UnityEngine.Material TMPro.TMP_CharacterInfo::material Material_t340375123 * ___material_7; // System.Int32 TMPro.TMP_CharacterInfo::materialReferenceIndex int32_t ___materialReferenceIndex_8; // System.Boolean TMPro.TMP_CharacterInfo::isUsingAlternateTypeface bool ___isUsingAlternateTypeface_9; // System.Single TMPro.TMP_CharacterInfo::pointSize float ___pointSize_10; // System.Int32 TMPro.TMP_CharacterInfo::lineNumber int32_t ___lineNumber_11; // System.Int32 TMPro.TMP_CharacterInfo::pageNumber int32_t ___pageNumber_12; // System.Int32 TMPro.TMP_CharacterInfo::vertexIndex int32_t ___vertexIndex_13; // TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_TL TMP_Vertex_t2404176824 ___vertex_TL_14; // TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_BL TMP_Vertex_t2404176824 ___vertex_BL_15; // TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_TR TMP_Vertex_t2404176824 ___vertex_TR_16; // TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_BR TMP_Vertex_t2404176824 ___vertex_BR_17; // UnityEngine.Vector3 TMPro.TMP_CharacterInfo::topLeft Vector3_t3722313464 ___topLeft_18; // UnityEngine.Vector3 TMPro.TMP_CharacterInfo::bottomLeft Vector3_t3722313464 ___bottomLeft_19; // UnityEngine.Vector3 TMPro.TMP_CharacterInfo::topRight Vector3_t3722313464 ___topRight_20; // UnityEngine.Vector3 TMPro.TMP_CharacterInfo::bottomRight Vector3_t3722313464 ___bottomRight_21; // System.Single TMPro.TMP_CharacterInfo::origin float ___origin_22; // System.Single TMPro.TMP_CharacterInfo::ascender float ___ascender_23; // System.Single TMPro.TMP_CharacterInfo::baseLine float ___baseLine_24; // System.Single TMPro.TMP_CharacterInfo::descender float ___descender_25; // System.Single TMPro.TMP_CharacterInfo::xAdvance float ___xAdvance_26; // System.Single TMPro.TMP_CharacterInfo::aspectRatio float ___aspectRatio_27; // System.Single TMPro.TMP_CharacterInfo::scale float ___scale_28; // UnityEngine.Color32 TMPro.TMP_CharacterInfo::color Color32_t2600501292 ___color_29; // UnityEngine.Color32 TMPro.TMP_CharacterInfo::underlineColor Color32_t2600501292 ___underlineColor_30; // UnityEngine.Color32 TMPro.TMP_CharacterInfo::strikethroughColor Color32_t2600501292 ___strikethroughColor_31; // UnityEngine.Color32 TMPro.TMP_CharacterInfo::highlightColor Color32_t2600501292 ___highlightColor_32; // TMPro.FontStyles TMPro.TMP_CharacterInfo::style int32_t ___style_33; // System.Boolean TMPro.TMP_CharacterInfo::isVisible bool ___isVisible_34; public: inline static int32_t get_offset_of_character_0() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___character_0)); } inline Il2CppChar get_character_0() const { return ___character_0; } inline Il2CppChar* get_address_of_character_0() { return &___character_0; } inline void set_character_0(Il2CppChar value) { ___character_0 = value; } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_elementType_2() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___elementType_2)); } inline int32_t get_elementType_2() const { return ___elementType_2; } inline int32_t* get_address_of_elementType_2() { return &___elementType_2; } inline void set_elementType_2(int32_t value) { ___elementType_2 = value; } inline static int32_t get_offset_of_textElement_3() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___textElement_3)); } inline TMP_TextElement_t129727469 * get_textElement_3() const { return ___textElement_3; } inline TMP_TextElement_t129727469 ** get_address_of_textElement_3() { return &___textElement_3; } inline void set_textElement_3(TMP_TextElement_t129727469 * value) { ___textElement_3 = value; Il2CppCodeGenWriteBarrier((&___textElement_3), value); } inline static int32_t get_offset_of_fontAsset_4() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___fontAsset_4)); } inline TMP_FontAsset_t364381626 * get_fontAsset_4() const { return ___fontAsset_4; } inline TMP_FontAsset_t364381626 ** get_address_of_fontAsset_4() { return &___fontAsset_4; } inline void set_fontAsset_4(TMP_FontAsset_t364381626 * value) { ___fontAsset_4 = value; Il2CppCodeGenWriteBarrier((&___fontAsset_4), value); } inline static int32_t get_offset_of_spriteAsset_5() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___spriteAsset_5)); } inline TMP_SpriteAsset_t484820633 * get_spriteAsset_5() const { return ___spriteAsset_5; } inline TMP_SpriteAsset_t484820633 ** get_address_of_spriteAsset_5() { return &___spriteAsset_5; } inline void set_spriteAsset_5(TMP_SpriteAsset_t484820633 * value) { ___spriteAsset_5 = value; Il2CppCodeGenWriteBarrier((&___spriteAsset_5), value); } inline static int32_t get_offset_of_spriteIndex_6() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___spriteIndex_6)); } inline int32_t get_spriteIndex_6() const { return ___spriteIndex_6; } inline int32_t* get_address_of_spriteIndex_6() { return &___spriteIndex_6; } inline void set_spriteIndex_6(int32_t value) { ___spriteIndex_6 = value; } inline static int32_t get_offset_of_material_7() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___material_7)); } inline Material_t340375123 * get_material_7() const { return ___material_7; } inline Material_t340375123 ** get_address_of_material_7() { return &___material_7; } inline void set_material_7(Material_t340375123 * value) { ___material_7 = value; Il2CppCodeGenWriteBarrier((&___material_7), value); } inline static int32_t get_offset_of_materialReferenceIndex_8() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___materialReferenceIndex_8)); } inline int32_t get_materialReferenceIndex_8() const { return ___materialReferenceIndex_8; } inline int32_t* get_address_of_materialReferenceIndex_8() { return &___materialReferenceIndex_8; } inline void set_materialReferenceIndex_8(int32_t value) { ___materialReferenceIndex_8 = value; } inline static int32_t get_offset_of_isUsingAlternateTypeface_9() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___isUsingAlternateTypeface_9)); } inline bool get_isUsingAlternateTypeface_9() const { return ___isUsingAlternateTypeface_9; } inline bool* get_address_of_isUsingAlternateTypeface_9() { return &___isUsingAlternateTypeface_9; } inline void set_isUsingAlternateTypeface_9(bool value) { ___isUsingAlternateTypeface_9 = value; } inline static int32_t get_offset_of_pointSize_10() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___pointSize_10)); } inline float get_pointSize_10() const { return ___pointSize_10; } inline float* get_address_of_pointSize_10() { return &___pointSize_10; } inline void set_pointSize_10(float value) { ___pointSize_10 = value; } inline static int32_t get_offset_of_lineNumber_11() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___lineNumber_11)); } inline int32_t get_lineNumber_11() const { return ___lineNumber_11; } inline int32_t* get_address_of_lineNumber_11() { return &___lineNumber_11; } inline void set_lineNumber_11(int32_t value) { ___lineNumber_11 = value; } inline static int32_t get_offset_of_pageNumber_12() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___pageNumber_12)); } inline int32_t get_pageNumber_12() const { return ___pageNumber_12; } inline int32_t* get_address_of_pageNumber_12() { return &___pageNumber_12; } inline void set_pageNumber_12(int32_t value) { ___pageNumber_12 = value; } inline static int32_t get_offset_of_vertexIndex_13() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___vertexIndex_13)); } inline int32_t get_vertexIndex_13() const { return ___vertexIndex_13; } inline int32_t* get_address_of_vertexIndex_13() { return &___vertexIndex_13; } inline void set_vertexIndex_13(int32_t value) { ___vertexIndex_13 = value; } inline static int32_t get_offset_of_vertex_TL_14() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___vertex_TL_14)); } inline TMP_Vertex_t2404176824 get_vertex_TL_14() const { return ___vertex_TL_14; } inline TMP_Vertex_t2404176824 * get_address_of_vertex_TL_14() { return &___vertex_TL_14; } inline void set_vertex_TL_14(TMP_Vertex_t2404176824 value) { ___vertex_TL_14 = value; } inline static int32_t get_offset_of_vertex_BL_15() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___vertex_BL_15)); } inline TMP_Vertex_t2404176824 get_vertex_BL_15() const { return ___vertex_BL_15; } inline TMP_Vertex_t2404176824 * get_address_of_vertex_BL_15() { return &___vertex_BL_15; } inline void set_vertex_BL_15(TMP_Vertex_t2404176824 value) { ___vertex_BL_15 = value; } inline static int32_t get_offset_of_vertex_TR_16() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___vertex_TR_16)); } inline TMP_Vertex_t2404176824 get_vertex_TR_16() const { return ___vertex_TR_16; } inline TMP_Vertex_t2404176824 * get_address_of_vertex_TR_16() { return &___vertex_TR_16; } inline void set_vertex_TR_16(TMP_Vertex_t2404176824 value) { ___vertex_TR_16 = value; } inline static int32_t get_offset_of_vertex_BR_17() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___vertex_BR_17)); } inline TMP_Vertex_t2404176824 get_vertex_BR_17() const { return ___vertex_BR_17; } inline TMP_Vertex_t2404176824 * get_address_of_vertex_BR_17() { return &___vertex_BR_17; } inline void set_vertex_BR_17(TMP_Vertex_t2404176824 value) { ___vertex_BR_17 = value; } inline static int32_t get_offset_of_topLeft_18() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___topLeft_18)); } inline Vector3_t3722313464 get_topLeft_18() const { return ___topLeft_18; } inline Vector3_t3722313464 * get_address_of_topLeft_18() { return &___topLeft_18; } inline void set_topLeft_18(Vector3_t3722313464 value) { ___topLeft_18 = value; } inline static int32_t get_offset_of_bottomLeft_19() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___bottomLeft_19)); } inline Vector3_t3722313464 get_bottomLeft_19() const { return ___bottomLeft_19; } inline Vector3_t3722313464 * get_address_of_bottomLeft_19() { return &___bottomLeft_19; } inline void set_bottomLeft_19(Vector3_t3722313464 value) { ___bottomLeft_19 = value; } inline static int32_t get_offset_of_topRight_20() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___topRight_20)); } inline Vector3_t3722313464 get_topRight_20() const { return ___topRight_20; } inline Vector3_t3722313464 * get_address_of_topRight_20() { return &___topRight_20; } inline void set_topRight_20(Vector3_t3722313464 value) { ___topRight_20 = value; } inline static int32_t get_offset_of_bottomRight_21() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___bottomRight_21)); } inline Vector3_t3722313464 get_bottomRight_21() const { return ___bottomRight_21; } inline Vector3_t3722313464 * get_address_of_bottomRight_21() { return &___bottomRight_21; } inline void set_bottomRight_21(Vector3_t3722313464 value) { ___bottomRight_21 = value; } inline static int32_t get_offset_of_origin_22() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___origin_22)); } inline float get_origin_22() const { return ___origin_22; } inline float* get_address_of_origin_22() { return &___origin_22; } inline void set_origin_22(float value) { ___origin_22 = value; } inline static int32_t get_offset_of_ascender_23() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___ascender_23)); } inline float get_ascender_23() const { return ___ascender_23; } inline float* get_address_of_ascender_23() { return &___ascender_23; } inline void set_ascender_23(float value) { ___ascender_23 = value; } inline static int32_t get_offset_of_baseLine_24() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___baseLine_24)); } inline float get_baseLine_24() const { return ___baseLine_24; } inline float* get_address_of_baseLine_24() { return &___baseLine_24; } inline void set_baseLine_24(float value) { ___baseLine_24 = value; } inline static int32_t get_offset_of_descender_25() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___descender_25)); } inline float get_descender_25() const { return ___descender_25; } inline float* get_address_of_descender_25() { return &___descender_25; } inline void set_descender_25(float value) { ___descender_25 = value; } inline static int32_t get_offset_of_xAdvance_26() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___xAdvance_26)); } inline float get_xAdvance_26() const { return ___xAdvance_26; } inline float* get_address_of_xAdvance_26() { return &___xAdvance_26; } inline void set_xAdvance_26(float value) { ___xAdvance_26 = value; } inline static int32_t get_offset_of_aspectRatio_27() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___aspectRatio_27)); } inline float get_aspectRatio_27() const { return ___aspectRatio_27; } inline float* get_address_of_aspectRatio_27() { return &___aspectRatio_27; } inline void set_aspectRatio_27(float value) { ___aspectRatio_27 = value; } inline static int32_t get_offset_of_scale_28() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___scale_28)); } inline float get_scale_28() const { return ___scale_28; } inline float* get_address_of_scale_28() { return &___scale_28; } inline void set_scale_28(float value) { ___scale_28 = value; } inline static int32_t get_offset_of_color_29() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___color_29)); } inline Color32_t2600501292 get_color_29() const { return ___color_29; } inline Color32_t2600501292 * get_address_of_color_29() { return &___color_29; } inline void set_color_29(Color32_t2600501292 value) { ___color_29 = value; } inline static int32_t get_offset_of_underlineColor_30() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___underlineColor_30)); } inline Color32_t2600501292 get_underlineColor_30() const { return ___underlineColor_30; } inline Color32_t2600501292 * get_address_of_underlineColor_30() { return &___underlineColor_30; } inline void set_underlineColor_30(Color32_t2600501292 value) { ___underlineColor_30 = value; } inline static int32_t get_offset_of_strikethroughColor_31() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___strikethroughColor_31)); } inline Color32_t2600501292 get_strikethroughColor_31() const { return ___strikethroughColor_31; } inline Color32_t2600501292 * get_address_of_strikethroughColor_31() { return &___strikethroughColor_31; } inline void set_strikethroughColor_31(Color32_t2600501292 value) { ___strikethroughColor_31 = value; } inline static int32_t get_offset_of_highlightColor_32() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___highlightColor_32)); } inline Color32_t2600501292 get_highlightColor_32() const { return ___highlightColor_32; } inline Color32_t2600501292 * get_address_of_highlightColor_32() { return &___highlightColor_32; } inline void set_highlightColor_32(Color32_t2600501292 value) { ___highlightColor_32 = value; } inline static int32_t get_offset_of_style_33() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___style_33)); } inline int32_t get_style_33() const { return ___style_33; } inline int32_t* get_address_of_style_33() { return &___style_33; } inline void set_style_33(int32_t value) { ___style_33 = value; } inline static int32_t get_offset_of_isVisible_34() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t3185626797, ___isVisible_34)); } inline bool get_isVisible_34() const { return ___isVisible_34; } inline bool* get_address_of_isVisible_34() { return &___isVisible_34; } inline void set_isVisible_34(bool value) { ___isVisible_34 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of TMPro.TMP_CharacterInfo struct TMP_CharacterInfo_t3185626797_marshaled_pinvoke { uint8_t ___character_0; int32_t ___index_1; int32_t ___elementType_2; TMP_TextElement_t129727469 * ___textElement_3; TMP_FontAsset_t364381626 * ___fontAsset_4; TMP_SpriteAsset_t484820633 * ___spriteAsset_5; int32_t ___spriteIndex_6; Material_t340375123 * ___material_7; int32_t ___materialReferenceIndex_8; int32_t ___isUsingAlternateTypeface_9; float ___pointSize_10; int32_t ___lineNumber_11; int32_t ___pageNumber_12; int32_t ___vertexIndex_13; TMP_Vertex_t2404176824 ___vertex_TL_14; TMP_Vertex_t2404176824 ___vertex_BL_15; TMP_Vertex_t2404176824 ___vertex_TR_16; TMP_Vertex_t2404176824 ___vertex_BR_17; Vector3_t3722313464 ___topLeft_18; Vector3_t3722313464 ___bottomLeft_19; Vector3_t3722313464 ___topRight_20; Vector3_t3722313464 ___bottomRight_21; float ___origin_22; float ___ascender_23; float ___baseLine_24; float ___descender_25; float ___xAdvance_26; float ___aspectRatio_27; float ___scale_28; Color32_t2600501292 ___color_29; Color32_t2600501292 ___underlineColor_30; Color32_t2600501292 ___strikethroughColor_31; Color32_t2600501292 ___highlightColor_32; int32_t ___style_33; int32_t ___isVisible_34; }; // Native definition for COM marshalling of TMPro.TMP_CharacterInfo struct TMP_CharacterInfo_t3185626797_marshaled_com { uint8_t ___character_0; int32_t ___index_1; int32_t ___elementType_2; TMP_TextElement_t129727469 * ___textElement_3; TMP_FontAsset_t364381626 * ___fontAsset_4; TMP_SpriteAsset_t484820633 * ___spriteAsset_5; int32_t ___spriteIndex_6; Material_t340375123 * ___material_7; int32_t ___materialReferenceIndex_8; int32_t ___isUsingAlternateTypeface_9; float ___pointSize_10; int32_t ___lineNumber_11; int32_t ___pageNumber_12; int32_t ___vertexIndex_13; TMP_Vertex_t2404176824 ___vertex_TL_14; TMP_Vertex_t2404176824 ___vertex_BL_15; TMP_Vertex_t2404176824 ___vertex_TR_16; TMP_Vertex_t2404176824 ___vertex_BR_17; Vector3_t3722313464 ___topLeft_18; Vector3_t3722313464 ___bottomLeft_19; Vector3_t3722313464 ___topRight_20; Vector3_t3722313464 ___bottomRight_21; float ___origin_22; float ___ascender_23; float ___baseLine_24; float ___descender_25; float ___xAdvance_26; float ___aspectRatio_27; float ___scale_28; Color32_t2600501292 ___color_29; Color32_t2600501292 ___underlineColor_30; Color32_t2600501292 ___strikethroughColor_31; Color32_t2600501292 ___highlightColor_32; int32_t ___style_33; int32_t ___isVisible_34; }; #endif // TMP_CHARACTERINFO_T3185626797_H #ifndef TMP_LINEINFO_T1079631636_H #define TMP_LINEINFO_T1079631636_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.TMP_LineInfo struct TMP_LineInfo_t1079631636 { public: // System.Int32 TMPro.TMP_LineInfo::controlCharacterCount int32_t ___controlCharacterCount_0; // System.Int32 TMPro.TMP_LineInfo::characterCount int32_t ___characterCount_1; // System.Int32 TMPro.TMP_LineInfo::visibleCharacterCount int32_t ___visibleCharacterCount_2; // System.Int32 TMPro.TMP_LineInfo::spaceCount int32_t ___spaceCount_3; // System.Int32 TMPro.TMP_LineInfo::wordCount int32_t ___wordCount_4; // System.Int32 TMPro.TMP_LineInfo::firstCharacterIndex int32_t ___firstCharacterIndex_5; // System.Int32 TMPro.TMP_LineInfo::firstVisibleCharacterIndex int32_t ___firstVisibleCharacterIndex_6; // System.Int32 TMPro.TMP_LineInfo::lastCharacterIndex int32_t ___lastCharacterIndex_7; // System.Int32 TMPro.TMP_LineInfo::lastVisibleCharacterIndex int32_t ___lastVisibleCharacterIndex_8; // System.Single TMPro.TMP_LineInfo::length float ___length_9; // System.Single TMPro.TMP_LineInfo::lineHeight float ___lineHeight_10; // System.Single TMPro.TMP_LineInfo::ascender float ___ascender_11; // System.Single TMPro.TMP_LineInfo::baseline float ___baseline_12; // System.Single TMPro.TMP_LineInfo::descender float ___descender_13; // System.Single TMPro.TMP_LineInfo::maxAdvance float ___maxAdvance_14; // System.Single TMPro.TMP_LineInfo::width float ___width_15; // System.Single TMPro.TMP_LineInfo::marginLeft float ___marginLeft_16; // System.Single TMPro.TMP_LineInfo::marginRight float ___marginRight_17; // TMPro.TextAlignmentOptions TMPro.TMP_LineInfo::alignment int32_t ___alignment_18; // TMPro.Extents TMPro.TMP_LineInfo::lineExtents Extents_t3837212874 ___lineExtents_19; public: inline static int32_t get_offset_of_controlCharacterCount_0() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___controlCharacterCount_0)); } inline int32_t get_controlCharacterCount_0() const { return ___controlCharacterCount_0; } inline int32_t* get_address_of_controlCharacterCount_0() { return &___controlCharacterCount_0; } inline void set_controlCharacterCount_0(int32_t value) { ___controlCharacterCount_0 = value; } inline static int32_t get_offset_of_characterCount_1() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___characterCount_1)); } inline int32_t get_characterCount_1() const { return ___characterCount_1; } inline int32_t* get_address_of_characterCount_1() { return &___characterCount_1; } inline void set_characterCount_1(int32_t value) { ___characterCount_1 = value; } inline static int32_t get_offset_of_visibleCharacterCount_2() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___visibleCharacterCount_2)); } inline int32_t get_visibleCharacterCount_2() const { return ___visibleCharacterCount_2; } inline int32_t* get_address_of_visibleCharacterCount_2() { return &___visibleCharacterCount_2; } inline void set_visibleCharacterCount_2(int32_t value) { ___visibleCharacterCount_2 = value; } inline static int32_t get_offset_of_spaceCount_3() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___spaceCount_3)); } inline int32_t get_spaceCount_3() const { return ___spaceCount_3; } inline int32_t* get_address_of_spaceCount_3() { return &___spaceCount_3; } inline void set_spaceCount_3(int32_t value) { ___spaceCount_3 = value; } inline static int32_t get_offset_of_wordCount_4() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___wordCount_4)); } inline int32_t get_wordCount_4() const { return ___wordCount_4; } inline int32_t* get_address_of_wordCount_4() { return &___wordCount_4; } inline void set_wordCount_4(int32_t value) { ___wordCount_4 = value; } inline static int32_t get_offset_of_firstCharacterIndex_5() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___firstCharacterIndex_5)); } inline int32_t get_firstCharacterIndex_5() const { return ___firstCharacterIndex_5; } inline int32_t* get_address_of_firstCharacterIndex_5() { return &___firstCharacterIndex_5; } inline void set_firstCharacterIndex_5(int32_t value) { ___firstCharacterIndex_5 = value; } inline static int32_t get_offset_of_firstVisibleCharacterIndex_6() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___firstVisibleCharacterIndex_6)); } inline int32_t get_firstVisibleCharacterIndex_6() const { return ___firstVisibleCharacterIndex_6; } inline int32_t* get_address_of_firstVisibleCharacterIndex_6() { return &___firstVisibleCharacterIndex_6; } inline void set_firstVisibleCharacterIndex_6(int32_t value) { ___firstVisibleCharacterIndex_6 = value; } inline static int32_t get_offset_of_lastCharacterIndex_7() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___lastCharacterIndex_7)); } inline int32_t get_lastCharacterIndex_7() const { return ___lastCharacterIndex_7; } inline int32_t* get_address_of_lastCharacterIndex_7() { return &___lastCharacterIndex_7; } inline void set_lastCharacterIndex_7(int32_t value) { ___lastCharacterIndex_7 = value; } inline static int32_t get_offset_of_lastVisibleCharacterIndex_8() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___lastVisibleCharacterIndex_8)); } inline int32_t get_lastVisibleCharacterIndex_8() const { return ___lastVisibleCharacterIndex_8; } inline int32_t* get_address_of_lastVisibleCharacterIndex_8() { return &___lastVisibleCharacterIndex_8; } inline void set_lastVisibleCharacterIndex_8(int32_t value) { ___lastVisibleCharacterIndex_8 = value; } inline static int32_t get_offset_of_length_9() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___length_9)); } inline float get_length_9() const { return ___length_9; } inline float* get_address_of_length_9() { return &___length_9; } inline void set_length_9(float value) { ___length_9 = value; } inline static int32_t get_offset_of_lineHeight_10() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___lineHeight_10)); } inline float get_lineHeight_10() const { return ___lineHeight_10; } inline float* get_address_of_lineHeight_10() { return &___lineHeight_10; } inline void set_lineHeight_10(float value) { ___lineHeight_10 = value; } inline static int32_t get_offset_of_ascender_11() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___ascender_11)); } inline float get_ascender_11() const { return ___ascender_11; } inline float* get_address_of_ascender_11() { return &___ascender_11; } inline void set_ascender_11(float value) { ___ascender_11 = value; } inline static int32_t get_offset_of_baseline_12() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___baseline_12)); } inline float get_baseline_12() const { return ___baseline_12; } inline float* get_address_of_baseline_12() { return &___baseline_12; } inline void set_baseline_12(float value) { ___baseline_12 = value; } inline static int32_t get_offset_of_descender_13() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___descender_13)); } inline float get_descender_13() const { return ___descender_13; } inline float* get_address_of_descender_13() { return &___descender_13; } inline void set_descender_13(float value) { ___descender_13 = value; } inline static int32_t get_offset_of_maxAdvance_14() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___maxAdvance_14)); } inline float get_maxAdvance_14() const { return ___maxAdvance_14; } inline float* get_address_of_maxAdvance_14() { return &___maxAdvance_14; } inline void set_maxAdvance_14(float value) { ___maxAdvance_14 = value; } inline static int32_t get_offset_of_width_15() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___width_15)); } inline float get_width_15() const { return ___width_15; } inline float* get_address_of_width_15() { return &___width_15; } inline void set_width_15(float value) { ___width_15 = value; } inline static int32_t get_offset_of_marginLeft_16() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___marginLeft_16)); } inline float get_marginLeft_16() const { return ___marginLeft_16; } inline float* get_address_of_marginLeft_16() { return &___marginLeft_16; } inline void set_marginLeft_16(float value) { ___marginLeft_16 = value; } inline static int32_t get_offset_of_marginRight_17() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___marginRight_17)); } inline float get_marginRight_17() const { return ___marginRight_17; } inline float* get_address_of_marginRight_17() { return &___marginRight_17; } inline void set_marginRight_17(float value) { ___marginRight_17 = value; } inline static int32_t get_offset_of_alignment_18() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___alignment_18)); } inline int32_t get_alignment_18() const { return ___alignment_18; } inline int32_t* get_address_of_alignment_18() { return &___alignment_18; } inline void set_alignment_18(int32_t value) { ___alignment_18 = value; } inline static int32_t get_offset_of_lineExtents_19() { return static_cast<int32_t>(offsetof(TMP_LineInfo_t1079631636, ___lineExtents_19)); } inline Extents_t3837212874 get_lineExtents_19() const { return ___lineExtents_19; } inline Extents_t3837212874 * get_address_of_lineExtents_19() { return &___lineExtents_19; } inline void set_lineExtents_19(Extents_t3837212874 value) { ___lineExtents_19 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TMP_LINEINFO_T1079631636_H #ifndef XML_TAGATTRIBUTE_T1174424309_H #define XML_TAGATTRIBUTE_T1174424309_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // TMPro.XML_TagAttribute struct XML_TagAttribute_t1174424309 { public: // System.Int32 TMPro.XML_TagAttribute::nameHashCode int32_t ___nameHashCode_0; // TMPro.TagType TMPro.XML_TagAttribute::valueType int32_t ___valueType_1; // System.Int32 TMPro.XML_TagAttribute::valueStartIndex int32_t ___valueStartIndex_2; // System.Int32 TMPro.XML_TagAttribute::valueLength int32_t ___valueLength_3; // System.Int32 TMPro.XML_TagAttribute::valueHashCode int32_t ___valueHashCode_4; public: inline static int32_t get_offset_of_nameHashCode_0() { return static_cast<int32_t>(offsetof(XML_TagAttribute_t1174424309, ___nameHashCode_0)); } inline int32_t get_nameHashCode_0() const { return ___nameHashCode_0; } inline int32_t* get_address_of_nameHashCode_0() { return &___nameHashCode_0; } inline void set_nameHashCode_0(int32_t value) { ___nameHashCode_0 = value; } inline static int32_t get_offset_of_valueType_1() { return static_cast<int32_t>(offsetof(XML_TagAttribute_t1174424309, ___valueType_1)); } inline int32_t get_valueType_1() const { return ___valueType_1; } inline int32_t* get_address_of_valueType_1() { return &___valueType_1; } inline void set_valueType_1(int32_t value) { ___valueType_1 = value; } inline static int32_t get_offset_of_valueStartIndex_2() { return static_cast<int32_t>(offsetof(XML_TagAttribute_t1174424309, ___valueStartIndex_2)); } inline int32_t get_valueStartIndex_2() const { return ___valueStartIndex_2; } inline int32_t* get_address_of_valueStartIndex_2() { return &___valueStartIndex_2; } inline void set_valueStartIndex_2(int32_t value) { ___valueStartIndex_2 = value; } inline static int32_t get_offset_of_valueLength_3() { return static_cast<int32_t>(offsetof(XML_TagAttribute_t1174424309, ___valueLength_3)); } inline int32_t get_valueLength_3() const { return ___valueLength_3; } inline int32_t* get_address_of_valueLength_3() { return &___valueLength_3; } inline void set_valueLength_3(int32_t value) { ___valueLength_3 = value; } inline static int32_t get_offset_of_valueHashCode_4() { return static_cast<int32_t>(offsetof(XML_TagAttribute_t1174424309, ___valueHashCode_4)); } inline int32_t get_valueHashCode_4() const { return ___valueHashCode_4; } inline int32_t* get_address_of_valueHashCode_4() { return &___valueHashCode_4; } inline void set_valueHashCode_4(int32_t value) { ___valueHashCode_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XML_TAGATTRIBUTE_T1174424309_H #ifndef COMPONENT_T1923634451_H #define COMPONENT_T1923634451_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Component struct Component_t1923634451 : public Object_t631007953 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COMPONENT_T1923634451_H #ifndef GAMEOBJECT_T1113636619_H #define GAMEOBJECT_T1113636619_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.GameObject struct GameObject_t1113636619 : public Object_t631007953 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // GAMEOBJECT_T1113636619_H #ifndef PLAYABLEBINDING_T354260709_H #define PLAYABLEBINDING_T354260709_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Playables.PlayableBinding struct PlayableBinding_t354260709 { public: // System.String UnityEngine.Playables.PlayableBinding::m_StreamName String_t* ___m_StreamName_0; // UnityEngine.Object UnityEngine.Playables.PlayableBinding::m_SourceObject Object_t631007953 * ___m_SourceObject_1; // System.Type UnityEngine.Playables.PlayableBinding::m_SourceBindingType Type_t * ___m_SourceBindingType_2; // UnityEngine.Playables.PlayableBinding/CreateOutputMethod UnityEngine.Playables.PlayableBinding::m_CreateOutputMethod CreateOutputMethod_t2301811773 * ___m_CreateOutputMethod_3; public: inline static int32_t get_offset_of_m_StreamName_0() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709, ___m_StreamName_0)); } inline String_t* get_m_StreamName_0() const { return ___m_StreamName_0; } inline String_t** get_address_of_m_StreamName_0() { return &___m_StreamName_0; } inline void set_m_StreamName_0(String_t* value) { ___m_StreamName_0 = value; Il2CppCodeGenWriteBarrier((&___m_StreamName_0), value); } inline static int32_t get_offset_of_m_SourceObject_1() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709, ___m_SourceObject_1)); } inline Object_t631007953 * get_m_SourceObject_1() const { return ___m_SourceObject_1; } inline Object_t631007953 ** get_address_of_m_SourceObject_1() { return &___m_SourceObject_1; } inline void set_m_SourceObject_1(Object_t631007953 * value) { ___m_SourceObject_1 = value; Il2CppCodeGenWriteBarrier((&___m_SourceObject_1), value); } inline static int32_t get_offset_of_m_SourceBindingType_2() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709, ___m_SourceBindingType_2)); } inline Type_t * get_m_SourceBindingType_2() const { return ___m_SourceBindingType_2; } inline Type_t ** get_address_of_m_SourceBindingType_2() { return &___m_SourceBindingType_2; } inline void set_m_SourceBindingType_2(Type_t * value) { ___m_SourceBindingType_2 = value; Il2CppCodeGenWriteBarrier((&___m_SourceBindingType_2), value); } inline static int32_t get_offset_of_m_CreateOutputMethod_3() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709, ___m_CreateOutputMethod_3)); } inline CreateOutputMethod_t2301811773 * get_m_CreateOutputMethod_3() const { return ___m_CreateOutputMethod_3; } inline CreateOutputMethod_t2301811773 ** get_address_of_m_CreateOutputMethod_3() { return &___m_CreateOutputMethod_3; } inline void set_m_CreateOutputMethod_3(CreateOutputMethod_t2301811773 * value) { ___m_CreateOutputMethod_3 = value; Il2CppCodeGenWriteBarrier((&___m_CreateOutputMethod_3), value); } }; struct PlayableBinding_t354260709_StaticFields { public: // UnityEngine.Playables.PlayableBinding[] UnityEngine.Playables.PlayableBinding::None PlayableBindingU5BU5D_t829358056* ___None_4; // System.Double UnityEngine.Playables.PlayableBinding::DefaultDuration double ___DefaultDuration_5; public: inline static int32_t get_offset_of_None_4() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709_StaticFields, ___None_4)); } inline PlayableBindingU5BU5D_t829358056* get_None_4() const { return ___None_4; } inline PlayableBindingU5BU5D_t829358056** get_address_of_None_4() { return &___None_4; } inline void set_None_4(PlayableBindingU5BU5D_t829358056* value) { ___None_4 = value; Il2CppCodeGenWriteBarrier((&___None_4), value); } inline static int32_t get_offset_of_DefaultDuration_5() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709_StaticFields, ___DefaultDuration_5)); } inline double get_DefaultDuration_5() const { return ___DefaultDuration_5; } inline double* get_address_of_DefaultDuration_5() { return &___DefaultDuration_5; } inline void set_DefaultDuration_5(double value) { ___DefaultDuration_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.Playables.PlayableBinding struct PlayableBinding_t354260709_marshaled_pinvoke { char* ___m_StreamName_0; Object_t631007953_marshaled_pinvoke ___m_SourceObject_1; Type_t * ___m_SourceBindingType_2; Il2CppMethodPointer ___m_CreateOutputMethod_3; }; // Native definition for COM marshalling of UnityEngine.Playables.PlayableBinding struct PlayableBinding_t354260709_marshaled_com { Il2CppChar* ___m_StreamName_0; Object_t631007953_marshaled_com* ___m_SourceObject_1; Type_t * ___m_SourceBindingType_2; Il2CppMethodPointer ___m_CreateOutputMethod_3; }; #endif // PLAYABLEBINDING_T354260709_H #ifndef SCRIPTABLEOBJECT_T2528358522_H #define SCRIPTABLEOBJECT_T2528358522_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.ScriptableObject struct ScriptableObject_t2528358522 : public Object_t631007953 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject struct ScriptableObject_t2528358522_marshaled_pinvoke : public Object_t631007953_marshaled_pinvoke { }; // Native definition for COM marshalling of UnityEngine.ScriptableObject struct ScriptableObject_t2528358522_marshaled_com : public Object_t631007953_marshaled_com { }; #endif // SCRIPTABLEOBJECT_T2528358522_H #ifndef TOUCH_T1921856868_H #define TOUCH_T1921856868_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Touch struct Touch_t1921856868 { public: // System.Int32 UnityEngine.Touch::m_FingerId int32_t ___m_FingerId_0; // UnityEngine.Vector2 UnityEngine.Touch::m_Position Vector2_t2156229523 ___m_Position_1; // UnityEngine.Vector2 UnityEngine.Touch::m_RawPosition Vector2_t2156229523 ___m_RawPosition_2; // UnityEngine.Vector2 UnityEngine.Touch::m_PositionDelta Vector2_t2156229523 ___m_PositionDelta_3; // System.Single UnityEngine.Touch::m_TimeDelta float ___m_TimeDelta_4; // System.Int32 UnityEngine.Touch::m_TapCount int32_t ___m_TapCount_5; // UnityEngine.TouchPhase UnityEngine.Touch::m_Phase int32_t ___m_Phase_6; // UnityEngine.TouchType UnityEngine.Touch::m_Type int32_t ___m_Type_7; // System.Single UnityEngine.Touch::m_Pressure float ___m_Pressure_8; // System.Single UnityEngine.Touch::m_maximumPossiblePressure float ___m_maximumPossiblePressure_9; // System.Single UnityEngine.Touch::m_Radius float ___m_Radius_10; // System.Single UnityEngine.Touch::m_RadiusVariance float ___m_RadiusVariance_11; // System.Single UnityEngine.Touch::m_AltitudeAngle float ___m_AltitudeAngle_12; // System.Single UnityEngine.Touch::m_AzimuthAngle float ___m_AzimuthAngle_13; public: inline static int32_t get_offset_of_m_FingerId_0() { return static_cast<int32_t>(offsetof(Touch_t1921856868, ___m_FingerId_0)); } inline int32_t get_m_FingerId_0() const { return ___m_FingerId_0; } inline int32_t* get_address_of_m_FingerId_0() { return &___m_FingerId_0; } inline void set_m_FingerId_0(int32_t value) { ___m_FingerId_0 = value; } inline static int32_t get_offset_of_m_Position_1() { return static_cast<int32_t>(offsetof(Touch_t1921856868, ___m_Position_1)); } inline Vector2_t2156229523 get_m_Position_1() const { return ___m_Position_1; } inline Vector2_t2156229523 * get_address_of_m_Position_1() { return &___m_Position_1; } inline void set_m_Position_1(Vector2_t2156229523 value) { ___m_Position_1 = value; } inline static int32_t get_offset_of_m_RawPosition_2() { return static_cast<int32_t>(offsetof(Touch_t1921856868, ___m_RawPosition_2)); } inline Vector2_t2156229523 get_m_RawPosition_2() const { return ___m_RawPosition_2; } inline Vector2_t2156229523 * get_address_of_m_RawPosition_2() { return &___m_RawPosition_2; } inline void set_m_RawPosition_2(Vector2_t2156229523 value) { ___m_RawPosition_2 = value; } inline static int32_t get_offset_of_m_PositionDelta_3() { return static_cast<int32_t>(offsetof(Touch_t1921856868, ___m_PositionDelta_3)); } inline Vector2_t2156229523 get_m_PositionDelta_3() const { return ___m_PositionDelta_3; } inline Vector2_t2156229523 * get_address_of_m_PositionDelta_3() { return &___m_PositionDelta_3; } inline void set_m_PositionDelta_3(Vector2_t2156229523 value) { ___m_PositionDelta_3 = value; } inline static int32_t get_offset_of_m_TimeDelta_4() { return static_cast<int32_t>(offsetof(Touch_t1921856868, ___m_TimeDelta_4)); } inline float get_m_TimeDelta_4() const { return ___m_TimeDelta_4; } inline float* get_address_of_m_TimeDelta_4() { return &___m_TimeDelta_4; } inline void set_m_TimeDelta_4(float value) { ___m_TimeDelta_4 = value; } inline static int32_t get_offset_of_m_TapCount_5() { return static_cast<int32_t>(offsetof(Touch_t1921856868, ___m_TapCount_5)); } inline int32_t get_m_TapCount_5() const { return ___m_TapCount_5; } inline int32_t* get_address_of_m_TapCount_5() { return &___m_TapCount_5; } inline void set_m_TapCount_5(int32_t value) { ___m_TapCount_5 = value; } inline static int32_t get_offset_of_m_Phase_6() { return static_cast<int32_t>(offsetof(Touch_t1921856868, ___m_Phase_6)); } inline int32_t get_m_Phase_6() const { return ___m_Phase_6; } inline int32_t* get_address_of_m_Phase_6() { return &___m_Phase_6; } inline void set_m_Phase_6(int32_t value) { ___m_Phase_6 = value; } inline static int32_t get_offset_of_m_Type_7() { return static_cast<int32_t>(offsetof(Touch_t1921856868, ___m_Type_7)); } inline int32_t get_m_Type_7() const { return ___m_Type_7; } inline int32_t* get_address_of_m_Type_7() { return &___m_Type_7; } inline void set_m_Type_7(int32_t value) { ___m_Type_7 = value; } inline static int32_t get_offset_of_m_Pressure_8() { return static_cast<int32_t>(offsetof(Touch_t1921856868, ___m_Pressure_8)); } inline float get_m_Pressure_8() const { return ___m_Pressure_8; } inline float* get_address_of_m_Pressure_8() { return &___m_Pressure_8; } inline void set_m_Pressure_8(float value) { ___m_Pressure_8 = value; } inline static int32_t get_offset_of_m_maximumPossiblePressure_9() { return static_cast<int32_t>(offsetof(Touch_t1921856868, ___m_maximumPossiblePressure_9)); } inline float get_m_maximumPossiblePressure_9() const { return ___m_maximumPossiblePressure_9; } inline float* get_address_of_m_maximumPossiblePressure_9() { return &___m_maximumPossiblePressure_9; } inline void set_m_maximumPossiblePressure_9(float value) { ___m_maximumPossiblePressure_9 = value; } inline static int32_t get_offset_of_m_Radius_10() { return static_cast<int32_t>(offsetof(Touch_t1921856868, ___m_Radius_10)); } inline float get_m_Radius_10() const { return ___m_Radius_10; } inline float* get_address_of_m_Radius_10() { return &___m_Radius_10; } inline void set_m_Radius_10(float value) { ___m_Radius_10 = value; } inline static int32_t get_offset_of_m_RadiusVariance_11() { return static_cast<int32_t>(offsetof(Touch_t1921856868, ___m_RadiusVariance_11)); } inline float get_m_RadiusVariance_11() const { return ___m_RadiusVariance_11; } inline float* get_address_of_m_RadiusVariance_11() { return &___m_RadiusVariance_11; } inline void set_m_RadiusVariance_11(float value) { ___m_RadiusVariance_11 = value; } inline static int32_t get_offset_of_m_AltitudeAngle_12() { return static_cast<int32_t>(offsetof(Touch_t1921856868, ___m_AltitudeAngle_12)); } inline float get_m_AltitudeAngle_12() const { return ___m_AltitudeAngle_12; } inline float* get_address_of_m_AltitudeAngle_12() { return &___m_AltitudeAngle_12; } inline void set_m_AltitudeAngle_12(float value) { ___m_AltitudeAngle_12 = value; } inline static int32_t get_offset_of_m_AzimuthAngle_13() { return static_cast<int32_t>(offsetof(Touch_t1921856868, ___m_AzimuthAngle_13)); } inline float get_m_AzimuthAngle_13() const { return ___m_AzimuthAngle_13; } inline float* get_address_of_m_AzimuthAngle_13() { return &___m_AzimuthAngle_13; } inline void set_m_AzimuthAngle_13(float value) { ___m_AzimuthAngle_13 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TOUCH_T1921856868_H #ifndef NAVIGATION_T3049316579_H #define NAVIGATION_T3049316579_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.UI.Navigation struct Navigation_t3049316579 { public: // UnityEngine.UI.Navigation/Mode UnityEngine.UI.Navigation::m_Mode int32_t ___m_Mode_0; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnUp Selectable_t3250028441 * ___m_SelectOnUp_1; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnDown Selectable_t3250028441 * ___m_SelectOnDown_2; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnLeft Selectable_t3250028441 * ___m_SelectOnLeft_3; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnRight Selectable_t3250028441 * ___m_SelectOnRight_4; public: inline static int32_t get_offset_of_m_Mode_0() { return static_cast<int32_t>(offsetof(Navigation_t3049316579, ___m_Mode_0)); } inline int32_t get_m_Mode_0() const { return ___m_Mode_0; } inline int32_t* get_address_of_m_Mode_0() { return &___m_Mode_0; } inline void set_m_Mode_0(int32_t value) { ___m_Mode_0 = value; } inline static int32_t get_offset_of_m_SelectOnUp_1() { return static_cast<int32_t>(offsetof(Navigation_t3049316579, ___m_SelectOnUp_1)); } inline Selectable_t3250028441 * get_m_SelectOnUp_1() const { return ___m_SelectOnUp_1; } inline Selectable_t3250028441 ** get_address_of_m_SelectOnUp_1() { return &___m_SelectOnUp_1; } inline void set_m_SelectOnUp_1(Selectable_t3250028441 * value) { ___m_SelectOnUp_1 = value; Il2CppCodeGenWriteBarrier((&___m_SelectOnUp_1), value); } inline static int32_t get_offset_of_m_SelectOnDown_2() { return static_cast<int32_t>(offsetof(Navigation_t3049316579, ___m_SelectOnDown_2)); } inline Selectable_t3250028441 * get_m_SelectOnDown_2() const { return ___m_SelectOnDown_2; } inline Selectable_t3250028441 ** get_address_of_m_SelectOnDown_2() { return &___m_SelectOnDown_2; } inline void set_m_SelectOnDown_2(Selectable_t3250028441 * value) { ___m_SelectOnDown_2 = value; Il2CppCodeGenWriteBarrier((&___m_SelectOnDown_2), value); } inline static int32_t get_offset_of_m_SelectOnLeft_3() { return static_cast<int32_t>(offsetof(Navigation_t3049316579, ___m_SelectOnLeft_3)); } inline Selectable_t3250028441 * get_m_SelectOnLeft_3() const { return ___m_SelectOnLeft_3; } inline Selectable_t3250028441 ** get_address_of_m_SelectOnLeft_3() { return &___m_SelectOnLeft_3; } inline void set_m_SelectOnLeft_3(Selectable_t3250028441 * value) { ___m_SelectOnLeft_3 = value; Il2CppCodeGenWriteBarrier((&___m_SelectOnLeft_3), value); } inline static int32_t get_offset_of_m_SelectOnRight_4() { return static_cast<int32_t>(offsetof(Navigation_t3049316579, ___m_SelectOnRight_4)); } inline Selectable_t3250028441 * get_m_SelectOnRight_4() const { return ___m_SelectOnRight_4; } inline Selectable_t3250028441 ** get_address_of_m_SelectOnRight_4() { return &___m_SelectOnRight_4; } inline void set_m_SelectOnRight_4(Selectable_t3250028441 * value) { ___m_SelectOnRight_4 = value; Il2CppCodeGenWriteBarrier((&___m_SelectOnRight_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.UI.Navigation struct Navigation_t3049316579_marshaled_pinvoke { int32_t ___m_Mode_0; Selectable_t3250028441 * ___m_SelectOnUp_1; Selectable_t3250028441 * ___m_SelectOnDown_2; Selectable_t3250028441 * ___m_SelectOnLeft_3; Selectable_t3250028441 * ___m_SelectOnRight_4; }; // Native definition for COM marshalling of UnityEngine.UI.Navigation struct Navigation_t3049316579_marshaled_com { int32_t ___m_Mode_0; Selectable_t3250028441 * ___m_SelectOnUp_1; Selectable_t3250028441 * ___m_SelectOnDown_2; Selectable_t3250028441 * ___m_SelectOnLeft_3; Selectable_t3250028441 * ___m_SelectOnRight_4; }; #endif // NAVIGATION_T3049316579_H #ifndef CAMERAFIELD_T1483002240_H #define CAMERAFIELD_T1483002240_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.CameraDevice/CameraField struct CameraField_t1483002240 { public: // Vuforia.CameraDevice/CameraField/DataType Vuforia.CameraDevice/CameraField::Type int32_t ___Type_0; // System.String Vuforia.CameraDevice/CameraField::Key String_t* ___Key_1; public: inline static int32_t get_offset_of_Type_0() { return static_cast<int32_t>(offsetof(CameraField_t1483002240, ___Type_0)); } inline int32_t get_Type_0() const { return ___Type_0; } inline int32_t* get_address_of_Type_0() { return &___Type_0; } inline void set_Type_0(int32_t value) { ___Type_0 = value; } inline static int32_t get_offset_of_Key_1() { return static_cast<int32_t>(offsetof(CameraField_t1483002240, ___Key_1)); } inline String_t* get_Key_1() const { return ___Key_1; } inline String_t** get_address_of_Key_1() { return &___Key_1; } inline void set_Key_1(String_t* value) { ___Key_1 = value; Il2CppCodeGenWriteBarrier((&___Key_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of Vuforia.CameraDevice/CameraField struct CameraField_t1483002240_marshaled_pinvoke { int32_t ___Type_0; char* ___Key_1; }; // Native definition for COM marshalling of Vuforia.CameraDevice/CameraField struct CameraField_t1483002240_marshaled_com { int32_t ___Type_0; Il2CppChar* ___Key_1; }; #endif // CAMERAFIELD_T1483002240_H #ifndef EYEWEARCALIBRATIONREADING_T664929988_H #define EYEWEARCALIBRATIONREADING_T664929988_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.EyewearDevice/EyewearCalibrationReading struct EyewearCalibrationReading_t664929988 { public: // System.Single[] Vuforia.EyewearDevice/EyewearCalibrationReading::pose SingleU5BU5D_t1444911251* ___pose_0; // System.Single Vuforia.EyewearDevice/EyewearCalibrationReading::scale float ___scale_1; // System.Single Vuforia.EyewearDevice/EyewearCalibrationReading::centerX float ___centerX_2; // System.Single Vuforia.EyewearDevice/EyewearCalibrationReading::centerY float ___centerY_3; // Vuforia.EyewearDevice/EyewearCalibrationReading/AlignmentType Vuforia.EyewearDevice/EyewearCalibrationReading::type int32_t ___type_4; public: inline static int32_t get_offset_of_pose_0() { return static_cast<int32_t>(offsetof(EyewearCalibrationReading_t664929988, ___pose_0)); } inline SingleU5BU5D_t1444911251* get_pose_0() const { return ___pose_0; } inline SingleU5BU5D_t1444911251** get_address_of_pose_0() { return &___pose_0; } inline void set_pose_0(SingleU5BU5D_t1444911251* value) { ___pose_0 = value; Il2CppCodeGenWriteBarrier((&___pose_0), value); } inline static int32_t get_offset_of_scale_1() { return static_cast<int32_t>(offsetof(EyewearCalibrationReading_t664929988, ___scale_1)); } inline float get_scale_1() const { return ___scale_1; } inline float* get_address_of_scale_1() { return &___scale_1; } inline void set_scale_1(float value) { ___scale_1 = value; } inline static int32_t get_offset_of_centerX_2() { return static_cast<int32_t>(offsetof(EyewearCalibrationReading_t664929988, ___centerX_2)); } inline float get_centerX_2() const { return ___centerX_2; } inline float* get_address_of_centerX_2() { return &___centerX_2; } inline void set_centerX_2(float value) { ___centerX_2 = value; } inline static int32_t get_offset_of_centerY_3() { return static_cast<int32_t>(offsetof(EyewearCalibrationReading_t664929988, ___centerY_3)); } inline float get_centerY_3() const { return ___centerY_3; } inline float* get_address_of_centerY_3() { return &___centerY_3; } inline void set_centerY_3(float value) { ___centerY_3 = value; } inline static int32_t get_offset_of_type_4() { return static_cast<int32_t>(offsetof(EyewearCalibrationReading_t664929988, ___type_4)); } inline int32_t get_type_4() const { return ___type_4; } inline int32_t* get_address_of_type_4() { return &___type_4; } inline void set_type_4(int32_t value) { ___type_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of Vuforia.EyewearDevice/EyewearCalibrationReading struct EyewearCalibrationReading_t664929988_marshaled_pinvoke { float* ___pose_0; float ___scale_1; float ___centerX_2; float ___centerY_3; int32_t ___type_4; }; // Native definition for COM marshalling of Vuforia.EyewearDevice/EyewearCalibrationReading struct EyewearCalibrationReading_t664929988_marshaled_com { float* ___pose_0; float ___scale_1; float ___centerX_2; float ___centerY_3; int32_t ___type_4; }; #endif // EYEWEARCALIBRATIONREADING_T664929988_H #ifndef TRACKABLERESULTDATA_T452703160_H #define TRACKABLERESULTDATA_T452703160_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.TrackerData/TrackableResultData #pragma pack(push, tp, 1) struct TrackableResultData_t452703160 { public: // Vuforia.TrackerData/PoseData Vuforia.TrackerData/TrackableResultData::pose PoseData_t3794839648 ___pose_0; // System.Double Vuforia.TrackerData/TrackableResultData::timeStamp double ___timeStamp_1; // System.Int32 Vuforia.TrackerData/TrackableResultData::statusInteger int32_t ___statusInteger_2; // System.Int32 Vuforia.TrackerData/TrackableResultData::id int32_t ___id_3; public: inline static int32_t get_offset_of_pose_0() { return static_cast<int32_t>(offsetof(TrackableResultData_t452703160, ___pose_0)); } inline PoseData_t3794839648 get_pose_0() const { return ___pose_0; } inline PoseData_t3794839648 * get_address_of_pose_0() { return &___pose_0; } inline void set_pose_0(PoseData_t3794839648 value) { ___pose_0 = value; } inline static int32_t get_offset_of_timeStamp_1() { return static_cast<int32_t>(offsetof(TrackableResultData_t452703160, ___timeStamp_1)); } inline double get_timeStamp_1() const { return ___timeStamp_1; } inline double* get_address_of_timeStamp_1() { return &___timeStamp_1; } inline void set_timeStamp_1(double value) { ___timeStamp_1 = value; } inline static int32_t get_offset_of_statusInteger_2() { return static_cast<int32_t>(offsetof(TrackableResultData_t452703160, ___statusInteger_2)); } inline int32_t get_statusInteger_2() const { return ___statusInteger_2; } inline int32_t* get_address_of_statusInteger_2() { return &___statusInteger_2; } inline void set_statusInteger_2(int32_t value) { ___statusInteger_2 = value; } inline static int32_t get_offset_of_id_3() { return static_cast<int32_t>(offsetof(TrackableResultData_t452703160, ___id_3)); } inline int32_t get_id_3() const { return ___id_3; } inline int32_t* get_address_of_id_3() { return &___id_3; } inline void set_id_3(int32_t value) { ___id_3 = value; } }; #pragma pack(pop, tp) #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TRACKABLERESULTDATA_T452703160_H #ifndef VUMARKTARGETDATA_T3266143771_H #define VUMARKTARGETDATA_T3266143771_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.TrackerData/VuMarkTargetData #pragma pack(push, tp, 1) struct VuMarkTargetData_t3266143771 { public: // Vuforia.TrackerData/InstanceIdData Vuforia.TrackerData/VuMarkTargetData::instanceId InstanceIdData_t3520832738 ___instanceId_0; // System.Int32 Vuforia.TrackerData/VuMarkTargetData::id int32_t ___id_1; // System.Int32 Vuforia.TrackerData/VuMarkTargetData::templateId int32_t ___templateId_2; // UnityEngine.Vector3 Vuforia.TrackerData/VuMarkTargetData::size Vector3_t3722313464 ___size_3; // System.Int32 Vuforia.TrackerData/VuMarkTargetData::unused int32_t ___unused_4; public: inline static int32_t get_offset_of_instanceId_0() { return static_cast<int32_t>(offsetof(VuMarkTargetData_t3266143771, ___instanceId_0)); } inline InstanceIdData_t3520832738 get_instanceId_0() const { return ___instanceId_0; } inline InstanceIdData_t3520832738 * get_address_of_instanceId_0() { return &___instanceId_0; } inline void set_instanceId_0(InstanceIdData_t3520832738 value) { ___instanceId_0 = value; } inline static int32_t get_offset_of_id_1() { return static_cast<int32_t>(offsetof(VuMarkTargetData_t3266143771, ___id_1)); } inline int32_t get_id_1() const { return ___id_1; } inline int32_t* get_address_of_id_1() { return &___id_1; } inline void set_id_1(int32_t value) { ___id_1 = value; } inline static int32_t get_offset_of_templateId_2() { return static_cast<int32_t>(offsetof(VuMarkTargetData_t3266143771, ___templateId_2)); } inline int32_t get_templateId_2() const { return ___templateId_2; } inline int32_t* get_address_of_templateId_2() { return &___templateId_2; } inline void set_templateId_2(int32_t value) { ___templateId_2 = value; } inline static int32_t get_offset_of_size_3() { return static_cast<int32_t>(offsetof(VuMarkTargetData_t3266143771, ___size_3)); } inline Vector3_t3722313464 get_size_3() const { return ___size_3; } inline Vector3_t3722313464 * get_address_of_size_3() { return &___size_3; } inline void set_size_3(Vector3_t3722313464 value) { ___size_3 = value; } inline static int32_t get_offset_of_unused_4() { return static_cast<int32_t>(offsetof(VuMarkTargetData_t3266143771, ___unused_4)); } inline int32_t get_unused_4() const { return ___unused_4; } inline int32_t* get_address_of_unused_4() { return &___unused_4; } inline void set_unused_4(int32_t value) { ___unused_4 = value; } }; #pragma pack(pop, tp) #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VUMARKTARGETDATA_T3266143771_H #ifndef VUMARKTARGETRESULTDATA_T2153299244_H #define VUMARKTARGETRESULTDATA_T2153299244_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.TrackerData/VuMarkTargetResultData #pragma pack(push, tp, 1) struct VuMarkTargetResultData_t2153299244 { public: // Vuforia.TrackerData/PoseData Vuforia.TrackerData/VuMarkTargetResultData::pose PoseData_t3794839648 ___pose_0; // System.Double Vuforia.TrackerData/VuMarkTargetResultData::timeStamp double ___timeStamp_1; // System.Int32 Vuforia.TrackerData/VuMarkTargetResultData::statusInteger int32_t ___statusInteger_2; // System.Int32 Vuforia.TrackerData/VuMarkTargetResultData::targetID int32_t ___targetID_3; // System.Int32 Vuforia.TrackerData/VuMarkTargetResultData::resultID int32_t ___resultID_4; // System.Int32 Vuforia.TrackerData/VuMarkTargetResultData::unused int32_t ___unused_5; public: inline static int32_t get_offset_of_pose_0() { return static_cast<int32_t>(offsetof(VuMarkTargetResultData_t2153299244, ___pose_0)); } inline PoseData_t3794839648 get_pose_0() const { return ___pose_0; } inline PoseData_t3794839648 * get_address_of_pose_0() { return &___pose_0; } inline void set_pose_0(PoseData_t3794839648 value) { ___pose_0 = value; } inline static int32_t get_offset_of_timeStamp_1() { return static_cast<int32_t>(offsetof(VuMarkTargetResultData_t2153299244, ___timeStamp_1)); } inline double get_timeStamp_1() const { return ___timeStamp_1; } inline double* get_address_of_timeStamp_1() { return &___timeStamp_1; } inline void set_timeStamp_1(double value) { ___timeStamp_1 = value; } inline static int32_t get_offset_of_statusInteger_2() { return static_cast<int32_t>(offsetof(VuMarkTargetResultData_t2153299244, ___statusInteger_2)); } inline int32_t get_statusInteger_2() const { return ___statusInteger_2; } inline int32_t* get_address_of_statusInteger_2() { return &___statusInteger_2; } inline void set_statusInteger_2(int32_t value) { ___statusInteger_2 = value; } inline static int32_t get_offset_of_targetID_3() { return static_cast<int32_t>(offsetof(VuMarkTargetResultData_t2153299244, ___targetID_3)); } inline int32_t get_targetID_3() const { return ___targetID_3; } inline int32_t* get_address_of_targetID_3() { return &___targetID_3; } inline void set_targetID_3(int32_t value) { ___targetID_3 = value; } inline static int32_t get_offset_of_resultID_4() { return static_cast<int32_t>(offsetof(VuMarkTargetResultData_t2153299244, ___resultID_4)); } inline int32_t get_resultID_4() const { return ___resultID_4; } inline int32_t* get_address_of_resultID_4() { return &___resultID_4; } inline void set_resultID_4(int32_t value) { ___resultID_4 = value; } inline static int32_t get_offset_of_unused_5() { return static_cast<int32_t>(offsetof(VuMarkTargetResultData_t2153299244, ___unused_5)); } inline int32_t get_unused_5() const { return ___unused_5; } inline int32_t* get_address_of_unused_5() { return &___unused_5; } inline void set_unused_5(int32_t value) { ___unused_5 = value; } }; #pragma pack(pop, tp) #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VUMARKTARGETRESULTDATA_T2153299244_H #ifndef VUFORIARUNTIMEUTILITIES_T399660591_H #define VUFORIARUNTIMEUTILITIES_T399660591_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.VuforiaRuntimeUtilities struct VuforiaRuntimeUtilities_t399660591 : public RuntimeObject { public: public: }; struct VuforiaRuntimeUtilities_t399660591_StaticFields { public: // Vuforia.VuforiaRuntimeUtilities/InitializableBool Vuforia.VuforiaRuntimeUtilities::sWebCamUsed int32_t ___sWebCamUsed_0; // Vuforia.VuforiaRuntimeUtilities/InitializableBool Vuforia.VuforiaRuntimeUtilities::sNativePluginSupport int32_t ___sNativePluginSupport_1; public: inline static int32_t get_offset_of_sWebCamUsed_0() { return static_cast<int32_t>(offsetof(VuforiaRuntimeUtilities_t399660591_StaticFields, ___sWebCamUsed_0)); } inline int32_t get_sWebCamUsed_0() const { return ___sWebCamUsed_0; } inline int32_t* get_address_of_sWebCamUsed_0() { return &___sWebCamUsed_0; } inline void set_sWebCamUsed_0(int32_t value) { ___sWebCamUsed_0 = value; } inline static int32_t get_offset_of_sNativePluginSupport_1() { return static_cast<int32_t>(offsetof(VuforiaRuntimeUtilities_t399660591_StaticFields, ___sNativePluginSupport_1)); } inline int32_t get_sNativePluginSupport_1() const { return ___sNativePluginSupport_1; } inline int32_t* get_address_of_sNativePluginSupport_1() { return &___sNativePluginSupport_1; } inline void set_sNativePluginSupport_1(int32_t value) { ___sNativePluginSupport_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VUFORIARUNTIMEUTILITIES_T399660591_H #ifndef CAMERASTATE_T1646041879_H #define CAMERASTATE_T1646041879_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Vuforia.VuforiaRuntimeUtilities/CameraState struct CameraState_t1646041879 { public: // System.Boolean Vuforia.VuforiaRuntimeUtilities/CameraState::<Initialized>k__BackingField bool ___U3CInitializedU3Ek__BackingField_0; // System.Boolean Vuforia.VuforiaRuntimeUtilities/CameraState::<Active>k__BackingField bool ___U3CActiveU3Ek__BackingField_1; // Vuforia.CameraDevice/CameraDirection Vuforia.VuforiaRuntimeUtilities/CameraState::<CameraDirection>k__BackingField int32_t ___U3CCameraDirectionU3Ek__BackingField_2; // Vuforia.CameraDevice/CameraDeviceMode Vuforia.VuforiaRuntimeUtilities/CameraState::<DeviceMode>k__BackingField int32_t ___U3CDeviceModeU3Ek__BackingField_3; public: inline static int32_t get_offset_of_U3CInitializedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(CameraState_t1646041879, ___U3CInitializedU3Ek__BackingField_0)); } inline bool get_U3CInitializedU3Ek__BackingField_0() const { return ___U3CInitializedU3Ek__BackingField_0; } inline bool* get_address_of_U3CInitializedU3Ek__BackingField_0() { return &___U3CInitializedU3Ek__BackingField_0; } inline void set_U3CInitializedU3Ek__BackingField_0(bool value) { ___U3CInitializedU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CActiveU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(CameraState_t1646041879, ___U3CActiveU3Ek__BackingField_1)); } inline bool get_U3CActiveU3Ek__BackingField_1() const { return ___U3CActiveU3Ek__BackingField_1; } inline bool* get_address_of_U3CActiveU3Ek__BackingField_1() { return &___U3CActiveU3Ek__BackingField_1; } inline void set_U3CActiveU3Ek__BackingField_1(bool value) { ___U3CActiveU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CCameraDirectionU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(CameraState_t1646041879, ___U3CCameraDirectionU3Ek__BackingField_2)); } inline int32_t get_U3CCameraDirectionU3Ek__BackingField_2() const { return ___U3CCameraDirectionU3Ek__BackingField_2; } inline int32_t* get_address_of_U3CCameraDirectionU3Ek__BackingField_2() { return &___U3CCameraDirectionU3Ek__BackingField_2; } inline void set_U3CCameraDirectionU3Ek__BackingField_2(int32_t value) { ___U3CCameraDirectionU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CDeviceModeU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(CameraState_t1646041879, ___U3CDeviceModeU3Ek__BackingField_3)); } inline int32_t get_U3CDeviceModeU3Ek__BackingField_3() const { return ___U3CDeviceModeU3Ek__BackingField_3; } inline int32_t* get_address_of_U3CDeviceModeU3Ek__BackingField_3() { return &___U3CDeviceModeU3Ek__BackingField_3; } inline void set_U3CDeviceModeU3Ek__BackingField_3(int32_t value) { ___U3CDeviceModeU3Ek__BackingField_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of Vuforia.VuforiaRuntimeUtilities/CameraState struct CameraState_t1646041879_marshaled_pinvoke { int32_t ___U3CInitializedU3Ek__BackingField_0; int32_t ___U3CActiveU3Ek__BackingField_1; int32_t ___U3CCameraDirectionU3Ek__BackingField_2; int32_t ___U3CDeviceModeU3Ek__BackingField_3; }; // Native definition for COM marshalling of Vuforia.VuforiaRuntimeUtilities/CameraState struct CameraState_t1646041879_marshaled_com { int32_t ___U3CInitializedU3Ek__BackingField_0; int32_t ___U3CActiveU3Ek__BackingField_1; int32_t ___U3CCameraDirectionU3Ek__BackingField_2; int32_t ___U3CDeviceModeU3Ek__BackingField_3; }; #endif // CAMERASTATE_T1646041879_H #ifndef ACTION_1_T3252573759_H #define ACTION_1_T3252573759_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Action`1<System.Object> struct Action_1_t3252573759 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ACTION_1_T3252573759_H #ifndef ENUMERATOR_T3814021779_H #define ENUMERATOR_T3814021779_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/TrackableResultData> struct Enumerator_t3814021779 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list List_1_t1924777902 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current TrackableResultData_t452703160 ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t3814021779, ___list_0)); } inline List_1_t1924777902 * get_list_0() const { return ___list_0; } inline List_1_t1924777902 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t1924777902 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3814021779, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t3814021779, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t3814021779, ___current_3)); } inline TrackableResultData_t452703160 get_current_3() const { return ___current_3; } inline TrackableResultData_t452703160 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(TrackableResultData_t452703160 value) { ___current_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T3814021779_H #ifndef FUNC_2_T3759279471_H #define FUNC_2_T3759279471_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Func`2<System.Object,System.Boolean> struct Func_2_t3759279471 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FUNC_2_T3759279471_H #ifndef FUNC_2_T2447130374_H #define FUNC_2_T2447130374_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Func`2<System.Object,System.Object> struct Func_2_t2447130374 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FUNC_2_T2447130374_H #ifndef FUNC_2_T3908638124_H #define FUNC_2_T3908638124_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Func`2<Vuforia.Tracker,System.Boolean> struct Func_2_t3908638124 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FUNC_2_T3908638124_H #ifndef FUNC_2_T894183899_H #define FUNC_2_T894183899_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Func`2<Vuforia.TrackerData/TrackableResultData,System.Boolean> struct Func_2_t894183899 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FUNC_2_T894183899_H #ifndef FUNC_3_T939916428_H #define FUNC_3_T939916428_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Func`3<System.Object,System.Int32,System.Object> struct Func_3_t939916428 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FUNC_3_T939916428_H #ifndef ITERATOR_1_T3702030793_H #define ITERATOR_1_T3702030793_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/Iterator`1<Vuforia.TrackerData/TrackableResultData> struct Iterator_1_t3702030793 : public RuntimeObject { public: // System.Int32 System.Linq.Enumerable/Iterator`1::_threadId int32_t ____threadId_0; // System.Int32 System.Linq.Enumerable/Iterator`1::_state int32_t ____state_1; // TSource System.Linq.Enumerable/Iterator`1::_current TrackableResultData_t452703160 ____current_2; public: inline static int32_t get_offset_of__threadId_0() { return static_cast<int32_t>(offsetof(Iterator_1_t3702030793, ____threadId_0)); } inline int32_t get__threadId_0() const { return ____threadId_0; } inline int32_t* get_address_of__threadId_0() { return &____threadId_0; } inline void set__threadId_0(int32_t value) { ____threadId_0 = value; } inline static int32_t get_offset_of__state_1() { return static_cast<int32_t>(offsetof(Iterator_1_t3702030793, ____state_1)); } inline int32_t get__state_1() const { return ____state_1; } inline int32_t* get_address_of__state_1() { return &____state_1; } inline void set__state_1(int32_t value) { ____state_1 = value; } inline static int32_t get_offset_of__current_2() { return static_cast<int32_t>(offsetof(Iterator_1_t3702030793, ____current_2)); } inline TrackableResultData_t452703160 get__current_2() const { return ____current_2; } inline TrackableResultData_t452703160 * get_address_of__current_2() { return &____current_2; } inline void set__current_2(TrackableResultData_t452703160 value) { ____current_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ITERATOR_1_T3702030793_H #ifndef PREDICATE_1_T3905400288_H #define PREDICATE_1_T3905400288_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Predicate`1<System.Object> struct Predicate_1_t3905400288 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PREDICATE_1_T3905400288_H #ifndef PREDICATE_1_T1277997284_H #define PREDICATE_1_T1277997284_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Predicate`1<Vuforia.TrackerData/TrackableResultData> struct Predicate_1_t1277997284 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PREDICATE_1_T1277997284_H #ifndef PREDICATE_1_T2978593368_H #define PREDICATE_1_T2978593368_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Predicate`1<Vuforia.TrackerData/VuMarkTargetResultData> struct Predicate_1_t2978593368 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PREDICATE_1_T2978593368_H #ifndef TYPEINFO_T1690786683_H #define TYPEINFO_T1690786683_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.TypeInfo struct TypeInfo_t1690786683 : public Type_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPEINFO_T1690786683_H #ifndef BEHAVIOUR_T1437897464_H #define BEHAVIOUR_T1437897464_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Behaviour struct Behaviour_t1437897464 : public Component_t1923634451 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BEHAVIOUR_T1437897464_H #ifndef EVENTFUNCTION_1_T1764640198_H #define EVENTFUNCTION_1_T1764640198_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<System.Object> struct EventFunction_1_t1764640198 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EVENTFUNCTION_1_T1764640198_H #ifndef STATEMACHINEBEHAVIOUR_T957311111_H #define STATEMACHINEBEHAVIOUR_T957311111_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.StateMachineBehaviour struct StateMachineBehaviour_t957311111 : public ScriptableObject_t2528358522 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STATEMACHINEBEHAVIOUR_T957311111_H #ifndef AUGMENTATIONSTATEMACHINEBEHAVIOUR_T3849818102_H #define AUGMENTATIONSTATEMACHINEBEHAVIOUR_T3849818102_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // AugmentationStateMachineBehaviour struct AugmentationStateMachineBehaviour_t3849818102 : public StateMachineBehaviour_t957311111 { public: // System.String AugmentationStateMachineBehaviour::m_OnEnterMethodName String_t* ___m_OnEnterMethodName_4; // System.String AugmentationStateMachineBehaviour::m_OnUpdateMethodName String_t* ___m_OnUpdateMethodName_5; // System.String AugmentationStateMachineBehaviour::m_OnExitMethodName String_t* ___m_OnExitMethodName_6; public: inline static int32_t get_offset_of_m_OnEnterMethodName_4() { return static_cast<int32_t>(offsetof(AugmentationStateMachineBehaviour_t3849818102, ___m_OnEnterMethodName_4)); } inline String_t* get_m_OnEnterMethodName_4() const { return ___m_OnEnterMethodName_4; } inline String_t** get_address_of_m_OnEnterMethodName_4() { return &___m_OnEnterMethodName_4; } inline void set_m_OnEnterMethodName_4(String_t* value) { ___m_OnEnterMethodName_4 = value; Il2CppCodeGenWriteBarrier((&___m_OnEnterMethodName_4), value); } inline static int32_t get_offset_of_m_OnUpdateMethodName_5() { return static_cast<int32_t>(offsetof(AugmentationStateMachineBehaviour_t3849818102, ___m_OnUpdateMethodName_5)); } inline String_t* get_m_OnUpdateMethodName_5() const { return ___m_OnUpdateMethodName_5; } inline String_t** get_address_of_m_OnUpdateMethodName_5() { return &___m_OnUpdateMethodName_5; } inline void set_m_OnUpdateMethodName_5(String_t* value) { ___m_OnUpdateMethodName_5 = value; Il2CppCodeGenWriteBarrier((&___m_OnUpdateMethodName_5), value); } inline static int32_t get_offset_of_m_OnExitMethodName_6() { return static_cast<int32_t>(offsetof(AugmentationStateMachineBehaviour_t3849818102, ___m_OnExitMethodName_6)); } inline String_t* get_m_OnExitMethodName_6() const { return ___m_OnExitMethodName_6; } inline String_t** get_address_of_m_OnExitMethodName_6() { return &___m_OnExitMethodName_6; } inline void set_m_OnExitMethodName_6(String_t* value) { ___m_OnExitMethodName_6 = value; Il2CppCodeGenWriteBarrier((&___m_OnExitMethodName_6), value); } }; struct AugmentationStateMachineBehaviour_t3849818102_StaticFields { public: // System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.Dictionary`2<System.String,System.Delegate>> AugmentationStateMachineBehaviour::cachedDelegates Dictionary_2_t3417996176 * ___cachedDelegates_7; public: inline static int32_t get_offset_of_cachedDelegates_7() { return static_cast<int32_t>(offsetof(AugmentationStateMachineBehaviour_t3849818102_StaticFields, ___cachedDelegates_7)); } inline Dictionary_2_t3417996176 * get_cachedDelegates_7() const { return ___cachedDelegates_7; } inline Dictionary_2_t3417996176 ** get_address_of_cachedDelegates_7() { return &___cachedDelegates_7; } inline void set_cachedDelegates_7(Dictionary_2_t3417996176 * value) { ___cachedDelegates_7 = value; Il2CppCodeGenWriteBarrier((&___cachedDelegates_7), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // AUGMENTATIONSTATEMACHINEBEHAVIOUR_T3849818102_H #ifndef WHEREARRAYITERATOR_1_T3559492873_H #define WHEREARRAYITERATOR_1_T3559492873_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/WhereArrayIterator`1<Vuforia.TrackerData/TrackableResultData> struct WhereArrayIterator_1_t3559492873 : public Iterator_1_t3702030793 { public: // TSource[] System.Linq.Enumerable/WhereArrayIterator`1::_source TrackableResultDataU5BU5D_t4273811049* ____source_3; // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereArrayIterator`1::_predicate Func_2_t894183899 * ____predicate_4; public: inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereArrayIterator_1_t3559492873, ____source_3)); } inline TrackableResultDataU5BU5D_t4273811049* get__source_3() const { return ____source_3; } inline TrackableResultDataU5BU5D_t4273811049** get_address_of__source_3() { return &____source_3; } inline void set__source_3(TrackableResultDataU5BU5D_t4273811049* value) { ____source_3 = value; Il2CppCodeGenWriteBarrier((&____source_3), value); } inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereArrayIterator_1_t3559492873, ____predicate_4)); } inline Func_2_t894183899 * get__predicate_4() const { return ____predicate_4; } inline Func_2_t894183899 ** get_address_of__predicate_4() { return &____predicate_4; } inline void set__predicate_4(Func_2_t894183899 * value) { ____predicate_4 = value; Il2CppCodeGenWriteBarrier((&____predicate_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WHEREARRAYITERATOR_1_T3559492873_H #ifndef WHEREENUMERABLEITERATOR_1_T3853204783_H #define WHEREENUMERABLEITERATOR_1_T3853204783_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/WhereEnumerableIterator`1<Vuforia.TrackerData/TrackableResultData> struct WhereEnumerableIterator_1_t3853204783 : public Iterator_1_t3702030793 { public: // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::_source RuntimeObject* ____source_3; // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereEnumerableIterator`1::_predicate Func_2_t894183899 * ____predicate_4; // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::_enumerator RuntimeObject* ____enumerator_5; public: inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t3853204783, ____source_3)); } inline RuntimeObject* get__source_3() const { return ____source_3; } inline RuntimeObject** get_address_of__source_3() { return &____source_3; } inline void set__source_3(RuntimeObject* value) { ____source_3 = value; Il2CppCodeGenWriteBarrier((&____source_3), value); } inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t3853204783, ____predicate_4)); } inline Func_2_t894183899 * get__predicate_4() const { return ____predicate_4; } inline Func_2_t894183899 ** get_address_of__predicate_4() { return &____predicate_4; } inline void set__predicate_4(Func_2_t894183899 * value) { ____predicate_4 = value; Il2CppCodeGenWriteBarrier((&____predicate_4), value); } inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(WhereEnumerableIterator_1_t3853204783, ____enumerator_5)); } inline RuntimeObject* get__enumerator_5() const { return ____enumerator_5; } inline RuntimeObject** get_address_of__enumerator_5() { return &____enumerator_5; } inline void set__enumerator_5(RuntimeObject* value) { ____enumerator_5 = value; Il2CppCodeGenWriteBarrier((&____enumerator_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WHEREENUMERABLEITERATOR_1_T3853204783_H #ifndef WHERELISTITERATOR_1_T2612379899_H #define WHERELISTITERATOR_1_T2612379899_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Linq.Enumerable/WhereListIterator`1<Vuforia.TrackerData/TrackableResultData> struct WhereListIterator_1_t2612379899 : public Iterator_1_t3702030793 { public: // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereListIterator`1::_source List_1_t1924777902 * ____source_3; // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereListIterator`1::_predicate Func_2_t894183899 * ____predicate_4; // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereListIterator`1::_enumerator Enumerator_t3814021779 ____enumerator_5; public: inline static int32_t get_offset_of__source_3() { return static_cast<int32_t>(offsetof(WhereListIterator_1_t2612379899, ____source_3)); } inline List_1_t1924777902 * get__source_3() const { return ____source_3; } inline List_1_t1924777902 ** get_address_of__source_3() { return &____source_3; } inline void set__source_3(List_1_t1924777902 * value) { ____source_3 = value; Il2CppCodeGenWriteBarrier((&____source_3), value); } inline static int32_t get_offset_of__predicate_4() { return static_cast<int32_t>(offsetof(WhereListIterator_1_t2612379899, ____predicate_4)); } inline Func_2_t894183899 * get__predicate_4() const { return ____predicate_4; } inline Func_2_t894183899 ** get_address_of__predicate_4() { return &____predicate_4; } inline void set__predicate_4(Func_2_t894183899 * value) { ____predicate_4 = value; Il2CppCodeGenWriteBarrier((&____predicate_4), value); } inline static int32_t get_offset_of__enumerator_5() { return static_cast<int32_t>(offsetof(WhereListIterator_1_t2612379899, ____enumerator_5)); } inline Enumerator_t3814021779 get__enumerator_5() const { return ____enumerator_5; } inline Enumerator_t3814021779 * get_address_of__enumerator_5() { return &____enumerator_5; } inline void set__enumerator_5(Enumerator_t3814021779 value) { ____enumerator_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WHERELISTITERATOR_1_T2612379899_H #ifndef RUNTIMETYPE_T3636489352_H #define RUNTIMETYPE_T3636489352_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.RuntimeType struct RuntimeType_t3636489352 : public TypeInfo_t1690786683 { public: // System.MonoTypeInfo System.RuntimeType::type_info MonoTypeInfo_t3366989025 * ___type_info_26; // System.Object System.RuntimeType::GenericCache RuntimeObject * ___GenericCache_27; // System.Reflection.RuntimeConstructorInfo System.RuntimeType::m_serializationCtor RuntimeConstructorInfo_t1806616898 * ___m_serializationCtor_28; public: inline static int32_t get_offset_of_type_info_26() { return static_cast<int32_t>(offsetof(RuntimeType_t3636489352, ___type_info_26)); } inline MonoTypeInfo_t3366989025 * get_type_info_26() const { return ___type_info_26; } inline MonoTypeInfo_t3366989025 ** get_address_of_type_info_26() { return &___type_info_26; } inline void set_type_info_26(MonoTypeInfo_t3366989025 * value) { ___type_info_26 = value; Il2CppCodeGenWriteBarrier((&___type_info_26), value); } inline static int32_t get_offset_of_GenericCache_27() { return static_cast<int32_t>(offsetof(RuntimeType_t3636489352, ___GenericCache_27)); } inline RuntimeObject * get_GenericCache_27() const { return ___GenericCache_27; } inline RuntimeObject ** get_address_of_GenericCache_27() { return &___GenericCache_27; } inline void set_GenericCache_27(RuntimeObject * value) { ___GenericCache_27 = value; Il2CppCodeGenWriteBarrier((&___GenericCache_27), value); } inline static int32_t get_offset_of_m_serializationCtor_28() { return static_cast<int32_t>(offsetof(RuntimeType_t3636489352, ___m_serializationCtor_28)); } inline RuntimeConstructorInfo_t1806616898 * get_m_serializationCtor_28() const { return ___m_serializationCtor_28; } inline RuntimeConstructorInfo_t1806616898 ** get_address_of_m_serializationCtor_28() { return &___m_serializationCtor_28; } inline void set_m_serializationCtor_28(RuntimeConstructorInfo_t1806616898 * value) { ___m_serializationCtor_28 = value; Il2CppCodeGenWriteBarrier((&___m_serializationCtor_28), value); } }; struct RuntimeType_t3636489352_StaticFields { public: // System.RuntimeType System.RuntimeType::ValueType RuntimeType_t3636489352 * ___ValueType_10; // System.RuntimeType System.RuntimeType::EnumType RuntimeType_t3636489352 * ___EnumType_11; // System.RuntimeType System.RuntimeType::ObjectType RuntimeType_t3636489352 * ___ObjectType_12; // System.RuntimeType System.RuntimeType::StringType RuntimeType_t3636489352 * ___StringType_13; // System.RuntimeType System.RuntimeType::DelegateType RuntimeType_t3636489352 * ___DelegateType_14; // System.Type[] System.RuntimeType::s_SICtorParamTypes TypeU5BU5D_t3940880105* ___s_SICtorParamTypes_15; // System.RuntimeType System.RuntimeType::s_typedRef RuntimeType_t3636489352 * ___s_typedRef_25; // System.Collections.Generic.Dictionary`2<System.Guid,System.Type> System.RuntimeType::clsid_types Dictionary_2_t1532962293 * ___clsid_types_29; // System.Reflection.Emit.AssemblyBuilder System.RuntimeType::clsid_assemblybuilder AssemblyBuilder_t359885250 * ___clsid_assemblybuilder_30; public: inline static int32_t get_offset_of_ValueType_10() { return static_cast<int32_t>(offsetof(RuntimeType_t3636489352_StaticFields, ___ValueType_10)); } inline RuntimeType_t3636489352 * get_ValueType_10() const { return ___ValueType_10; } inline RuntimeType_t3636489352 ** get_address_of_ValueType_10() { return &___ValueType_10; } inline void set_ValueType_10(RuntimeType_t3636489352 * value) { ___ValueType_10 = value; Il2CppCodeGenWriteBarrier((&___ValueType_10), value); } inline static int32_t get_offset_of_EnumType_11() { return static_cast<int32_t>(offsetof(RuntimeType_t3636489352_StaticFields, ___EnumType_11)); } inline RuntimeType_t3636489352 * get_EnumType_11() const { return ___EnumType_11; } inline RuntimeType_t3636489352 ** get_address_of_EnumType_11() { return &___EnumType_11; } inline void set_EnumType_11(RuntimeType_t3636489352 * value) { ___EnumType_11 = value; Il2CppCodeGenWriteBarrier((&___EnumType_11), value); } inline static int32_t get_offset_of_ObjectType_12() { return static_cast<int32_t>(offsetof(RuntimeType_t3636489352_StaticFields, ___ObjectType_12)); } inline RuntimeType_t3636489352 * get_ObjectType_12() const { return ___ObjectType_12; } inline RuntimeType_t3636489352 ** get_address_of_ObjectType_12() { return &___ObjectType_12; } inline void set_ObjectType_12(RuntimeType_t3636489352 * value) { ___ObjectType_12 = value; Il2CppCodeGenWriteBarrier((&___ObjectType_12), value); } inline static int32_t get_offset_of_StringType_13() { return static_cast<int32_t>(offsetof(RuntimeType_t3636489352_StaticFields, ___StringType_13)); } inline RuntimeType_t3636489352 * get_StringType_13() const { return ___StringType_13; } inline RuntimeType_t3636489352 ** get_address_of_StringType_13() { return &___StringType_13; } inline void set_StringType_13(RuntimeType_t3636489352 * value) { ___StringType_13 = value; Il2CppCodeGenWriteBarrier((&___StringType_13), value); } inline static int32_t get_offset_of_DelegateType_14() { return static_cast<int32_t>(offsetof(RuntimeType_t3636489352_StaticFields, ___DelegateType_14)); } inline RuntimeType_t3636489352 * get_DelegateType_14() const { return ___DelegateType_14; } inline RuntimeType_t3636489352 ** get_address_of_DelegateType_14() { return &___DelegateType_14; } inline void set_DelegateType_14(RuntimeType_t3636489352 * value) { ___DelegateType_14 = value; Il2CppCodeGenWriteBarrier((&___DelegateType_14), value); } inline static int32_t get_offset_of_s_SICtorParamTypes_15() { return static_cast<int32_t>(offsetof(RuntimeType_t3636489352_StaticFields, ___s_SICtorParamTypes_15)); } inline TypeU5BU5D_t3940880105* get_s_SICtorParamTypes_15() const { return ___s_SICtorParamTypes_15; } inline TypeU5BU5D_t3940880105** get_address_of_s_SICtorParamTypes_15() { return &___s_SICtorParamTypes_15; } inline void set_s_SICtorParamTypes_15(TypeU5BU5D_t3940880105* value) { ___s_SICtorParamTypes_15 = value; Il2CppCodeGenWriteBarrier((&___s_SICtorParamTypes_15), value); } inline static int32_t get_offset_of_s_typedRef_25() { return static_cast<int32_t>(offsetof(RuntimeType_t3636489352_StaticFields, ___s_typedRef_25)); } inline RuntimeType_t3636489352 * get_s_typedRef_25() const { return ___s_typedRef_25; } inline RuntimeType_t3636489352 ** get_address_of_s_typedRef_25() { return &___s_typedRef_25; } inline void set_s_typedRef_25(RuntimeType_t3636489352 * value) { ___s_typedRef_25 = value; Il2CppCodeGenWriteBarrier((&___s_typedRef_25), value); } inline static int32_t get_offset_of_clsid_types_29() { return static_cast<int32_t>(offsetof(RuntimeType_t3636489352_StaticFields, ___clsid_types_29)); } inline Dictionary_2_t1532962293 * get_clsid_types_29() const { return ___clsid_types_29; } inline Dictionary_2_t1532962293 ** get_address_of_clsid_types_29() { return &___clsid_types_29; } inline void set_clsid_types_29(Dictionary_2_t1532962293 * value) { ___clsid_types_29 = value; Il2CppCodeGenWriteBarrier((&___clsid_types_29), value); } inline static int32_t get_offset_of_clsid_assemblybuilder_30() { return static_cast<int32_t>(offsetof(RuntimeType_t3636489352_StaticFields, ___clsid_assemblybuilder_30)); } inline AssemblyBuilder_t359885250 * get_clsid_assemblybuilder_30() const { return ___clsid_assemblybuilder_30; } inline AssemblyBuilder_t359885250 ** get_address_of_clsid_assemblybuilder_30() { return &___clsid_assemblybuilder_30; } inline void set_clsid_assemblybuilder_30(AssemblyBuilder_t359885250 * value) { ___clsid_assemblybuilder_30 = value; Il2CppCodeGenWriteBarrier((&___clsid_assemblybuilder_30), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMETYPE_T3636489352_H // System.Type[] struct TypeU5BU5D_t3940880105 : public RuntimeArray { public: ALIGN_FIELD (8) Type_t * m_Items[1]; public: inline Type_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Type_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, Type_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Object[] struct ObjectU5BU5D_t2843939325 : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: 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(m_Items + index, 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(m_Items + index, value); } }; // Vuforia.TrackerData/TrackableResultData[] struct TrackableResultDataU5BU5D_t4273811049 : public RuntimeArray { public: ALIGN_FIELD (8) TrackableResultData_t452703160 m_Items[1]; public: inline TrackableResultData_t452703160 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline TrackableResultData_t452703160 * 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, TrackableResultData_t452703160 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline TrackableResultData_t452703160 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline TrackableResultData_t452703160 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, TrackableResultData_t452703160 value) { m_Items[index] = value; } }; // Vuforia.TrackerData/VuMarkTargetResultData[] struct VuMarkTargetResultDataU5BU5D_t2157423781 : public RuntimeArray { public: ALIGN_FIELD (8) VuMarkTargetResultData_t2153299244 m_Items[1]; public: inline VuMarkTargetResultData_t2153299244 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline VuMarkTargetResultData_t2153299244 * 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, VuMarkTargetResultData_t2153299244 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline VuMarkTargetResultData_t2153299244 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline VuMarkTargetResultData_t2153299244 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, VuMarkTargetResultData_t2153299244 value) { m_Items[index] = value; } }; // Vuforia.VuforiaManager/TrackableIdPair[] struct TrackableIdPairU5BU5D_t475764036 : public RuntimeArray { public: ALIGN_FIELD (8) TrackableIdPair_t4227350457 m_Items[1]; public: inline TrackableIdPair_t4227350457 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline TrackableIdPair_t4227350457 * 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, TrackableIdPair_t4227350457 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline TrackableIdPair_t4227350457 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline TrackableIdPair_t4227350457 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, TrackableIdPair_t4227350457 value) { m_Items[index] = value; } }; // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(!0,!1&) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m1996088172_gshared (Dictionary_2_t132545152 * __this, RuntimeObject * p0, RuntimeObject ** p1, const RuntimeMethod* method); // T UnityEngine.UI.ObjectPool`1<System.Object>::Get() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * ObjectPool_1_Get_m3351668383_gshared (ObjectPool_1_t2779729376 * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m2934127733_gshared (List_1_t257213610 * __this, const RuntimeMethod* method); // System.Void UnityEngine.UI.ObjectPool`1<System.Object>::Release(T) extern "C" IL2CPP_METHOD_ATTR void ObjectPool_1_Release_m3263354170_gshared (ObjectPool_1_t2779729376 * __this, RuntimeObject * p0, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_m1328026504_gshared (List_1_t257213610 * __this, int32_t p0, const RuntimeMethod* method); // System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<System.Object>() extern "C" IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisRuntimeObject_m503495943_gshared (PlayableHandle_t1095853803 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Animations.AnimationLayerMixerPlayable>() extern "C" IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_t3631223897_m201603007_gshared (PlayableHandle_t1095853803 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Animations.AnimationOffsetPlayable>() extern "C" IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t2887420414_m2033286094_gshared (PlayableHandle_t1095853803 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Animations.AnimatorControllerPlayable>() extern "C" IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_t1015767841_m3416945299_gshared (PlayableHandle_t1095853803 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Experimental.Animations.AnimationScriptPlayable>() extern "C" IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1303525964_m1992139667_gshared (PlayableHandle_t1095853803 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::ContainsKey(!0) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m3993293265_gshared (Dictionary_2_t132545152 * __this, RuntimeObject * p0, const RuntimeMethod* method); // !1 System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Item(!0) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_get_Item_m4278578609_gshared (Dictionary_2_t132545152 * __this, RuntimeObject * p0, const RuntimeMethod* method); // !1 System.Func`2<System.Object,System.Boolean>::Invoke(!0) extern "C" IL2CPP_METHOD_ATTR bool Func_2_Invoke_m2315818287_gshared (Func_2_t3759279471 * __this, RuntimeObject * p0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(!0,!1) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m258553009_gshared (Dictionary_2_t132545152 * __this, RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1345879190_gshared (InternalEnumerator_1_t3115136993 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m4111150908_gshared (InternalEnumerator_1_t110285839 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.XPath.Operator/Op>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m737724857_gshared (InternalEnumerator_1_t2953869286 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<Mono.AppleTls.SslCipherSuite>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m860659905_gshared (InternalEnumerator_1_t4216186165 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<Mono.AppleTls.SslStatus>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1834758219_gshared (InternalEnumerator_1_t1099045673 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1359891754_gshared (InternalEnumerator_1_t4239932009 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<Mono.Security.Interface.CipherSuiteCode>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1695060055_gshared (InternalEnumerator_1_t1639626328 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<Mono.Unity.UnityTls/unitytls_ciphersuite>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m258030645_gshared (InternalEnumerator_1_t2642223512 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.AppContext/SwitchValueState>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3114817124_gshared (InternalEnumerator_1_t3712315584 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2515715560_gshared (InternalEnumerator_1_t1190625104 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Boolean>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3349908318_gshared (InternalEnumerator_1_t1004352082 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Byte>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m4191108945_gshared (InternalEnumerator_1_t2041360493 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Char>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2123683127_gshared (InternalEnumerator_1_t246557291 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2336656763_gshared (InternalEnumerator_1_t4031039755 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m554219161_gshared (InternalEnumerator_1_t2996861637 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1011028117_gshared (InternalEnumerator_1_t356085006 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1624193764_gshared (InternalEnumerator_1_t1507929901 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m247270570_gshared (InternalEnumerator_1_t750135110 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m4214678392_gshared (InternalEnumerator_1_t66620393 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1594165202_gshared (InternalEnumerator_1_t852241944 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3936567915_gshared (InternalEnumerator_1_t195780804 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackableBehaviour/Status>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3292642848_gshared (InternalEnumerator_1_t2511547750 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2390650517_gshared (InternalEnumerator_1_t2528595684 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3309996134_gshared (InternalEnumerator_1_t2369707257 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.AppContext/SwitchValueState>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1003995366_gshared (InternalEnumerator_1_t2379619060 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1729089091_gshared (InternalEnumerator_1_t3966622854 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m877399094_gshared (InternalEnumerator_1_t2525313346 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2225016941_gshared (InternalEnumerator_1_t2654473757 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3909148696_gshared (InternalEnumerator_1_t3298338400 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1041990362_gshared (InternalEnumerator_1_t1752092551 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3410556405_gshared (InternalEnumerator_1_t3093759518 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,System.Single>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m4125539473_gshared (InternalEnumerator_1_t2839503183 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2663023359_gshared (InternalEnumerator_1_t3260138252 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3285751441_gshared (InternalEnumerator_1_t3598465932 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Vuforia.Image/PIXEL_FORMAT,System.Object>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2093240344_gshared (InternalEnumerator_1_t4192632058 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Vuforia.Image/PIXEL_FORMAT,UnityEngine.TextureFormat>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1621788712_gshared (InternalEnumerator_1_t3813691726 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3340905810_gshared (InternalEnumerator_1_t529033167 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3826473210_gshared (InternalEnumerator_1_t658193578 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3171058229_gshared (InternalEnumerator_1_t3779669316 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m382441503_gshared (InternalEnumerator_1_t1777994403 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1693103366_gshared (InternalEnumerator_1_t1138892685 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1080040510_gshared (InternalEnumerator_1_t2290737580 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m4227797183_gshared (InternalEnumerator_1_t1532942789 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1681558503_gshared (InternalEnumerator_1_t849428072 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2986132672_gshared (InternalEnumerator_1_t1635049623 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1424655733_gshared (InternalEnumerator_1_t978588483 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackableBehaviour/Status>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2668192572_gshared (InternalEnumerator_1_t3294355429 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2155755306_gshared (InternalEnumerator_1_t3311403363 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1053022008_gshared (InternalEnumerator_1_t3152514936 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3127643965_gshared (InternalEnumerator_1_t3162426739 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m962177456_gshared (InternalEnumerator_1_t454463237 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1341209356_gshared (InternalEnumerator_1_t3308121025 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m807987550_gshared (InternalEnumerator_1_t3437281436 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m95472740_gshared (InternalEnumerator_1_t4081146079 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3522854155_gshared (InternalEnumerator_1_t2534900230 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2543351022_gshared (InternalEnumerator_1_t3876567197 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,System.Single>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2291589723_gshared (InternalEnumerator_1_t3622310862 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3169694604_gshared (InternalEnumerator_1_t4042945931 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2451497418_gshared (InternalEnumerator_1_t86306315 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Vuforia.Image/PIXEL_FORMAT,System.Object>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m374191417_gshared (InternalEnumerator_1_t680472441 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Vuforia.Image/PIXEL_FORMAT,UnityEngine.TextureFormat>>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m188060951_gshared (InternalEnumerator_1_t301532109 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/bucket>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m580087975_gshared (InternalEnumerator_1_t1665195821 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.ComponentModel.AttributeCollection/AttributeEntry>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3061446214_gshared (InternalEnumerator_1_t1908074980 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.DateTime>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3456047704_gshared (InternalEnumerator_1_t350626606 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.DateTimeOffset>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3103748941_gshared (InternalEnumerator_1_t4136351624 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.DateTimeParse/DS>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m4250517683_gshared (InternalEnumerator_1_t3139334487 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Decimal>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m143506773_gshared (InternalEnumerator_1_t3855323497 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Double>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1559487635_gshared (InternalEnumerator_1_t1501729480 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Globalization.HebrewNumber/HS>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2396702853_gshared (InternalEnumerator_1_t4246837133 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2606318300_gshared (InternalEnumerator_1_t3482597050 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m821637872_gshared (InternalEnumerator_1_t4065923934 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Globalization.TimeSpanParse/TimeSpanToken>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m948006718_gshared (InternalEnumerator_1_t1900411491 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Guid>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1826814198_gshared (InternalEnumerator_1_t4100597004 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Int16>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2910272776_gshared (InternalEnumerator_1_t3459884504 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Int32>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m217498388_gshared (InternalEnumerator_1_t3858009870 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Int64>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m4055378331_gshared (InternalEnumerator_1_t348664125 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.IntPtr>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1579105305_gshared (InternalEnumerator_1_t1747214298 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Net.CookieTokenizer/RecognizedAttribute>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3901777251_gshared (InternalEnumerator_1_t1539138337 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Net.HeaderVariantInfo>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m413243216_gshared (InternalEnumerator_1_t2842749718 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2668617424_gshared (InternalEnumerator_1_t75623149 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Net.Sockets.Socket/WSABUF>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m330826784_gshared (InternalEnumerator_1_t2905123507 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Net.WebHeaderCollection/RfcChar>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m4165841802_gshared (InternalEnumerator_1_t3812474047 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Object>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1675719794_gshared (InternalEnumerator_1_t3987170281 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.ParameterizedStrings/FormatParam>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3847166976_gshared (InternalEnumerator_1_t806570903 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m643493702_gshared (InternalEnumerator_1_t1194929827 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m748741755_gshared (InternalEnumerator_1_t3630214274 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILExceptionBlock>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1771674970_gshared (InternalEnumerator_1_t573971787 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILExceptionInfo>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m167120088_gshared (InternalEnumerator_1_t1144920127 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1486034688_gshared (InternalEnumerator_1_t1267231508 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1594304290_gshared (InternalEnumerator_1_t1765566171 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m238559784_gshared (InternalEnumerator_1_t3232839231 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.Label>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m924504374_gshared (InternalEnumerator_1_t3188725760 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3457010038_gshared (InternalEnumerator_1_t715526830 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoWin32Resource>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3734157836_gshared (InternalEnumerator_1_t2811293600 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m236665673_gshared (InternalEnumerator_1_t1391455104 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m39232262_gshared (InternalEnumerator_1_t2368758583 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceLocator>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m4003715152_gshared (InternalEnumerator_1_t336067628 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3525431854_gshared (InternalEnumerator_1_t2509660479 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Runtime.InteropServices.GCHandle>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m953151915_gshared (InternalEnumerator_1_t4258502304 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.BinaryTypeEnum>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1949410609_gshared (InternalEnumerator_1_t97533275 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.InternalPrimitiveTypeE>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3752414237_gshared (InternalEnumerator_1_t705145798 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.SByte>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3460713284_gshared (InternalEnumerator_1_t2576641779 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3443175323_gshared (InternalEnumerator_1_t1040666831 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Single>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m31115849_gshared (InternalEnumerator_1_t2304330891 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.TermInfoStrings>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m936171655_gshared (InternalEnumerator_1_t1197344072 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3640480671_gshared (InternalEnumerator_1_t3817381692 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexOptions>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m968957904_gshared (InternalEnumerator_1_t999909712 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Threading.CancellationTokenRegistration>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1225621821_gshared (InternalEnumerator_1_t3720489021 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3261326277_gshared (InternalEnumerator_1_t1788223366 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.TypeCode>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2214530566_gshared (InternalEnumerator_1_t3894288204 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.UInt16>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2202456613_gshared (InternalEnumerator_1_t3084789075 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.UInt32>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3383770493_gshared (InternalEnumerator_1_t3467126095 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.UInt64>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3215746182_gshared (InternalEnumerator_1_t746136913 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m4104359421_gshared (InternalEnumerator_1_t2238108544 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Xml.Schema.RangePositionInfo>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1220131376_gshared (InternalEnumerator_1_t1497033053 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2763230467_gshared (InternalEnumerator_1_t2961444816 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m891751904_gshared (InternalEnumerator_1_t4251741088 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Xml.Schema.XmlTypeCode>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m121620218_gshared (InternalEnumerator_1_t3530687067 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Xml.Schema.XsdBuilder/State>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1861296067_gshared (InternalEnumerator_1_t2797522318 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Xml.XPath.XPathResultType>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1017226609_gshared (InternalEnumerator_1_t3736052605 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Xml.XmlNamespaceManager/NamespaceDeclaration>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2138776749_gshared (InternalEnumerator_1_t774706396 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Xml.XmlNodeReaderNavigator/VirtualAttribute>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m97540807_gshared (InternalEnumerator_1_t190180728 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Xml.XmlTextReaderImpl/ParsingState>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m273519326_gshared (InternalEnumerator_1_t2687399039 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Xml.XmlTextWriter/Namespace>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3404283450_gshared (InternalEnumerator_1_t3125320633 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Xml.XmlTextWriter/State>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3067359271_gshared (InternalEnumerator_1_t2699603464 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<System.Xml.XmlTextWriter/TagInfo>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m954304341_gshared (InternalEnumerator_1_t138735238 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<TMPro.MaterialReference>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3114520374_gshared (InternalEnumerator_1_t2859408749 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1968218264_gshared (InternalEnumerator_1_t3955461704 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<TMPro.TMP_CharacterInfo>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3007480483_gshared (InternalEnumerator_1_t4092690914 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<TMPro.TMP_FontWeights>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3404789360_gshared (InternalEnumerator_1_t1823365184 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<TMPro.TMP_InputField/ContentType>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m324037018_gshared (InternalEnumerator_1_t2036005402 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<TMPro.TMP_LineInfo>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1729380395_gshared (InternalEnumerator_1_t1986695753 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<TMPro.TMP_LinkInfo>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m826178271_gshared (InternalEnumerator_1_t1999147593 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<TMPro.TMP_MeshInfo>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3918870210_gshared (InternalEnumerator_1_t3678811751 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<TMPro.TMP_PageInfo>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m4074665063_gshared (InternalEnumerator_1_t3515494750 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<TMPro.TMP_WordInfo>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1515092833_gshared (InternalEnumerator_1_t4238130420 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<TMPro.TextAlignmentOptions>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m837629165_gshared (InternalEnumerator_1_t648888057 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<TMPro.XML_TagAttribute>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2041726643_gshared (InternalEnumerator_1_t2081488426 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2616789963_gshared (InternalEnumerator_1_t2493041948 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Camera/StereoscopicEye>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m460549984_gshared (InternalEnumerator_1_t3145728153 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color32>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m539509188_gshared (InternalEnumerator_1_t3507565409 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2503697330_gshared (InternalEnumerator_1_t3462750441 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1352157576_gshared (InternalEnumerator_1_t370852074 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2311732727_gshared (InternalEnumerator_1_t4267370966 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m43405049_gshared (InternalEnumerator_1_t1012836222 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1744883412_gshared (InternalEnumerator_1_t818507063 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Matrix4x4>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2053256681_gshared (InternalEnumerator_1_t2724965960 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Plane>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1207351728_gshared (InternalEnumerator_1_t1907557438 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m4124630986_gshared (InternalEnumerator_1_t1261324826 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2635640285_gshared (InternalEnumerator_1_t3186646106 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m615777089_gshared (InternalEnumerator_1_t1963066083 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3913006324_gshared (InternalEnumerator_1_t4136673857 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3535695642_gshared (InternalEnumerator_1_t1582286363 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m258868363_gshared (InternalEnumerator_1_t3032373948 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.TextureFormat>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m477874849_gshared (InternalEnumerator_1_t3608229949 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.Touch>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m63033851_gshared (InternalEnumerator_1_t2828920985 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.TouchScreenKeyboardType>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m52250161_gshared (InternalEnumerator_1_t2437661819 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.AspectRatioFitter/AspectMode>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m996383508_gshared (InternalEnumerator_1_t29289820 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.ColorBlock>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3137754353_gshared (InternalEnumerator_1_t3046095691 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.ContentSizeFitter/FitMode>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3367481798_gshared (InternalEnumerator_1_t4174945331 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.Image/FillMethod>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3618853567_gshared (InternalEnumerator_1_t2074521687 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.Image/Type>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2011873122_gshared (InternalEnumerator_1_t2059945645 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/CharacterValidation>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m4070871439_gshared (InternalEnumerator_1_t664011258 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1739091604_gshared (InternalEnumerator_1_t2694367513 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/InputType>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2411182570_gshared (InternalEnumerator_1_t2677464796 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/LineType>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1942763320_gshared (InternalEnumerator_1_t826745290 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.Navigation>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3899380602_gshared (InternalEnumerator_1_t3956380696 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.Scrollbar/Direction>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m1938896550_gshared (InternalEnumerator_1_t82811174 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.Selectable/Transition>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m2542707126_gshared (InternalEnumerator_1_t2676972748 * __this, RuntimeArray * p0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.Slider/Direction>::.ctor(System.Array) extern "C" IL2CPP_METHOD_ATTR void InternalEnumerator_1__ctor_m3730855632_gshared (InternalEnumerator_1_t1244973352 * __this, RuntimeArray * p0, const RuntimeMethod* method); // Lean.Transition.LeanState Lean.Transition.LeanTransition::get_CurrentHead() extern "C" IL2CPP_METHOD_ATTR LeanState_t463268132 * LeanTransition_get_CurrentHead_m4219650383 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method); // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) extern "C" IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m1620074514 (RuntimeObject * __this /* static, unused */, RuntimeTypeHandle_t3027515415 p0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.Dictionary`2<System.String,System.Delegate>>::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_m497768301 (Dictionary_2_t3417996176 * __this, Type_t * p0, Dictionary_2_t973649112 ** p1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t3417996176 *, Type_t *, Dictionary_2_t973649112 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m1996088172_gshared)(__this, p0, p1, method); } // System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Delegate>::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_m3181164325 (Dictionary_2_t973649112 * __this, String_t* p0, Delegate_t1188392813 ** p1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t973649112 *, String_t*, Delegate_t1188392813 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m1996088172_gshared)(__this, p0, p1, method); } // System.Reflection.MethodInfo UnityEngine.Events.UnityEventBase::GetValidMethodInfo(System.Object,System.String,System.Type[]) extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * UnityEventBase_GetValidMethodInfo_m3989987635 (RuntimeObject * __this /* static, unused */, RuntimeObject * p0, String_t* p1, TypeU5BU5D_t3940880105* p2, const RuntimeMethod* method); // System.Boolean System.Reflection.MethodInfo::op_Equality(System.Reflection.MethodInfo,System.Reflection.MethodInfo) extern "C" IL2CPP_METHOD_ATTR bool MethodInfo_op_Equality_m1241144064 (RuntimeObject * __this /* static, unused */, MethodInfo_t * p0, MethodInfo_t * p1, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String,System.String) extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_m2163913788 (RuntimeObject * __this /* static, unused */, String_t* p0, String_t* p1, String_t* p2, String_t* p3, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogWarning(System.Object) extern "C" IL2CPP_METHOD_ATTR void Debug_LogWarning_m3752629331 (RuntimeObject * __this /* static, unused */, RuntimeObject * p0, const RuntimeMethod* method); // System.Delegate System.Delegate::CreateDelegate(System.Type,System.Reflection.MethodInfo,System.Boolean) extern "C" IL2CPP_METHOD_ATTR Delegate_t1188392813 * Delegate_CreateDelegate_m1051651521 (RuntimeObject * __this /* static, unused */, Type_t * p0, MethodInfo_t * p1, bool p2, const RuntimeMethod* method); // System.Boolean System.Type::op_Inequality(System.Type,System.Type) extern "C" IL2CPP_METHOD_ATTR bool Type_op_Inequality_m2948304386 (RuntimeObject * __this /* static, unused */, Type_t * p0, Type_t * p1, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String) extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_m3755062657 (RuntimeObject * __this /* static, unused */, String_t* p0, String_t* p1, String_t* p2, const RuntimeMethod* method); // System.Int32 System.Array::get_Rank() extern "C" IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m3448755881 (RuntimeArray * __this, const RuntimeMethod* method); // System.String Locale::GetText(System.String) extern "C" IL2CPP_METHOD_ATTR String_t* Locale_GetText_m3374010885 (RuntimeObject * __this /* static, unused */, String_t* ___msg0, const RuntimeMethod* method); // System.Void System.RankException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void RankException__ctor_m2226473861 (RankException_t3812021567 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Int32 System.Array::get_Length() extern "C" IL2CPP_METHOD_ATTR int32_t Array_get_Length_m21610649 (RuntimeArray * __this, const RuntimeMethod* method); // System.Boolean System.Boolean::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Boolean_Equals_m2410333903 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Byte::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Byte_Equals_m1161982810 (uint8_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Char::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Char_Equals_m1279957088 (Il2CppChar* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.DateTime::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool DateTime_Equals_m611432332 (DateTime_t3738529785 * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Boolean System.DateTimeOffset::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool DateTimeOffset_Equals_m3030958070 (DateTimeOffset_t3229287507 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Decimal::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Decimal_Equals_m2592017260 (Decimal_t2948259380 * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Boolean System.Double::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Double_Equals_m1674752021 (double* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Guid::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Guid_Equals_m1866984197 (Guid_t * __this, RuntimeObject * ___o0, const RuntimeMethod* method); // System.Boolean System.Int16::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Int16_Equals_m82811458 (int16_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Int32::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Int32_Equals_m3996243976 (int32_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Int64::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Int64_Equals_m858582563 (int64_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.IntPtr::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool IntPtr_Equals_m3408989655 (intptr_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Reflection.CustomAttributeNamedArgument::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool CustomAttributeNamedArgument_Equals_m1414002036 (CustomAttributeNamedArgument_t287865710 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Reflection.CustomAttributeTypedArgument::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool CustomAttributeTypedArgument_Equals_m2261980307 (CustomAttributeTypedArgument_t2723150157 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Reflection.Emit.Label::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Label_Equals_m1321622490 (Label_t2281661643 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Runtime.InteropServices.GCHandle::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool GCHandle_Equals_m146069735 (GCHandle_t3351438187 * __this, RuntimeObject * ___o0, const RuntimeMethod* method); // System.Boolean System.SByte::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool SByte_Equals_m865896384 (int8_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Single::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Single_Equals_m438106747 (float* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Threading.CancellationTokenRegistration::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool CancellationTokenRegistration_Equals_m4118870220 (CancellationTokenRegistration_t2813424904 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.TimeSpan::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool TimeSpan_Equals_m45505612 (TimeSpan_t881159249 * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Boolean System.UInt16::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool UInt16_Equals_m642257745 (uint16_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.UInt32::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool UInt32_Equals_m351935437 (uint32_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.UInt64::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool UInt64_Equals_m1879425698 (uint64_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean UnityEngine.Color::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Color_Equals_m3887740140 (Color_t2555686324 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Boolean UnityEngine.Matrix4x4::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Matrix4x4_Equals_m3210071278 (Matrix4x4_t1817901843 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Boolean UnityEngine.UI.ColorBlock::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool ColorBlock_Equals_m518833916 (ColorBlock_t2139031574 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean UnityEngine.Vector2::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Vector2_Equals_m832062989 (Vector2_t2156229523 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Boolean UnityEngine.Vector3::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Vector3_Equals_m1753054704 (Vector3_t3722313464 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Boolean UnityEngine.Vector4::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Vector4_Equals_m1779210055 (Vector4_t3319028937 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Void System.NotSupportedException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m2494070935 (NotSupportedException_t1314879016 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m1170824041 (ArgumentNullException_t1615371798 * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Exception System.Linq.Error::ArgumentNull(System.String) extern "C" IL2CPP_METHOD_ATTR Exception_t * Error_ArgumentNull_m219206370 (RuntimeObject * __this /* static, unused */, String_t* ___s0, const RuntimeMethod* method); // System.Boolean System.Type::get_IsValueType() extern "C" IL2CPP_METHOD_ATTR bool Type_get_IsValueType_m3108065642 (Type_t * __this, const RuntimeMethod* method); // System.Boolean System.RuntimeTypeHandle::HasReferences(System.RuntimeType) extern "C" IL2CPP_METHOD_ATTR bool RuntimeTypeHandle_HasReferences_m1571037966 (RuntimeObject * __this /* static, unused */, RuntimeType_t3636489352 * ___type0, const RuntimeMethod* method); // T UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>::Get() inline List_1_t531791296 * ObjectPool_1_Get_m3850192859 (ObjectPool_1_t231414508 * __this, const RuntimeMethod* method) { return (( List_1_t531791296 * (*) (ObjectPool_1_t231414508 *, const RuntimeMethod*))ObjectPool_1_Get_m3351668383_gshared)(__this, method); } // System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>::get_Count() inline int32_t List_1_get_Count_m147600133 (List_1_t531791296 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t531791296 *, const RuntimeMethod*))List_1_get_Count_m2934127733_gshared)(__this, method); } // System.Void UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>::Release(T) inline void ObjectPool_1_Release_m2466618443 (ObjectPool_1_t231414508 * __this, List_1_t531791296 * p0, const RuntimeMethod* method) { (( void (*) (ObjectPool_1_t231414508 *, List_1_t531791296 *, const RuntimeMethod*))ObjectPool_1_Release_m3263354170_gshared)(__this, p0, method); } // !0 System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>::get_Item(System.Int32) inline RuntimeObject* List_1_get_Item_m2864693351 (List_1_t531791296 * __this, int32_t p0, const RuntimeMethod* method) { return (( RuntimeObject* (*) (List_1_t531791296 *, int32_t, const RuntimeMethod*))List_1_get_Item_m1328026504_gshared)(__this, p0, method); } // System.Type System.Object::GetType() extern "C" IL2CPP_METHOD_ATTR Type_t * Object_GetType_m88164663 (RuntimeObject * __this, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR String_t* String_Format_m2556382932 (RuntimeObject * __this /* static, unused */, String_t* p0, RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); // System.Void System.Exception::.ctor(System.String,System.Exception) extern "C" IL2CPP_METHOD_ATTR void Exception__ctor_m1406832249 (Exception_t * __this, String_t* p0, Exception_t * p1, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogException(System.Exception) extern "C" IL2CPP_METHOD_ATTR void Debug_LogException_m2207318968 (RuntimeObject * __this /* static, unused */, Exception_t * p0, const RuntimeMethod* method); // System.Boolean UnityEngine.Object::op_Inequality(UnityEngine.Object,UnityEngine.Object) extern "C" IL2CPP_METHOD_ATTR bool Object_op_Inequality_m4071470834 (RuntimeObject * __this /* static, unused */, Object_t631007953 * p0, Object_t631007953 * p1, const RuntimeMethod* method); // System.Boolean UnityEngine.Behaviour::get_isActiveAndEnabled() extern "C" IL2CPP_METHOD_ATTR bool Behaviour_get_isActiveAndEnabled_m3143666263 (Behaviour_t1437897464 * __this, const RuntimeMethod* method); // System.Type UnityEngine.Playables.PlayableHandle::GetPlayableType() extern "C" IL2CPP_METHOD_ATTR Type_t * PlayableHandle_GetPlayableType_m432385838 (PlayableHandle_t1095853803 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<System.Object>() inline bool PlayableHandle_IsPlayableOfType_TisRuntimeObject_m503495943 (PlayableHandle_t1095853803 * __this, const RuntimeMethod* method) { return (( bool (*) (PlayableHandle_t1095853803 *, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisRuntimeObject_m503495943_gshared)(__this, method); } // System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Animations.AnimationLayerMixerPlayable>() inline bool PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_t3631223897_m201603007 (PlayableHandle_t1095853803 * __this, const RuntimeMethod* method) { return (( bool (*) (PlayableHandle_t1095853803 *, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_t3631223897_m201603007_gshared)(__this, method); } // System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Animations.AnimationOffsetPlayable>() inline bool PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t2887420414_m2033286094 (PlayableHandle_t1095853803 * __this, const RuntimeMethod* method) { return (( bool (*) (PlayableHandle_t1095853803 *, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t2887420414_m2033286094_gshared)(__this, method); } // System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Animations.AnimatorControllerPlayable>() inline bool PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_t1015767841_m3416945299 (PlayableHandle_t1095853803 * __this, const RuntimeMethod* method) { return (( bool (*) (PlayableHandle_t1095853803 *, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_t1015767841_m3416945299_gshared)(__this, method); } // System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Experimental.Animations.AnimationScriptPlayable>() inline bool PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1303525964_m1992139667 (PlayableHandle_t1095853803 * __this, const RuntimeMethod* method) { return (( bool (*) (PlayableHandle_t1095853803 *, const RuntimeMethod*))PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1303525964_m1992139667_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2<System.Type,Vuforia.Tracker>::ContainsKey(!0) inline bool Dictionary_2_ContainsKey_m1661239861 (Dictionary_2_t858966067 * __this, Type_t * p0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t858966067 *, Type_t *, const RuntimeMethod*))Dictionary_2_ContainsKey_m3993293265_gshared)(__this, p0, method); } // System.Void UnityEngine.Debug::LogError(System.Object) extern "C" IL2CPP_METHOD_ATTR void Debug_LogError_m2850623458 (RuntimeObject * __this /* static, unused */, RuntimeObject * p0, const RuntimeMethod* method); // !1 System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>::get_Item(!0) inline Func_2_t3908638124 * Dictionary_2_get_Item_m955022751 (Dictionary_2_t2058017892 * __this, Type_t * p0, const RuntimeMethod* method) { return (( Func_2_t3908638124 * (*) (Dictionary_2_t2058017892 *, Type_t *, const RuntimeMethod*))Dictionary_2_get_Item_m4278578609_gshared)(__this, p0, method); } // !1 System.Collections.Generic.Dictionary`2<System.Type,Vuforia.Tracker>::get_Item(!0) inline Tracker_t2709586299 * Dictionary_2_get_Item_m2573772253 (Dictionary_2_t858966067 * __this, Type_t * p0, const RuntimeMethod* method) { return (( Tracker_t2709586299 * (*) (Dictionary_2_t858966067 *, Type_t *, const RuntimeMethod*))Dictionary_2_get_Item_m4278578609_gshared)(__this, p0, method); } // !1 System.Func`2<Vuforia.Tracker,System.Boolean>::Invoke(!0) inline bool Func_2_Invoke_m3880583461 (Func_2_t3908638124 * __this, Tracker_t2709586299 * p0, const RuntimeMethod* method) { return (( bool (*) (Func_2_t3908638124 *, Tracker_t2709586299 *, const RuntimeMethod*))Func_2_Invoke_m2315818287_gshared)(__this, p0, method); } // System.Void System.Collections.Generic.Dictionary`2<System.Type,Vuforia.Tracker>::set_Item(!0,!1) inline void Dictionary_2_set_Item_m3740867761 (Dictionary_2_t858966067 * __this, Type_t * p0, Tracker_t2709586299 * p1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t858966067 *, Type_t *, Tracker_t2709586299 *, const RuntimeMethod*))Dictionary_2_set_Item_m258553009_gshared)(__this, p0, p1, method); } // System.Boolean Vuforia.VuforiaRuntimeUtilities::IsPlayMode() extern "C" IL2CPP_METHOD_ATTR bool VuforiaRuntimeUtilities_IsPlayMode_m4165764373 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method); // Vuforia.ITrackerManager Vuforia.TrackerManager::get_Instance() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* TrackerManager_get_Instance_m777262631 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method); // Vuforia.VuforiaRuntimeUtilities/CameraState Vuforia.VuforiaRuntimeUtilities::GetCameraState() extern "C" IL2CPP_METHOD_ATTR CameraState_t1646041879 VuforiaRuntimeUtilities_GetCameraState_m1262028323 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method); // System.Void Vuforia.VuforiaRuntimeUtilities::StopAndDeinitCamera() extern "C" IL2CPP_METHOD_ATTR void VuforiaRuntimeUtilities_StopAndDeinitCamera_m4256552813 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method); // System.Void Vuforia.VuforiaRuntimeUtilities::ReInitAndStartCamera(Vuforia.VuforiaRuntimeUtilities/CameraState) extern "C" IL2CPP_METHOD_ATTR void VuforiaRuntimeUtilities_ReInitAndStartCamera_m352857609 (RuntimeObject * __this /* static, unused */, CameraState_t1646041879 ___stateToRestore0, const RuntimeMethod* method); // System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1345879190 (InternalEnumerator_1_t3115136993 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3115136993 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1345879190_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m4111150908 (InternalEnumerator_1_t110285839 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t110285839 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4111150908_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<MS.Internal.Xml.XPath.Operator/Op>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m737724857 (InternalEnumerator_1_t2953869286 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2953869286 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m737724857_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<Mono.AppleTls.SslCipherSuite>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m860659905 (InternalEnumerator_1_t4216186165 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t4216186165 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m860659905_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<Mono.AppleTls.SslStatus>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1834758219 (InternalEnumerator_1_t1099045673 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1099045673 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1834758219_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1359891754 (InternalEnumerator_1_t4239932009 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t4239932009 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1359891754_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<Mono.Security.Interface.CipherSuiteCode>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1695060055 (InternalEnumerator_1_t1639626328 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1639626328 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1695060055_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<Mono.Unity.UnityTls/unitytls_ciphersuite>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m258030645 (InternalEnumerator_1_t2642223512 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2642223512 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m258030645_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.AppContext/SwitchValueState>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3114817124 (InternalEnumerator_1_t3712315584 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3712315584 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3114817124_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.ArraySegment`1<System.Byte>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2515715560 (InternalEnumerator_1_t1190625104 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1190625104 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2515715560_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Boolean>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3349908318 (InternalEnumerator_1_t1004352082 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1004352082 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3349908318_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Byte>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m4191108945 (InternalEnumerator_1_t2041360493 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2041360493 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4191108945_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Char>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2123683127 (InternalEnumerator_1_t246557291 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t246557291 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2123683127_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2336656763 (InternalEnumerator_1_t4031039755 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t4031039755 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2336656763_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m554219161 (InternalEnumerator_1_t2996861637 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2996861637 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m554219161_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1011028117 (InternalEnumerator_1_t356085006 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t356085006 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1011028117_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1624193764 (InternalEnumerator_1_t1507929901 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1507929901 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1624193764_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m247270570 (InternalEnumerator_1_t750135110 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t750135110 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m247270570_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m4214678392 (InternalEnumerator_1_t66620393 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t66620393 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4214678392_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1594165202 (InternalEnumerator_1_t852241944 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t852241944 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1594165202_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3936567915 (InternalEnumerator_1_t195780804 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t195780804 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3936567915_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackableBehaviour/Status>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3292642848 (InternalEnumerator_1_t2511547750 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2511547750 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3292642848_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2390650517 (InternalEnumerator_1_t2528595684 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2528595684 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2390650517_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3309996134 (InternalEnumerator_1_t2369707257 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2369707257 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3309996134_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.AppContext/SwitchValueState>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1003995366 (InternalEnumerator_1_t2379619060 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2379619060 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1003995366_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1729089091 (InternalEnumerator_1_t3966622854 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3966622854 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1729089091_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m877399094 (InternalEnumerator_1_t2525313346 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2525313346 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m877399094_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2225016941 (InternalEnumerator_1_t2654473757 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2654473757 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2225016941_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3909148696 (InternalEnumerator_1_t3298338400 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3298338400 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3909148696_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1041990362 (InternalEnumerator_1_t1752092551 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1752092551 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1041990362_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3410556405 (InternalEnumerator_1_t3093759518 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3093759518 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3410556405_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,System.Single>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m4125539473 (InternalEnumerator_1_t2839503183 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2839503183 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4125539473_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2663023359 (InternalEnumerator_1_t3260138252 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3260138252 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2663023359_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3285751441 (InternalEnumerator_1_t3598465932 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3598465932 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3285751441_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Vuforia.Image/PIXEL_FORMAT,System.Object>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2093240344 (InternalEnumerator_1_t4192632058 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t4192632058 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2093240344_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Vuforia.Image/PIXEL_FORMAT,UnityEngine.TextureFormat>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1621788712 (InternalEnumerator_1_t3813691726 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3813691726 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1621788712_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3340905810 (InternalEnumerator_1_t529033167 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t529033167 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3340905810_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3826473210 (InternalEnumerator_1_t658193578 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t658193578 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3826473210_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3171058229 (InternalEnumerator_1_t3779669316 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3779669316 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3171058229_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m382441503 (InternalEnumerator_1_t1777994403 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1777994403 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m382441503_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1693103366 (InternalEnumerator_1_t1138892685 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1138892685 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1693103366_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1080040510 (InternalEnumerator_1_t2290737580 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2290737580 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1080040510_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m4227797183 (InternalEnumerator_1_t1532942789 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1532942789 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4227797183_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1681558503 (InternalEnumerator_1_t849428072 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t849428072 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1681558503_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2986132672 (InternalEnumerator_1_t1635049623 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1635049623 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2986132672_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1424655733 (InternalEnumerator_1_t978588483 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t978588483 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1424655733_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackableBehaviour/Status>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2668192572 (InternalEnumerator_1_t3294355429 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3294355429 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2668192572_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2155755306 (InternalEnumerator_1_t3311403363 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3311403363 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2155755306_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1053022008 (InternalEnumerator_1_t3152514936 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3152514936 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1053022008_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3127643965 (InternalEnumerator_1_t3162426739 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3162426739 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3127643965_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m962177456 (InternalEnumerator_1_t454463237 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t454463237 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m962177456_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1341209356 (InternalEnumerator_1_t3308121025 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3308121025 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1341209356_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m807987550 (InternalEnumerator_1_t3437281436 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3437281436 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m807987550_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m95472740 (InternalEnumerator_1_t4081146079 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t4081146079 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m95472740_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3522854155 (InternalEnumerator_1_t2534900230 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2534900230 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3522854155_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2543351022 (InternalEnumerator_1_t3876567197 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3876567197 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2543351022_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,System.Single>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2291589723 (InternalEnumerator_1_t3622310862 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3622310862 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2291589723_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3169694604 (InternalEnumerator_1_t4042945931 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t4042945931 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3169694604_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2451497418 (InternalEnumerator_1_t86306315 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t86306315 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2451497418_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Vuforia.Image/PIXEL_FORMAT,System.Object>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m374191417 (InternalEnumerator_1_t680472441 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t680472441 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m374191417_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Vuforia.Image/PIXEL_FORMAT,UnityEngine.TextureFormat>>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m188060951 (InternalEnumerator_1_t301532109 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t301532109 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m188060951_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/bucket>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m580087975 (InternalEnumerator_1_t1665195821 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1665195821 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m580087975_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.ComponentModel.AttributeCollection/AttributeEntry>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3061446214 (InternalEnumerator_1_t1908074980 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1908074980 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3061446214_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.DateTime>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3456047704 (InternalEnumerator_1_t350626606 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t350626606 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3456047704_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.DateTimeOffset>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3103748941 (InternalEnumerator_1_t4136351624 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t4136351624 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3103748941_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.DateTimeParse/DS>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m4250517683 (InternalEnumerator_1_t3139334487 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3139334487 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4250517683_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Decimal>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m143506773 (InternalEnumerator_1_t3855323497 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3855323497 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m143506773_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Double>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1559487635 (InternalEnumerator_1_t1501729480 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1501729480 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1559487635_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Globalization.HebrewNumber/HS>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2396702853 (InternalEnumerator_1_t4246837133 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t4246837133 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2396702853_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2606318300 (InternalEnumerator_1_t3482597050 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3482597050 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2606318300_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m821637872 (InternalEnumerator_1_t4065923934 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t4065923934 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m821637872_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Globalization.TimeSpanParse/TimeSpanToken>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m948006718 (InternalEnumerator_1_t1900411491 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1900411491 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m948006718_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Guid>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1826814198 (InternalEnumerator_1_t4100597004 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t4100597004 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1826814198_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Int16>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2910272776 (InternalEnumerator_1_t3459884504 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3459884504 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2910272776_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Int32>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m217498388 (InternalEnumerator_1_t3858009870 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3858009870 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m217498388_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Int64>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m4055378331 (InternalEnumerator_1_t348664125 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t348664125 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4055378331_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.IntPtr>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1579105305 (InternalEnumerator_1_t1747214298 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1747214298 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1579105305_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Net.CookieTokenizer/RecognizedAttribute>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3901777251 (InternalEnumerator_1_t1539138337 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1539138337 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3901777251_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Net.HeaderVariantInfo>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m413243216 (InternalEnumerator_1_t2842749718 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2842749718 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m413243216_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2668617424 (InternalEnumerator_1_t75623149 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t75623149 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2668617424_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Net.Sockets.Socket/WSABUF>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m330826784 (InternalEnumerator_1_t2905123507 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2905123507 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m330826784_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Net.WebHeaderCollection/RfcChar>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m4165841802 (InternalEnumerator_1_t3812474047 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3812474047 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4165841802_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Object>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1675719794 (InternalEnumerator_1_t3987170281 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3987170281 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1675719794_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.ParameterizedStrings/FormatParam>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3847166976 (InternalEnumerator_1_t806570903 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t806570903 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3847166976_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m643493702 (InternalEnumerator_1_t1194929827 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1194929827 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m643493702_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m748741755 (InternalEnumerator_1_t3630214274 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3630214274 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m748741755_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILExceptionBlock>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1771674970 (InternalEnumerator_1_t573971787 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t573971787 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1771674970_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILExceptionInfo>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m167120088 (InternalEnumerator_1_t1144920127 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1144920127 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m167120088_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1486034688 (InternalEnumerator_1_t1267231508 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1267231508 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1486034688_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1594304290 (InternalEnumerator_1_t1765566171 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1765566171 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1594304290_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m238559784 (InternalEnumerator_1_t3232839231 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3232839231 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m238559784_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.Label>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m924504374 (InternalEnumerator_1_t3188725760 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3188725760 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m924504374_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoResource>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3457010038 (InternalEnumerator_1_t715526830 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t715526830 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3457010038_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.MonoWin32Resource>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3734157836 (InternalEnumerator_1_t2811293600 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2811293600 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3734157836_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.RefEmitPermissionSet>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m236665673 (InternalEnumerator_1_t1391455104 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1391455104 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m236665673_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m39232262 (InternalEnumerator_1_t2368758583 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2368758583 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m39232262_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceLocator>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m4003715152 (InternalEnumerator_1_t336067628 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t336067628 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4003715152_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3525431854 (InternalEnumerator_1_t2509660479 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2509660479 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3525431854_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Runtime.InteropServices.GCHandle>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m953151915 (InternalEnumerator_1_t4258502304 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t4258502304 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m953151915_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.BinaryTypeEnum>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1949410609 (InternalEnumerator_1_t97533275 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t97533275 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1949410609_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.InternalPrimitiveTypeE>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3752414237 (InternalEnumerator_1_t705145798 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t705145798 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3752414237_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.SByte>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3460713284 (InternalEnumerator_1_t2576641779 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2576641779 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3460713284_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3443175323 (InternalEnumerator_1_t1040666831 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1040666831 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3443175323_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Single>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m31115849 (InternalEnumerator_1_t2304330891 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2304330891 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m31115849_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.TermInfoStrings>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m936171655 (InternalEnumerator_1_t1197344072 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1197344072 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m936171655_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3640480671 (InternalEnumerator_1_t3817381692 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3817381692 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3640480671_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexOptions>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m968957904 (InternalEnumerator_1_t999909712 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t999909712 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m968957904_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Threading.CancellationTokenRegistration>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1225621821 (InternalEnumerator_1_t3720489021 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3720489021 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1225621821_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3261326277 (InternalEnumerator_1_t1788223366 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1788223366 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3261326277_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.TypeCode>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2214530566 (InternalEnumerator_1_t3894288204 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3894288204 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2214530566_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.UInt16>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2202456613 (InternalEnumerator_1_t3084789075 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3084789075 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2202456613_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.UInt32>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3383770493 (InternalEnumerator_1_t3467126095 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3467126095 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3383770493_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.UInt64>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3215746182 (InternalEnumerator_1_t746136913 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t746136913 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3215746182_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m4104359421 (InternalEnumerator_1_t2238108544 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2238108544 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4104359421_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Xml.Schema.RangePositionInfo>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1220131376 (InternalEnumerator_1_t1497033053 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1497033053 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1220131376_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2763230467 (InternalEnumerator_1_t2961444816 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2961444816 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2763230467_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m891751904 (InternalEnumerator_1_t4251741088 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t4251741088 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m891751904_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Xml.Schema.XmlTypeCode>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m121620218 (InternalEnumerator_1_t3530687067 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3530687067 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m121620218_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Xml.Schema.XsdBuilder/State>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1861296067 (InternalEnumerator_1_t2797522318 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2797522318 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1861296067_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Xml.XPath.XPathResultType>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1017226609 (InternalEnumerator_1_t3736052605 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3736052605 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1017226609_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Xml.XmlNamespaceManager/NamespaceDeclaration>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2138776749 (InternalEnumerator_1_t774706396 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t774706396 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2138776749_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Xml.XmlNodeReaderNavigator/VirtualAttribute>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m97540807 (InternalEnumerator_1_t190180728 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t190180728 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m97540807_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Xml.XmlTextReaderImpl/ParsingState>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m273519326 (InternalEnumerator_1_t2687399039 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2687399039 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m273519326_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Xml.XmlTextWriter/Namespace>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3404283450 (InternalEnumerator_1_t3125320633 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3125320633 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3404283450_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Xml.XmlTextWriter/State>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3067359271 (InternalEnumerator_1_t2699603464 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2699603464 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3067359271_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<System.Xml.XmlTextWriter/TagInfo>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m954304341 (InternalEnumerator_1_t138735238 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t138735238 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m954304341_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<TMPro.MaterialReference>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3114520374 (InternalEnumerator_1_t2859408749 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2859408749 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3114520374_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1968218264 (InternalEnumerator_1_t3955461704 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3955461704 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1968218264_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<TMPro.TMP_CharacterInfo>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3007480483 (InternalEnumerator_1_t4092690914 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t4092690914 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3007480483_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<TMPro.TMP_FontWeights>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3404789360 (InternalEnumerator_1_t1823365184 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1823365184 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3404789360_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<TMPro.TMP_InputField/ContentType>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m324037018 (InternalEnumerator_1_t2036005402 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2036005402 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m324037018_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<TMPro.TMP_LineInfo>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1729380395 (InternalEnumerator_1_t1986695753 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1986695753 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1729380395_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<TMPro.TMP_LinkInfo>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m826178271 (InternalEnumerator_1_t1999147593 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1999147593 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m826178271_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<TMPro.TMP_MeshInfo>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3918870210 (InternalEnumerator_1_t3678811751 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3678811751 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3918870210_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<TMPro.TMP_PageInfo>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m4074665063 (InternalEnumerator_1_t3515494750 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3515494750 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4074665063_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<TMPro.TMP_WordInfo>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1515092833 (InternalEnumerator_1_t4238130420 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t4238130420 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1515092833_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<TMPro.TextAlignmentOptions>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m837629165 (InternalEnumerator_1_t648888057 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t648888057 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m837629165_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<TMPro.XML_TagAttribute>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2041726643 (InternalEnumerator_1_t2081488426 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2081488426 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2041726643_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2616789963 (InternalEnumerator_1_t2493041948 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2493041948 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2616789963_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Camera/StereoscopicEye>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m460549984 (InternalEnumerator_1_t3145728153 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3145728153 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m460549984_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color32>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m539509188 (InternalEnumerator_1_t3507565409 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3507565409 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m539509188_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Color>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2503697330 (InternalEnumerator_1_t3462750441 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3462750441 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2503697330_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1352157576 (InternalEnumerator_1_t370852074 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t370852074 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1352157576_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2311732727 (InternalEnumerator_1_t4267370966 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t4267370966 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2311732727_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m43405049 (InternalEnumerator_1_t1012836222 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1012836222 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m43405049_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1744883412 (InternalEnumerator_1_t818507063 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t818507063 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1744883412_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Matrix4x4>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2053256681 (InternalEnumerator_1_t2724965960 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2724965960 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2053256681_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Plane>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1207351728 (InternalEnumerator_1_t1907557438 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1907557438 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1207351728_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m4124630986 (InternalEnumerator_1_t1261324826 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1261324826 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4124630986_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2635640285 (InternalEnumerator_1_t3186646106 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3186646106 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2635640285_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m615777089 (InternalEnumerator_1_t1963066083 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1963066083 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m615777089_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3913006324 (InternalEnumerator_1_t4136673857 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t4136673857 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3913006324_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3535695642 (InternalEnumerator_1_t1582286363 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1582286363 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3535695642_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m258868363 (InternalEnumerator_1_t3032373948 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3032373948 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m258868363_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.TextureFormat>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m477874849 (InternalEnumerator_1_t3608229949 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3608229949 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m477874849_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.Touch>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m63033851 (InternalEnumerator_1_t2828920985 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2828920985 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m63033851_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.TouchScreenKeyboardType>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m52250161 (InternalEnumerator_1_t2437661819 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2437661819 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m52250161_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.AspectRatioFitter/AspectMode>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m996383508 (InternalEnumerator_1_t29289820 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t29289820 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m996383508_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.ColorBlock>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3137754353 (InternalEnumerator_1_t3046095691 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3046095691 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3137754353_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.ContentSizeFitter/FitMode>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3367481798 (InternalEnumerator_1_t4174945331 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t4174945331 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3367481798_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.Image/FillMethod>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3618853567 (InternalEnumerator_1_t2074521687 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2074521687 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3618853567_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.Image/Type>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2011873122 (InternalEnumerator_1_t2059945645 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2059945645 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2011873122_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/CharacterValidation>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m4070871439 (InternalEnumerator_1_t664011258 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t664011258 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m4070871439_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1739091604 (InternalEnumerator_1_t2694367513 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2694367513 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1739091604_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/InputType>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2411182570 (InternalEnumerator_1_t2677464796 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2677464796 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2411182570_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/LineType>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1942763320 (InternalEnumerator_1_t826745290 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t826745290 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1942763320_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.Navigation>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3899380602 (InternalEnumerator_1_t3956380696 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t3956380696 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3899380602_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.Scrollbar/Direction>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m1938896550 (InternalEnumerator_1_t82811174 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t82811174 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m1938896550_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.Selectable/Transition>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m2542707126 (InternalEnumerator_1_t2676972748 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t2676972748 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m2542707126_gshared)(__this, p0, method); } // System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.Slider/Direction>::.ctor(System.Array) inline void InternalEnumerator_1__ctor_m3730855632 (InternalEnumerator_1_t1244973352 * __this, RuntimeArray * p0, const RuntimeMethod* method) { (( void (*) (InternalEnumerator_1_t1244973352 *, RuntimeArray *, const RuntimeMethod*))InternalEnumerator_1__ctor_m3730855632_gshared)(__this, p0, method); } // Lean.Transition.LeanState Lean.Transition.LeanExtensions::GetTransition<System.Object>(T) extern "C" IL2CPP_METHOD_ATTR LeanState_t463268132 * LeanExtensions_GetTransition_TisRuntimeObject_m2520029663_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___target0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LeanExtensions_GetTransition_TisRuntimeObject_m2520029663_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(LeanTransition_t733994930_il2cpp_TypeInfo_var); LeanState_t463268132 * L_0 = LeanTransition_get_CurrentHead_m4219650383(NULL /*static, unused*/, /*hidden argument*/NULL); return L_0; } } // R System.Array::UnsafeMov<Mono.AppleTls.SslStatus,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisSslStatus_t191981556_TisInt32_t2950945753_m357935044_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // R System.Array::UnsafeMov<System.AppContext/SwitchValueState,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisSwitchValueState_t2805251467_TisInt32_t2950945753_m3261067275_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // R System.Array::UnsafeMov<System.Object,System.Object>(S) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Array_UnsafeMov_TisRuntimeObject_TisRuntimeObject_m3176556902_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___instance0, const RuntimeMethod* method) { return static_cast<RuntimeObject *>(___instance0); } // R System.Array::UnsafeMov<System.Text.RegularExpressions.RegexOptions,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisRegexOptions_t92845595_TisInt32_t2950945753_m3643595873_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // R System.Array::UnsafeMov<UnityEngine.Camera/StereoscopicEye,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisStereoscopicEye_t2238664036_TisInt32_t2950945753_m1658140300_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // R System.Array::UnsafeMov<UnityEngine.TextureFormat,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisTextureFormat_t2701165832_TisInt32_t2950945753_m3600576500_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // R System.Array::UnsafeMov<UnityEngine.TouchScreenKeyboardType,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisTouchScreenKeyboardType_t1530597702_TisInt32_t2950945753_m572848653_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // R System.Array::UnsafeMov<UnityEngine.UI.AspectRatioFitter/AspectMode,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisAspectMode_t3417192999_TisInt32_t2950945753_m2208145649_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // R System.Array::UnsafeMov<UnityEngine.UI.ContentSizeFitter/FitMode,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisFitMode_t3267881214_TisInt32_t2950945753_m929142628_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // R System.Array::UnsafeMov<UnityEngine.UI.Image/FillMethod,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisFillMethod_t1167457570_TisInt32_t2950945753_m1093449484_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // R System.Array::UnsafeMov<UnityEngine.UI.Image/Type,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisType_t1152881528_TisInt32_t2950945753_m3187283499_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // R System.Array::UnsafeMov<UnityEngine.UI.InputField/CharacterValidation,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisCharacterValidation_t4051914437_TisInt32_t2950945753_m1459971612_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // R System.Array::UnsafeMov<UnityEngine.UI.InputField/ContentType,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisContentType_t1787303396_TisInt32_t2950945753_m4126877122_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // R System.Array::UnsafeMov<UnityEngine.UI.InputField/InputType,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisInputType_t1770400679_TisInt32_t2950945753_m3585126156_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // R System.Array::UnsafeMov<UnityEngine.UI.InputField/LineType,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisLineType_t4214648469_TisInt32_t2950945753_m1317986267_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // R System.Array::UnsafeMov<UnityEngine.UI.Scrollbar/Direction,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisDirection_t3470714353_TisInt32_t2950945753_m3620274953_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // R System.Array::UnsafeMov<UnityEngine.UI.Selectable/Transition,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisTransition_t1769908631_TisInt32_t2950945753_m149885683_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // R System.Array::UnsafeMov<UnityEngine.UI.Slider/Direction,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisDirection_t337909235_TisInt32_t2950945753_m2055095019_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // R System.Array::UnsafeMov<Vuforia.Image/PIXEL_FORMAT,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisPIXEL_FORMAT_t3209881435_TisInt32_t2950945753_m2526239682_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // R System.Array::UnsafeMov<Vuforia.TrackableBehaviour/Status,System.Int32>(S) extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeMov_TisStatus_t1100905814_TisInt32_t2950945753_m2426637199_gshared (RuntimeObject * __this /* static, unused */, int32_t ___instance0, const RuntimeMethod* method) { return static_cast<int32_t>(___instance0); } // System.Action`1<T> AugmentationStateMachineBehaviour::GetMethod<System.Object>(T,System.String) extern "C" IL2CPP_METHOD_ATTR Action_1_t3252573759 * AugmentationStateMachineBehaviour_GetMethod_TisRuntimeObject_m1487955773_gshared (AugmentationStateMachineBehaviour_t3849818102 * __this, RuntimeObject * ___augmentation0, String_t* ___methodName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AugmentationStateMachineBehaviour_GetMethod_TisRuntimeObject_m1487955773_MetadataUsageId); s_Il2CppMethodInitialized = true; } Action_1_t3252573759 * V_0 = NULL; Dictionary_2_t973649112 * V_1 = NULL; Delegate_t1188392813 * V_2 = NULL; MethodInfo_t * V_3 = NULL; Delegate_t1188392813 * V_4 = NULL; { V_0 = (Action_1_t3252573759 *)NULL; IL2CPP_RUNTIME_CLASS_INIT(AugmentationStateMachineBehaviour_t3849818102_il2cpp_TypeInfo_var); Dictionary_2_t3417996176 * L_0 = ((AugmentationStateMachineBehaviour_t3849818102_StaticFields*)il2cpp_codegen_static_fields_for(AugmentationStateMachineBehaviour_t3849818102_il2cpp_TypeInfo_var))->get_cachedDelegates_7(); RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_1, /*hidden argument*/NULL); NullCheck((Dictionary_2_t3417996176 *)L_0); bool L_3 = Dictionary_2_TryGetValue_m497768301((Dictionary_2_t3417996176 *)L_0, (Type_t *)L_2, (Dictionary_2_t973649112 **)(Dictionary_2_t973649112 **)(&V_1), /*hidden argument*/Dictionary_2_TryGetValue_m497768301_RuntimeMethod_var); if (!L_3) { goto IL_0032; } } { Dictionary_2_t973649112 * L_4 = V_1; String_t* L_5 = ___methodName1; NullCheck((Dictionary_2_t973649112 *)L_4); bool L_6 = Dictionary_2_TryGetValue_m3181164325((Dictionary_2_t973649112 *)L_4, (String_t*)L_5, (Delegate_t1188392813 **)(Delegate_t1188392813 **)(&V_2), /*hidden argument*/Dictionary_2_TryGetValue_m3181164325_RuntimeMethod_var); if (!L_6) { goto IL_0032; } } { Delegate_t1188392813 * L_7 = V_2; V_0 = (Action_1_t3252573759 *)((Action_1_t3252573759 *)IsInst((RuntimeObject*)L_7, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))); } IL_0032: { Action_1_t3252573759 * L_8 = V_0; if (L_8) { goto IL_0107; } } { RuntimeObject * L_9 = ___augmentation0; String_t* L_10 = ___methodName1; TypeU5BU5D_t3940880105* L_11 = (TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)0); MethodInfo_t * L_12 = UnityEventBase_GetValidMethodInfo_m3989987635(NULL /*static, unused*/, (RuntimeObject *)L_9, (String_t*)L_10, (TypeU5BU5D_t3940880105*)L_11, /*hidden argument*/NULL); V_3 = (MethodInfo_t *)L_12; MethodInfo_t * L_13 = V_3; bool L_14 = MethodInfo_op_Equality_m1241144064(NULL /*static, unused*/, (MethodInfo_t *)L_13, (MethodInfo_t *)NULL, /*hidden argument*/NULL); if (!L_14) { goto IL_0080; } } { String_t* L_15 = ___methodName1; RuntimeTypeHandle_t3027515415 L_16 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_16, /*hidden argument*/NULL); NullCheck((MemberInfo_t *)L_17); String_t* L_18 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_17); String_t* L_19 = String_Concat_m2163913788(NULL /*static, unused*/, (String_t*)_stringLiteral1686800860, (String_t*)L_15, (String_t*)_stringLiteral2794527317, (String_t*)L_18, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t3317548046_il2cpp_TypeInfo_var); Debug_LogWarning_m3752629331(NULL /*static, unused*/, (RuntimeObject *)L_19, /*hidden argument*/NULL); goto IL_0107; } IL_0080: { RuntimeTypeHandle_t3027515415 L_20 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_21 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_20, /*hidden argument*/NULL); MethodInfo_t * L_22 = V_3; Delegate_t1188392813 * L_23 = Delegate_CreateDelegate_m1051651521(NULL /*static, unused*/, (Type_t *)L_21, (MethodInfo_t *)L_22, (bool)0, /*hidden argument*/NULL); V_4 = (Delegate_t1188392813 *)L_23; Delegate_t1188392813 * L_24 = V_4; if (L_24) { goto IL_00f1; } } { MethodInfo_t * L_25 = V_3; NullCheck((MethodInfo_t *)L_25); Type_t * L_26 = VirtFuncInvoker0< Type_t * >::Invoke(39 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, (MethodInfo_t *)L_25); RuntimeTypeHandle_t3027515415 L_27 = { reinterpret_cast<intptr_t> (Void_t1185182177_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_27, /*hidden argument*/NULL); bool L_29 = Type_op_Inequality_m2948304386(NULL /*static, unused*/, (Type_t *)L_26, (Type_t *)L_28, /*hidden argument*/NULL); if (!L_29) { goto IL_00c9; } } { String_t* L_30 = ___methodName1; String_t* L_31 = String_Concat_m3755062657(NULL /*static, unused*/, (String_t*)_stringLiteral1686800860, (String_t*)L_30, (String_t*)_stringLiteral1264546222, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t3317548046_il2cpp_TypeInfo_var); Debug_LogWarning_m3752629331(NULL /*static, unused*/, (RuntimeObject *)L_31, /*hidden argument*/NULL); } IL_00c9: { MethodInfo_t * L_32 = V_3; NullCheck((MethodBase_t *)L_32); TypeU5BU5D_t3940880105* L_33 = VirtFuncInvoker0< TypeU5BU5D_t3940880105* >::Invoke(23 /* System.Type[] System.Reflection.MethodBase::GetGenericArguments() */, (MethodBase_t *)L_32); NullCheck(L_33); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_33)->max_length))))) <= ((int32_t)0))) { goto IL_00ec; } } { String_t* L_34 = ___methodName1; String_t* L_35 = String_Concat_m3755062657(NULL /*static, unused*/, (String_t*)_stringLiteral1686800860, (String_t*)L_34, (String_t*)_stringLiteral1930521651, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t3317548046_il2cpp_TypeInfo_var); Debug_LogWarning_m3752629331(NULL /*static, unused*/, (RuntimeObject *)L_35, /*hidden argument*/NULL); } IL_00ec: { goto IL_0107; } IL_00f1: { Delegate_t1188392813 * L_36 = V_4; V_0 = (Action_1_t3252573759 *)((Action_1_t3252573759 *)IsInst((RuntimeObject*)L_36, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))); Action_1_t3252573759 * L_37 = V_0; if (!L_37) { goto IL_0107; } } { Action_1_t3252573759 * L_38 = V_0; String_t* L_39 = ___methodName1; NullCheck((AugmentationStateMachineBehaviour_t3849818102 *)__this); (( void (*) (AugmentationStateMachineBehaviour_t3849818102 *, Action_1_t3252573759 *, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)((AugmentationStateMachineBehaviour_t3849818102 *)__this, (Action_1_t3252573759 *)L_38, (String_t*)L_39, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_0107: { Action_1_t3252573759 * L_40 = V_0; return L_40; } } // System.Boolean Lean.Touch.LeanFingerData::Exists<System.Object>(System.Collections.Generic.List`1<T>,Lean.Touch.LeanFinger) extern "C" IL2CPP_METHOD_ATTR bool LeanFingerData_Exists_TisRuntimeObject_m858986421_gshared (RuntimeObject * __this /* static, unused */, List_1_t257213610 * ___fingerDatas0, LeanFinger_t3506292858 * ___finger1, const RuntimeMethod* method) { int32_t V_0 = 0; { List_1_t257213610 * L_0 = ___fingerDatas0; if (!L_0) { goto IL_0038; } } { List_1_t257213610 * L_1 = ___fingerDatas0; NullCheck((List_1_t257213610 *)L_1); int32_t L_2 = (( int32_t (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((List_1_t257213610 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)); goto IL_0031; } IL_0014: { List_1_t257213610 * L_3 = ___fingerDatas0; int32_t L_4 = V_0; NullCheck((List_1_t257213610 *)L_3); RuntimeObject * L_5 = (( RuntimeObject * (*) (List_1_t257213610 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((List_1_t257213610 *)L_3, (int32_t)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck(L_5); LeanFinger_t3506292858 * L_6 = (LeanFinger_t3506292858 *)((LeanFingerData_t2715332220 *)L_5)->get_Finger_0(); LeanFinger_t3506292858 * L_7 = ___finger1; if ((!(((RuntimeObject*)(LeanFinger_t3506292858 *)L_6) == ((RuntimeObject*)(LeanFinger_t3506292858 *)L_7)))) { goto IL_002d; } } { return (bool)1; } IL_002d: { int32_t L_8 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1)); } IL_0031: { int32_t L_9 = V_0; if ((((int32_t)L_9) >= ((int32_t)0))) { goto IL_0014; } } IL_0038: { return (bool)0; } } // System.Boolean System.Array::Exists<System.Object>(T[],System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR bool Array_Exists_TisRuntimeObject_m3896745628_gshared (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t2843939325* ___array0, Predicate_1_t3905400288 * ___match1, const RuntimeMethod* method) { { ObjectU5BU5D_t2843939325* L_0 = ___array0; Predicate_1_t3905400288 * L_1 = ___match1; int32_t L_2 = (( int32_t (*) (RuntimeObject * /* static, unused */, ObjectU5BU5D_t2843939325*, Predicate_1_t3905400288 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t2843939325*)L_0, (Predicate_1_t3905400288 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return (bool)((((int32_t)((((int32_t)L_2) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Array::Exists<Vuforia.TrackerData/TrackableResultData>(T[],System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR bool Array_Exists_TisTrackableResultData_t452703160_m1962174394_gshared (RuntimeObject * __this /* static, unused */, TrackableResultDataU5BU5D_t4273811049* ___array0, Predicate_1_t1277997284 * ___match1, const RuntimeMethod* method) { { TrackableResultDataU5BU5D_t4273811049* L_0 = ___array0; Predicate_1_t1277997284 * L_1 = ___match1; int32_t L_2 = (( int32_t (*) (RuntimeObject * /* static, unused */, TrackableResultDataU5BU5D_t4273811049*, Predicate_1_t1277997284 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TrackableResultDataU5BU5D_t4273811049*)L_0, (Predicate_1_t1277997284 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return (bool)((((int32_t)((((int32_t)L_2) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Array::Exists<Vuforia.TrackerData/VuMarkTargetResultData>(T[],System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR bool Array_Exists_TisVuMarkTargetResultData_t2153299244_m2766064623_gshared (RuntimeObject * __this /* static, unused */, VuMarkTargetResultDataU5BU5D_t2157423781* ___array0, Predicate_1_t2978593368 * ___match1, const RuntimeMethod* method) { { VuMarkTargetResultDataU5BU5D_t2157423781* L_0 = ___array0; Predicate_1_t2978593368 * L_1 = ___match1; int32_t L_2 = (( int32_t (*) (RuntimeObject * /* static, unused */, VuMarkTargetResultDataU5BU5D_t2157423781*, Predicate_1_t2978593368 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (VuMarkTargetResultDataU5BU5D_t2157423781*)L_0, (Predicate_1_t2978593368 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return (bool)((((int32_t)((((int32_t)L_2) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Array::InternalArray__ICollection_Contains<MS.Internal.Xml.Cache.XPathNode>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisXPathNode_t2208072876_m1047333184_gshared (RuntimeArray * __this, XPathNode_t2208072876 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisXPathNode_t2208072876_m1047333184_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; XPathNode_t2208072876 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisXPathNode_t2208072876_m1047333184_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (XPathNode_t2208072876 *)(XPathNode_t2208072876 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { XPathNode_t2208072876 L_7 = V_2; XPathNode_t2208072876 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(XPathNode_t2208072876 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<MS.Internal.Xml.Cache.XPathNodeRef>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisXPathNodeRef_t3498189018_m464172426_gshared (RuntimeArray * __this, XPathNodeRef_t3498189018 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisXPathNodeRef_t3498189018_m464172426_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; XPathNodeRef_t3498189018 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisXPathNodeRef_t3498189018_m464172426_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (XPathNodeRef_t3498189018 *)(XPathNodeRef_t3498189018 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { XPathNodeRef_t3498189018 L_7 = V_2; XPathNodeRef_t3498189018 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(XPathNodeRef_t3498189018 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<MS.Internal.Xml.XPath.Operator/Op>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisOp_t2046805169_m1814034116_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisOp_t2046805169_m1814034116_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisOp_t2046805169_m1814034116_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Mono.AppleTls.SslCipherSuite>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisSslCipherSuite_t3309122048_m2904748630_gshared (RuntimeArray * __this, uint16_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisSslCipherSuite_t3309122048_m2904748630_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint16_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisSslCipherSuite_t3309122048_m2904748630_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint16_t*)(uint16_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { uint16_t L_7 = V_2; uint16_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(uint16_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Mono.AppleTls.SslStatus>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisSslStatus_t191981556_m4075581580_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisSslStatus_t191981556_m4075581580_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisSslStatus_t191981556_m4075581580_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTableRange_t3332867892_m220823873_gshared (RuntimeArray * __this, TableRange_t3332867892 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTableRange_t3332867892_m220823873_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TableRange_t3332867892 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTableRange_t3332867892_m220823873_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TableRange_t3332867892 *)(TableRange_t3332867892 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { TableRange_t3332867892 L_7 = V_2; TableRange_t3332867892 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(TableRange_t3332867892 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Mono.Security.Interface.CipherSuiteCode>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisCipherSuiteCode_t732562211_m3455071752_gshared (RuntimeArray * __this, uint16_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisCipherSuiteCode_t732562211_m3455071752_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint16_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisCipherSuiteCode_t732562211_m3455071752_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint16_t*)(uint16_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { uint16_t L_7 = V_2; uint16_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(uint16_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Mono.Unity.UnityTls/unitytls_ciphersuite>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_Tisunitytls_ciphersuite_t1735159395_m770830150_gshared (RuntimeArray * __this, uint32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_Tisunitytls_ciphersuite_t1735159395_m770830150_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_Tisunitytls_ciphersuite_t1735159395_m770830150_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint32_t*)(uint32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { uint32_t L_7 = V_2; uint32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(uint32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.AppContext/SwitchValueState>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisSwitchValueState_t2805251467_m515895951_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisSwitchValueState_t2805251467_m515895951_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisSwitchValueState_t2805251467_m515895951_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.ArraySegment`1<System.Byte>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisArraySegment_1_t283560987_m3050253333_gshared (RuntimeArray * __this, ArraySegment_1_t283560987 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisArraySegment_1_t283560987_m3050253333_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ArraySegment_1_t283560987 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisArraySegment_1_t283560987_m3050253333_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ArraySegment_1_t283560987 *)(ArraySegment_1_t283560987 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { ArraySegment_1_t283560987 L_7 = V_2; ArraySegment_1_t283560987 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppFakeBox<ArraySegment_1_t283560987 > L_10(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); const VirtualInvokeData& il2cpp_virtual_invoke_data__77 = il2cpp_codegen_get_virtual_invoke_data(0, &L_10); bool L_11 = (( bool (*) (RuntimeObject *, RuntimeObject *, const RuntimeMethod*))il2cpp_virtual_invoke_data__77.methodPtr)((RuntimeObject *)(&L_10), (RuntimeObject *)L_9, /*hidden argument*/il2cpp_virtual_invoke_data__77.method); ___item0 = L_10.m_Value; if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Boolean>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisBoolean_t97287965_m4124615291_gshared (RuntimeArray * __this, bool ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisBoolean_t97287965_m4124615291_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; bool V_2 = false; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisBoolean_t97287965_m4124615291_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (bool*)(bool*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { bool L_7 = V_2; bool L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Boolean_Equals_m2410333903((bool*)(bool*)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Byte>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisByte_t1134296376_m11531792_gshared (RuntimeArray * __this, uint8_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisByte_t1134296376_m11531792_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint8_t V_2 = 0x0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisByte_t1134296376_m11531792_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint8_t*)(uint8_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { uint8_t L_7 = V_2; uint8_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Byte_Equals_m1161982810((uint8_t*)(uint8_t*)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Char>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisChar_t3634460470_m4074994798_gshared (RuntimeArray * __this, Il2CppChar ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisChar_t3634460470_m4074994798_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisChar_t3634460470_m4074994798_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Il2CppChar*)(Il2CppChar*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Il2CppChar L_7 = V_2; Il2CppChar L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Char_Equals_m1279957088((Il2CppChar*)(Il2CppChar*)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.DictionaryEntry>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisDictionaryEntry_t3123975638_m1596925967_gshared (RuntimeArray * __this, DictionaryEntry_t3123975638 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisDictionaryEntry_t3123975638_m1596925967_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DictionaryEntry_t3123975638 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisDictionaryEntry_t3123975638_m1596925967_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (DictionaryEntry_t3123975638 *)(DictionaryEntry_t3123975638 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { DictionaryEntry_t3123975638 L_7 = V_2; DictionaryEntry_t3123975638 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(DictionaryEntry_t3123975638 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t2089797520_m3799395690_gshared (RuntimeArray * __this, Entry_t2089797520 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t2089797520_m3799395690_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t2089797520 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t2089797520_m3799395690_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t2089797520 *)(Entry_t2089797520 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t2089797520 L_7 = V_2; Entry_t2089797520 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t2089797520 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t3743988185_m332834595_gshared (RuntimeArray * __this, Entry_t3743988185 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t3743988185_m332834595_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t3743988185 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t3743988185_m332834595_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t3743988185 *)(Entry_t3743988185 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t3743988185 L_7 = V_2; Entry_t3743988185 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t3743988185 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t600865784_m1192128834_gshared (RuntimeArray * __this, Entry_t600865784 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t600865784_m1192128834_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t600865784 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t600865784_m1192128834_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t600865784 *)(Entry_t600865784 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t600865784 L_7 = V_2; Entry_t600865784 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t600865784 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t4138038289_m2668321569_gshared (RuntimeArray * __this, Entry_t4138038289 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t4138038289_m2668321569_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t4138038289 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t4138038289_m2668321569_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t4138038289 *)(Entry_t4138038289 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t4138038289 L_7 = V_2; Entry_t4138038289 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t4138038289 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t3454523572_m819565093_gshared (RuntimeArray * __this, Entry_t3454523572 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t3454523572_m819565093_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t3454523572 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t3454523572_m819565093_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t3454523572 *)(Entry_t3454523572 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t3454523572 L_7 = V_2; Entry_t3454523572 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t3454523572 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t4240145123_m838898027_gshared (RuntimeArray * __this, Entry_t4240145123 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t4240145123_m838898027_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t4240145123 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t4240145123_m838898027_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t4240145123 *)(Entry_t4240145123 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t4240145123 L_7 = V_2; Entry_t4240145123 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t4240145123 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t3583683983_m3389064855_gshared (RuntimeArray * __this, Entry_t3583683983 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t3583683983_m3389064855_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t3583683983 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t3583683983_m3389064855_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t3583683983 *)(Entry_t3583683983 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t3583683983 L_7 = V_2; Entry_t3583683983 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t3583683983 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackableBehaviour/Status>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t1604483633_m927102390_gshared (RuntimeArray * __this, Entry_t1604483633 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t1604483633_m927102390_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t1604483633 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t1604483633_m927102390_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t1604483633 *)(Entry_t1604483633 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t1604483633 L_7 = V_2; Entry_t1604483633 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t1604483633 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t1621531567_m1837531547_gshared (RuntimeArray * __this, Entry_t1621531567 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t1621531567_m1837531547_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t1621531567 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t1621531567_m1837531547_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t1621531567 *)(Entry_t1621531567 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t1621531567 L_7 = V_2; Entry_t1621531567 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t1621531567 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t1462643140_m1201510596_gshared (RuntimeArray * __this, Entry_t1462643140 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t1462643140_m1201510596_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t1462643140 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t1462643140_m1201510596_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t1462643140 *)(Entry_t1462643140 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t1462643140 L_7 = V_2; Entry_t1462643140 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t1462643140 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.AppContext/SwitchValueState>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t1472554943_m1721178887_gshared (RuntimeArray * __this, Entry_t1472554943 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t1472554943_m1721178887_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t1472554943 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t1472554943_m1721178887_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t1472554943 *)(Entry_t1472554943 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t1472554943 L_7 = V_2; Entry_t1472554943 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t1472554943 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t3059558737_m662778609_gshared (RuntimeArray * __this, Entry_t3059558737 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t3059558737_m662778609_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t3059558737 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t3059558737_m662778609_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t3059558737 *)(Entry_t3059558737 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t3059558737 L_7 = V_2; Entry_t3059558737 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t3059558737 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t1618249229_m3374431336_gshared (RuntimeArray * __this, Entry_t1618249229 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t1618249229_m3374431336_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t1618249229 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t1618249229_m3374431336_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t1618249229 *)(Entry_t1618249229 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t1618249229 L_7 = V_2; Entry_t1618249229 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t1618249229 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t1747409640_m127521533_gshared (RuntimeArray * __this, Entry_t1747409640 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t1747409640_m127521533_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t1747409640 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t1747409640_m127521533_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t1747409640 *)(Entry_t1747409640 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t1747409640 L_7 = V_2; Entry_t1747409640 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t1747409640 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t2391274283_m2841416160_gshared (RuntimeArray * __this, Entry_t2391274283 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t2391274283_m2841416160_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t2391274283 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t2391274283_m2841416160_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t2391274283 *)(Entry_t2391274283 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t2391274283 L_7 = V_2; Entry_t2391274283 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t2391274283 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t845028434_m3546335531_gshared (RuntimeArray * __this, Entry_t845028434 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t845028434_m3546335531_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t845028434 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t845028434_m3546335531_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t845028434 *)(Entry_t845028434 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t845028434 L_7 = V_2; Entry_t845028434 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t845028434 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t2186695401_m796429899_gshared (RuntimeArray * __this, Entry_t2186695401 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t2186695401_m796429899_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t2186695401 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t2186695401_m796429899_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t2186695401 *)(Entry_t2186695401 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t2186695401 L_7 = V_2; Entry_t2186695401 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t2186695401 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,System.Single>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t1932439066_m4009027030_gshared (RuntimeArray * __this, Entry_t1932439066 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t1932439066_m4009027030_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t1932439066 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t1932439066_m4009027030_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t1932439066 *)(Entry_t1932439066 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t1932439066 L_7 = V_2; Entry_t1932439066 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t1932439066 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t2353074135_m3631867778_gshared (RuntimeArray * __this, Entry_t2353074135 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t2353074135_m3631867778_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t2353074135 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t2353074135_m3631867778_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t2353074135 *)(Entry_t2353074135 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t2353074135 L_7 = V_2; Entry_t2353074135 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t2353074135 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t2691401815_m746550459_gshared (RuntimeArray * __this, Entry_t2691401815 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t2691401815_m746550459_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t2691401815 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t2691401815_m746550459_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t2691401815 *)(Entry_t2691401815 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t2691401815 L_7 = V_2; Entry_t2691401815 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t2691401815 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<Vuforia.Image/PIXEL_FORMAT,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t3285567941_m627574859_gshared (RuntimeArray * __this, Entry_t3285567941 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t3285567941_m627574859_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t3285567941 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t3285567941_m627574859_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t3285567941 *)(Entry_t3285567941 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t3285567941 L_7 = V_2; Entry_t3285567941 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t3285567941 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<Vuforia.Image/PIXEL_FORMAT,UnityEngine.TextureFormat>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEntry_t2906627609_m2322345844_gshared (RuntimeArray * __this, Entry_t2906627609 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEntry_t2906627609_m2322345844_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Entry_t2906627609 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEntry_t2906627609_m2322345844_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t2906627609 *)(Entry_t2906627609 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Entry_t2906627609 L_7 = V_2; Entry_t2906627609 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Entry_t2906627609 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.HashSet`1/Slot<System.Int32>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisSlot_t3916936346_m3447650581_gshared (RuntimeArray * __this, Slot_t3916936346 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisSlot_t3916936346_m3447650581_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Slot_t3916936346 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisSlot_t3916936346_m3447650581_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Slot_t3916936346 *)(Slot_t3916936346 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Slot_t3916936346 L_7 = V_2; Slot_t3916936346 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Slot_t3916936346 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.HashSet`1/Slot<System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisSlot_t4046096757_m933615927_gshared (RuntimeArray * __this, Slot_t4046096757 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisSlot_t4046096757_m933615927_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Slot_t4046096757 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisSlot_t4046096757_m933615927_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Slot_t4046096757 *)(Slot_t4046096757 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Slot_t4046096757 L_7 = V_2; Slot_t4046096757 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Slot_t4046096757 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2872605199_m1209080642_gshared (RuntimeArray * __this, KeyValuePair_2_t2872605199 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2872605199_m1209080642_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t2872605199 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2872605199_m1209080642_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t2872605199 *)(KeyValuePair_2_t2872605199 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t2872605199 L_7 = V_2; KeyValuePair_2_t2872605199 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t2872605199 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t870930286_m2241152863_gshared (RuntimeArray * __this, KeyValuePair_2_t870930286 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t870930286_m2241152863_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t870930286 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t870930286_m2241152863_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t870930286 *)(KeyValuePair_2_t870930286 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t870930286 L_7 = V_2; KeyValuePair_2_t870930286 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t870930286 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t231828568_m2953990230_gshared (RuntimeArray * __this, KeyValuePair_2_t231828568 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t231828568_m2953990230_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t231828568 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t231828568_m2953990230_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t231828568 *)(KeyValuePair_2_t231828568 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t231828568 L_7 = V_2; KeyValuePair_2_t231828568 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t231828568 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1383673463_m166023032_gshared (RuntimeArray * __this, KeyValuePair_2_t1383673463 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1383673463_m166023032_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t1383673463 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1383673463_m166023032_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t1383673463 *)(KeyValuePair_2_t1383673463 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t1383673463 L_7 = V_2; KeyValuePair_2_t1383673463 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t1383673463 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t625878672_m368001353_gshared (RuntimeArray * __this, KeyValuePair_2_t625878672 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t625878672_m368001353_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t625878672 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t625878672_m368001353_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t625878672 *)(KeyValuePair_2_t625878672 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t625878672 L_7 = V_2; KeyValuePair_2_t625878672 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t625878672 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4237331251_m138928983_gshared (RuntimeArray * __this, KeyValuePair_2_t4237331251 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4237331251_m138928983_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t4237331251 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4237331251_m138928983_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t4237331251 *)(KeyValuePair_2_t4237331251 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t4237331251 L_7 = V_2; KeyValuePair_2_t4237331251 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t4237331251 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t727985506_m2528174741_gshared (RuntimeArray * __this, KeyValuePair_2_t727985506 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t727985506_m2528174741_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t727985506 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t727985506_m2528174741_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t727985506 *)(KeyValuePair_2_t727985506 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t727985506 L_7 = V_2; KeyValuePair_2_t727985506 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t727985506 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t71524366_m2486536917_gshared (RuntimeArray * __this, KeyValuePair_2_t71524366 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t71524366_m2486536917_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t71524366 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t71524366_m2486536917_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t71524366 L_7 = V_2; KeyValuePair_2_t71524366 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t71524366 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackableBehaviour/Status>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2387291312_m3369824214_gshared (RuntimeArray * __this, KeyValuePair_2_t2387291312 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2387291312_m3369824214_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t2387291312 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2387291312_m3369824214_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t2387291312 *)(KeyValuePair_2_t2387291312 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t2387291312 L_7 = V_2; KeyValuePair_2_t2387291312 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t2387291312 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2404339246_m2254033280_gshared (RuntimeArray * __this, KeyValuePair_2_t2404339246 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2404339246_m2254033280_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t2404339246 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2404339246_m2254033280_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t2404339246 *)(KeyValuePair_2_t2404339246 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t2404339246 L_7 = V_2; KeyValuePair_2_t2404339246 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t2404339246 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2245450819_m2755643427_gshared (RuntimeArray * __this, KeyValuePair_2_t2245450819 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2245450819_m2755643427_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t2245450819 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2245450819_m2755643427_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t2245450819 *)(KeyValuePair_2_t2245450819 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t2245450819 L_7 = V_2; KeyValuePair_2_t2245450819 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t2245450819 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2255362622_m2062056165_gshared (RuntimeArray * __this, KeyValuePair_2_t2255362622 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2255362622_m2062056165_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t2255362622 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2255362622_m2062056165_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t2255362622 *)(KeyValuePair_2_t2255362622 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t2255362622 L_7 = V_2; KeyValuePair_2_t2255362622 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t2255362622 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3842366416_m119930447_gshared (RuntimeArray * __this, KeyValuePair_2_t3842366416 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3842366416_m119930447_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t3842366416 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3842366416_m119930447_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t3842366416 *)(KeyValuePair_2_t3842366416 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t3842366416 L_7 = V_2; KeyValuePair_2_t3842366416 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t3842366416 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2401056908_m2117980243_gshared (RuntimeArray * __this, KeyValuePair_2_t2401056908 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2401056908_m2117980243_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t2401056908 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2401056908_m2117980243_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t2401056908 *)(KeyValuePair_2_t2401056908 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t2401056908 L_7 = V_2; KeyValuePair_2_t2401056908 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t2401056908 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2530217319_m3941002701_gshared (RuntimeArray * __this, KeyValuePair_2_t2530217319 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2530217319_m3941002701_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t2530217319 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2530217319_m3941002701_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t2530217319 *)(KeyValuePair_2_t2530217319 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t2530217319 L_7 = V_2; KeyValuePair_2_t2530217319 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t2530217319 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3174081962_m4224208290_gshared (RuntimeArray * __this, KeyValuePair_2_t3174081962 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3174081962_m4224208290_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t3174081962 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3174081962_m4224208290_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t3174081962 *)(KeyValuePair_2_t3174081962 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t3174081962 L_7 = V_2; KeyValuePair_2_t3174081962 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t3174081962 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1627836113_m965285537_gshared (RuntimeArray * __this, KeyValuePair_2_t1627836113 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1627836113_m965285537_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t1627836113 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1627836113_m965285537_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t1627836113 *)(KeyValuePair_2_t1627836113 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t1627836113 L_7 = V_2; KeyValuePair_2_t1627836113 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t1627836113 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2969503080_m250283142_gshared (RuntimeArray * __this, KeyValuePair_2_t2969503080 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2969503080_m250283142_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t2969503080 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2969503080_m250283142_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t2969503080 *)(KeyValuePair_2_t2969503080 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t2969503080 L_7 = V_2; KeyValuePair_2_t2969503080 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t2969503080 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,System.Single>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2715246745_m101761923_gshared (RuntimeArray * __this, KeyValuePair_2_t2715246745 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2715246745_m101761923_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t2715246745 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2715246745_m101761923_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t2715246745 *)(KeyValuePair_2_t2715246745 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t2715246745 L_7 = V_2; KeyValuePair_2_t2715246745 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t2715246745 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3135881814_m3961676534_gshared (RuntimeArray * __this, KeyValuePair_2_t3135881814 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3135881814_m3961676534_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t3135881814 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3135881814_m3961676534_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t3135881814 *)(KeyValuePair_2_t3135881814 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t3135881814 L_7 = V_2; KeyValuePair_2_t3135881814 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t3135881814 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3474209494_m3067668800_gshared (RuntimeArray * __this, KeyValuePair_2_t3474209494 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3474209494_m3067668800_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t3474209494 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3474209494_m3067668800_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t3474209494 *)(KeyValuePair_2_t3474209494 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t3474209494 L_7 = V_2; KeyValuePair_2_t3474209494 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t3474209494 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<Vuforia.Image/PIXEL_FORMAT,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4068375620_m2493972896_gshared (RuntimeArray * __this, KeyValuePair_2_t4068375620 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4068375620_m2493972896_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t4068375620 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4068375620_m2493972896_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t4068375620 *)(KeyValuePair_2_t4068375620 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t4068375620 L_7 = V_2; KeyValuePair_2_t4068375620 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t4068375620 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<Vuforia.Image/PIXEL_FORMAT,UnityEngine.TextureFormat>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3689435288_m351396037_gshared (RuntimeArray * __this, KeyValuePair_2_t3689435288 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3689435288_m351396037_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t3689435288 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3689435288_m351396037_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t3689435288 *)(KeyValuePair_2_t3689435288 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { KeyValuePair_2_t3689435288 L_7 = V_2; KeyValuePair_2_t3689435288 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(KeyValuePair_2_t3689435288 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Hashtable/bucket>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_Tisbucket_t758131704_m357630632_gshared (RuntimeArray * __this, bucket_t758131704 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_Tisbucket_t758131704_m357630632_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; bucket_t758131704 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_Tisbucket_t758131704_m357630632_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (bucket_t758131704 *)(bucket_t758131704 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { bucket_t758131704 L_7 = V_2; bucket_t758131704 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(bucket_t758131704 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.ComponentModel.AttributeCollection/AttributeEntry>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisAttributeEntry_t1001010863_m2158339696_gshared (RuntimeArray * __this, AttributeEntry_t1001010863 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisAttributeEntry_t1001010863_m2158339696_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; AttributeEntry_t1001010863 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisAttributeEntry_t1001010863_m2158339696_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (AttributeEntry_t1001010863 *)(AttributeEntry_t1001010863 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { AttributeEntry_t1001010863 L_7 = V_2; AttributeEntry_t1001010863 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(AttributeEntry_t1001010863 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.DateTime>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisDateTime_t3738529785_m364748720_gshared (RuntimeArray * __this, DateTime_t3738529785 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisDateTime_t3738529785_m364748720_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DateTime_t3738529785 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisDateTime_t3738529785_m364748720_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (DateTime_t3738529785 *)(DateTime_t3738529785 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { DateTime_t3738529785 L_7 = V_2; DateTime_t3738529785 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = DateTime_Equals_m611432332((DateTime_t3738529785 *)(DateTime_t3738529785 *)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.DateTimeOffset>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisDateTimeOffset_t3229287507_m3781718578_gshared (RuntimeArray * __this, DateTimeOffset_t3229287507 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisDateTimeOffset_t3229287507_m3781718578_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DateTimeOffset_t3229287507 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisDateTimeOffset_t3229287507_m3781718578_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (DateTimeOffset_t3229287507 *)(DateTimeOffset_t3229287507 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { DateTimeOffset_t3229287507 L_7 = V_2; DateTimeOffset_t3229287507 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = DateTimeOffset_Equals_m3030958070((DateTimeOffset_t3229287507 *)(DateTimeOffset_t3229287507 *)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.DateTimeParse/DS>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisDS_t2232270370_m4114415445_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisDS_t2232270370_m4114415445_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisDS_t2232270370_m4114415445_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Decimal>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisDecimal_t2948259380_m2897422370_gshared (RuntimeArray * __this, Decimal_t2948259380 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisDecimal_t2948259380_m2897422370_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Decimal_t2948259380 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisDecimal_t2948259380_m2897422370_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Decimal_t2948259380 *)(Decimal_t2948259380 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Decimal_t2948259380 L_7 = V_2; Decimal_t2948259380 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Decimal_Equals_m2592017260((Decimal_t2948259380 *)(Decimal_t2948259380 *)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Double>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisDouble_t594665363_m1696010878_gshared (RuntimeArray * __this, double ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisDouble_t594665363_m1696010878_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; double V_2 = 0.0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisDouble_t594665363_m1696010878_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (double*)(double*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { double L_7 = V_2; double L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Double_Equals_m1674752021((double*)(double*)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Globalization.HebrewNumber/HS>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisHS_t3339773016_m3603136913_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisHS_t3339773016_m3603136913_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisHS_t3339773016_m3603136913_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Globalization.InternalCodePageDataItem>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisInternalCodePageDataItem_t2575532933_m54604211_gshared (RuntimeArray * __this, InternalCodePageDataItem_t2575532933 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisInternalCodePageDataItem_t2575532933_m54604211_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; InternalCodePageDataItem_t2575532933 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisInternalCodePageDataItem_t2575532933_m54604211_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (InternalCodePageDataItem_t2575532933 *)(InternalCodePageDataItem_t2575532933 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { InternalCodePageDataItem_t2575532933 L_7 = V_2; InternalCodePageDataItem_t2575532933 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(InternalCodePageDataItem_t2575532933 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Globalization.InternalEncodingDataItem>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisInternalEncodingDataItem_t3158859817_m169224862_gshared (RuntimeArray * __this, InternalEncodingDataItem_t3158859817 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisInternalEncodingDataItem_t3158859817_m169224862_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; InternalEncodingDataItem_t3158859817 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisInternalEncodingDataItem_t3158859817_m169224862_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (InternalEncodingDataItem_t3158859817 *)(InternalEncodingDataItem_t3158859817 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { InternalEncodingDataItem_t3158859817 L_7 = V_2; InternalEncodingDataItem_t3158859817 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(InternalEncodingDataItem_t3158859817 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Globalization.TimeSpanParse/TimeSpanToken>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTimeSpanToken_t993347374_m282179853_gshared (RuntimeArray * __this, TimeSpanToken_t993347374 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTimeSpanToken_t993347374_m282179853_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TimeSpanToken_t993347374 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTimeSpanToken_t993347374_m282179853_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TimeSpanToken_t993347374 *)(TimeSpanToken_t993347374 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { TimeSpanToken_t993347374 L_7 = V_2; TimeSpanToken_t993347374 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(TimeSpanToken_t993347374 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Guid>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisGuid_t_m2826636229_gshared (RuntimeArray * __this, Guid_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisGuid_t_m2826636229_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Guid_t V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisGuid_t_m2826636229_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Guid_t *)(Guid_t *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Guid_t L_7 = V_2; Guid_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Guid_Equals_m1866984197((Guid_t *)(Guid_t *)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Int16>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisInt16_t2552820387_m2915683400_gshared (RuntimeArray * __this, int16_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisInt16_t2552820387_m2915683400_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int16_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisInt16_t2552820387_m2915683400_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int16_t*)(int16_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int16_t L_7 = V_2; int16_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Int16_Equals_m82811458((int16_t*)(int16_t*)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Int32>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisInt32_t2950945753_m2907032710_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisInt32_t2950945753_m2907032710_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisInt32_t2950945753_m2907032710_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Int32_Equals_m3996243976((int32_t*)(int32_t*)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Int64>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisInt64_t3736567304_m2911357929_gshared (RuntimeArray * __this, int64_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisInt64_t3736567304_m2911357929_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int64_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisInt64_t3736567304_m2911357929_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int64_t*)(int64_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int64_t L_7 = V_2; int64_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Int64_Equals_m858582563((int64_t*)(int64_t*)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.IntPtr>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisIntPtr_t_m272531112_gshared (RuntimeArray * __this, intptr_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisIntPtr_t_m272531112_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; intptr_t V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisIntPtr_t_m272531112_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (intptr_t*)(intptr_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { intptr_t L_7 = V_2; intptr_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = IntPtr_Equals_m3408989655((intptr_t*)(intptr_t*)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Net.CookieTokenizer/RecognizedAttribute>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisRecognizedAttribute_t632074220_m412671837_gshared (RuntimeArray * __this, RecognizedAttribute_t632074220 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisRecognizedAttribute_t632074220_m412671837_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RecognizedAttribute_t632074220 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisRecognizedAttribute_t632074220_m412671837_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (RecognizedAttribute_t632074220 *)(RecognizedAttribute_t632074220 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { RecognizedAttribute_t632074220 L_7 = V_2; RecognizedAttribute_t632074220 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(RecognizedAttribute_t632074220 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Net.HeaderVariantInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisHeaderVariantInfo_t1935685601_m1605335289_gshared (RuntimeArray * __this, HeaderVariantInfo_t1935685601 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisHeaderVariantInfo_t1935685601_m1605335289_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; HeaderVariantInfo_t1935685601 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisHeaderVariantInfo_t1935685601_m1605335289_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (HeaderVariantInfo_t1935685601 *)(HeaderVariantInfo_t1935685601 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { HeaderVariantInfo_t1935685601 L_7 = V_2; HeaderVariantInfo_t1935685601 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(HeaderVariantInfo_t1935685601 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m1683591410_gshared (RuntimeArray * __this, Win32_IP_ADAPTER_ADDRESSES_t3463526328 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m1683591410_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Win32_IP_ADAPTER_ADDRESSES_t3463526328 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m1683591410_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Win32_IP_ADAPTER_ADDRESSES_t3463526328 *)(Win32_IP_ADAPTER_ADDRESSES_t3463526328 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Win32_IP_ADAPTER_ADDRESSES_t3463526328 L_7 = V_2; Win32_IP_ADAPTER_ADDRESSES_t3463526328 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Win32_IP_ADAPTER_ADDRESSES_t3463526328 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Net.Sockets.Socket/WSABUF>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisWSABUF_t1998059390_m1287341269_gshared (RuntimeArray * __this, WSABUF_t1998059390 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisWSABUF_t1998059390_m1287341269_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; WSABUF_t1998059390 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisWSABUF_t1998059390_m1287341269_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (WSABUF_t1998059390 *)(WSABUF_t1998059390 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { WSABUF_t1998059390 L_7 = V_2; WSABUF_t1998059390 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(WSABUF_t1998059390 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Net.WebHeaderCollection/RfcChar>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisRfcChar_t2905409930_m584031707_gshared (RuntimeArray * __this, uint8_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisRfcChar_t2905409930_m584031707_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint8_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisRfcChar_t2905409930_m584031707_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint8_t*)(uint8_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { uint8_t L_7 = V_2; uint8_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(uint8_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Object>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisRuntimeObject_m4067783231_gshared (RuntimeArray * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisRuntimeObject_m4067783231_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RuntimeObject * V_2 = NULL; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisRuntimeObject_m4067783231_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (RuntimeObject **)(RuntimeObject **)(&V_2)); RuntimeObject * L_5 = ___item0; if (L_5) { goto IL_003f; } } { RuntimeObject * L_6 = V_2; if (L_6) { goto IL_0056; } } { return (bool)1; } IL_003f: { RuntimeObject * L_7 = V_2; NullCheck((RuntimeObject *)(___item0)); bool L_8 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(___item0), (RuntimeObject *)L_7); if (!L_8) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_9 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)); } IL_005a: { int32_t L_10 = V_1; int32_t L_11 = V_0; if ((((int32_t)L_10) < ((int32_t)L_11))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.ParameterizedStrings/FormatParam>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisFormatParam_t4194474082_m755460312_gshared (RuntimeArray * __this, FormatParam_t4194474082 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisFormatParam_t4194474082_m755460312_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; FormatParam_t4194474082 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisFormatParam_t4194474082_m755460312_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (FormatParam_t4194474082 *)(FormatParam_t4194474082 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { FormatParam_t4194474082 L_7 = V_2; FormatParam_t4194474082 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(FormatParam_t4194474082 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.CustomAttributeNamedArgument>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisCustomAttributeNamedArgument_t287865710_m941688219_gshared (RuntimeArray * __this, CustomAttributeNamedArgument_t287865710 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisCustomAttributeNamedArgument_t287865710_m941688219_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; CustomAttributeNamedArgument_t287865710 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisCustomAttributeNamedArgument_t287865710_m941688219_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (CustomAttributeNamedArgument_t287865710 *)(CustomAttributeNamedArgument_t287865710 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { CustomAttributeNamedArgument_t287865710 L_7 = V_2; CustomAttributeNamedArgument_t287865710 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = CustomAttributeNamedArgument_Equals_m1414002036((CustomAttributeNamedArgument_t287865710 *)(CustomAttributeNamedArgument_t287865710 *)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.CustomAttributeTypedArgument>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisCustomAttributeTypedArgument_t2723150157_m2663438007_gshared (RuntimeArray * __this, CustomAttributeTypedArgument_t2723150157 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisCustomAttributeTypedArgument_t2723150157_m2663438007_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; CustomAttributeTypedArgument_t2723150157 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisCustomAttributeTypedArgument_t2723150157_m2663438007_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (CustomAttributeTypedArgument_t2723150157 *)(CustomAttributeTypedArgument_t2723150157 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { CustomAttributeTypedArgument_t2723150157 L_7 = V_2; CustomAttributeTypedArgument_t2723150157 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = CustomAttributeTypedArgument_Equals_m2261980307((CustomAttributeTypedArgument_t2723150157 *)(CustomAttributeTypedArgument_t2723150157 *)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.Emit.ILExceptionBlock>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisILExceptionBlock_t3961874966_m537254778_gshared (RuntimeArray * __this, ILExceptionBlock_t3961874966 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisILExceptionBlock_t3961874966_m537254778_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ILExceptionBlock_t3961874966 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisILExceptionBlock_t3961874966_m537254778_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ILExceptionBlock_t3961874966 *)(ILExceptionBlock_t3961874966 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { ILExceptionBlock_t3961874966 L_7 = V_2; ILExceptionBlock_t3961874966 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(ILExceptionBlock_t3961874966 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.Emit.ILExceptionInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisILExceptionInfo_t237856010_m3244023078_gshared (RuntimeArray * __this, ILExceptionInfo_t237856010 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisILExceptionInfo_t237856010_m3244023078_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ILExceptionInfo_t237856010 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisILExceptionInfo_t237856010_m3244023078_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ILExceptionInfo_t237856010 *)(ILExceptionInfo_t237856010 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { ILExceptionInfo_t237856010 L_7 = V_2; ILExceptionInfo_t237856010 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(ILExceptionInfo_t237856010 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.Emit.ILGenerator/LabelData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisLabelData_t360167391_m3647461454_gshared (RuntimeArray * __this, LabelData_t360167391 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisLabelData_t360167391_m3647461454_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; LabelData_t360167391 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisLabelData_t360167391_m3647461454_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (LabelData_t360167391 *)(LabelData_t360167391 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { LabelData_t360167391 L_7 = V_2; LabelData_t360167391 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(LabelData_t360167391 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.Emit.ILGenerator/LabelFixup>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisLabelFixup_t858502054_m3479040328_gshared (RuntimeArray * __this, LabelFixup_t858502054 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisLabelFixup_t858502054_m3479040328_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; LabelFixup_t858502054 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisLabelFixup_t858502054_m3479040328_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (LabelFixup_t858502054 *)(LabelFixup_t858502054 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { LabelFixup_t858502054 L_7 = V_2; LabelFixup_t858502054 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(LabelFixup_t858502054 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.Emit.ILTokenInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisILTokenInfo_t2325775114_m2923331462_gshared (RuntimeArray * __this, ILTokenInfo_t2325775114 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisILTokenInfo_t2325775114_m2923331462_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ILTokenInfo_t2325775114 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisILTokenInfo_t2325775114_m2923331462_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ILTokenInfo_t2325775114 *)(ILTokenInfo_t2325775114 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { ILTokenInfo_t2325775114 L_7 = V_2; ILTokenInfo_t2325775114 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(ILTokenInfo_t2325775114 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.Emit.Label>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisLabel_t2281661643_m1425978922_gshared (RuntimeArray * __this, Label_t2281661643 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisLabel_t2281661643_m1425978922_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Label_t2281661643 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisLabel_t2281661643_m1425978922_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Label_t2281661643 *)(Label_t2281661643 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Label_t2281661643 L_7 = V_2; Label_t2281661643 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Label_Equals_m1321622490((Label_t2281661643 *)(Label_t2281661643 *)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.Emit.MonoResource>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisMonoResource_t4103430009_m3220247244_gshared (RuntimeArray * __this, MonoResource_t4103430009 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisMonoResource_t4103430009_m3220247244_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; MonoResource_t4103430009 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisMonoResource_t4103430009_m3220247244_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (MonoResource_t4103430009 *)(MonoResource_t4103430009 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { MonoResource_t4103430009 L_7 = V_2; MonoResource_t4103430009 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(MonoResource_t4103430009 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.Emit.MonoWin32Resource>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisMonoWin32Resource_t1904229483_m4284943779_gshared (RuntimeArray * __this, MonoWin32Resource_t1904229483 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisMonoWin32Resource_t1904229483_m4284943779_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; MonoWin32Resource_t1904229483 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisMonoWin32Resource_t1904229483_m4284943779_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (MonoWin32Resource_t1904229483 *)(MonoWin32Resource_t1904229483 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { MonoWin32Resource_t1904229483 L_7 = V_2; MonoWin32Resource_t1904229483 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(MonoWin32Resource_t1904229483 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.Emit.RefEmitPermissionSet>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisRefEmitPermissionSet_t484390987_m2357266594_gshared (RuntimeArray * __this, RefEmitPermissionSet_t484390987 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisRefEmitPermissionSet_t484390987_m2357266594_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RefEmitPermissionSet_t484390987 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisRefEmitPermissionSet_t484390987_m2357266594_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (RefEmitPermissionSet_t484390987 *)(RefEmitPermissionSet_t484390987 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { RefEmitPermissionSet_t484390987 L_7 = V_2; RefEmitPermissionSet_t484390987 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(RefEmitPermissionSet_t484390987 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.ParameterModifier>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisParameterModifier_t1461694466_m1000453323_gshared (RuntimeArray * __this, ParameterModifier_t1461694466 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisParameterModifier_t1461694466_m1000453323_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ParameterModifier_t1461694466 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisParameterModifier_t1461694466_m1000453323_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ParameterModifier_t1461694466 *)(ParameterModifier_t1461694466 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { ParameterModifier_t1461694466 L_7 = V_2; ParameterModifier_t1461694466 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(ParameterModifier_t1461694466 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Resources.ResourceLocator>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisResourceLocator_t3723970807_m3744281591_gshared (RuntimeArray * __this, ResourceLocator_t3723970807 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisResourceLocator_t3723970807_m3744281591_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ResourceLocator_t3723970807 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisResourceLocator_t3723970807_m3744281591_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ResourceLocator_t3723970807 *)(ResourceLocator_t3723970807 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { ResourceLocator_t3723970807 L_7 = V_2; ResourceLocator_t3723970807 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(ResourceLocator_t3723970807 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Runtime.CompilerServices.Ephemeron>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEphemeron_t1602596362_m546276767_gshared (RuntimeArray * __this, Ephemeron_t1602596362 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEphemeron_t1602596362_m546276767_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Ephemeron_t1602596362 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEphemeron_t1602596362_m546276767_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Ephemeron_t1602596362 *)(Ephemeron_t1602596362 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Ephemeron_t1602596362 L_7 = V_2; Ephemeron_t1602596362 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Ephemeron_t1602596362 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Runtime.InteropServices.GCHandle>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisGCHandle_t3351438187_m3962075817_gshared (RuntimeArray * __this, GCHandle_t3351438187 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisGCHandle_t3351438187_m3962075817_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; GCHandle_t3351438187 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisGCHandle_t3351438187_m3962075817_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (GCHandle_t3351438187 *)(GCHandle_t3351438187 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { GCHandle_t3351438187 L_7 = V_2; GCHandle_t3351438187 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = GCHandle_Equals_m146069735((GCHandle_t3351438187 *)(GCHandle_t3351438187 *)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Runtime.Serialization.Formatters.Binary.BinaryTypeEnum>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisBinaryTypeEnum_t3485436454_m1694216578_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisBinaryTypeEnum_t3485436454_m1694216578_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisBinaryTypeEnum_t3485436454_m1694216578_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Runtime.Serialization.Formatters.Binary.InternalPrimitiveTypeE>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisInternalPrimitiveTypeE_t4093048977_m2149992838_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisInternalPrimitiveTypeE_t4093048977_m2149992838_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisInternalPrimitiveTypeE_t4093048977_m2149992838_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.SByte>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisSByte_t1669577662_m926034270_gshared (RuntimeArray * __this, int8_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisSByte_t1669577662_m926034270_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int8_t V_2 = 0x0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisSByte_t1669577662_m926034270_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int8_t*)(int8_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int8_t L_7 = V_2; int8_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = SByte_Equals_m865896384((int8_t*)(int8_t*)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisX509ChainStatus_t133602714_m795171973_gshared (RuntimeArray * __this, X509ChainStatus_t133602714 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisX509ChainStatus_t133602714_m795171973_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; X509ChainStatus_t133602714 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisX509ChainStatus_t133602714_m795171973_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (X509ChainStatus_t133602714 *)(X509ChainStatus_t133602714 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { X509ChainStatus_t133602714 L_7 = V_2; X509ChainStatus_t133602714 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(X509ChainStatus_t133602714 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Single>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisSingle_t1397266774_m2135761808_gshared (RuntimeArray * __this, float ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisSingle_t1397266774_m2135761808_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; float V_2 = 0.0f; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisSingle_t1397266774_m2135761808_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (float*)(float*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { float L_7 = V_2; float L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Single_Equals_m438106747((float*)(float*)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.TermInfoStrings>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTermInfoStrings_t290279955_m344583557_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTermInfoStrings_t290279955_m344583557_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTermInfoStrings_t290279955_m344583557_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisLowerCaseMapping_t2910317575_m491248538_gshared (RuntimeArray * __this, LowerCaseMapping_t2910317575 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisLowerCaseMapping_t2910317575_m491248538_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; LowerCaseMapping_t2910317575 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisLowerCaseMapping_t2910317575_m491248538_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (LowerCaseMapping_t2910317575 *)(LowerCaseMapping_t2910317575 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { LowerCaseMapping_t2910317575 L_7 = V_2; LowerCaseMapping_t2910317575 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(LowerCaseMapping_t2910317575 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Text.RegularExpressions.RegexOptions>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisRegexOptions_t92845595_m3531906213_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisRegexOptions_t92845595_m3531906213_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisRegexOptions_t92845595_m3531906213_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Threading.CancellationTokenRegistration>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisCancellationTokenRegistration_t2813424904_m1136591470_gshared (RuntimeArray * __this, CancellationTokenRegistration_t2813424904 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisCancellationTokenRegistration_t2813424904_m1136591470_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; CancellationTokenRegistration_t2813424904 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisCancellationTokenRegistration_t2813424904_m1136591470_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (CancellationTokenRegistration_t2813424904 *)(CancellationTokenRegistration_t2813424904 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { CancellationTokenRegistration_t2813424904 L_7 = V_2; CancellationTokenRegistration_t2813424904 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = CancellationTokenRegistration_Equals_m4118870220((CancellationTokenRegistration_t2813424904 *)(CancellationTokenRegistration_t2813424904 *)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.TimeSpan>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTimeSpan_t881159249_m1600990182_gshared (RuntimeArray * __this, TimeSpan_t881159249 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTimeSpan_t881159249_m1600990182_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TimeSpan_t881159249 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTimeSpan_t881159249_m1600990182_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TimeSpan_t881159249 *)(TimeSpan_t881159249 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { TimeSpan_t881159249 L_7 = V_2; TimeSpan_t881159249 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = TimeSpan_Equals_m45505612((TimeSpan_t881159249 *)(TimeSpan_t881159249 *)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.TypeCode>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTypeCode_t2987224087_m2462036610_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTypeCode_t2987224087_m2462036610_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTypeCode_t2987224087_m2462036610_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.UInt16>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisUInt16_t2177724958_m3393176156_gshared (RuntimeArray * __this, uint16_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisUInt16_t2177724958_m3393176156_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint16_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisUInt16_t2177724958_m3393176156_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint16_t*)(uint16_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { uint16_t L_7 = V_2; uint16_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = UInt16_Equals_m642257745((uint16_t*)(uint16_t*)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.UInt32>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisUInt32_t2560061978_m387509280_gshared (RuntimeArray * __this, uint32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisUInt32_t2560061978_m387509280_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisUInt32_t2560061978_m387509280_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint32_t*)(uint32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { uint32_t L_7 = V_2; uint32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = UInt32_Equals_m351935437((uint32_t*)(uint32_t*)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.UInt64>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisUInt64_t4134040092_m94895126_gshared (RuntimeArray * __this, uint64_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisUInt64_t4134040092_m94895126_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint64_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisUInt64_t4134040092_m94895126_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint64_t*)(uint64_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { uint64_t L_7 = V_2; uint64_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = UInt64_Equals_m1879425698((uint64_t*)(uint64_t*)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisMap_t1331044427_m2582423708_gshared (RuntimeArray * __this, Map_t1331044427 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisMap_t1331044427_m2582423708_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Map_t1331044427 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisMap_t1331044427_m2582423708_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Map_t1331044427 *)(Map_t1331044427 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Map_t1331044427 L_7 = V_2; Map_t1331044427 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Map_t1331044427 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Xml.Schema.RangePositionInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisRangePositionInfo_t589968936_m3403309823_gshared (RuntimeArray * __this, RangePositionInfo_t589968936 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisRangePositionInfo_t589968936_m3403309823_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RangePositionInfo_t589968936 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisRangePositionInfo_t589968936_m3403309823_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (RangePositionInfo_t589968936 *)(RangePositionInfo_t589968936 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { RangePositionInfo_t589968936 L_7 = V_2; RangePositionInfo_t589968936 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(RangePositionInfo_t589968936 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisSequenceConstructPosContext_t2054380699_m1886702386_gshared (RuntimeArray * __this, SequenceConstructPosContext_t2054380699 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisSequenceConstructPosContext_t2054380699_m1886702386_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; SequenceConstructPosContext_t2054380699 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisSequenceConstructPosContext_t2054380699_m1886702386_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (SequenceConstructPosContext_t2054380699 *)(SequenceConstructPosContext_t2054380699 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { SequenceConstructPosContext_t2054380699 L_7 = V_2; SequenceConstructPosContext_t2054380699 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(SequenceConstructPosContext_t2054380699 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisXmlSchemaObjectEntry_t3344676971_m3591905055_gshared (RuntimeArray * __this, XmlSchemaObjectEntry_t3344676971 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisXmlSchemaObjectEntry_t3344676971_m3591905055_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; XmlSchemaObjectEntry_t3344676971 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisXmlSchemaObjectEntry_t3344676971_m3591905055_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (XmlSchemaObjectEntry_t3344676971 *)(XmlSchemaObjectEntry_t3344676971 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { XmlSchemaObjectEntry_t3344676971 L_7 = V_2; XmlSchemaObjectEntry_t3344676971 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(XmlSchemaObjectEntry_t3344676971 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Xml.Schema.XmlTypeCode>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisXmlTypeCode_t2623622950_m2535793185_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisXmlTypeCode_t2623622950_m2535793185_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisXmlTypeCode_t2623622950_m2535793185_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Xml.Schema.XsdBuilder/State>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisState_t1890458201_m2154717523_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisState_t1890458201_m2154717523_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisState_t1890458201_m2154717523_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Xml.XPath.XPathResultType>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisXPathResultType_t2828988488_m519609602_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisXPathResultType_t2828988488_m519609602_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisXPathResultType_t2828988488_m519609602_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Xml.XmlNamespaceManager/NamespaceDeclaration>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisNamespaceDeclaration_t4162609575_m1598120485_gshared (RuntimeArray * __this, NamespaceDeclaration_t4162609575 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisNamespaceDeclaration_t4162609575_m1598120485_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; NamespaceDeclaration_t4162609575 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisNamespaceDeclaration_t4162609575_m1598120485_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (NamespaceDeclaration_t4162609575 *)(NamespaceDeclaration_t4162609575 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { NamespaceDeclaration_t4162609575 L_7 = V_2; NamespaceDeclaration_t4162609575 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(NamespaceDeclaration_t4162609575 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Xml.XmlNodeReaderNavigator/VirtualAttribute>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisVirtualAttribute_t3578083907_m1725387487_gshared (RuntimeArray * __this, VirtualAttribute_t3578083907 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisVirtualAttribute_t3578083907_m1725387487_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; VirtualAttribute_t3578083907 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisVirtualAttribute_t3578083907_m1725387487_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (VirtualAttribute_t3578083907 *)(VirtualAttribute_t3578083907 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { VirtualAttribute_t3578083907 L_7 = V_2; VirtualAttribute_t3578083907 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(VirtualAttribute_t3578083907 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Xml.XmlTextReaderImpl/ParsingState>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisParsingState_t1780334922_m3181465327_gshared (RuntimeArray * __this, ParsingState_t1780334922 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisParsingState_t1780334922_m3181465327_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ParsingState_t1780334922 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisParsingState_t1780334922_m3181465327_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ParsingState_t1780334922 *)(ParsingState_t1780334922 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { ParsingState_t1780334922 L_7 = V_2; ParsingState_t1780334922 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(ParsingState_t1780334922 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Xml.XmlTextWriter/Namespace>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisNamespace_t2218256516_m290305241_gshared (RuntimeArray * __this, Namespace_t2218256516 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisNamespace_t2218256516_m290305241_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Namespace_t2218256516 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisNamespace_t2218256516_m290305241_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Namespace_t2218256516 *)(Namespace_t2218256516 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Namespace_t2218256516 L_7 = V_2; Namespace_t2218256516 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Namespace_t2218256516 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Xml.XmlTextWriter/State>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisState_t1792539347_m1048336574_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisState_t1792539347_m1048336574_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisState_t1792539347_m1048336574_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Xml.XmlTextWriter/TagInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTagInfo_t3526638417_m4140710765_gshared (RuntimeArray * __this, TagInfo_t3526638417 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTagInfo_t3526638417_m4140710765_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TagInfo_t3526638417 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTagInfo_t3526638417_m4140710765_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TagInfo_t3526638417 *)(TagInfo_t3526638417 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { TagInfo_t3526638417 L_7 = V_2; TagInfo_t3526638417 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(TagInfo_t3526638417 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<TMPro.MaterialReference>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisMaterialReference_t1952344632_m3054325727_gshared (RuntimeArray * __this, MaterialReference_t1952344632 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisMaterialReference_t1952344632_m3054325727_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; MaterialReference_t1952344632 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisMaterialReference_t1952344632_m3054325727_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (MaterialReference_t1952344632 *)(MaterialReference_t1952344632 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { MaterialReference_t1952344632 L_7 = V_2; MaterialReference_t1952344632 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(MaterialReference_t1952344632 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisSpriteData_t3048397587_m4000778412_gshared (RuntimeArray * __this, SpriteData_t3048397587 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisSpriteData_t3048397587_m4000778412_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; SpriteData_t3048397587 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisSpriteData_t3048397587_m4000778412_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (SpriteData_t3048397587 *)(SpriteData_t3048397587 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { SpriteData_t3048397587 L_7 = V_2; SpriteData_t3048397587 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(SpriteData_t3048397587 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<TMPro.TMP_CharacterInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTMP_CharacterInfo_t3185626797_m2610199187_gshared (RuntimeArray * __this, TMP_CharacterInfo_t3185626797 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTMP_CharacterInfo_t3185626797_m2610199187_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TMP_CharacterInfo_t3185626797 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTMP_CharacterInfo_t3185626797_m2610199187_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TMP_CharacterInfo_t3185626797 *)(TMP_CharacterInfo_t3185626797 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { TMP_CharacterInfo_t3185626797 L_7 = V_2; TMP_CharacterInfo_t3185626797 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(TMP_CharacterInfo_t3185626797 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<TMPro.TMP_FontWeights>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTMP_FontWeights_t916301067_m4182675464_gshared (RuntimeArray * __this, TMP_FontWeights_t916301067 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTMP_FontWeights_t916301067_m4182675464_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TMP_FontWeights_t916301067 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTMP_FontWeights_t916301067_m4182675464_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TMP_FontWeights_t916301067 *)(TMP_FontWeights_t916301067 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { TMP_FontWeights_t916301067 L_7 = V_2; TMP_FontWeights_t916301067 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(TMP_FontWeights_t916301067 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<TMPro.TMP_InputField/ContentType>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisContentType_t1128941285_m648156399_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisContentType_t1128941285_m648156399_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisContentType_t1128941285_m648156399_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<TMPro.TMP_LineInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTMP_LineInfo_t1079631636_m250410355_gshared (RuntimeArray * __this, TMP_LineInfo_t1079631636 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTMP_LineInfo_t1079631636_m250410355_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TMP_LineInfo_t1079631636 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTMP_LineInfo_t1079631636_m250410355_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TMP_LineInfo_t1079631636 *)(TMP_LineInfo_t1079631636 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { TMP_LineInfo_t1079631636 L_7 = V_2; TMP_LineInfo_t1079631636 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(TMP_LineInfo_t1079631636 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<TMPro.TMP_LinkInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTMP_LinkInfo_t1092083476_m1569125747_gshared (RuntimeArray * __this, TMP_LinkInfo_t1092083476 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTMP_LinkInfo_t1092083476_m1569125747_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TMP_LinkInfo_t1092083476 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTMP_LinkInfo_t1092083476_m1569125747_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TMP_LinkInfo_t1092083476 *)(TMP_LinkInfo_t1092083476 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { TMP_LinkInfo_t1092083476 L_7 = V_2; TMP_LinkInfo_t1092083476 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(TMP_LinkInfo_t1092083476 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<TMPro.TMP_MeshInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTMP_MeshInfo_t2771747634_m644520357_gshared (RuntimeArray * __this, TMP_MeshInfo_t2771747634 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTMP_MeshInfo_t2771747634_m644520357_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TMP_MeshInfo_t2771747634 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTMP_MeshInfo_t2771747634_m644520357_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TMP_MeshInfo_t2771747634 *)(TMP_MeshInfo_t2771747634 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { TMP_MeshInfo_t2771747634 L_7 = V_2; TMP_MeshInfo_t2771747634 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(TMP_MeshInfo_t2771747634 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<TMPro.TMP_PageInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTMP_PageInfo_t2608430633_m1019762868_gshared (RuntimeArray * __this, TMP_PageInfo_t2608430633 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTMP_PageInfo_t2608430633_m1019762868_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TMP_PageInfo_t2608430633 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTMP_PageInfo_t2608430633_m1019762868_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TMP_PageInfo_t2608430633 *)(TMP_PageInfo_t2608430633 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { TMP_PageInfo_t2608430633 L_7 = V_2; TMP_PageInfo_t2608430633 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(TMP_PageInfo_t2608430633 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<TMPro.TMP_WordInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTMP_WordInfo_t3331066303_m259378234_gshared (RuntimeArray * __this, TMP_WordInfo_t3331066303 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTMP_WordInfo_t3331066303_m259378234_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TMP_WordInfo_t3331066303 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTMP_WordInfo_t3331066303_m259378234_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TMP_WordInfo_t3331066303 *)(TMP_WordInfo_t3331066303 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { TMP_WordInfo_t3331066303 L_7 = V_2; TMP_WordInfo_t3331066303 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(TMP_WordInfo_t3331066303 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<TMPro.TextAlignmentOptions>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTextAlignmentOptions_t4036791236_m744948684_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTextAlignmentOptions_t4036791236_m744948684_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTextAlignmentOptions_t4036791236_m744948684_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<TMPro.XML_TagAttribute>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisXML_TagAttribute_t1174424309_m2858672699_gshared (RuntimeArray * __this, XML_TagAttribute_t1174424309 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisXML_TagAttribute_t1174424309_m2858672699_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; XML_TagAttribute_t1174424309 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisXML_TagAttribute_t1174424309_m2858672699_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (XML_TagAttribute_t1174424309 *)(XML_TagAttribute_t1174424309 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { XML_TagAttribute_t1174424309 L_7 = V_2; XML_TagAttribute_t1174424309 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(XML_TagAttribute_t1174424309 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.BeforeRenderHelper/OrderBlock>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisOrderBlock_t1585977831_m1840347001_gshared (RuntimeArray * __this, OrderBlock_t1585977831 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisOrderBlock_t1585977831_m1840347001_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; OrderBlock_t1585977831 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisOrderBlock_t1585977831_m1840347001_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (OrderBlock_t1585977831 *)(OrderBlock_t1585977831 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { OrderBlock_t1585977831 L_7 = V_2; OrderBlock_t1585977831 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(OrderBlock_t1585977831 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Camera/StereoscopicEye>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisStereoscopicEye_t2238664036_m4230514778_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisStereoscopicEye_t2238664036_m4230514778_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisStereoscopicEye_t2238664036_m4230514778_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Color32>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisColor32_t2600501292_m2162938018_gshared (RuntimeArray * __this, Color32_t2600501292 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisColor32_t2600501292_m2162938018_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Color32_t2600501292 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisColor32_t2600501292_m2162938018_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Color32_t2600501292 *)(Color32_t2600501292 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Color32_t2600501292 L_7 = V_2; Color32_t2600501292 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Color32_t2600501292 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Color>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisColor_t2555686324_m266224315_gshared (RuntimeArray * __this, Color_t2555686324 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisColor_t2555686324_m266224315_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Color_t2555686324 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisColor_t2555686324_m266224315_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Color_t2555686324 *)(Color_t2555686324 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Color_t2555686324 L_7 = V_2; Color_t2555686324 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Color_Equals_m3887740140((Color_t2555686324 *)(Color_t2555686324 *)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.ContactPoint>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisContactPoint_t3758755253_m1890115071_gshared (RuntimeArray * __this, ContactPoint_t3758755253 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisContactPoint_t3758755253_m1890115071_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ContactPoint_t3758755253 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisContactPoint_t3758755253_m1890115071_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ContactPoint_t3758755253 *)(ContactPoint_t3758755253 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { ContactPoint_t3758755253 L_7 = V_2; ContactPoint_t3758755253 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(ContactPoint_t3758755253 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.EventSystems.RaycastResult>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisRaycastResult_t3360306849_m3809401052_gshared (RuntimeArray * __this, RaycastResult_t3360306849 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisRaycastResult_t3360306849_m3809401052_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RaycastResult_t3360306849 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisRaycastResult_t3360306849_m3809401052_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (RaycastResult_t3360306849 *)(RaycastResult_t3360306849 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { RaycastResult_t3360306849 L_7 = V_2; RaycastResult_t3360306849 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(RaycastResult_t3360306849 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisPlayerLoopSystem_t105772105_m1867619209_gshared (RuntimeArray * __this, PlayerLoopSystem_t105772105 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisPlayerLoopSystem_t105772105_m1867619209_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; PlayerLoopSystem_t105772105 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisPlayerLoopSystem_t105772105_m1867619209_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (PlayerLoopSystem_t105772105 *)(PlayerLoopSystem_t105772105 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { PlayerLoopSystem_t105772105 L_7 = V_2; PlayerLoopSystem_t105772105 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(PlayerLoopSystem_t105772105 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Keyframe>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisKeyframe_t4206410242_m2096605895_gshared (RuntimeArray * __this, Keyframe_t4206410242 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyframe_t4206410242_m2096605895_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Keyframe_t4206410242 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisKeyframe_t4206410242_m2096605895_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Keyframe_t4206410242 *)(Keyframe_t4206410242 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Keyframe_t4206410242 L_7 = V_2; Keyframe_t4206410242 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Keyframe_t4206410242 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Matrix4x4>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisMatrix4x4_t1817901843_m2788258248_gshared (RuntimeArray * __this, Matrix4x4_t1817901843 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisMatrix4x4_t1817901843_m2788258248_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Matrix4x4_t1817901843 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisMatrix4x4_t1817901843_m2788258248_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Matrix4x4_t1817901843 *)(Matrix4x4_t1817901843 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Matrix4x4_t1817901843 L_7 = V_2; Matrix4x4_t1817901843 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Matrix4x4_Equals_m3210071278((Matrix4x4_t1817901843 *)(Matrix4x4_t1817901843 *)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Plane>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisPlane_t1000493321_m3673932690_gshared (RuntimeArray * __this, Plane_t1000493321 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisPlane_t1000493321_m3673932690_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Plane_t1000493321 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisPlane_t1000493321_m3673932690_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Plane_t1000493321 *)(Plane_t1000493321 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Plane_t1000493321 L_7 = V_2; Plane_t1000493321 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Plane_t1000493321 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Playables.PlayableBinding>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisPlayableBinding_t354260709_m782693665_gshared (RuntimeArray * __this, PlayableBinding_t354260709 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisPlayableBinding_t354260709_m782693665_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; PlayableBinding_t354260709 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisPlayableBinding_t354260709_m782693665_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (PlayableBinding_t354260709 *)(PlayableBinding_t354260709 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { PlayableBinding_t354260709 L_7 = V_2; PlayableBinding_t354260709 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(PlayableBinding_t354260709 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.RaycastHit2D>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisRaycastHit2D_t2279581989_m2733133723_gshared (RuntimeArray * __this, RaycastHit2D_t2279581989 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisRaycastHit2D_t2279581989_m2733133723_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RaycastHit2D_t2279581989 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisRaycastHit2D_t2279581989_m2733133723_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (RaycastHit2D_t2279581989 *)(RaycastHit2D_t2279581989 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { RaycastHit2D_t2279581989 L_7 = V_2; RaycastHit2D_t2279581989 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(RaycastHit2D_t2279581989 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.RaycastHit>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisRaycastHit_t1056001966_m2163828986_gshared (RuntimeArray * __this, RaycastHit_t1056001966 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisRaycastHit_t1056001966_m2163828986_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RaycastHit_t1056001966 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisRaycastHit_t1056001966_m2163828986_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (RaycastHit_t1056001966 *)(RaycastHit_t1056001966 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { RaycastHit_t1056001966 L_7 = V_2; RaycastHit_t1056001966 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(RaycastHit_t1056001966 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.SendMouseEvents/HitInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisHitInfo_t3229609740_m180302123_gshared (RuntimeArray * __this, HitInfo_t3229609740 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisHitInfo_t3229609740_m180302123_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; HitInfo_t3229609740 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisHitInfo_t3229609740_m180302123_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (HitInfo_t3229609740 *)(HitInfo_t3229609740 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { HitInfo_t3229609740 L_7 = V_2; HitInfo_t3229609740 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(HitInfo_t3229609740 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisGcAchievementData_t675222246_m348483916_gshared (RuntimeArray * __this, GcAchievementData_t675222246 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisGcAchievementData_t675222246_m348483916_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; GcAchievementData_t675222246 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisGcAchievementData_t675222246_m348483916_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (GcAchievementData_t675222246 *)(GcAchievementData_t675222246 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { GcAchievementData_t675222246 L_7 = V_2; GcAchievementData_t675222246 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(GcAchievementData_t675222246 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisGcScoreData_t2125309831_m2879791485_gshared (RuntimeArray * __this, GcScoreData_t2125309831 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisGcScoreData_t2125309831_m2879791485_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; GcScoreData_t2125309831 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisGcScoreData_t2125309831_m2879791485_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (GcScoreData_t2125309831 *)(GcScoreData_t2125309831 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { GcScoreData_t2125309831 L_7 = V_2; GcScoreData_t2125309831 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(GcScoreData_t2125309831 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.TextureFormat>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTextureFormat_t2701165832_m2455236935_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTextureFormat_t2701165832_m2455236935_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTextureFormat_t2701165832_m2455236935_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Touch>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTouch_t1921856868_m354355717_gshared (RuntimeArray * __this, Touch_t1921856868 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTouch_t1921856868_m354355717_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Touch_t1921856868 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTouch_t1921856868_m354355717_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Touch_t1921856868 *)(Touch_t1921856868 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Touch_t1921856868 L_7 = V_2; Touch_t1921856868 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Touch_t1921856868 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.TouchScreenKeyboardType>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTouchScreenKeyboardType_t1530597702_m3440712606_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTouchScreenKeyboardType_t1530597702_m3440712606_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTouchScreenKeyboardType_t1530597702_m3440712606_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.AspectRatioFitter/AspectMode>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisAspectMode_t3417192999_m3232500413_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisAspectMode_t3417192999_m3232500413_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisAspectMode_t3417192999_m3232500413_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.ColorBlock>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisColorBlock_t2139031574_m2425560528_gshared (RuntimeArray * __this, ColorBlock_t2139031574 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisColorBlock_t2139031574_m2425560528_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ColorBlock_t2139031574 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisColorBlock_t2139031574_m2425560528_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ColorBlock_t2139031574 *)(ColorBlock_t2139031574 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { ColorBlock_t2139031574 L_7 = V_2; ColorBlock_t2139031574 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = ColorBlock_Equals_m518833916((ColorBlock_t2139031574 *)(ColorBlock_t2139031574 *)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.ContentSizeFitter/FitMode>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisFitMode_t3267881214_m888472092_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisFitMode_t3267881214_m888472092_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisFitMode_t3267881214_m888472092_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.Image/FillMethod>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisFillMethod_t1167457570_m2086878798_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisFillMethod_t1167457570_m2086878798_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisFillMethod_t1167457570_m2086878798_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.Image/Type>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisType_t1152881528_m627632766_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisType_t1152881528_m627632766_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisType_t1152881528_m627632766_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.InputField/CharacterValidation>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisCharacterValidation_t4051914437_m3474018230_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisCharacterValidation_t4051914437_m3474018230_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisCharacterValidation_t4051914437_m3474018230_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.InputField/ContentType>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisContentType_t1787303396_m692835665_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisContentType_t1787303396_m692835665_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisContentType_t1787303396_m692835665_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.InputField/InputType>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisInputType_t1770400679_m1010977894_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisInputType_t1770400679_m1010977894_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisInputType_t1770400679_m1010977894_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.InputField/LineType>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisLineType_t4214648469_m155272349_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisLineType_t4214648469_m155272349_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisLineType_t4214648469_m155272349_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.Navigation>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisNavigation_t3049316579_m621166290_gshared (RuntimeArray * __this, Navigation_t3049316579 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisNavigation_t3049316579_m621166290_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Navigation_t3049316579 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisNavigation_t3049316579_m621166290_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Navigation_t3049316579 *)(Navigation_t3049316579 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Navigation_t3049316579 L_7 = V_2; Navigation_t3049316579 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(Navigation_t3049316579 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.Scrollbar/Direction>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisDirection_t3470714353_m1685343067_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisDirection_t3470714353_m1685343067_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisDirection_t3470714353_m1685343067_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.Selectable/Transition>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTransition_t1769908631_m996811643_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTransition_t1769908631_m996811643_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTransition_t1769908631_m996811643_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.Slider/Direction>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisDirection_t337909235_m2979051405_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisDirection_t337909235_m2979051405_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisDirection_t337909235_m2979051405_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.SpriteState>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisSpriteState_t1362986479_m1315569797_gshared (RuntimeArray * __this, SpriteState_t1362986479 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisSpriteState_t1362986479_m1315569797_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; SpriteState_t1362986479 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisSpriteState_t1362986479_m1315569797_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (SpriteState_t1362986479 *)(SpriteState_t1362986479 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { SpriteState_t1362986479 L_7 = V_2; SpriteState_t1362986479 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(SpriteState_t1362986479 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UICharInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisUICharInfo_t75501106_m1619960249_gshared (RuntimeArray * __this, UICharInfo_t75501106 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisUICharInfo_t75501106_m1619960249_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; UICharInfo_t75501106 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisUICharInfo_t75501106_m1619960249_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (UICharInfo_t75501106 *)(UICharInfo_t75501106 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { UICharInfo_t75501106 L_7 = V_2; UICharInfo_t75501106 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(UICharInfo_t75501106 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UILineInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisUILineInfo_t4195266810_m375073905_gshared (RuntimeArray * __this, UILineInfo_t4195266810 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisUILineInfo_t4195266810_m375073905_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; UILineInfo_t4195266810 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisUILineInfo_t4195266810_m375073905_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (UILineInfo_t4195266810 *)(UILineInfo_t4195266810 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { UILineInfo_t4195266810 L_7 = V_2; UILineInfo_t4195266810 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(UILineInfo_t4195266810 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UIVertex>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisUIVertex_t4057497605_m1942096352_gshared (RuntimeArray * __this, UIVertex_t4057497605 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisUIVertex_t4057497605_m1942096352_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; UIVertex_t4057497605 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisUIVertex_t4057497605_m1942096352_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (UIVertex_t4057497605 *)(UIVertex_t4057497605 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { UIVertex_t4057497605 L_7 = V_2; UIVertex_t4057497605 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(UIVertex_t4057497605 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UnitySynchronizationContext/WorkRequest>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisWorkRequest_t1354518612_m2404463752_gshared (RuntimeArray * __this, WorkRequest_t1354518612 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisWorkRequest_t1354518612_m2404463752_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; WorkRequest_t1354518612 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisWorkRequest_t1354518612_m2404463752_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (WorkRequest_t1354518612 *)(WorkRequest_t1354518612 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { WorkRequest_t1354518612 L_7 = V_2; WorkRequest_t1354518612 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(WorkRequest_t1354518612 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Vector2>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisVector2_t2156229523_m4078183089_gshared (RuntimeArray * __this, Vector2_t2156229523 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisVector2_t2156229523_m4078183089_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Vector2_t2156229523 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisVector2_t2156229523_m4078183089_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Vector2_t2156229523 *)(Vector2_t2156229523 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Vector2_t2156229523 L_7 = V_2; Vector2_t2156229523 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Vector2_Equals_m832062989((Vector2_t2156229523 *)(Vector2_t2156229523 *)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Vector3>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisVector3_t3722313464_m4078183076_gshared (RuntimeArray * __this, Vector3_t3722313464 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisVector3_t3722313464_m4078183076_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Vector3_t3722313464 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisVector3_t3722313464_m4078183076_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Vector3_t3722313464 *)(Vector3_t3722313464 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Vector3_t3722313464 L_7 = V_2; Vector3_t3722313464 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Vector3_Equals_m1753054704((Vector3_t3722313464 *)(Vector3_t3722313464 *)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Vector4>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisVector4_t3319028937_m4078183023_gshared (RuntimeArray * __this, Vector4_t3319028937 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisVector4_t3319028937_m4078183023_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Vector4_t3319028937 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisVector4_t3319028937_m4078183023_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Vector4_t3319028937 *)(Vector4_t3319028937 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { Vector4_t3319028937 L_7 = V_2; Vector4_t3319028937 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Vector4_Equals_m1779210055((Vector4_t3319028937 *)(Vector4_t3319028937 *)(&___item0), (RuntimeObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_005a: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.WebCamDevice>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisWebCamDevice_t1322781432_m3093132044_gshared (RuntimeArray * __this, WebCamDevice_t1322781432 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisWebCamDevice_t1322781432_m3093132044_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; WebCamDevice_t1322781432 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisWebCamDevice_t1322781432_m3093132044_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (WebCamDevice_t1322781432 *)(WebCamDevice_t1322781432 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { WebCamDevice_t1322781432 L_7 = V_2; WebCamDevice_t1322781432 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(WebCamDevice_t1322781432 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.CameraDevice/CameraField>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisCameraField_t1483002240_m898899028_gshared (RuntimeArray * __this, CameraField_t1483002240 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisCameraField_t1483002240_m898899028_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; CameraField_t1483002240 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisCameraField_t1483002240_m898899028_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (CameraField_t1483002240 *)(CameraField_t1483002240 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { CameraField_t1483002240 L_7 = V_2; CameraField_t1483002240 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(CameraField_t1483002240 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.EyewearDevice/EyewearCalibrationReading>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEyewearCalibrationReading_t664929988_m275082353_gshared (RuntimeArray * __this, EyewearCalibrationReading_t664929988 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEyewearCalibrationReading_t664929988_m275082353_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; EyewearCalibrationReading_t664929988 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEyewearCalibrationReading_t664929988_m275082353_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (EyewearCalibrationReading_t664929988 *)(EyewearCalibrationReading_t664929988 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { EyewearCalibrationReading_t664929988 L_7 = V_2; EyewearCalibrationReading_t664929988 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(EyewearCalibrationReading_t664929988 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisEyewearCalibrationReadingData_t937256773_m1765250429_gshared (RuntimeArray * __this, EyewearCalibrationReadingData_t937256773 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisEyewearCalibrationReadingData_t937256773_m1765250429_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; EyewearCalibrationReadingData_t937256773 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisEyewearCalibrationReadingData_t937256773_m1765250429_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (EyewearCalibrationReadingData_t937256773 *)(EyewearCalibrationReadingData_t937256773 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { EyewearCalibrationReadingData_t937256773 L_7 = V_2; EyewearCalibrationReadingData_t937256773 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(EyewearCalibrationReadingData_t937256773 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.Image/PIXEL_FORMAT>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisPIXEL_FORMAT_t3209881435_m3898758130_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisPIXEL_FORMAT_t3209881435_m3898758130_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisPIXEL_FORMAT_t3209881435_m3898758130_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.TrackableBehaviour/Status>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisStatus_t1100905814_m3124245975_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisStatus_t1100905814_m3124245975_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisStatus_t1100905814_m3124245975_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { int32_t L_7 = V_2; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(int32_t*)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.TrackerData/TrackableResultData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTrackableResultData_t452703160_m3736208667_gshared (RuntimeArray * __this, TrackableResultData_t452703160 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTrackableResultData_t452703160_m3736208667_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TrackableResultData_t452703160 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTrackableResultData_t452703160_m3736208667_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TrackableResultData_t452703160 *)(TrackableResultData_t452703160 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { TrackableResultData_t452703160 L_7 = V_2; TrackableResultData_t452703160 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(TrackableResultData_t452703160 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.TrackerData/VirtualButtonData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisVirtualButtonData_t1117953748_m2101013061_gshared (RuntimeArray * __this, VirtualButtonData_t1117953748 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisVirtualButtonData_t1117953748_m2101013061_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; VirtualButtonData_t1117953748 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisVirtualButtonData_t1117953748_m2101013061_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (VirtualButtonData_t1117953748 *)(VirtualButtonData_t1117953748 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { VirtualButtonData_t1117953748 L_7 = V_2; VirtualButtonData_t1117953748 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(VirtualButtonData_t1117953748 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.TrackerData/VuMarkTargetData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisVuMarkTargetData_t3266143771_m2433614114_gshared (RuntimeArray * __this, VuMarkTargetData_t3266143771 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisVuMarkTargetData_t3266143771_m2433614114_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; VuMarkTargetData_t3266143771 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisVuMarkTargetData_t3266143771_m2433614114_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (VuMarkTargetData_t3266143771 *)(VuMarkTargetData_t3266143771 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { VuMarkTargetData_t3266143771 L_7 = V_2; VuMarkTargetData_t3266143771 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(VuMarkTargetData_t3266143771 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.TrackerData/VuMarkTargetResultData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisVuMarkTargetResultData_t2153299244_m436158217_gshared (RuntimeArray * __this, VuMarkTargetResultData_t2153299244 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisVuMarkTargetResultData_t2153299244_m436158217_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; VuMarkTargetResultData_t2153299244 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisVuMarkTargetResultData_t2153299244_m436158217_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (VuMarkTargetResultData_t2153299244 *)(VuMarkTargetResultData_t2153299244 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { VuMarkTargetResultData_t2153299244 L_7 = V_2; VuMarkTargetResultData_t2153299244 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(VuMarkTargetResultData_t2153299244 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.VuforiaManager/TrackableIdPair>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisTrackableIdPair_t4227350457_m3832756353_gshared (RuntimeArray * __this, TrackableIdPair_t4227350457 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTrackableIdPair_t4227350457_m3832756353_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TrackableIdPair_t4227350457 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisTrackableIdPair_t4227350457_m3832756353_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TrackableIdPair_t4227350457 *)(TrackableIdPair_t4227350457 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { TrackableIdPair_t4227350457 L_7 = V_2; TrackableIdPair_t4227350457 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(TrackableIdPair_t4227350457 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.WebCamProfile/ProfileData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Contains_TisProfileData_t3519391925_m4271667505_gshared (RuntimeArray * __this, ProfileData_t3519391925 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisProfileData_t3519391925_m4271667505_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ProfileData_t3519391925 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Rank_m3448755881((RuntimeArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, (String_t*)_stringLiteral1684534236, /*hidden argument*/NULL); RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var); RankException__ctor_m2226473861(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__ICollection_Contains_TisProfileData_t3519391925_m4271667505_RuntimeMethod_var); } IL_0019: { NullCheck((RuntimeArray *)__this); int32_t L_3 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_005a; } IL_0024: { int32_t L_4 = V_1; NullCheck((RuntimeArray *)__this); ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ProfileData_t3519391925 *)(ProfileData_t3519391925 *)(&V_2)); goto IL_003f; } { goto IL_0056; } { return (bool)1; } IL_003f: { ProfileData_t3519391925 L_7 = V_2; ProfileData_t3519391925 L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((RuntimeObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_10, (RuntimeObject *)L_9); ___item0 = *(ProfileData_t3519391925 *)UnBox(L_10); if (!L_11) { goto IL_0056; } } { return (bool)1; } IL_0056: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_005a: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0024; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Remove<MS.Internal.Xml.Cache.XPathNode>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisXPathNode_t2208072876_m3760800031_gshared (RuntimeArray * __this, XPathNode_t2208072876 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisXPathNode_t2208072876_m3760800031_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisXPathNode_t2208072876_m3760800031_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<MS.Internal.Xml.Cache.XPathNodeRef>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisXPathNodeRef_t3498189018_m3356620128_gshared (RuntimeArray * __this, XPathNodeRef_t3498189018 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisXPathNodeRef_t3498189018_m3356620128_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisXPathNodeRef_t3498189018_m3356620128_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<MS.Internal.Xml.XPath.Operator/Op>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisOp_t2046805169_m1226627099_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisOp_t2046805169_m1226627099_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisOp_t2046805169_m1226627099_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Mono.AppleTls.SslCipherSuite>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisSslCipherSuite_t3309122048_m3628004630_gshared (RuntimeArray * __this, uint16_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisSslCipherSuite_t3309122048_m3628004630_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisSslCipherSuite_t3309122048_m3628004630_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Mono.AppleTls.SslStatus>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisSslStatus_t191981556_m215373166_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisSslStatus_t191981556_m215373166_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisSslStatus_t191981556_m215373166_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTableRange_t3332867892_m1941639116_gshared (RuntimeArray * __this, TableRange_t3332867892 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTableRange_t3332867892_m1941639116_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTableRange_t3332867892_m1941639116_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Mono.Security.Interface.CipherSuiteCode>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisCipherSuiteCode_t732562211_m724937536_gshared (RuntimeArray * __this, uint16_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisCipherSuiteCode_t732562211_m724937536_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisCipherSuiteCode_t732562211_m724937536_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Mono.Unity.UnityTls/unitytls_ciphersuite>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_Tisunitytls_ciphersuite_t1735159395_m2335691358_gshared (RuntimeArray * __this, uint32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_Tisunitytls_ciphersuite_t1735159395_m2335691358_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_Tisunitytls_ciphersuite_t1735159395_m2335691358_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.AppContext/SwitchValueState>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisSwitchValueState_t2805251467_m4250392134_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisSwitchValueState_t2805251467_m4250392134_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisSwitchValueState_t2805251467_m4250392134_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.ArraySegment`1<System.Byte>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisArraySegment_1_t283560987_m1561035780_gshared (RuntimeArray * __this, ArraySegment_1_t283560987 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisArraySegment_1_t283560987_m1561035780_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisArraySegment_1_t283560987_m1561035780_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Boolean>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisBoolean_t97287965_m802427701_gshared (RuntimeArray * __this, bool ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisBoolean_t97287965_m802427701_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisBoolean_t97287965_m802427701_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Byte>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisByte_t1134296376_m2266787817_gshared (RuntimeArray * __this, uint8_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisByte_t1134296376_m2266787817_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisByte_t1134296376_m2266787817_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Char>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisChar_t3634460470_m4143749387_gshared (RuntimeArray * __this, Il2CppChar ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisChar_t3634460470_m4143749387_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisChar_t3634460470_m4143749387_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.DictionaryEntry>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisDictionaryEntry_t3123975638_m3699186409_gshared (RuntimeArray * __this, DictionaryEntry_t3123975638 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisDictionaryEntry_t3123975638_m3699186409_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisDictionaryEntry_t3123975638_m3699186409_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t2089797520_m2942842771_gshared (RuntimeArray * __this, Entry_t2089797520 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t2089797520_m2942842771_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t2089797520_m2942842771_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t3743988185_m537826764_gshared (RuntimeArray * __this, Entry_t3743988185 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t3743988185_m537826764_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t3743988185_m537826764_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t600865784_m1612588723_gshared (RuntimeArray * __this, Entry_t600865784 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t600865784_m1612588723_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t600865784_m1612588723_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t4138038289_m1455054126_gshared (RuntimeArray * __this, Entry_t4138038289 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t4138038289_m1455054126_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t4138038289_m1455054126_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t3454523572_m1085913128_gshared (RuntimeArray * __this, Entry_t3454523572 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t3454523572_m1085913128_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t3454523572_m1085913128_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t4240145123_m322043786_gshared (RuntimeArray * __this, Entry_t4240145123 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t4240145123_m322043786_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t4240145123_m322043786_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t3583683983_m1130030431_gshared (RuntimeArray * __this, Entry_t3583683983 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t3583683983_m1130030431_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t3583683983_m1130030431_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackableBehaviour/Status>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t1604483633_m3413011514_gshared (RuntimeArray * __this, Entry_t1604483633 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t1604483633_m3413011514_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t1604483633_m3413011514_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t1621531567_m2999896967_gshared (RuntimeArray * __this, Entry_t1621531567 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t1621531567_m2999896967_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t1621531567_m2999896967_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t1462643140_m3350332734_gshared (RuntimeArray * __this, Entry_t1462643140 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t1462643140_m3350332734_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t1462643140_m3350332734_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.AppContext/SwitchValueState>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t1472554943_m2158670975_gshared (RuntimeArray * __this, Entry_t1472554943 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t1472554943_m2158670975_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t1472554943_m2158670975_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t3059558737_m2981643469_gshared (RuntimeArray * __this, Entry_t3059558737 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t3059558737_m2981643469_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t3059558737_m2981643469_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t1618249229_m3659174070_gshared (RuntimeArray * __this, Entry_t1618249229 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t1618249229_m3659174070_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t1618249229_m3659174070_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t1747409640_m3234341483_gshared (RuntimeArray * __this, Entry_t1747409640 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t1747409640_m3234341483_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t1747409640_m3234341483_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t2391274283_m1949846896_gshared (RuntimeArray * __this, Entry_t2391274283 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t2391274283_m1949846896_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t2391274283_m1949846896_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t845028434_m2378613447_gshared (RuntimeArray * __this, Entry_t845028434 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t845028434_m2378613447_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t845028434_m2378613447_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t2186695401_m303944101_gshared (RuntimeArray * __this, Entry_t2186695401 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t2186695401_m303944101_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t2186695401_m303944101_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,System.Single>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t1932439066_m1566577985_gshared (RuntimeArray * __this, Entry_t1932439066 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t1932439066_m1566577985_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t1932439066_m1566577985_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t2353074135_m2704060903_gshared (RuntimeArray * __this, Entry_t2353074135 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t2353074135_m2704060903_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t2353074135_m2704060903_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t2691401815_m2157822181_gshared (RuntimeArray * __this, Entry_t2691401815 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t2691401815_m2157822181_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t2691401815_m2157822181_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<Vuforia.Image/PIXEL_FORMAT,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t3285567941_m731852495_gshared (RuntimeArray * __this, Entry_t3285567941 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t3285567941_m731852495_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t3285567941_m731852495_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<Vuforia.Image/PIXEL_FORMAT,UnityEngine.TextureFormat>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEntry_t2906627609_m2722672658_gshared (RuntimeArray * __this, Entry_t2906627609 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEntry_t2906627609_m2722672658_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEntry_t2906627609_m2722672658_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.HashSet`1/Slot<System.Int32>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisSlot_t3916936346_m3288548207_gshared (RuntimeArray * __this, Slot_t3916936346 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisSlot_t3916936346_m3288548207_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisSlot_t3916936346_m3288548207_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.HashSet`1/Slot<System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisSlot_t4046096757_m346493421_gshared (RuntimeArray * __this, Slot_t4046096757 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisSlot_t4046096757_m346493421_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisSlot_t4046096757_m346493421_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2872605199_m2517063200_gshared (RuntimeArray * __this, KeyValuePair_2_t2872605199 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2872605199_m2517063200_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2872605199_m2517063200_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t870930286_m1892291998_gshared (RuntimeArray * __this, KeyValuePair_2_t870930286 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t870930286_m1892291998_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t870930286_m1892291998_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t231828568_m1556851870_gshared (RuntimeArray * __this, KeyValuePair_2_t231828568 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t231828568_m1556851870_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t231828568_m1556851870_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1383673463_m2503620538_gshared (RuntimeArray * __this, KeyValuePair_2_t1383673463 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1383673463_m2503620538_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1383673463_m2503620538_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t625878672_m3763471410_gshared (RuntimeArray * __this, KeyValuePair_2_t625878672 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t625878672_m3763471410_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t625878672_m3763471410_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4237331251_m2718145390_gshared (RuntimeArray * __this, KeyValuePair_2_t4237331251 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4237331251_m2718145390_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4237331251_m2718145390_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t727985506_m1728554900_gshared (RuntimeArray * __this, KeyValuePair_2_t727985506 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t727985506_m1728554900_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t727985506_m1728554900_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t71524366_m1112804119_gshared (RuntimeArray * __this, KeyValuePair_2_t71524366 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t71524366_m1112804119_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t71524366_m1112804119_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackableBehaviour/Status>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2387291312_m3332696613_gshared (RuntimeArray * __this, KeyValuePair_2_t2387291312 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2387291312_m3332696613_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2387291312_m3332696613_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2404339246_m496651115_gshared (RuntimeArray * __this, KeyValuePair_2_t2404339246 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2404339246_m496651115_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2404339246_m496651115_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2245450819_m3064110492_gshared (RuntimeArray * __this, KeyValuePair_2_t2245450819 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2245450819_m3064110492_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2245450819_m3064110492_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2255362622_m442971424_gshared (RuntimeArray * __this, KeyValuePair_2_t2255362622 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2255362622_m442971424_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2255362622_m442971424_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3842366416_m278128148_gshared (RuntimeArray * __this, KeyValuePair_2_t3842366416 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3842366416_m278128148_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3842366416_m278128148_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2401056908_m74803181_gshared (RuntimeArray * __this, KeyValuePair_2_t2401056908 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2401056908_m74803181_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2401056908_m74803181_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2530217319_m805303252_gshared (RuntimeArray * __this, KeyValuePair_2_t2530217319 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2530217319_m805303252_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2530217319_m805303252_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3174081962_m1391705319_gshared (RuntimeArray * __this, KeyValuePair_2_t3174081962 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3174081962_m1391705319_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3174081962_m1391705319_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1627836113_m4251990060_gshared (RuntimeArray * __this, KeyValuePair_2_t1627836113 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1627836113_m4251990060_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1627836113_m4251990060_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2969503080_m2786833909_gshared (RuntimeArray * __this, KeyValuePair_2_t2969503080 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2969503080_m2786833909_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2969503080_m2786833909_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,System.Single>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2715246745_m3413264588_gshared (RuntimeArray * __this, KeyValuePair_2_t2715246745 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2715246745_m3413264588_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2715246745_m3413264588_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3135881814_m1392899102_gshared (RuntimeArray * __this, KeyValuePair_2_t3135881814 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3135881814_m1392899102_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3135881814_m1392899102_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3474209494_m2007082926_gshared (RuntimeArray * __this, KeyValuePair_2_t3474209494 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3474209494_m2007082926_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3474209494_m2007082926_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<Vuforia.Image/PIXEL_FORMAT,System.Object>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4068375620_m581517083_gshared (RuntimeArray * __this, KeyValuePair_2_t4068375620 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4068375620_m581517083_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4068375620_m581517083_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<Vuforia.Image/PIXEL_FORMAT,UnityEngine.TextureFormat>>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3689435288_m423724210_gshared (RuntimeArray * __this, KeyValuePair_2_t3689435288 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3689435288_m423724210_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3689435288_m423724210_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Hashtable/bucket>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_Tisbucket_t758131704_m2949328471_gshared (RuntimeArray * __this, bucket_t758131704 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_Tisbucket_t758131704_m2949328471_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_Tisbucket_t758131704_m2949328471_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.ComponentModel.AttributeCollection/AttributeEntry>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisAttributeEntry_t1001010863_m695624701_gshared (RuntimeArray * __this, AttributeEntry_t1001010863 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisAttributeEntry_t1001010863_m695624701_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisAttributeEntry_t1001010863_m695624701_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.DateTime>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisDateTime_t3738529785_m2250893026_gshared (RuntimeArray * __this, DateTime_t3738529785 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisDateTime_t3738529785_m2250893026_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisDateTime_t3738529785_m2250893026_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.DateTimeOffset>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisDateTimeOffset_t3229287507_m1874660419_gshared (RuntimeArray * __this, DateTimeOffset_t3229287507 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisDateTimeOffset_t3229287507_m1874660419_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisDateTimeOffset_t3229287507_m1874660419_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.DateTimeParse/DS>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisDS_t2232270370_m653748025_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisDS_t2232270370_m653748025_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisDS_t2232270370_m653748025_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Decimal>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisDecimal_t2948259380_m1489074346_gshared (RuntimeArray * __this, Decimal_t2948259380 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisDecimal_t2948259380_m1489074346_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisDecimal_t2948259380_m1489074346_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Double>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisDouble_t594665363_m3197228342_gshared (RuntimeArray * __this, double ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisDouble_t594665363_m3197228342_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisDouble_t594665363_m3197228342_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Globalization.HebrewNumber/HS>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisHS_t3339773016_m691359724_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisHS_t3339773016_m691359724_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisHS_t3339773016_m691359724_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Globalization.InternalCodePageDataItem>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisInternalCodePageDataItem_t2575532933_m1073688274_gshared (RuntimeArray * __this, InternalCodePageDataItem_t2575532933 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisInternalCodePageDataItem_t2575532933_m1073688274_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisInternalCodePageDataItem_t2575532933_m1073688274_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Globalization.InternalEncodingDataItem>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisInternalEncodingDataItem_t3158859817_m374593408_gshared (RuntimeArray * __this, InternalEncodingDataItem_t3158859817 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisInternalEncodingDataItem_t3158859817_m374593408_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisInternalEncodingDataItem_t3158859817_m374593408_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Globalization.TimeSpanParse/TimeSpanToken>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTimeSpanToken_t993347374_m750119804_gshared (RuntimeArray * __this, TimeSpanToken_t993347374 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTimeSpanToken_t993347374_m750119804_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTimeSpanToken_t993347374_m750119804_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Guid>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisGuid_t_m1060141424_gshared (RuntimeArray * __this, Guid_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisGuid_t_m1060141424_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisGuid_t_m1060141424_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Int16>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisInt16_t2552820387_m3372313693_gshared (RuntimeArray * __this, int16_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisInt16_t2552820387_m3372313693_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisInt16_t2552820387_m3372313693_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Int32>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisInt32_t2950945753_m1299950055_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisInt32_t2950945753_m1299950055_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisInt32_t2950945753_m1299950055_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Int64>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisInt64_t3736567304_m3736440744_gshared (RuntimeArray * __this, int64_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisInt64_t3736567304_m3736440744_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisInt64_t3736567304_m3736440744_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.IntPtr>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisIntPtr_t_m3807208150_gshared (RuntimeArray * __this, intptr_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisIntPtr_t_m3807208150_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisIntPtr_t_m3807208150_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Net.CookieTokenizer/RecognizedAttribute>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisRecognizedAttribute_t632074220_m4099282933_gshared (RuntimeArray * __this, RecognizedAttribute_t632074220 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisRecognizedAttribute_t632074220_m4099282933_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisRecognizedAttribute_t632074220_m4099282933_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Net.HeaderVariantInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisHeaderVariantInfo_t1935685601_m3880608814_gshared (RuntimeArray * __this, HeaderVariantInfo_t1935685601 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisHeaderVariantInfo_t1935685601_m3880608814_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisHeaderVariantInfo_t1935685601_m3880608814_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m979868039_gshared (RuntimeArray * __this, Win32_IP_ADAPTER_ADDRESSES_t3463526328 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m979868039_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m979868039_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Net.Sockets.Socket/WSABUF>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisWSABUF_t1998059390_m3800395803_gshared (RuntimeArray * __this, WSABUF_t1998059390 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisWSABUF_t1998059390_m3800395803_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisWSABUF_t1998059390_m3800395803_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Net.WebHeaderCollection/RfcChar>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisRfcChar_t2905409930_m244560691_gshared (RuntimeArray * __this, uint8_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisRfcChar_t2905409930_m244560691_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisRfcChar_t2905409930_m244560691_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Object>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisRuntimeObject_m2110193223_gshared (RuntimeArray * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisRuntimeObject_m2110193223_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisRuntimeObject_m2110193223_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.ParameterizedStrings/FormatParam>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisFormatParam_t4194474082_m3777841951_gshared (RuntimeArray * __this, FormatParam_t4194474082 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisFormatParam_t4194474082_m3777841951_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisFormatParam_t4194474082_m3777841951_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.CustomAttributeNamedArgument>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisCustomAttributeNamedArgument_t287865710_m2189952110_gshared (RuntimeArray * __this, CustomAttributeNamedArgument_t287865710 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisCustomAttributeNamedArgument_t287865710_m2189952110_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisCustomAttributeNamedArgument_t287865710_m2189952110_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.CustomAttributeTypedArgument>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisCustomAttributeTypedArgument_t2723150157_m3045918830_gshared (RuntimeArray * __this, CustomAttributeTypedArgument_t2723150157 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisCustomAttributeTypedArgument_t2723150157_m3045918830_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisCustomAttributeTypedArgument_t2723150157_m3045918830_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.Emit.ILExceptionBlock>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisILExceptionBlock_t3961874966_m3591308735_gshared (RuntimeArray * __this, ILExceptionBlock_t3961874966 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisILExceptionBlock_t3961874966_m3591308735_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisILExceptionBlock_t3961874966_m3591308735_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.Emit.ILExceptionInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisILExceptionInfo_t237856010_m2157589386_gshared (RuntimeArray * __this, ILExceptionInfo_t237856010 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisILExceptionInfo_t237856010_m2157589386_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisILExceptionInfo_t237856010_m2157589386_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.Emit.ILGenerator/LabelData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisLabelData_t360167391_m3556246844_gshared (RuntimeArray * __this, LabelData_t360167391 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisLabelData_t360167391_m3556246844_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisLabelData_t360167391_m3556246844_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.Emit.ILGenerator/LabelFixup>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisLabelFixup_t858502054_m3068158566_gshared (RuntimeArray * __this, LabelFixup_t858502054 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisLabelFixup_t858502054_m3068158566_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisLabelFixup_t858502054_m3068158566_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.Emit.ILTokenInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisILTokenInfo_t2325775114_m3179429710_gshared (RuntimeArray * __this, ILTokenInfo_t2325775114 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisILTokenInfo_t2325775114_m3179429710_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisILTokenInfo_t2325775114_m3179429710_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.Emit.Label>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisLabel_t2281661643_m1608421128_gshared (RuntimeArray * __this, Label_t2281661643 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisLabel_t2281661643_m1608421128_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisLabel_t2281661643_m1608421128_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.Emit.MonoResource>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisMonoResource_t4103430009_m238733686_gshared (RuntimeArray * __this, MonoResource_t4103430009 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisMonoResource_t4103430009_m238733686_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisMonoResource_t4103430009_m238733686_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.Emit.MonoWin32Resource>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisMonoWin32Resource_t1904229483_m3397256857_gshared (RuntimeArray * __this, MonoWin32Resource_t1904229483 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisMonoWin32Resource_t1904229483_m3397256857_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisMonoWin32Resource_t1904229483_m3397256857_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.Emit.RefEmitPermissionSet>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisRefEmitPermissionSet_t484390987_m4235288405_gshared (RuntimeArray * __this, RefEmitPermissionSet_t484390987 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisRefEmitPermissionSet_t484390987_m4235288405_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisRefEmitPermissionSet_t484390987_m4235288405_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.ParameterModifier>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisParameterModifier_t1461694466_m2152733370_gshared (RuntimeArray * __this, ParameterModifier_t1461694466 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisParameterModifier_t1461694466_m2152733370_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisParameterModifier_t1461694466_m2152733370_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Resources.ResourceLocator>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisResourceLocator_t3723970807_m2265674803_gshared (RuntimeArray * __this, ResourceLocator_t3723970807 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisResourceLocator_t3723970807_m2265674803_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisResourceLocator_t3723970807_m2265674803_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Runtime.CompilerServices.Ephemeron>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEphemeron_t1602596362_m1784919991_gshared (RuntimeArray * __this, Ephemeron_t1602596362 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEphemeron_t1602596362_m1784919991_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEphemeron_t1602596362_m1784919991_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Runtime.InteropServices.GCHandle>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisGCHandle_t3351438187_m2225771241_gshared (RuntimeArray * __this, GCHandle_t3351438187 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisGCHandle_t3351438187_m2225771241_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisGCHandle_t3351438187_m2225771241_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Runtime.Serialization.Formatters.Binary.BinaryTypeEnum>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisBinaryTypeEnum_t3485436454_m2462803376_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisBinaryTypeEnum_t3485436454_m2462803376_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisBinaryTypeEnum_t3485436454_m2462803376_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Runtime.Serialization.Formatters.Binary.InternalPrimitiveTypeE>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisInternalPrimitiveTypeE_t4093048977_m249127265_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisInternalPrimitiveTypeE_t4093048977_m249127265_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisInternalPrimitiveTypeE_t4093048977_m249127265_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.SByte>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisSByte_t1669577662_m1857659578_gshared (RuntimeArray * __this, int8_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisSByte_t1669577662_m1857659578_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisSByte_t1669577662_m1857659578_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisX509ChainStatus_t133602714_m3635989134_gshared (RuntimeArray * __this, X509ChainStatus_t133602714 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisX509ChainStatus_t133602714_m3635989134_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisX509ChainStatus_t133602714_m3635989134_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Single>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisSingle_t1397266774_m3361324455_gshared (RuntimeArray * __this, float ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisSingle_t1397266774_m3361324455_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisSingle_t1397266774_m3361324455_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.TermInfoStrings>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTermInfoStrings_t290279955_m3570867715_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTermInfoStrings_t290279955_m3570867715_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTermInfoStrings_t290279955_m3570867715_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisLowerCaseMapping_t2910317575_m2939413724_gshared (RuntimeArray * __this, LowerCaseMapping_t2910317575 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisLowerCaseMapping_t2910317575_m2939413724_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisLowerCaseMapping_t2910317575_m2939413724_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Text.RegularExpressions.RegexOptions>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisRegexOptions_t92845595_m1849641238_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisRegexOptions_t92845595_m1849641238_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisRegexOptions_t92845595_m1849641238_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Threading.CancellationTokenRegistration>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisCancellationTokenRegistration_t2813424904_m651300048_gshared (RuntimeArray * __this, CancellationTokenRegistration_t2813424904 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisCancellationTokenRegistration_t2813424904_m651300048_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisCancellationTokenRegistration_t2813424904_m651300048_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.TimeSpan>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTimeSpan_t881159249_m2877951771_gshared (RuntimeArray * __this, TimeSpan_t881159249 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTimeSpan_t881159249_m2877951771_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTimeSpan_t881159249_m2877951771_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.TypeCode>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTypeCode_t2987224087_m3902459327_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTypeCode_t2987224087_m3902459327_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTypeCode_t2987224087_m3902459327_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.UInt16>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisUInt16_t2177724958_m1766181761_gshared (RuntimeArray * __this, uint16_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisUInt16_t2177724958_m1766181761_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisUInt16_t2177724958_m1766181761_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.UInt32>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisUInt32_t2560061978_m733727733_gshared (RuntimeArray * __this, uint32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisUInt32_t2560061978_m733727733_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisUInt32_t2560061978_m733727733_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.UInt64>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisUInt64_t4134040092_m2664745791_gshared (RuntimeArray * __this, uint64_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisUInt64_t4134040092_m2664745791_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisUInt64_t4134040092_m2664745791_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisMap_t1331044427_m2604009989_gshared (RuntimeArray * __this, Map_t1331044427 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisMap_t1331044427_m2604009989_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisMap_t1331044427_m2604009989_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Xml.Schema.RangePositionInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisRangePositionInfo_t589968936_m4050967781_gshared (RuntimeArray * __this, RangePositionInfo_t589968936 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisRangePositionInfo_t589968936_m4050967781_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisRangePositionInfo_t589968936_m4050967781_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisSequenceConstructPosContext_t2054380699_m2809418771_gshared (RuntimeArray * __this, SequenceConstructPosContext_t2054380699 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisSequenceConstructPosContext_t2054380699_m2809418771_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisSequenceConstructPosContext_t2054380699_m2809418771_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisXmlSchemaObjectEntry_t3344676971_m698060886_gshared (RuntimeArray * __this, XmlSchemaObjectEntry_t3344676971 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisXmlSchemaObjectEntry_t3344676971_m698060886_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisXmlSchemaObjectEntry_t3344676971_m698060886_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Xml.Schema.XmlTypeCode>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisXmlTypeCode_t2623622950_m3125295489_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisXmlTypeCode_t2623622950_m3125295489_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisXmlTypeCode_t2623622950_m3125295489_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Xml.Schema.XsdBuilder/State>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisState_t1890458201_m741404780_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisState_t1890458201_m741404780_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisState_t1890458201_m741404780_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Xml.XPath.XPathResultType>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisXPathResultType_t2828988488_m1066441019_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisXPathResultType_t2828988488_m1066441019_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisXPathResultType_t2828988488_m1066441019_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Xml.XmlNamespaceManager/NamespaceDeclaration>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisNamespaceDeclaration_t4162609575_m886801041_gshared (RuntimeArray * __this, NamespaceDeclaration_t4162609575 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisNamespaceDeclaration_t4162609575_m886801041_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisNamespaceDeclaration_t4162609575_m886801041_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Xml.XmlNodeReaderNavigator/VirtualAttribute>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisVirtualAttribute_t3578083907_m2429458573_gshared (RuntimeArray * __this, VirtualAttribute_t3578083907 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisVirtualAttribute_t3578083907_m2429458573_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisVirtualAttribute_t3578083907_m2429458573_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Xml.XmlTextReaderImpl/ParsingState>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisParsingState_t1780334922_m2762807023_gshared (RuntimeArray * __this, ParsingState_t1780334922 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisParsingState_t1780334922_m2762807023_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisParsingState_t1780334922_m2762807023_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Xml.XmlTextWriter/Namespace>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisNamespace_t2218256516_m462955963_gshared (RuntimeArray * __this, Namespace_t2218256516 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisNamespace_t2218256516_m462955963_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisNamespace_t2218256516_m462955963_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Xml.XmlTextWriter/State>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisState_t1792539347_m3454992_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisState_t1792539347_m3454992_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisState_t1792539347_m3454992_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Xml.XmlTextWriter/TagInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTagInfo_t3526638417_m3600920498_gshared (RuntimeArray * __this, TagInfo_t3526638417 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTagInfo_t3526638417_m3600920498_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTagInfo_t3526638417_m3600920498_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<TMPro.MaterialReference>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisMaterialReference_t1952344632_m1234240281_gshared (RuntimeArray * __this, MaterialReference_t1952344632 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisMaterialReference_t1952344632_m1234240281_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisMaterialReference_t1952344632_m1234240281_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisSpriteData_t3048397587_m2214920323_gshared (RuntimeArray * __this, SpriteData_t3048397587 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisSpriteData_t3048397587_m2214920323_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisSpriteData_t3048397587_m2214920323_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<TMPro.TMP_CharacterInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTMP_CharacterInfo_t3185626797_m1831411579_gshared (RuntimeArray * __this, TMP_CharacterInfo_t3185626797 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTMP_CharacterInfo_t3185626797_m1831411579_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTMP_CharacterInfo_t3185626797_m1831411579_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<TMPro.TMP_FontWeights>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTMP_FontWeights_t916301067_m640405969_gshared (RuntimeArray * __this, TMP_FontWeights_t916301067 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTMP_FontWeights_t916301067_m640405969_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTMP_FontWeights_t916301067_m640405969_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<TMPro.TMP_InputField/ContentType>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisContentType_t1128941285_m2281326462_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisContentType_t1128941285_m2281326462_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisContentType_t1128941285_m2281326462_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<TMPro.TMP_LineInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTMP_LineInfo_t1079631636_m1566194752_gshared (RuntimeArray * __this, TMP_LineInfo_t1079631636 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTMP_LineInfo_t1079631636_m1566194752_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTMP_LineInfo_t1079631636_m1566194752_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<TMPro.TMP_LinkInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTMP_LinkInfo_t1092083476_m2516597824_gshared (RuntimeArray * __this, TMP_LinkInfo_t1092083476 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTMP_LinkInfo_t1092083476_m2516597824_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTMP_LinkInfo_t1092083476_m2516597824_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<TMPro.TMP_MeshInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTMP_MeshInfo_t2771747634_m2836324316_gshared (RuntimeArray * __this, TMP_MeshInfo_t2771747634 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTMP_MeshInfo_t2771747634_m2836324316_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTMP_MeshInfo_t2771747634_m2836324316_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<TMPro.TMP_PageInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTMP_PageInfo_t2608430633_m637965447_gshared (RuntimeArray * __this, TMP_PageInfo_t2608430633 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTMP_PageInfo_t2608430633_m637965447_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTMP_PageInfo_t2608430633_m637965447_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<TMPro.TMP_WordInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTMP_WordInfo_t3331066303_m2995748367_gshared (RuntimeArray * __this, TMP_WordInfo_t3331066303 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTMP_WordInfo_t3331066303_m2995748367_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTMP_WordInfo_t3331066303_m2995748367_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<TMPro.TextAlignmentOptions>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTextAlignmentOptions_t4036791236_m2039447946_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTextAlignmentOptions_t4036791236_m2039447946_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTextAlignmentOptions_t4036791236_m2039447946_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<TMPro.XML_TagAttribute>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisXML_TagAttribute_t1174424309_m1640452411_gshared (RuntimeArray * __this, XML_TagAttribute_t1174424309 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisXML_TagAttribute_t1174424309_m1640452411_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisXML_TagAttribute_t1174424309_m1640452411_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.BeforeRenderHelper/OrderBlock>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisOrderBlock_t1585977831_m1449044465_gshared (RuntimeArray * __this, OrderBlock_t1585977831 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisOrderBlock_t1585977831_m1449044465_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisOrderBlock_t1585977831_m1449044465_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Camera/StereoscopicEye>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisStereoscopicEye_t2238664036_m1349090687_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisStereoscopicEye_t2238664036_m1349090687_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisStereoscopicEye_t2238664036_m1349090687_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Color32>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisColor32_t2600501292_m1053145697_gshared (RuntimeArray * __this, Color32_t2600501292 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisColor32_t2600501292_m1053145697_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisColor32_t2600501292_m1053145697_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Color>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisColor_t2555686324_m1658001816_gshared (RuntimeArray * __this, Color_t2555686324 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisColor_t2555686324_m1658001816_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisColor_t2555686324_m1658001816_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.ContactPoint>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisContactPoint_t3758755253_m4004109175_gshared (RuntimeArray * __this, ContactPoint_t3758755253 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisContactPoint_t3758755253_m4004109175_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisContactPoint_t3758755253_m4004109175_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.EventSystems.RaycastResult>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisRaycastResult_t3360306849_m3237401700_gshared (RuntimeArray * __this, RaycastResult_t3360306849 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisRaycastResult_t3360306849_m3237401700_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisRaycastResult_t3360306849_m3237401700_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisPlayerLoopSystem_t105772105_m11379199_gshared (RuntimeArray * __this, PlayerLoopSystem_t105772105 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisPlayerLoopSystem_t105772105_m11379199_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisPlayerLoopSystem_t105772105_m11379199_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Keyframe>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisKeyframe_t4206410242_m3222074551_gshared (RuntimeArray * __this, Keyframe_t4206410242 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyframe_t4206410242_m3222074551_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisKeyframe_t4206410242_m3222074551_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Matrix4x4>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisMatrix4x4_t1817901843_m4092628408_gshared (RuntimeArray * __this, Matrix4x4_t1817901843 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisMatrix4x4_t1817901843_m4092628408_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisMatrix4x4_t1817901843_m4092628408_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Plane>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisPlane_t1000493321_m759457937_gshared (RuntimeArray * __this, Plane_t1000493321 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisPlane_t1000493321_m759457937_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisPlane_t1000493321_m759457937_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Playables.PlayableBinding>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisPlayableBinding_t354260709_m2417281815_gshared (RuntimeArray * __this, PlayableBinding_t354260709 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisPlayableBinding_t354260709_m2417281815_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisPlayableBinding_t354260709_m2417281815_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.RaycastHit2D>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisRaycastHit2D_t2279581989_m2916504088_gshared (RuntimeArray * __this, RaycastHit2D_t2279581989 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisRaycastHit2D_t2279581989_m2916504088_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisRaycastHit2D_t2279581989_m2916504088_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.RaycastHit>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisRaycastHit_t1056001966_m2255692446_gshared (RuntimeArray * __this, RaycastHit_t1056001966 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisRaycastHit_t1056001966_m2255692446_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisRaycastHit_t1056001966_m2255692446_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.SendMouseEvents/HitInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisHitInfo_t3229609740_m1726675946_gshared (RuntimeArray * __this, HitInfo_t3229609740 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisHitInfo_t3229609740_m1726675946_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisHitInfo_t3229609740_m1726675946_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisGcAchievementData_t675222246_m441238831_gshared (RuntimeArray * __this, GcAchievementData_t675222246 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisGcAchievementData_t675222246_m441238831_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisGcAchievementData_t675222246_m441238831_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisGcScoreData_t2125309831_m863269800_gshared (RuntimeArray * __this, GcScoreData_t2125309831 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisGcScoreData_t2125309831_m863269800_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisGcScoreData_t2125309831_m863269800_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.TextureFormat>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTextureFormat_t2701165832_m4044103976_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTextureFormat_t2701165832_m4044103976_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTextureFormat_t2701165832_m4044103976_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Touch>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTouch_t1921856868_m3186275290_gshared (RuntimeArray * __this, Touch_t1921856868 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTouch_t1921856868_m3186275290_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTouch_t1921856868_m3186275290_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.TouchScreenKeyboardType>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTouchScreenKeyboardType_t1530597702_m734862705_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTouchScreenKeyboardType_t1530597702_m734862705_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTouchScreenKeyboardType_t1530597702_m734862705_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.AspectRatioFitter/AspectMode>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisAspectMode_t3417192999_m3842891185_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisAspectMode_t3417192999_m3842891185_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisAspectMode_t3417192999_m3842891185_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.ColorBlock>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisColorBlock_t2139031574_m96198584_gshared (RuntimeArray * __this, ColorBlock_t2139031574 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisColorBlock_t2139031574_m96198584_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisColorBlock_t2139031574_m96198584_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.ContentSizeFitter/FitMode>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisFitMode_t3267881214_m3359343572_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisFitMode_t3267881214_m3359343572_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisFitMode_t3267881214_m3359343572_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.Image/FillMethod>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisFillMethod_t1167457570_m2411739391_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisFillMethod_t1167457570_m2411739391_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisFillMethod_t1167457570_m2411739391_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.Image/Type>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisType_t1152881528_m2427611321_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisType_t1152881528_m2427611321_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisType_t1152881528_m2427611321_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.InputField/CharacterValidation>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisCharacterValidation_t4051914437_m3971476383_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisCharacterValidation_t4051914437_m3971476383_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisCharacterValidation_t4051914437_m3971476383_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.InputField/ContentType>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisContentType_t1787303396_m4258952916_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisContentType_t1787303396_m4258952916_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisContentType_t1787303396_m4258952916_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.InputField/InputType>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisInputType_t1770400679_m3221927921_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisInputType_t1770400679_m3221927921_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisInputType_t1770400679_m3221927921_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.InputField/LineType>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisLineType_t4214648469_m653219700_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisLineType_t4214648469_m653219700_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisLineType_t4214648469_m653219700_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.Navigation>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisNavigation_t3049316579_m194277076_gshared (RuntimeArray * __this, Navigation_t3049316579 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisNavigation_t3049316579_m194277076_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisNavigation_t3049316579_m194277076_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.Scrollbar/Direction>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisDirection_t3470714353_m3835305497_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisDirection_t3470714353_m3835305497_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisDirection_t3470714353_m3835305497_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.Selectable/Transition>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTransition_t1769908631_m3699212857_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTransition_t1769908631_m3699212857_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTransition_t1769908631_m3699212857_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.Slider/Direction>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisDirection_t337909235_m2685458341_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisDirection_t337909235_m2685458341_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisDirection_t337909235_m2685458341_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.SpriteState>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisSpriteState_t1362986479_m1286081358_gshared (RuntimeArray * __this, SpriteState_t1362986479 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisSpriteState_t1362986479_m1286081358_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisSpriteState_t1362986479_m1286081358_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UICharInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisUICharInfo_t75501106_m1176015416_gshared (RuntimeArray * __this, UICharInfo_t75501106 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisUICharInfo_t75501106_m1176015416_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisUICharInfo_t75501106_m1176015416_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UILineInfo>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisUILineInfo_t4195266810_m3641067542_gshared (RuntimeArray * __this, UILineInfo_t4195266810 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisUILineInfo_t4195266810_m3641067542_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisUILineInfo_t4195266810_m3641067542_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UIVertex>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisUIVertex_t4057497605_m794785933_gshared (RuntimeArray * __this, UIVertex_t4057497605 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisUIVertex_t4057497605_m794785933_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisUIVertex_t4057497605_m794785933_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UnitySynchronizationContext/WorkRequest>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisWorkRequest_t1354518612_m565106622_gshared (RuntimeArray * __this, WorkRequest_t1354518612 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisWorkRequest_t1354518612_m565106622_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisWorkRequest_t1354518612_m565106622_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Vector2>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisVector2_t2156229523_m2219689269_gshared (RuntimeArray * __this, Vector2_t2156229523 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisVector2_t2156229523_m2219689269_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisVector2_t2156229523_m2219689269_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Vector3>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisVector3_t3722313464_m673808304_gshared (RuntimeArray * __this, Vector3_t3722313464 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisVector3_t3722313464_m673808304_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisVector3_t3722313464_m673808304_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Vector4>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisVector4_t3319028937_m1224903547_gshared (RuntimeArray * __this, Vector4_t3319028937 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisVector4_t3319028937_m1224903547_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisVector4_t3319028937_m1224903547_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.WebCamDevice>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisWebCamDevice_t1322781432_m916485475_gshared (RuntimeArray * __this, WebCamDevice_t1322781432 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisWebCamDevice_t1322781432_m916485475_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisWebCamDevice_t1322781432_m916485475_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.CameraDevice/CameraField>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisCameraField_t1483002240_m3554945809_gshared (RuntimeArray * __this, CameraField_t1483002240 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisCameraField_t1483002240_m3554945809_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisCameraField_t1483002240_m3554945809_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.EyewearDevice/EyewearCalibrationReading>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEyewearCalibrationReading_t664929988_m1130450076_gshared (RuntimeArray * __this, EyewearCalibrationReading_t664929988 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEyewearCalibrationReading_t664929988_m1130450076_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEyewearCalibrationReading_t664929988_m1130450076_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisEyewearCalibrationReadingData_t937256773_m3550862407_gshared (RuntimeArray * __this, EyewearCalibrationReadingData_t937256773 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisEyewearCalibrationReadingData_t937256773_m3550862407_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisEyewearCalibrationReadingData_t937256773_m3550862407_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.Image/PIXEL_FORMAT>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisPIXEL_FORMAT_t3209881435_m786629680_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisPIXEL_FORMAT_t3209881435_m786629680_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisPIXEL_FORMAT_t3209881435_m786629680_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.TrackableBehaviour/Status>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisStatus_t1100905814_m2896218315_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisStatus_t1100905814_m2896218315_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisStatus_t1100905814_m2896218315_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.TrackerData/TrackableResultData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTrackableResultData_t452703160_m552047957_gshared (RuntimeArray * __this, TrackableResultData_t452703160 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTrackableResultData_t452703160_m552047957_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTrackableResultData_t452703160_m552047957_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.TrackerData/VirtualButtonData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisVirtualButtonData_t1117953748_m2208651069_gshared (RuntimeArray * __this, VirtualButtonData_t1117953748 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisVirtualButtonData_t1117953748_m2208651069_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisVirtualButtonData_t1117953748_m2208651069_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.TrackerData/VuMarkTargetData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisVuMarkTargetData_t3266143771_m1845872957_gshared (RuntimeArray * __this, VuMarkTargetData_t3266143771 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisVuMarkTargetData_t3266143771_m1845872957_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisVuMarkTargetData_t3266143771_m1845872957_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.TrackerData/VuMarkTargetResultData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisVuMarkTargetResultData_t2153299244_m33783616_gshared (RuntimeArray * __this, VuMarkTargetResultData_t2153299244 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisVuMarkTargetResultData_t2153299244_m33783616_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisVuMarkTargetResultData_t2153299244_m33783616_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.VuforiaManager/TrackableIdPair>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisTrackableIdPair_t4227350457_m2721736245_gshared (RuntimeArray * __this, TrackableIdPair_t4227350457 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTrackableIdPair_t4227350457_m2721736245_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisTrackableIdPair_t4227350457_m2721736245_RuntimeMethod_var); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.WebCamProfile/ProfileData>(T) extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_Remove_TisProfileData_t3519391925_m77926491_gshared (RuntimeArray * __this, ProfileData_t3519391925 ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisProfileData_t3519391925_m77926491_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_0, (String_t*)_stringLiteral3935955560, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Remove_TisProfileData_t3519391925_m77926491_RuntimeMethod_var); } } // System.Boolean System.Array::TrueForAll<System.Object>(T[],System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR bool Array_TrueForAll_TisRuntimeObject_m1084992726_gshared (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t2843939325* ___array0, Predicate_1_t3905400288 * ___match1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_TrueForAll_TisRuntimeObject_m1084992726_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { ObjectU5BU5D_t2843939325* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4007973390, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_TrueForAll_TisRuntimeObject_m1084992726_RuntimeMethod_var); } IL_000e: { Predicate_1_t3905400288 * L_2 = ___match1; if (L_2) { goto IL_001c; } } { ArgumentNullException_t1615371798 * L_3 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_3, (String_t*)_stringLiteral461028519, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Array_TrueForAll_TisRuntimeObject_m1084992726_RuntimeMethod_var); } IL_001c: { V_0 = (int32_t)0; goto IL_0035; } IL_0020: { Predicate_1_t3905400288 * L_4 = ___match1; ObjectU5BU5D_t2843939325* L_5 = ___array0; int32_t L_6 = V_0; NullCheck(L_5); int32_t L_7 = L_6; RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); NullCheck((Predicate_1_t3905400288 *)L_4); bool L_9 = (( bool (*) (Predicate_1_t3905400288 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Predicate_1_t3905400288 *)L_4, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_9) { goto IL_0031; } } { return (bool)0; } IL_0031: { int32_t L_10 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_0035: { int32_t L_11 = V_0; ObjectU5BU5D_t2843939325* L_12 = ___array0; NullCheck(L_12); if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_12)->max_length))))))) { goto IL_0020; } } { return (bool)1; } } // System.Boolean System.Diagnostics.Contracts.Contract::ForAll<System.Object>(System.Collections.Generic.IEnumerable`1<T>,System.Predicate`1<T>) extern "C" IL2CPP_METHOD_ATTR bool Contract_ForAll_TisRuntimeObject_m3626865541_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___collection0, Predicate_1_t3905400288 * ___predicate1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Contract_ForAll_TisRuntimeObject_m3626865541_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject * V_1 = NULL; bool V_2 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject* L_0 = ___collection0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral3723644332, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Contract_ForAll_TisRuntimeObject_m3626865541_RuntimeMethod_var); } IL_000e: { Predicate_1_t3905400288 * L_2 = ___predicate1; if (L_2) { goto IL_001c; } } { ArgumentNullException_t1615371798 * L_3 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_3, (String_t*)_stringLiteral3941128596, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Contract_ForAll_TisRuntimeObject_m3626865541_RuntimeMethod_var); } IL_001c: { RuntimeObject* L_4 = ___collection0; NullCheck((RuntimeObject*)L_4); RuntimeObject* L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_4); V_0 = (RuntimeObject*)L_5; } IL_0023: try { // begin try (depth: 1) { goto IL_0039; } IL_0025: { RuntimeObject* L_6 = V_0; NullCheck((RuntimeObject*)L_6); RuntimeObject * L_7 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (RuntimeObject*)L_6); V_1 = (RuntimeObject *)L_7; Predicate_1_t3905400288 * L_8 = ___predicate1; RuntimeObject * L_9 = V_1; NullCheck((Predicate_1_t3905400288 *)L_8); bool L_10 = (( bool (*) (Predicate_1_t3905400288 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((Predicate_1_t3905400288 *)L_8, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); if (L_10) { goto IL_0039; } } IL_0035: { V_2 = (bool)0; IL2CPP_LEAVE(0x4F, FINALLY_0043); } IL_0039: { RuntimeObject* L_11 = V_0; NullCheck((RuntimeObject*)L_11); bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_11); if (L_12) { goto IL_0025; } } IL_0041: { IL2CPP_LEAVE(0x4D, FINALLY_0043); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0043; } FINALLY_0043: { // begin finally (depth: 1) { RuntimeObject* L_13 = V_0; if (!L_13) { goto IL_004c; } } IL_0046: { RuntimeObject* L_14 = V_0; NullCheck((RuntimeObject*)L_14); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_14); } IL_004c: { IL2CPP_END_FINALLY(67) } } // end finally (depth: 1) IL2CPP_CLEANUP(67) { IL2CPP_JUMP_TBL(0x4F, IL_004f) IL2CPP_JUMP_TBL(0x4D, IL_004d) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_004d: { return (bool)1; } IL_004f: { bool L_15 = V_2; return L_15; } } // System.Boolean System.Linq.Enumerable::All<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) extern "C" IL2CPP_METHOD_ATTR bool Enumerable_All_TisRuntimeObject_m2941444129_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___source0, Func_2_t3759279471 * ___predicate1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerable_All_TisRuntimeObject_m2941444129_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject * V_1 = NULL; bool V_2 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject* L_0 = ___source0; if (L_0) { goto IL_000e; } } { Exception_t * L_1 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral4294193667, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerable_All_TisRuntimeObject_m2941444129_RuntimeMethod_var); } IL_000e: { Func_2_t3759279471 * L_2 = ___predicate1; if (L_2) { goto IL_001c; } } { Exception_t * L_3 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral3941128596, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerable_All_TisRuntimeObject_m2941444129_RuntimeMethod_var); } IL_001c: { RuntimeObject* L_4 = ___source0; NullCheck((RuntimeObject*)L_4); RuntimeObject* L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_4); V_0 = (RuntimeObject*)L_5; } IL_0023: try { // begin try (depth: 1) { goto IL_0039; } IL_0025: { RuntimeObject* L_6 = V_0; NullCheck((RuntimeObject*)L_6); RuntimeObject * L_7 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (RuntimeObject*)L_6); V_1 = (RuntimeObject *)L_7; Func_2_t3759279471 * L_8 = ___predicate1; RuntimeObject * L_9 = V_1; NullCheck((Func_2_t3759279471 *)L_8); bool L_10 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((Func_2_t3759279471 *)L_8, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); if (L_10) { goto IL_0039; } } IL_0035: { V_2 = (bool)0; IL2CPP_LEAVE(0x4F, FINALLY_0043); } IL_0039: { RuntimeObject* L_11 = V_0; NullCheck((RuntimeObject*)L_11); bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_11); if (L_12) { goto IL_0025; } } IL_0041: { IL2CPP_LEAVE(0x4D, FINALLY_0043); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0043; } FINALLY_0043: { // begin finally (depth: 1) { RuntimeObject* L_13 = V_0; if (!L_13) { goto IL_004c; } } IL_0046: { RuntimeObject* L_14 = V_0; NullCheck((RuntimeObject*)L_14); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_14); } IL_004c: { IL2CPP_END_FINALLY(67) } } // end finally (depth: 1) IL2CPP_CLEANUP(67) { IL2CPP_JUMP_TBL(0x4F, IL_004f) IL2CPP_JUMP_TBL(0x4D, IL_004d) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_004d: { return (bool)1; } IL_004f: { bool L_15 = V_2; return L_15; } } // System.Boolean System.Linq.Enumerable::Any<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>) extern "C" IL2CPP_METHOD_ATTR bool Enumerable_Any_TisRuntimeObject_m3173759778_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___source0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerable_Any_TisRuntimeObject_m3173759778_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; bool V_1 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject* L_0 = ___source0; if (L_0) { goto IL_000e; } } { Exception_t * L_1 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral4294193667, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerable_Any_TisRuntimeObject_m3173759778_RuntimeMethod_var); } IL_000e: { RuntimeObject* L_2 = ___source0; NullCheck((RuntimeObject*)L_2); RuntimeObject* L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_2); V_0 = (RuntimeObject*)L_3; } IL_0015: try { // begin try (depth: 1) RuntimeObject* L_4 = V_0; NullCheck((RuntimeObject*)L_4); bool L_5 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_4); V_1 = (bool)L_5; IL2CPP_LEAVE(0x28, FINALLY_001e); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_001e; } FINALLY_001e: { // begin finally (depth: 1) { RuntimeObject* L_6 = V_0; if (!L_6) { goto IL_0027; } } IL_0021: { RuntimeObject* L_7 = V_0; NullCheck((RuntimeObject*)L_7); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_7); } IL_0027: { IL2CPP_END_FINALLY(30) } } // end finally (depth: 1) IL2CPP_CLEANUP(30) { IL2CPP_JUMP_TBL(0x28, IL_0028) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0028: { bool L_8 = V_1; return L_8; } } // System.Boolean System.Linq.Enumerable::Any<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) extern "C" IL2CPP_METHOD_ATTR bool Enumerable_Any_TisRuntimeObject_m3853239423_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___source0, Func_2_t3759279471 * ___predicate1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerable_Any_TisRuntimeObject_m3853239423_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject * V_1 = NULL; bool V_2 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject* L_0 = ___source0; if (L_0) { goto IL_000e; } } { Exception_t * L_1 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral4294193667, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerable_Any_TisRuntimeObject_m3853239423_RuntimeMethod_var); } IL_000e: { Func_2_t3759279471 * L_2 = ___predicate1; if (L_2) { goto IL_001c; } } { Exception_t * L_3 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral3941128596, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerable_Any_TisRuntimeObject_m3853239423_RuntimeMethod_var); } IL_001c: { RuntimeObject* L_4 = ___source0; NullCheck((RuntimeObject*)L_4); RuntimeObject* L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_4); V_0 = (RuntimeObject*)L_5; } IL_0023: try { // begin try (depth: 1) { goto IL_0039; } IL_0025: { RuntimeObject* L_6 = V_0; NullCheck((RuntimeObject*)L_6); RuntimeObject * L_7 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (RuntimeObject*)L_6); V_1 = (RuntimeObject *)L_7; Func_2_t3759279471 * L_8 = ___predicate1; RuntimeObject * L_9 = V_1; NullCheck((Func_2_t3759279471 *)L_8); bool L_10 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((Func_2_t3759279471 *)L_8, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); if (!L_10) { goto IL_0039; } } IL_0035: { V_2 = (bool)1; IL2CPP_LEAVE(0x4F, FINALLY_0043); } IL_0039: { RuntimeObject* L_11 = V_0; NullCheck((RuntimeObject*)L_11); bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_11); if (L_12) { goto IL_0025; } } IL_0041: { IL2CPP_LEAVE(0x4D, FINALLY_0043); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0043; } FINALLY_0043: { // begin finally (depth: 1) { RuntimeObject* L_13 = V_0; if (!L_13) { goto IL_004c; } } IL_0046: { RuntimeObject* L_14 = V_0; NullCheck((RuntimeObject*)L_14); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_14); } IL_004c: { IL2CPP_END_FINALLY(67) } } // end finally (depth: 1) IL2CPP_CLEANUP(67) { IL2CPP_JUMP_TBL(0x4F, IL_004f) IL2CPP_JUMP_TBL(0x4D, IL_004d) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_004d: { return (bool)0; } IL_004f: { bool L_15 = V_2; return L_15; } } // System.Boolean System.Linq.Enumerable::Any<Vuforia.TrackerData/TrackableResultData>(System.Collections.Generic.IEnumerable`1<TSource>) extern "C" IL2CPP_METHOD_ATTR bool Enumerable_Any_TisTrackableResultData_t452703160_m2365680072_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___source0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerable_Any_TisTrackableResultData_t452703160_m2365680072_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; bool V_1 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject* L_0 = ___source0; if (L_0) { goto IL_000e; } } { Exception_t * L_1 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral4294193667, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerable_Any_TisTrackableResultData_t452703160_m2365680072_RuntimeMethod_var); } IL_000e: { RuntimeObject* L_2 = ___source0; NullCheck((RuntimeObject*)L_2); RuntimeObject* L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<Vuforia.TrackerData/TrackableResultData>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_2); V_0 = (RuntimeObject*)L_3; } IL_0015: try { // begin try (depth: 1) RuntimeObject* L_4 = V_0; NullCheck((RuntimeObject*)L_4); bool L_5 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_4); V_1 = (bool)L_5; IL2CPP_LEAVE(0x28, FINALLY_001e); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_001e; } FINALLY_001e: { // begin finally (depth: 1) { RuntimeObject* L_6 = V_0; if (!L_6) { goto IL_0027; } } IL_0021: { RuntimeObject* L_7 = V_0; NullCheck((RuntimeObject*)L_7); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_7); } IL_0027: { IL2CPP_END_FINALLY(30) } } // end finally (depth: 1) IL2CPP_CLEANUP(30) { IL2CPP_JUMP_TBL(0x28, IL_0028) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0028: { bool L_8 = V_1; return L_8; } } // System.Boolean System.Linq.Enumerable::Contains<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,TSource) extern "C" IL2CPP_METHOD_ATTR bool Enumerable_Contains_TisRuntimeObject_m3546916684_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___source0, RuntimeObject * ___value1, const RuntimeMethod* method) { RuntimeObject* V_0 = NULL; { RuntimeObject* L_0 = ___source0; RuntimeObject* L_1 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))); V_0 = (RuntimeObject*)L_1; if (L_1) { goto IL_0013; } } { RuntimeObject* L_2 = ___source0; RuntimeObject * L_3 = ___value1; bool L_4 = (( bool (*) (RuntimeObject * /* static, unused */, RuntimeObject*, RuntimeObject *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_2, (RuntimeObject *)L_3, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_4; } IL_0013: { RuntimeObject* L_5 = V_0; RuntimeObject * L_6 = ___value1; NullCheck((RuntimeObject*)L_5); bool L_7 = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(4 /* System.Boolean System.Collections.Generic.ICollection`1<System.Object>::Contains(!0) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_5, (RuntimeObject *)L_6); return L_7; } } // System.Boolean System.Linq.Enumerable::Contains<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,TSource,System.Collections.Generic.IEqualityComparer`1<TSource>) extern "C" IL2CPP_METHOD_ATTR bool Enumerable_Contains_TisRuntimeObject_m553751294_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___source0, RuntimeObject * ___value1, RuntimeObject* ___comparer2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerable_Contains_TisRuntimeObject_m553751294_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject * V_1 = NULL; bool V_2 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject* L_0 = ___comparer2; if (L_0) { goto IL_000a; } } { EqualityComparer_1_t1249878500 * L_1 = (( EqualityComparer_1_t1249878500 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); ___comparer2 = (RuntimeObject*)L_1; } IL_000a: { RuntimeObject* L_2 = ___source0; if (L_2) { goto IL_0018; } } { Exception_t * L_3 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral4294193667, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerable_Contains_TisRuntimeObject_m553751294_RuntimeMethod_var); } IL_0018: { RuntimeObject* L_4 = ___source0; NullCheck((RuntimeObject*)L_4); RuntimeObject* L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (RuntimeObject*)L_4); V_0 = (RuntimeObject*)L_5; } IL_001f: try { // begin try (depth: 1) { goto IL_0036; } IL_0021: { RuntimeObject* L_6 = V_0; NullCheck((RuntimeObject*)L_6); RuntimeObject * L_7 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 3), (RuntimeObject*)L_6); V_1 = (RuntimeObject *)L_7; RuntimeObject* L_8 = ___comparer2; RuntimeObject * L_9 = V_1; RuntimeObject * L_10 = ___value1; NullCheck((RuntimeObject*)L_8); bool L_11 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(!0,!0) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 4), (RuntimeObject*)L_8, (RuntimeObject *)L_9, (RuntimeObject *)L_10); if (!L_11) { goto IL_0036; } } IL_0032: { V_2 = (bool)1; IL2CPP_LEAVE(0x4C, FINALLY_0040); } IL_0036: { RuntimeObject* L_12 = V_0; NullCheck((RuntimeObject*)L_12); bool L_13 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_12); if (L_13) { goto IL_0021; } } IL_003e: { IL2CPP_LEAVE(0x4A, FINALLY_0040); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0040; } FINALLY_0040: { // begin finally (depth: 1) { RuntimeObject* L_14 = V_0; if (!L_14) { goto IL_0049; } } IL_0043: { RuntimeObject* L_15 = V_0; NullCheck((RuntimeObject*)L_15); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_15); } IL_0049: { IL2CPP_END_FINALLY(64) } } // end finally (depth: 1) IL2CPP_CLEANUP(64) { IL2CPP_JUMP_TBL(0x4C, IL_004c) IL2CPP_JUMP_TBL(0x4A, IL_004a) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_004a: { return (bool)0; } IL_004c: { bool L_16 = V_2; return L_16; } } // System.Boolean System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences<System.Int32>() extern "C" IL2CPP_METHOD_ATTR bool RuntimeHelpers_IsReferenceOrContainsReferences_TisInt32_t2950945753_m3647189809_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RuntimeHelpers_IsReferenceOrContainsReferences_TisInt32_t2950945753_m3647189809_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); NullCheck((Type_t *)L_1); bool L_2 = Type_get_IsValueType_m3108065642((Type_t *)L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0026; } } { RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL); bool L_5 = RuntimeTypeHandle_HasReferences_m1571037966(NULL /*static, unused*/, (RuntimeType_t3636489352 *)((RuntimeType_t3636489352 *)IsInst((RuntimeObject*)L_4, RuntimeType_t3636489352_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_5; } IL_0026: { return (bool)1; } } // System.Boolean System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences<System.Object>() extern "C" IL2CPP_METHOD_ATTR bool RuntimeHelpers_IsReferenceOrContainsReferences_TisRuntimeObject_m4177581758_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RuntimeHelpers_IsReferenceOrContainsReferences_TisRuntimeObject_m4177581758_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); NullCheck((Type_t *)L_1); bool L_2 = Type_get_IsValueType_m3108065642((Type_t *)L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0026; } } { RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL); bool L_5 = RuntimeTypeHandle_HasReferences_m1571037966(NULL /*static, unused*/, (RuntimeType_t3636489352 *)((RuntimeType_t3636489352 *)IsInst((RuntimeObject*)L_4, RuntimeType_t3636489352_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_5; } IL_0026: { return (bool)1; } } // System.Boolean System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>() extern "C" IL2CPP_METHOD_ATTR bool RuntimeHelpers_IsReferenceOrContainsReferences_TisSequenceConstructPosContext_t2054380699_m2499189385_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RuntimeHelpers_IsReferenceOrContainsReferences_TisSequenceConstructPosContext_t2054380699_m2499189385_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); NullCheck((Type_t *)L_1); bool L_2 = Type_get_IsValueType_m3108065642((Type_t *)L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0026; } } { RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL); bool L_5 = RuntimeTypeHandle_HasReferences_m1571037966(NULL /*static, unused*/, (RuntimeType_t3636489352 *)((RuntimeType_t3636489352 *)IsInst((RuntimeObject*)L_4, RuntimeType_t3636489352_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_5; } IL_0026: { return (bool)1; } } // System.Boolean System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences<UnityEngine.UnitySynchronizationContext/WorkRequest>() extern "C" IL2CPP_METHOD_ATTR bool RuntimeHelpers_IsReferenceOrContainsReferences_TisWorkRequest_t1354518612_m2703673996_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RuntimeHelpers_IsReferenceOrContainsReferences_TisWorkRequest_t1354518612_m2703673996_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL); NullCheck((Type_t *)L_1); bool L_2 = Type_get_IsValueType_m3108065642((Type_t *)L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0026; } } { RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL); bool L_5 = RuntimeTypeHandle_HasReferences_m1571037966(NULL /*static, unused*/, (RuntimeType_t3636489352 *)((RuntimeType_t3636489352 *)IsInst((RuntimeObject*)L_4, RuntimeType_t3636489352_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_5; } IL_0026: { return (bool)1; } } // System.Boolean TMPro.SetPropertyUtility::SetClass<System.Object>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetClass_TisRuntimeObject_m2778700458_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject ** ___currentValue0, RuntimeObject * ___newValue1, const RuntimeMethod* method) { { RuntimeObject ** L_0 = ___currentValue0; if ((*(RuntimeObject **)L_0)) { goto IL_001b; } } { RuntimeObject * L_1 = ___newValue1; if (!L_1) { goto IL_0042; } } IL_001b: { RuntimeObject ** L_2 = ___currentValue0; if (!(*(RuntimeObject **)L_2)) { goto IL_0044; } } { RuntimeObject ** L_3 = ___currentValue0; RuntimeObject * L_4 = ___newValue1; NullCheck((RuntimeObject *)(*L_3)); bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(*L_3), (RuntimeObject *)L_4); if (!L_5) { goto IL_0044; } } IL_0042: { return (bool)0; } IL_0044: { RuntimeObject ** L_6 = ___currentValue0; RuntimeObject * L_7 = ___newValue1; *(RuntimeObject **)L_6 = L_7; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_6, L_7); return (bool)1; } } // System.Boolean TMPro.SetPropertyUtility::SetEquatableStruct<System.Object>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetEquatableStruct_TisRuntimeObject_m3356728312_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject ** ___currentValue0, RuntimeObject * ___newValue1, const RuntimeMethod* method) { { RuntimeObject ** L_0 = ___currentValue0; RuntimeObject * L_1 = ___newValue1; NullCheck((RuntimeObject*)(*L_0)); bool L_2 = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.IEquatable`1<System.Object>::Equals(!0) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (RuntimeObject*)(*L_0), (RuntimeObject *)L_1); if (!L_2) { goto IL_0014; } } { return (bool)0; } IL_0014: { RuntimeObject ** L_3 = ___currentValue0; RuntimeObject * L_4 = ___newValue1; *(RuntimeObject **)L_3 = L_4; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_3, L_4); return (bool)1; } } // System.Boolean TMPro.SetPropertyUtility::SetStruct<System.Boolean>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisBoolean_t97287965_m2216463341_gshared (RuntimeObject * __this /* static, unused */, bool* ___currentValue0, bool ___newValue1, const RuntimeMethod* method) { { bool* L_0 = ___currentValue0; bool L_1 = ___newValue1; bool L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); bool L_4 = Boolean_Equals_m2410333903((bool*)(bool*)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { bool* L_5 = ___currentValue0; bool L_6 = ___newValue1; *(bool*)L_5 = L_6; return (bool)1; } } // System.Boolean TMPro.SetPropertyUtility::SetStruct<System.Char>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisChar_t3634460470_m383359510_gshared (RuntimeObject * __this /* static, unused */, Il2CppChar* ___currentValue0, Il2CppChar ___newValue1, const RuntimeMethod* method) { { Il2CppChar* L_0 = ___currentValue0; Il2CppChar L_1 = ___newValue1; Il2CppChar L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); bool L_4 = Char_Equals_m1279957088((Il2CppChar*)(Il2CppChar*)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { Il2CppChar* L_5 = ___currentValue0; Il2CppChar L_6 = ___newValue1; *(Il2CppChar*)L_5 = L_6; return (bool)1; } } // System.Boolean TMPro.SetPropertyUtility::SetStruct<System.Int32>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisInt32_t2950945753_m3714103655_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); bool L_4 = Int32_Equals_m3996243976((int32_t*)(int32_t*)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_5 = ___currentValue0; int32_t L_6 = ___newValue1; *(int32_t*)L_5 = L_6; return (bool)1; } } // System.Boolean TMPro.SetPropertyUtility::SetStruct<System.Single>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisSingle_t1397266774_m2303516622_gshared (RuntimeObject * __this /* static, unused */, float* ___currentValue0, float ___newValue1, const RuntimeMethod* method) { { float* L_0 = ___currentValue0; float L_1 = ___newValue1; float L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); bool L_4 = Single_Equals_m438106747((float*)(float*)L_0, (RuntimeObject *)L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { float* L_5 = ___currentValue0; float L_6 = ___newValue1; *(float*)L_5 = L_6; return (bool)1; } } // System.Boolean TMPro.SetPropertyUtility::SetStruct<TMPro.TMP_InputField/CharacterValidation>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisCharacterValidation_t3801396403_m2179127029_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), L_0); NullCheck((RuntimeObject *)L_4); bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_4, (RuntimeObject *)L_3); *L_0 = *(int32_t*)UnBox(L_4); if (!L_5) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_6 = ___currentValue0; int32_t L_7 = ___newValue1; *(int32_t*)L_6 = L_7; return (bool)1; } } // System.Boolean TMPro.SetPropertyUtility::SetStruct<TMPro.TMP_InputField/ContentType>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisContentType_t1128941285_m4155818295_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), L_0); NullCheck((RuntimeObject *)L_4); bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_4, (RuntimeObject *)L_3); *L_0 = *(int32_t*)UnBox(L_4); if (!L_5) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_6 = ___currentValue0; int32_t L_7 = ___newValue1; *(int32_t*)L_6 = L_7; return (bool)1; } } // System.Boolean TMPro.SetPropertyUtility::SetStruct<TMPro.TMP_InputField/InputType>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisInputType_t2510134850_m1281287871_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), L_0); NullCheck((RuntimeObject *)L_4); bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_4, (RuntimeObject *)L_3); *L_0 = *(int32_t*)UnBox(L_4); if (!L_5) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_6 = ___currentValue0; int32_t L_7 = ___newValue1; *(int32_t*)L_6 = L_7; return (bool)1; } } // System.Boolean TMPro.SetPropertyUtility::SetStruct<TMPro.TMP_InputField/LineType>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisLineType_t2817627283_m1408614240_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), L_0); NullCheck((RuntimeObject *)L_4); bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_4, (RuntimeObject *)L_3); *L_0 = *(int32_t*)UnBox(L_4); if (!L_5) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_6 = ___currentValue0; int32_t L_7 = ___newValue1; *(int32_t*)L_6 = L_7; return (bool)1; } } // System.Boolean TMPro.SetPropertyUtility::SetStruct<UnityEngine.TouchScreenKeyboardType>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisTouchScreenKeyboardType_t1530597702_m3957823684_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), L_0); NullCheck((RuntimeObject *)L_4); bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_4, (RuntimeObject *)L_3); *L_0 = *(int32_t*)UnBox(L_4); if (!L_5) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_6 = ___currentValue0; int32_t L_7 = ___newValue1; *(int32_t*)L_6 = L_7; return (bool)1; } } // System.Boolean UnityEngine.EventSystems.ExecuteEvents::CanHandleEvent<System.Object>(UnityEngine.GameObject) extern "C" IL2CPP_METHOD_ATTR bool ExecuteEvents_CanHandleEvent_TisRuntimeObject_m1442722301_gshared (RuntimeObject * __this /* static, unused */, GameObject_t1113636619 * ___go0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ExecuteEvents_CanHandleEvent_TisRuntimeObject_m1442722301_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_t531791296 * V_0 = NULL; int32_t V_1 = 0; bool V_2 = false; { IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t3484638744_il2cpp_TypeInfo_var); ObjectPool_1_t231414508 * L_0 = ((ExecuteEvents_t3484638744_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t3484638744_il2cpp_TypeInfo_var))->get_s_HandlerListPool_17(); NullCheck((ObjectPool_1_t231414508 *)L_0); List_1_t531791296 * L_1 = ObjectPool_1_Get_m3850192859((ObjectPool_1_t231414508 *)L_0, /*hidden argument*/ObjectPool_1_Get_m3850192859_RuntimeMethod_var); V_0 = (List_1_t531791296 *)L_1; GameObject_t1113636619 * L_2 = ___go0; List_1_t531791296 * L_3 = V_0; (( void (*) (RuntimeObject * /* static, unused */, GameObject_t1113636619 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (GameObject_t1113636619 *)L_2, (RuntimeObject*)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); List_1_t531791296 * L_4 = V_0; NullCheck((List_1_t531791296 *)L_4); int32_t L_5 = List_1_get_Count_m147600133((List_1_t531791296 *)L_4, /*hidden argument*/List_1_get_Count_m147600133_RuntimeMethod_var); V_1 = (int32_t)L_5; ObjectPool_1_t231414508 * L_6 = ((ExecuteEvents_t3484638744_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t3484638744_il2cpp_TypeInfo_var))->get_s_HandlerListPool_17(); List_1_t531791296 * L_7 = V_0; NullCheck((ObjectPool_1_t231414508 *)L_6); ObjectPool_1_Release_m2466618443((ObjectPool_1_t231414508 *)L_6, (List_1_t531791296 *)L_7, /*hidden argument*/ObjectPool_1_Release_m2466618443_RuntimeMethod_var); int32_t L_8 = V_1; V_2 = (bool)((((int32_t)((((int32_t)L_8) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0032; } IL_0032: { bool L_9 = V_2; return L_9; } } // System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<System.Object>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) extern "C" IL2CPP_METHOD_ATTR bool ExecuteEvents_Execute_TisRuntimeObject_m1952955951_gshared (RuntimeObject * __this /* static, unused */, GameObject_t1113636619 * ___target0, BaseEventData_t3903027533 * ___eventData1, EventFunction_1_t1764640198 * ___functor2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ExecuteEvents_Execute_TisRuntimeObject_m1952955951_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_t531791296 * V_0 = NULL; int32_t V_1 = 0; RuntimeObject * V_2 = NULL; Exception_t * V_3 = NULL; RuntimeObject* V_4 = NULL; Exception_t * V_5 = NULL; int32_t V_6 = 0; bool V_7 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t3484638744_il2cpp_TypeInfo_var); ObjectPool_1_t231414508 * L_0 = ((ExecuteEvents_t3484638744_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t3484638744_il2cpp_TypeInfo_var))->get_s_HandlerListPool_17(); NullCheck((ObjectPool_1_t231414508 *)L_0); List_1_t531791296 * L_1 = ObjectPool_1_Get_m3850192859((ObjectPool_1_t231414508 *)L_0, /*hidden argument*/ObjectPool_1_Get_m3850192859_RuntimeMethod_var); V_0 = (List_1_t531791296 *)L_1; GameObject_t1113636619 * L_2 = ___target0; List_1_t531791296 * L_3 = V_0; (( void (*) (RuntimeObject * /* static, unused */, GameObject_t1113636619 *, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (GameObject_t1113636619 *)L_2, (RuntimeObject*)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (int32_t)0; goto IL_0093; } IL_001a: { } IL_001b: try { // begin try (depth: 1) List_1_t531791296 * L_4 = V_0; int32_t L_5 = V_1; NullCheck((List_1_t531791296 *)L_4); RuntimeObject* L_6 = List_1_get_Item_m2864693351((List_1_t531791296 *)L_4, (int32_t)L_5, /*hidden argument*/List_1_get_Item_m2864693351_RuntimeMethod_var); V_2 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))); goto IL_006f; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_002f; throw e; } CATCH_002f: { // begin catch(System.Exception) V_3 = (Exception_t *)((Exception_t *)__exception_local); List_1_t531791296 * L_7 = V_0; int32_t L_8 = V_1; NullCheck((List_1_t531791296 *)L_7); RuntimeObject* L_9 = List_1_get_Item_m2864693351((List_1_t531791296 *)L_7, (int32_t)L_8, /*hidden argument*/List_1_get_Item_m2864693351_RuntimeMethod_var); V_4 = (RuntimeObject*)L_9; RuntimeTypeHandle_t3027515415 L_10 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_11 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_10, /*hidden argument*/NULL); NullCheck((MemberInfo_t *)L_11); String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_11); RuntimeObject* L_13 = V_4; NullCheck((RuntimeObject *)L_13); Type_t * L_14 = Object_GetType_m88164663((RuntimeObject *)L_13, /*hidden argument*/NULL); NullCheck((MemberInfo_t *)L_14); String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_14); String_t* L_16 = String_Format_m2556382932(NULL /*static, unused*/, (String_t*)_stringLiteral1643567794, (RuntimeObject *)L_12, (RuntimeObject *)L_15, /*hidden argument*/NULL); Exception_t * L_17 = V_3; Exception_t * L_18 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m1406832249(L_18, (String_t*)L_16, (Exception_t *)L_17, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t3317548046_il2cpp_TypeInfo_var); Debug_LogException_m2207318968(NULL /*static, unused*/, (Exception_t *)L_18, /*hidden argument*/NULL); goto IL_008f; } // end catch (depth: 1) IL_006f: try { // begin try (depth: 1) EventFunction_1_t1764640198 * L_19 = ___functor2; RuntimeObject * L_20 = V_2; BaseEventData_t3903027533 * L_21 = ___eventData1; NullCheck((EventFunction_1_t1764640198 *)L_19); (( void (*) (EventFunction_1_t1764640198 *, RuntimeObject *, BaseEventData_t3903027533 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)((EventFunction_1_t1764640198 *)L_19, (RuntimeObject *)L_20, (BaseEventData_t3903027533 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)); goto IL_008e; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_007e; throw e; } CATCH_007e: { // begin catch(System.Exception) V_5 = (Exception_t *)((Exception_t *)__exception_local); Exception_t * L_22 = V_5; IL2CPP_RUNTIME_CLASS_INIT(Debug_t3317548046_il2cpp_TypeInfo_var); Debug_LogException_m2207318968(NULL /*static, unused*/, (Exception_t *)L_22, /*hidden argument*/NULL); goto IL_008e; } // end catch (depth: 1) IL_008e: { } IL_008f: { int32_t L_23 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0093: { int32_t L_24 = V_1; List_1_t531791296 * L_25 = V_0; NullCheck((List_1_t531791296 *)L_25); int32_t L_26 = List_1_get_Count_m147600133((List_1_t531791296 *)L_25, /*hidden argument*/List_1_get_Count_m147600133_RuntimeMethod_var); if ((((int32_t)L_24) < ((int32_t)L_26))) { goto IL_001a; } } { List_1_t531791296 * L_27 = V_0; NullCheck((List_1_t531791296 *)L_27); int32_t L_28 = List_1_get_Count_m147600133((List_1_t531791296 *)L_27, /*hidden argument*/List_1_get_Count_m147600133_RuntimeMethod_var); V_6 = (int32_t)L_28; IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t3484638744_il2cpp_TypeInfo_var); ObjectPool_1_t231414508 * L_29 = ((ExecuteEvents_t3484638744_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t3484638744_il2cpp_TypeInfo_var))->get_s_HandlerListPool_17(); List_1_t531791296 * L_30 = V_0; NullCheck((ObjectPool_1_t231414508 *)L_29); ObjectPool_1_Release_m2466618443((ObjectPool_1_t231414508 *)L_29, (List_1_t531791296 *)L_30, /*hidden argument*/ObjectPool_1_Release_m2466618443_RuntimeMethod_var); int32_t L_31 = V_6; V_7 = (bool)((((int32_t)L_31) > ((int32_t)0))? 1 : 0); goto IL_00be; } IL_00be: { bool L_32 = V_7; return L_32; } } // System.Boolean UnityEngine.EventSystems.ExecuteEvents::ShouldSendToComponent<System.Object>(UnityEngine.Component) extern "C" IL2CPP_METHOD_ATTR bool ExecuteEvents_ShouldSendToComponent_TisRuntimeObject_m2008221122_gshared (RuntimeObject * __this /* static, unused */, Component_t1923634451 * ___component0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ExecuteEvents_ShouldSendToComponent_TisRuntimeObject_m2008221122_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; Behaviour_t1437897464 * V_2 = NULL; { Component_t1923634451 * L_0 = ___component0; V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); bool L_1 = V_0; if (L_1) { goto IL_0018; } } { V_1 = (bool)0; goto IL_003e; } IL_0018: { Component_t1923634451 * L_2 = ___component0; V_2 = (Behaviour_t1437897464 *)((Behaviour_t1437897464 *)IsInst((RuntimeObject*)L_2, Behaviour_t1437897464_il2cpp_TypeInfo_var)); Behaviour_t1437897464 * L_3 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Object_t631007953_il2cpp_TypeInfo_var); bool L_4 = Object_op_Inequality_m4071470834(NULL /*static, unused*/, (Object_t631007953 *)L_3, (Object_t631007953 *)NULL, /*hidden argument*/NULL); if (!L_4) { goto IL_0037; } } { Behaviour_t1437897464 * L_5 = V_2; NullCheck((Behaviour_t1437897464 *)L_5); bool L_6 = Behaviour_get_isActiveAndEnabled_m3143666263((Behaviour_t1437897464 *)L_5, /*hidden argument*/NULL); V_1 = (bool)L_6; goto IL_003e; } IL_0037: { V_1 = (bool)1; goto IL_003e; } IL_003e: { bool L_7 = V_1; return L_7; } } // System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<System.Object>() extern "C" IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisRuntimeObject_m503495943_gshared (PlayableHandle_t1095853803 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayableHandle_IsPlayableOfType_TisRuntimeObject_m503495943_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { Type_t * L_0 = PlayableHandle_GetPlayableType_m432385838((PlayableHandle_t1095853803 *)(PlayableHandle_t1095853803 *)__this, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_1, /*hidden argument*/NULL); V_0 = (bool)((((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_2))? 1 : 0); goto IL_0019; } IL_0019: { bool L_3 = V_0; return L_3; } } extern "C" bool PlayableHandle_IsPlayableOfType_TisRuntimeObject_m503495943_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { PlayableHandle_t1095853803 * _thisAdjusted = reinterpret_cast<PlayableHandle_t1095853803 *>(__this + 1); return PlayableHandle_IsPlayableOfType_TisRuntimeObject_m503495943(_thisAdjusted, method); } // System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Animations.AnimationLayerMixerPlayable>() extern "C" IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_t3631223897_m201603007_gshared (PlayableHandle_t1095853803 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_t3631223897_m201603007_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { Type_t * L_0 = PlayableHandle_GetPlayableType_m432385838((PlayableHandle_t1095853803 *)(PlayableHandle_t1095853803 *)__this, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_1, /*hidden argument*/NULL); V_0 = (bool)((((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_2))? 1 : 0); goto IL_0019; } IL_0019: { bool L_3 = V_0; return L_3; } } extern "C" bool PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_t3631223897_m201603007_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { PlayableHandle_t1095853803 * _thisAdjusted = reinterpret_cast<PlayableHandle_t1095853803 *>(__this + 1); return PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_t3631223897_m201603007(_thisAdjusted, method); } // System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Animations.AnimationOffsetPlayable>() extern "C" IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t2887420414_m2033286094_gshared (PlayableHandle_t1095853803 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t2887420414_m2033286094_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { Type_t * L_0 = PlayableHandle_GetPlayableType_m432385838((PlayableHandle_t1095853803 *)(PlayableHandle_t1095853803 *)__this, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_1, /*hidden argument*/NULL); V_0 = (bool)((((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_2))? 1 : 0); goto IL_0019; } IL_0019: { bool L_3 = V_0; return L_3; } } extern "C" bool PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t2887420414_m2033286094_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { PlayableHandle_t1095853803 * _thisAdjusted = reinterpret_cast<PlayableHandle_t1095853803 *>(__this + 1); return PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t2887420414_m2033286094(_thisAdjusted, method); } // System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Animations.AnimatorControllerPlayable>() extern "C" IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_t1015767841_m3416945299_gshared (PlayableHandle_t1095853803 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_t1015767841_m3416945299_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { Type_t * L_0 = PlayableHandle_GetPlayableType_m432385838((PlayableHandle_t1095853803 *)(PlayableHandle_t1095853803 *)__this, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_1, /*hidden argument*/NULL); V_0 = (bool)((((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_2))? 1 : 0); goto IL_0019; } IL_0019: { bool L_3 = V_0; return L_3; } } extern "C" bool PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_t1015767841_m3416945299_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { PlayableHandle_t1095853803 * _thisAdjusted = reinterpret_cast<PlayableHandle_t1095853803 *>(__this + 1); return PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_t1015767841_m3416945299(_thisAdjusted, method); } // System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Experimental.Animations.AnimationScriptPlayable>() extern "C" IL2CPP_METHOD_ATTR bool PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1303525964_m1992139667_gshared (PlayableHandle_t1095853803 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1303525964_m1992139667_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { Type_t * L_0 = PlayableHandle_GetPlayableType_m432385838((PlayableHandle_t1095853803 *)(PlayableHandle_t1095853803 *)__this, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_1, /*hidden argument*/NULL); V_0 = (bool)((((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_2))? 1 : 0); goto IL_0019; } IL_0019: { bool L_3 = V_0; return L_3; } } extern "C" bool PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1303525964_m1992139667_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { PlayableHandle_t1095853803 * _thisAdjusted = reinterpret_cast<PlayableHandle_t1095853803 *>(__this + 1); return PlayableHandle_IsPlayableOfType_TisAnimationScriptPlayable_t1303525964_m1992139667(_thisAdjusted, method); } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetClass<System.Object>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetClass_TisRuntimeObject_m1505455193_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject ** ___currentValue0, RuntimeObject * ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { RuntimeObject ** L_0 = ___currentValue0; if ((*(RuntimeObject **)L_0)) { goto IL_001c; } } { RuntimeObject * L_1 = ___newValue1; if (!L_1) { goto IL_0043; } } IL_001c: { RuntimeObject ** L_2 = ___currentValue0; if (!(*(RuntimeObject **)L_2)) { goto IL_004a; } } { RuntimeObject ** L_3 = ___currentValue0; RuntimeObject * L_4 = ___newValue1; NullCheck((RuntimeObject *)(*L_3)); bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(*L_3), (RuntimeObject *)L_4); if (!L_5) { goto IL_004a; } } IL_0043: { V_0 = (bool)0; goto IL_0058; } IL_004a: { RuntimeObject ** L_6 = ___currentValue0; RuntimeObject * L_7 = ___newValue1; *(RuntimeObject **)L_6 = L_7; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_6, L_7); V_0 = (bool)1; goto IL_0058; } IL_0058: { bool L_8 = V_0; return L_8; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Boolean>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisBoolean_t97287965_m1354367708_gshared (RuntimeObject * __this /* static, unused */, bool* ___currentValue0, bool ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t2562027597 * L_0 = (( EqualityComparer_1_t2562027597 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); bool* L_1 = ___currentValue0; bool L_2 = ___newValue1; NullCheck((EqualityComparer_1_t2562027597 *)L_0); bool L_3 = VirtFuncInvoker2< bool, bool, bool >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Boolean>::Equals(!0,!0) */, (EqualityComparer_1_t2562027597 *)L_0, (bool)(*(bool*)L_1), (bool)L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { bool* L_4 = ___currentValue0; bool L_5 = ___newValue1; *(bool*)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Char>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisChar_t3634460470_m4284602558_gshared (RuntimeObject * __this /* static, unused */, Il2CppChar* ___currentValue0, Il2CppChar ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t1804232806 * L_0 = (( EqualityComparer_1_t1804232806 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); Il2CppChar* L_1 = ___currentValue0; Il2CppChar L_2 = ___newValue1; NullCheck((EqualityComparer_1_t1804232806 *)L_0); bool L_3 = VirtFuncInvoker2< bool, Il2CppChar, Il2CppChar >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Char>::Equals(!0,!0) */, (EqualityComparer_1_t1804232806 *)L_0, (Il2CppChar)(*(Il2CppChar*)L_1), (Il2CppChar)L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { Il2CppChar* L_4 = ___currentValue0; Il2CppChar L_5 = ___newValue1; *(Il2CppChar*)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Int32>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisInt32_t2950945753_m1101767463_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t1120718089 * L_0 = (( EqualityComparer_1_t1120718089 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); int32_t* L_1 = ___currentValue0; int32_t L_2 = ___newValue1; NullCheck((EqualityComparer_1_t1120718089 *)L_0); bool L_3 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::Equals(!0,!0) */, (EqualityComparer_1_t1120718089 *)L_0, (int32_t)(*(int32_t*)L_1), (int32_t)L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { int32_t* L_4 = ___currentValue0; int32_t L_5 = ___newValue1; *(int32_t*)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Single>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisSingle_t1397266774_m2805350785_gshared (RuntimeObject * __this /* static, unused */, float* ___currentValue0, float ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t3862006406 * L_0 = (( EqualityComparer_1_t3862006406 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); float* L_1 = ___currentValue0; float L_2 = ___newValue1; NullCheck((EqualityComparer_1_t3862006406 *)L_0); bool L_3 = VirtFuncInvoker2< bool, float, float >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Single>::Equals(!0,!0) */, (EqualityComparer_1_t3862006406 *)L_0, (float)(*(float*)L_1), (float)L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { float* L_4 = ___currentValue0; float L_5 = ___newValue1; *(float*)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.TouchScreenKeyboardType>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisTouchScreenKeyboardType_t1530597702_m2455393348_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t3995337334 * L_0 = (( EqualityComparer_1_t3995337334 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); int32_t* L_1 = ___currentValue0; int32_t L_2 = ___newValue1; NullCheck((EqualityComparer_1_t3995337334 *)L_0); bool L_3 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.TouchScreenKeyboardType>::Equals(!0,!0) */, (EqualityComparer_1_t3995337334 *)L_0, (int32_t)(*(int32_t*)L_1), (int32_t)L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { int32_t* L_4 = ___currentValue0; int32_t L_5 = ___newValue1; *(int32_t*)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.AspectRatioFitter/AspectMode>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisAspectMode_t3417192999_m1565063249_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t1586965335 * L_0 = (( EqualityComparer_1_t1586965335 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); int32_t* L_1 = ___currentValue0; int32_t L_2 = ___newValue1; NullCheck((EqualityComparer_1_t1586965335 *)L_0); bool L_3 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.AspectRatioFitter/AspectMode>::Equals(!0,!0) */, (EqualityComparer_1_t1586965335 *)L_0, (int32_t)(*(int32_t*)L_1), (int32_t)L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { int32_t* L_4 = ___currentValue0; int32_t L_5 = ___newValue1; *(int32_t*)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.ColorBlock>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisColorBlock_t2139031574_m1748367426_gshared (RuntimeObject * __this /* static, unused */, ColorBlock_t2139031574 * ___currentValue0, ColorBlock_t2139031574 ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t308803910 * L_0 = (( EqualityComparer_1_t308803910 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); ColorBlock_t2139031574 * L_1 = ___currentValue0; ColorBlock_t2139031574 L_2 = ___newValue1; NullCheck((EqualityComparer_1_t308803910 *)L_0); bool L_3 = VirtFuncInvoker2< bool, ColorBlock_t2139031574 , ColorBlock_t2139031574 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ColorBlock>::Equals(!0,!0) */, (EqualityComparer_1_t308803910 *)L_0, (ColorBlock_t2139031574 )(*(ColorBlock_t2139031574 *)L_1), (ColorBlock_t2139031574 )L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { ColorBlock_t2139031574 * L_4 = ___currentValue0; ColorBlock_t2139031574 L_5 = ___newValue1; *(ColorBlock_t2139031574 *)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.ContentSizeFitter/FitMode>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisFitMode_t3267881214_m3556730181_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t1437653550 * L_0 = (( EqualityComparer_1_t1437653550 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); int32_t* L_1 = ___currentValue0; int32_t L_2 = ___newValue1; NullCheck((EqualityComparer_1_t1437653550 *)L_0); bool L_3 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ContentSizeFitter/FitMode>::Equals(!0,!0) */, (EqualityComparer_1_t1437653550 *)L_0, (int32_t)(*(int32_t*)L_1), (int32_t)L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { int32_t* L_4 = ___currentValue0; int32_t L_5 = ___newValue1; *(int32_t*)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Image/FillMethod>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisFillMethod_t1167457570_m4164776730_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t3632197202 * L_0 = (( EqualityComparer_1_t3632197202 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); int32_t* L_1 = ___currentValue0; int32_t L_2 = ___newValue1; NullCheck((EqualityComparer_1_t3632197202 *)L_0); bool L_3 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Image/FillMethod>::Equals(!0,!0) */, (EqualityComparer_1_t3632197202 *)L_0, (int32_t)(*(int32_t*)L_1), (int32_t)L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { int32_t* L_4 = ___currentValue0; int32_t L_5 = ___newValue1; *(int32_t*)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Image/Type>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisType_t1152881528_m2141033060_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t3617621160 * L_0 = (( EqualityComparer_1_t3617621160 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); int32_t* L_1 = ___currentValue0; int32_t L_2 = ___newValue1; NullCheck((EqualityComparer_1_t3617621160 *)L_0); bool L_3 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Image/Type>::Equals(!0,!0) */, (EqualityComparer_1_t3617621160 *)L_0, (int32_t)(*(int32_t*)L_1), (int32_t)L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { int32_t* L_4 = ___currentValue0; int32_t L_5 = ___newValue1; *(int32_t*)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.InputField/CharacterValidation>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisCharacterValidation_t4051914437_m1041518770_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t2221686773 * L_0 = (( EqualityComparer_1_t2221686773 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); int32_t* L_1 = ___currentValue0; int32_t L_2 = ___newValue1; NullCheck((EqualityComparer_1_t2221686773 *)L_0); bool L_3 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.InputField/CharacterValidation>::Equals(!0,!0) */, (EqualityComparer_1_t2221686773 *)L_0, (int32_t)(*(int32_t*)L_1), (int32_t)L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { int32_t* L_4 = ___currentValue0; int32_t L_5 = ___newValue1; *(int32_t*)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.InputField/ContentType>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisContentType_t1787303396_m2548467436_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t4252043028 * L_0 = (( EqualityComparer_1_t4252043028 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); int32_t* L_1 = ___currentValue0; int32_t L_2 = ___newValue1; NullCheck((EqualityComparer_1_t4252043028 *)L_0); bool L_3 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.InputField/ContentType>::Equals(!0,!0) */, (EqualityComparer_1_t4252043028 *)L_0, (int32_t)(*(int32_t*)L_1), (int32_t)L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { int32_t* L_4 = ___currentValue0; int32_t L_5 = ___newValue1; *(int32_t*)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.InputField/InputType>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisInputType_t1770400679_m3206488413_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t4235140311 * L_0 = (( EqualityComparer_1_t4235140311 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); int32_t* L_1 = ___currentValue0; int32_t L_2 = ___newValue1; NullCheck((EqualityComparer_1_t4235140311 *)L_0); bool L_3 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.InputField/InputType>::Equals(!0,!0) */, (EqualityComparer_1_t4235140311 *)L_0, (int32_t)(*(int32_t*)L_1), (int32_t)L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { int32_t* L_4 = ___currentValue0; int32_t L_5 = ___newValue1; *(int32_t*)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.InputField/LineType>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisLineType_t4214648469_m1399434260_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t2384420805 * L_0 = (( EqualityComparer_1_t2384420805 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); int32_t* L_1 = ___currentValue0; int32_t L_2 = ___newValue1; NullCheck((EqualityComparer_1_t2384420805 *)L_0); bool L_3 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.InputField/LineType>::Equals(!0,!0) */, (EqualityComparer_1_t2384420805 *)L_0, (int32_t)(*(int32_t*)L_1), (int32_t)L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { int32_t* L_4 = ___currentValue0; int32_t L_5 = ___newValue1; *(int32_t*)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Navigation>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisNavigation_t3049316579_m1469939781_gshared (RuntimeObject * __this /* static, unused */, Navigation_t3049316579 * ___currentValue0, Navigation_t3049316579 ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t1219088915 * L_0 = (( EqualityComparer_1_t1219088915 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); Navigation_t3049316579 * L_1 = ___currentValue0; Navigation_t3049316579 L_2 = ___newValue1; NullCheck((EqualityComparer_1_t1219088915 *)L_0); bool L_3 = VirtFuncInvoker2< bool, Navigation_t3049316579 , Navigation_t3049316579 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Navigation>::Equals(!0,!0) */, (EqualityComparer_1_t1219088915 *)L_0, (Navigation_t3049316579 )(*(Navigation_t3049316579 *)L_1), (Navigation_t3049316579 )L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { Navigation_t3049316579 * L_4 = ___currentValue0; Navigation_t3049316579 L_5 = ___newValue1; *(Navigation_t3049316579 *)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Scrollbar/Direction>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisDirection_t3470714353_m1506329685_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t1640486689 * L_0 = (( EqualityComparer_1_t1640486689 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); int32_t* L_1 = ___currentValue0; int32_t L_2 = ___newValue1; NullCheck((EqualityComparer_1_t1640486689 *)L_0); bool L_3 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Scrollbar/Direction>::Equals(!0,!0) */, (EqualityComparer_1_t1640486689 *)L_0, (int32_t)(*(int32_t*)L_1), (int32_t)L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { int32_t* L_4 = ___currentValue0; int32_t L_5 = ___newValue1; *(int32_t*)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Selectable/Transition>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisTransition_t1769908631_m4087672457_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t4234648263 * L_0 = (( EqualityComparer_1_t4234648263 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); int32_t* L_1 = ___currentValue0; int32_t L_2 = ___newValue1; NullCheck((EqualityComparer_1_t4234648263 *)L_0); bool L_3 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Selectable/Transition>::Equals(!0,!0) */, (EqualityComparer_1_t4234648263 *)L_0, (int32_t)(*(int32_t*)L_1), (int32_t)L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { int32_t* L_4 = ___currentValue0; int32_t L_5 = ___newValue1; *(int32_t*)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Slider/Direction>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisDirection_t337909235_m916002679_gshared (RuntimeObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t2802648867 * L_0 = (( EqualityComparer_1_t2802648867 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); int32_t* L_1 = ___currentValue0; int32_t L_2 = ___newValue1; NullCheck((EqualityComparer_1_t2802648867 *)L_0); bool L_3 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Slider/Direction>::Equals(!0,!0) */, (EqualityComparer_1_t2802648867 *)L_0, (int32_t)(*(int32_t*)L_1), (int32_t)L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { int32_t* L_4 = ___currentValue0; int32_t L_5 = ___newValue1; *(int32_t*)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.SpriteState>(T&,T) extern "C" IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetStruct_TisSpriteState_t1362986479_m665096788_gshared (RuntimeObject * __this /* static, unused */, SpriteState_t1362986479 * ___currentValue0, SpriteState_t1362986479 ___newValue1, const RuntimeMethod* method) { bool V_0 = false; { EqualityComparer_1_t3827726111 * L_0 = (( EqualityComparer_1_t3827726111 * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); SpriteState_t1362986479 * L_1 = ___currentValue0; SpriteState_t1362986479 L_2 = ___newValue1; NullCheck((EqualityComparer_1_t3827726111 *)L_0); bool L_3 = VirtFuncInvoker2< bool, SpriteState_t1362986479 , SpriteState_t1362986479 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.SpriteState>::Equals(!0,!0) */, (EqualityComparer_1_t3827726111 *)L_0, (SpriteState_t1362986479 )(*(SpriteState_t1362986479 *)L_1), (SpriteState_t1362986479 )L_2); if (!L_3) { goto IL_001e; } } { V_0 = (bool)0; goto IL_002c; } IL_001e: { SpriteState_t1362986479 * L_4 = ___currentValue0; SpriteState_t1362986479 L_5 = ___newValue1; *(SpriteState_t1362986479 *)L_4 = L_5; V_0 = (bool)1; goto IL_002c; } IL_002c: { bool L_6 = V_0; return L_6; } } // System.Boolean Vuforia.TrackerManager::DeinitTracker<System.Object>() extern "C" IL2CPP_METHOD_ATTR bool TrackerManager_DeinitTracker_TisRuntimeObject_m17387763_gshared (TrackerManager_t1703337244 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TrackerManager_DeinitTracker_TisRuntimeObject_m17387763_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; { Type_t * L_0 = (( Type_t * (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (Type_t *)L_0; Dictionary_2_t858966067 * L_1 = (Dictionary_2_t858966067 *)__this->get_mTrackers_2(); Type_t * L_2 = V_0; NullCheck((Dictionary_2_t858966067 *)L_1); bool L_3 = Dictionary_2_ContainsKey_m1661239861((Dictionary_2_t858966067 *)L_1, (Type_t *)L_2, /*hidden argument*/Dictionary_2_ContainsKey_m1661239861_RuntimeMethod_var); if (L_3) { goto IL_0020; } } { IL2CPP_RUNTIME_CLASS_INIT(Debug_t3317548046_il2cpp_TypeInfo_var); Debug_LogError_m2850623458(NULL /*static, unused*/, (RuntimeObject *)_stringLiteral3281478636, /*hidden argument*/NULL); return (bool)0; } IL_0020: { bool L_4 = (( bool (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (!L_4) { goto IL_0052; } } { Dictionary_2_t2058017892 * L_5 = (Dictionary_2_t2058017892 *)__this->get_mTrackerNativeDeinitializers_4(); Type_t * L_6 = V_0; NullCheck((Dictionary_2_t2058017892 *)L_5); Func_2_t3908638124 * L_7 = Dictionary_2_get_Item_m955022751((Dictionary_2_t2058017892 *)L_5, (Type_t *)L_6, /*hidden argument*/Dictionary_2_get_Item_m955022751_RuntimeMethod_var); Dictionary_2_t858966067 * L_8 = (Dictionary_2_t858966067 *)__this->get_mTrackers_2(); Type_t * L_9 = V_0; NullCheck((Dictionary_2_t858966067 *)L_8); Tracker_t2709586299 * L_10 = Dictionary_2_get_Item_m2573772253((Dictionary_2_t858966067 *)L_8, (Type_t *)L_9, /*hidden argument*/Dictionary_2_get_Item_m2573772253_RuntimeMethod_var); NullCheck((Func_2_t3908638124 *)L_7); bool L_11 = Func_2_Invoke_m3880583461((Func_2_t3908638124 *)L_7, (Tracker_t2709586299 *)L_10, /*hidden argument*/Func_2_Invoke_m3880583461_RuntimeMethod_var); if (L_11) { goto IL_0052; } } { IL2CPP_RUNTIME_CLASS_INIT(Debug_t3317548046_il2cpp_TypeInfo_var); Debug_LogError_m2850623458(NULL /*static, unused*/, (RuntimeObject *)_stringLiteral2328760826, /*hidden argument*/NULL); return (bool)0; } IL_0052: { Dictionary_2_t858966067 * L_12 = (Dictionary_2_t858966067 *)__this->get_mTrackers_2(); Type_t * L_13 = V_0; NullCheck((Dictionary_2_t858966067 *)L_12); Dictionary_2_set_Item_m3740867761((Dictionary_2_t858966067 *)L_12, (Type_t *)L_13, (Tracker_t2709586299 *)NULL, /*hidden argument*/Dictionary_2_set_Item_m3740867761_RuntimeMethod_var); return (bool)1; } } // System.Boolean Vuforia.TrackerManager::IsTrackerSupportedNatively<System.Object>() extern "C" IL2CPP_METHOD_ATTR bool TrackerManager_IsTrackerSupportedNatively_TisRuntimeObject_m579694909_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TrackerManager_IsTrackerSupportedNatively_TisRuntimeObject_m579694909_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(VuforiaRuntimeUtilities_t399660591_il2cpp_TypeInfo_var); bool L_0 = VuforiaRuntimeUtilities_IsPlayMode_m4165764373(NULL /*static, unused*/, /*hidden argument*/NULL); if (!L_0) { goto IL_0039; } } { RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_1, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (RotationalDeviceTracker_t2847210804_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_3, /*hidden argument*/NULL); if ((((RuntimeObject*)(Type_t *)L_2) == ((RuntimeObject*)(Type_t *)L_4))) { goto IL_0037; } } { RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_5, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_7 = { reinterpret_cast<intptr_t> (SmartTerrain_t256094413_0_0_0_var) }; Type_t * L_8 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_7, /*hidden argument*/NULL); return (bool)((((int32_t)((((RuntimeObject*)(Type_t *)L_6) == ((RuntimeObject*)(Type_t *)L_8))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0037: { return (bool)0; } IL_0039: { return (bool)1; } } // System.Boolean Vuforia.VuforiaRuntimeUtilities::SafeDeinitTracker<System.Object>() extern "C" IL2CPP_METHOD_ATTR bool VuforiaRuntimeUtilities_SafeDeinitTracker_TisRuntimeObject_m3384883741_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (VuforiaRuntimeUtilities_SafeDeinitTracker_TisRuntimeObject_m3384883741_MetadataUsageId); s_Il2CppMethodInitialized = true; } CameraState_t1646041879 V_0; memset(&V_0, 0, sizeof(V_0)); { RuntimeObject* L_0 = TrackerManager_get_Instance_m777262631(NULL /*static, unused*/, /*hidden argument*/NULL); NullCheck((RuntimeObject*)L_0); RuntimeObject * L_1 = GenericInterfaceFuncInvoker0< RuntimeObject * >::Invoke(IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0), (RuntimeObject*)L_0); if (L_1) { goto IL_0013; } } { return (bool)0; } IL_0013: { IL2CPP_RUNTIME_CLASS_INIT(VuforiaRuntimeUtilities_t399660591_il2cpp_TypeInfo_var); CameraState_t1646041879 L_2 = VuforiaRuntimeUtilities_GetCameraState_m1262028323(NULL /*static, unused*/, /*hidden argument*/NULL); V_0 = (CameraState_t1646041879 )L_2; VuforiaRuntimeUtilities_StopAndDeinitCamera_m4256552813(NULL /*static, unused*/, /*hidden argument*/NULL); RuntimeObject* L_3 = TrackerManager_get_Instance_m777262631(NULL /*static, unused*/, /*hidden argument*/NULL); NullCheck((RuntimeObject*)L_3); bool L_4 = GenericInterfaceFuncInvoker0< bool >::Invoke(IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2), (RuntimeObject*)L_3); CameraState_t1646041879 L_5 = V_0; VuforiaRuntimeUtilities_ReInitAndStartCamera_m352857609(NULL /*static, unused*/, (CameraState_t1646041879 )L_5, /*hidden argument*/NULL); return L_4; } } // System.Collections.Generic.IEnumerable`1<TResult2> System.Linq.Enumerable/SelectArrayIterator`2<System.Object,System.Object>::Select<System.Object>(System.Func`2<TResult,TResult2>) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* SelectArrayIterator_2_Select_TisRuntimeObject_m3148273157_gshared (SelectArrayIterator_2_t819778152 * __this, Func_2_t2447130374 * ___selector0, const RuntimeMethod* method) { { ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get__source_3(); Func_2_t2447130374 * L_1 = (Func_2_t2447130374 *)__this->get__selector_4(); Func_2_t2447130374 * L_2 = ___selector0; Func_2_t2447130374 * L_3 = (( Func_2_t2447130374 * (*) (RuntimeObject * /* static, unused */, Func_2_t2447130374 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Func_2_t2447130374 *)L_1, (Func_2_t2447130374 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); SelectArrayIterator_2_t819778152 * L_4 = (SelectArrayIterator_2_t819778152 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); (( void (*) (SelectArrayIterator_2_t819778152 *, ObjectU5BU5D_t2843939325*, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(L_4, (ObjectU5BU5D_t2843939325*)L_0, (Func_2_t2447130374 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); return L_4; } } // System.Collections.Generic.IEnumerable`1<TResult2> System.Linq.Enumerable/SelectEnumerableIterator`2<System.Object,System.Object>::Select<System.Object>(System.Func`2<TResult,TResult2>) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* SelectEnumerableIterator_2_Select_TisRuntimeObject_m159545418_gshared (SelectEnumerableIterator_2_t4232181467 * __this, Func_2_t2447130374 * ___selector0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3(); Func_2_t2447130374 * L_1 = (Func_2_t2447130374 *)__this->get__selector_4(); Func_2_t2447130374 * L_2 = ___selector0; Func_2_t2447130374 * L_3 = (( Func_2_t2447130374 * (*) (RuntimeObject * /* static, unused */, Func_2_t2447130374 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Func_2_t2447130374 *)L_1, (Func_2_t2447130374 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); SelectEnumerableIterator_2_t4232181467 * L_4 = (SelectEnumerableIterator_2_t4232181467 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); (( void (*) (SelectEnumerableIterator_2_t4232181467 *, RuntimeObject*, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(L_4, (RuntimeObject*)L_0, (Func_2_t2447130374 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); return L_4; } } // System.Collections.Generic.IEnumerable`1<TResult2> System.Linq.Enumerable/SelectIListIterator`2<System.Object,System.Object>::Select<System.Object>(System.Func`2<TResult,TResult2>) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* SelectIListIterator_2_Select_TisRuntimeObject_m698927918_gshared (SelectIListIterator_2_t3601768299 * __this, Func_2_t2447130374 * ___selector0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3(); Func_2_t2447130374 * L_1 = (Func_2_t2447130374 *)__this->get__selector_4(); Func_2_t2447130374 * L_2 = ___selector0; Func_2_t2447130374 * L_3 = (( Func_2_t2447130374 * (*) (RuntimeObject * /* static, unused */, Func_2_t2447130374 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Func_2_t2447130374 *)L_1, (Func_2_t2447130374 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); SelectIListIterator_2_t3601768299 * L_4 = (SelectIListIterator_2_t3601768299 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); (( void (*) (SelectIListIterator_2_t3601768299 *, RuntimeObject*, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(L_4, (RuntimeObject*)L_0, (Func_2_t2447130374 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); return L_4; } } // System.Collections.Generic.IEnumerable`1<TResult2> System.Linq.Enumerable/SelectIPartitionIterator`2<System.Object,System.Object>::Select<System.Object>(System.Func`2<TResult,TResult2>) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* SelectIPartitionIterator_2_Select_TisRuntimeObject_m190240939_gshared (SelectIPartitionIterator_2_t2131188771 * __this, Func_2_t2447130374 * ___selector0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3(); Func_2_t2447130374 * L_1 = (Func_2_t2447130374 *)__this->get__selector_4(); Func_2_t2447130374 * L_2 = ___selector0; Func_2_t2447130374 * L_3 = (( Func_2_t2447130374 * (*) (RuntimeObject * /* static, unused */, Func_2_t2447130374 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Func_2_t2447130374 *)L_1, (Func_2_t2447130374 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); SelectIPartitionIterator_2_t2131188771 * L_4 = (SelectIPartitionIterator_2_t2131188771 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); (( void (*) (SelectIPartitionIterator_2_t2131188771 *, RuntimeObject*, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(L_4, (RuntimeObject*)L_0, (Func_2_t2447130374 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); return L_4; } } // System.Collections.Generic.IEnumerable`1<TResult2> System.Linq.Enumerable/SelectListIterator`2<System.Object,System.Object>::Select<System.Object>(System.Func`2<TResult,TResult2>) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* SelectListIterator_2_Select_TisRuntimeObject_m3740612778_gshared (SelectListIterator_2_t1742702623 * __this, Func_2_t2447130374 * ___selector0, const RuntimeMethod* method) { { List_1_t257213610 * L_0 = (List_1_t257213610 *)__this->get__source_3(); Func_2_t2447130374 * L_1 = (Func_2_t2447130374 *)__this->get__selector_4(); Func_2_t2447130374 * L_2 = ___selector0; Func_2_t2447130374 * L_3 = (( Func_2_t2447130374 * (*) (RuntimeObject * /* static, unused */, Func_2_t2447130374 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Func_2_t2447130374 *)L_1, (Func_2_t2447130374 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); SelectListIterator_2_t1742702623 * L_4 = (SelectListIterator_2_t1742702623 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); (( void (*) (SelectListIterator_2_t1742702623 *, List_1_t257213610 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(L_4, (List_1_t257213610 *)L_0, (Func_2_t2447130374 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); return L_4; } } // System.Collections.Generic.IEnumerable`1<TResult2> System.Linq.Enumerable/WhereSelectArrayIterator`2<System.Object,System.Object>::Select<System.Object>(System.Func`2<TResult,TResult2>) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectArrayIterator_2_Select_TisRuntimeObject_m3261105364_gshared (WhereSelectArrayIterator_2_t1355832803 * __this, Func_2_t2447130374 * ___selector0, const RuntimeMethod* method) { { ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get__source_3(); Func_2_t3759279471 * L_1 = (Func_2_t3759279471 *)__this->get__predicate_4(); Func_2_t2447130374 * L_2 = (Func_2_t2447130374 *)__this->get__selector_5(); Func_2_t2447130374 * L_3 = ___selector0; Func_2_t2447130374 * L_4 = (( Func_2_t2447130374 * (*) (RuntimeObject * /* static, unused */, Func_2_t2447130374 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Func_2_t2447130374 *)L_2, (Func_2_t2447130374 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); WhereSelectArrayIterator_2_t1355832803 * L_5 = (WhereSelectArrayIterator_2_t1355832803 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); (( void (*) (WhereSelectArrayIterator_2_t1355832803 *, ObjectU5BU5D_t2843939325*, Func_2_t3759279471 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(L_5, (ObjectU5BU5D_t2843939325*)L_0, (Func_2_t3759279471 *)L_1, (Func_2_t2447130374 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); return L_5; } } // System.Collections.Generic.IEnumerable`1<TResult2> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::Select<System.Object>(System.Func`2<TResult,TResult2>) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Select_TisRuntimeObject_m2161559081_gshared (WhereSelectEnumerableIterator_2_t1553622305 * __this, Func_2_t2447130374 * ___selector0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3(); Func_2_t3759279471 * L_1 = (Func_2_t3759279471 *)__this->get__predicate_4(); Func_2_t2447130374 * L_2 = (Func_2_t2447130374 *)__this->get__selector_5(); Func_2_t2447130374 * L_3 = ___selector0; Func_2_t2447130374 * L_4 = (( Func_2_t2447130374 * (*) (RuntimeObject * /* static, unused */, Func_2_t2447130374 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Func_2_t2447130374 *)L_2, (Func_2_t2447130374 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); WhereSelectEnumerableIterator_2_t1553622305 * L_5 = (WhereSelectEnumerableIterator_2_t1553622305 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); (( void (*) (WhereSelectEnumerableIterator_2_t1553622305 *, RuntimeObject*, Func_2_t3759279471 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(L_5, (RuntimeObject*)L_0, (Func_2_t3759279471 *)L_1, (Func_2_t2447130374 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); return L_5; } } // System.Collections.Generic.IEnumerable`1<TResult2> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>::Select<System.Object>(System.Func`2<TResult,TResult2>) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Select_TisRuntimeObject_m2872895911_gshared (WhereSelectListIterator_2_t2661109023 * __this, Func_2_t2447130374 * ___selector0, const RuntimeMethod* method) { { List_1_t257213610 * L_0 = (List_1_t257213610 *)__this->get__source_3(); Func_2_t3759279471 * L_1 = (Func_2_t3759279471 *)__this->get__predicate_4(); Func_2_t2447130374 * L_2 = (Func_2_t2447130374 *)__this->get__selector_5(); Func_2_t2447130374 * L_3 = ___selector0; Func_2_t2447130374 * L_4 = (( Func_2_t2447130374 * (*) (RuntimeObject * /* static, unused */, Func_2_t2447130374 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Func_2_t2447130374 *)L_2, (Func_2_t2447130374 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); WhereSelectListIterator_2_t2661109023 * L_5 = (WhereSelectListIterator_2_t2661109023 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); (( void (*) (WhereSelectListIterator_2_t2661109023 *, List_1_t257213610 *, Func_2_t3759279471 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(L_5, (List_1_t257213610 *)L_0, (Func_2_t3759279471 *)L_1, (Func_2_t2447130374 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); return L_5; } } // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/Iterator`1<System.Object>::Select<System.Object>(System.Func`2<TSource,TResult>) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Iterator_1_Select_TisRuntimeObject_m1828398893_gshared (Iterator_1_t2034466501 * __this, Func_2_t2447130374 * ___selector0, const RuntimeMethod* method) { { Func_2_t2447130374 * L_0 = ___selector0; SelectEnumerableIterator_2_t4232181467 * L_1 = (SelectEnumerableIterator_2_t4232181467 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (SelectEnumerableIterator_2_t4232181467 *, RuntimeObject*, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_1, (RuntimeObject*)__this, (Func_2_t2447130374 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_1; } } // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::Select<System.Object>(System.Func`2<TSource,TResult>) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* WhereArrayIterator_1_Select_TisRuntimeObject_m3869015071_gshared (WhereArrayIterator_1_t1891928581 * __this, Func_2_t2447130374 * ___selector0, const RuntimeMethod* method) { { ObjectU5BU5D_t2843939325* L_0 = (ObjectU5BU5D_t2843939325*)__this->get__source_3(); Func_2_t3759279471 * L_1 = (Func_2_t3759279471 *)__this->get__predicate_4(); Func_2_t2447130374 * L_2 = ___selector0; WhereSelectArrayIterator_2_t1355832803 * L_3 = (WhereSelectArrayIterator_2_t1355832803 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (WhereSelectArrayIterator_2_t1355832803 *, ObjectU5BU5D_t2843939325*, Func_2_t3759279471 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_3, (ObjectU5BU5D_t2843939325*)L_0, (Func_2_t3759279471 *)L_1, (Func_2_t2447130374 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_3; } } // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::Select<System.Object>(System.Func`2<TSource,TResult>) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* WhereEnumerableIterator_1_Select_TisRuntimeObject_m1137102592_gshared (WhereEnumerableIterator_1_t2185640491 * __this, Func_2_t2447130374 * ___selector0, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->get__source_3(); Func_2_t3759279471 * L_1 = (Func_2_t3759279471 *)__this->get__predicate_4(); Func_2_t2447130374 * L_2 = ___selector0; WhereSelectEnumerableIterator_2_t1553622305 * L_3 = (WhereSelectEnumerableIterator_2_t1553622305 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (WhereSelectEnumerableIterator_2_t1553622305 *, RuntimeObject*, Func_2_t3759279471 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_3, (RuntimeObject*)L_0, (Func_2_t3759279471 *)L_1, (Func_2_t2447130374 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_3; } } // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereListIterator`1<System.Object>::Select<System.Object>(System.Func`2<TSource,TResult>) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* WhereListIterator_1_Select_TisRuntimeObject_m3988235969_gshared (WhereListIterator_1_t944815607 * __this, Func_2_t2447130374 * ___selector0, const RuntimeMethod* method) { { List_1_t257213610 * L_0 = (List_1_t257213610 *)__this->get__source_3(); Func_2_t3759279471 * L_1 = (Func_2_t3759279471 *)__this->get__predicate_4(); Func_2_t2447130374 * L_2 = ___selector0; WhereSelectListIterator_2_t2661109023 * L_3 = (WhereSelectListIterator_2_t2661109023 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (WhereSelectListIterator_2_t2661109023 *, List_1_t257213610 *, Func_2_t3759279471 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_3, (List_1_t257213610 *)L_0, (Func_2_t3759279471 *)L_1, (Func_2_t2447130374 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_3; } } // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Cast<System.Object>(System.Collections.IEnumerable) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Cast_TisRuntimeObject_m394878858_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___source0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerable_Cast_TisRuntimeObject_m394878858_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { RuntimeObject* L_0 = ___source0; V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))); RuntimeObject* L_1 = V_0; if (!L_1) { goto IL_000c; } } { RuntimeObject* L_2 = V_0; return L_2; } IL_000c: { RuntimeObject* L_3 = ___source0; if (L_3) { goto IL_001a; } } { Exception_t * L_4 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral4294193667, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerable_Cast_TisRuntimeObject_m394878858_RuntimeMethod_var); } IL_001a: { RuntimeObject* L_5 = ___source0; RuntimeObject* L_6 = (( RuntimeObject* (*) (RuntimeObject * /* static, unused */, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_6; } } // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::CastIterator<System.Object>(System.Collections.IEnumerable) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_CastIterator_TisRuntimeObject_m1234191051_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___source0, const RuntimeMethod* method) { { U3CCastIteratorU3Ed__34_1_t2336925318 * L_0 = (U3CCastIteratorU3Ed__34_1_t2336925318 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (U3CCastIteratorU3Ed__34_1_t2336925318 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_0, (int32_t)((int32_t)-2), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); U3CCastIteratorU3Ed__34_1_t2336925318 * L_1 = (U3CCastIteratorU3Ed__34_1_t2336925318 *)L_0; RuntimeObject* L_2 = ___source0; NullCheck(L_1); L_1->set_U3CU3E3__source_4(L_2); return L_1; } } // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Empty<System.Object>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Empty_TisRuntimeObject_m511449470_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { ObjectU5BU5D_t2843939325* L_0 = (( ObjectU5BU5D_t2843939325* (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return (RuntimeObject*)L_0; } } // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Empty<Vuforia.VuforiaManager/TrackableIdPair>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Empty_TisTrackableIdPair_t4227350457_m2209757273_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { { TrackableIdPairU5BU5D_t475764036* L_0 = (( TrackableIdPairU5BU5D_t475764036* (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return (RuntimeObject*)L_0; } } // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::OfType<System.Object>(System.Collections.IEnumerable) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_OfType_TisRuntimeObject_m181915009_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___source0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerable_OfType_TisRuntimeObject_m181915009_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___source0; if (L_0) { goto IL_000e; } } { Exception_t * L_1 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral4294193667, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerable_OfType_TisRuntimeObject_m181915009_RuntimeMethod_var); } IL_000e: { RuntimeObject* L_2 = ___source0; RuntimeObject* L_3 = (( RuntimeObject* (*) (RuntimeObject * /* static, unused */, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_3; } } // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::OfTypeIterator<System.Object>(System.Collections.IEnumerable) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_OfTypeIterator_TisRuntimeObject_m2172156717_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___source0, const RuntimeMethod* method) { { U3COfTypeIteratorU3Ed__32_1_t2611376587 * L_0 = (U3COfTypeIteratorU3Ed__32_1_t2611376587 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (U3COfTypeIteratorU3Ed__32_1_t2611376587 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_0, (int32_t)((int32_t)-2), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); U3COfTypeIteratorU3Ed__32_1_t2611376587 * L_1 = (U3COfTypeIteratorU3Ed__32_1_t2611376587 *)L_0; RuntimeObject* L_2 = ___source0; NullCheck(L_1); L_1->set_U3CU3E3__source_4(L_2); return L_1; } } // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Select<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TResult>) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Select_TisRuntimeObject_TisRuntimeObject_m387632584_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___source0, Func_2_t2447130374 * ___selector1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerable_Select_TisRuntimeObject_TisRuntimeObject_m387632584_MetadataUsageId); s_Il2CppMethodInitialized = true; } Iterator_1_t2034466501 * V_0 = NULL; RuntimeObject* V_1 = NULL; RuntimeObject* V_2 = NULL; ObjectU5BU5D_t2843939325* V_3 = NULL; List_1_t257213610 * V_4 = NULL; RuntimeObject* V_5 = NULL; { RuntimeObject* L_0 = ___source0; if (L_0) { goto IL_000e; } } { Exception_t * L_1 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral4294193667, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerable_Select_TisRuntimeObject_TisRuntimeObject_m387632584_RuntimeMethod_var); } IL_000e: { Func_2_t2447130374 * L_2 = ___selector1; if (L_2) { goto IL_001c; } } { Exception_t * L_3 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral3977229295, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerable_Select_TisRuntimeObject_TisRuntimeObject_m387632584_RuntimeMethod_var); } IL_001c: { RuntimeObject* L_4 = ___source0; Iterator_1_t2034466501 * L_5 = (Iterator_1_t2034466501 *)((Iterator_1_t2034466501 *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))); V_0 = (Iterator_1_t2034466501 *)L_5; if (!L_5) { goto IL_002e; } } { Iterator_1_t2034466501 * L_6 = V_0; Func_2_t2447130374 * L_7 = ___selector1; NullCheck((Iterator_1_t2034466501 *)L_6); RuntimeObject* L_8 = GenericVirtFuncInvoker1< RuntimeObject*, Func_2_t2447130374 * >::Invoke(IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1), (Iterator_1_t2034466501 *)L_6, (Func_2_t2447130374 *)L_7); return L_8; } IL_002e: { RuntimeObject* L_9 = ___source0; RuntimeObject* L_10 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); V_1 = (RuntimeObject*)L_10; if (!L_10) { goto IL_0074; } } { RuntimeObject* L_11 = ___source0; ObjectU5BU5D_t2843939325* L_12 = (ObjectU5BU5D_t2843939325*)((ObjectU5BU5D_t2843939325*)IsInst((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); V_3 = (ObjectU5BU5D_t2843939325*)L_12; if (!L_12) { goto IL_0058; } } { ObjectU5BU5D_t2843939325* L_13 = V_3; NullCheck(L_13); if (!(((RuntimeArray *)L_13)->max_length)) { goto IL_0052; } } { ObjectU5BU5D_t2843939325* L_14 = V_3; Func_2_t2447130374 * L_15 = ___selector1; SelectArrayIterator_2_t819778152 * L_16 = (SelectArrayIterator_2_t819778152 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 4)); (( void (*) (SelectArrayIterator_2_t819778152 *, ObjectU5BU5D_t2843939325*, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(L_16, (ObjectU5BU5D_t2843939325*)L_14, (Func_2_t2447130374 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); V_5 = (RuntimeObject*)L_16; RuntimeObject* L_17 = V_5; return L_17; } IL_0052: { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 6)); RuntimeObject* L_18 = ((EmptyPartition_1_t2713315198_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 6)))->get_Instance_0(); return L_18; } IL_0058: { RuntimeObject* L_19 = ___source0; List_1_t257213610 * L_20 = (List_1_t257213610 *)((List_1_t257213610 *)IsInst((RuntimeObject*)L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 7))); V_4 = (List_1_t257213610 *)L_20; if (!L_20) { goto IL_006c; } } { List_1_t257213610 * L_21 = V_4; Func_2_t2447130374 * L_22 = ___selector1; SelectListIterator_2_t1742702623 * L_23 = (SelectListIterator_2_t1742702623 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 8)); (( void (*) (SelectListIterator_2_t1742702623 *, List_1_t257213610 *, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 9)->methodPointer)(L_23, (List_1_t257213610 *)L_21, (Func_2_t2447130374 *)L_22, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 9)); return L_23; } IL_006c: { RuntimeObject* L_24 = V_1; Func_2_t2447130374 * L_25 = ___selector1; SelectIListIterator_2_t3601768299 * L_26 = (SelectIListIterator_2_t3601768299 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 10)); (( void (*) (SelectIListIterator_2_t3601768299 *, RuntimeObject*, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 11)->methodPointer)(L_26, (RuntimeObject*)L_24, (Func_2_t2447130374 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 11)); return L_26; } IL_0074: { RuntimeObject* L_27 = ___source0; RuntimeObject* L_28 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_27, IL2CPP_RGCTX_DATA(method->rgctx_data, 12))); V_2 = (RuntimeObject*)L_28; if (!L_28) { goto IL_0098; } } { RuntimeObject* L_29 = V_2; if (((EmptyPartition_1_t2713315198 *)IsInst((RuntimeObject*)L_29, IL2CPP_RGCTX_DATA(method->rgctx_data, 13)))) { goto IL_0092; } } { RuntimeObject* L_30 = V_2; Func_2_t2447130374 * L_31 = ___selector1; SelectIPartitionIterator_2_t2131188771 * L_32 = (SelectIPartitionIterator_2_t2131188771 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 14)); (( void (*) (SelectIPartitionIterator_2_t2131188771 *, RuntimeObject*, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 15)->methodPointer)(L_32, (RuntimeObject*)L_30, (Func_2_t2447130374 *)L_31, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 15)); V_5 = (RuntimeObject*)L_32; RuntimeObject* L_33 = V_5; return L_33; } IL_0092: { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 6)); RuntimeObject* L_34 = ((EmptyPartition_1_t2713315198_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 6)))->get_Instance_0(); return L_34; } IL_0098: { RuntimeObject* L_35 = ___source0; Func_2_t2447130374 * L_36 = ___selector1; SelectEnumerableIterator_2_t4232181467 * L_37 = (SelectEnumerableIterator_2_t4232181467 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 16)); (( void (*) (SelectEnumerableIterator_2_t4232181467 *, RuntimeObject*, Func_2_t2447130374 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 17)->methodPointer)(L_37, (RuntimeObject*)L_35, (Func_2_t2447130374 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 17)); return L_37; } } // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Select<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`3<TSource,System.Int32,TResult>) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Select_TisRuntimeObject_TisRuntimeObject_m1603625173_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___source0, Func_3_t939916428 * ___selector1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerable_Select_TisRuntimeObject_TisRuntimeObject_m1603625173_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___source0; if (L_0) { goto IL_000e; } } { Exception_t * L_1 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral4294193667, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerable_Select_TisRuntimeObject_TisRuntimeObject_m1603625173_RuntimeMethod_var); } IL_000e: { Func_3_t939916428 * L_2 = ___selector1; if (L_2) { goto IL_001c; } } { Exception_t * L_3 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral3977229295, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerable_Select_TisRuntimeObject_TisRuntimeObject_m1603625173_RuntimeMethod_var); } IL_001c: { RuntimeObject* L_4 = ___source0; Func_3_t939916428 * L_5 = ___selector1; RuntimeObject* L_6 = (( RuntimeObject* (*) (RuntimeObject * /* static, unused */, RuntimeObject*, Func_3_t939916428 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_4, (Func_3_t939916428 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_6; } } // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::SelectIterator<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`3<TSource,System.Int32,TResult>) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_SelectIterator_TisRuntimeObject_TisRuntimeObject_m1787029144_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___source0, Func_3_t939916428 * ___selector1, const RuntimeMethod* method) { { U3CSelectIteratorU3Ed__154_2_t1810231786 * L_0 = (U3CSelectIteratorU3Ed__154_2_t1810231786 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (U3CSelectIteratorU3Ed__154_2_t1810231786 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_0, (int32_t)((int32_t)-2), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); U3CSelectIteratorU3Ed__154_2_t1810231786 * L_1 = (U3CSelectIteratorU3Ed__154_2_t1810231786 *)L_0; RuntimeObject* L_2 = ___source0; NullCheck(L_1); L_1->set_U3CU3E3__source_4(L_2); U3CSelectIteratorU3Ed__154_2_t1810231786 * L_3 = (U3CSelectIteratorU3Ed__154_2_t1810231786 *)L_1; Func_3_t939916428 * L_4 = ___selector1; NullCheck(L_3); L_3->set_U3CU3E3__selector_7(L_4); return L_3; } } // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable::Where<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Where_TisRuntimeObject_m3454096398_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___source0, Func_2_t3759279471 * ___predicate1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerable_Where_TisRuntimeObject_m3454096398_MetadataUsageId); s_Il2CppMethodInitialized = true; } Iterator_1_t2034466501 * V_0 = NULL; ObjectU5BU5D_t2843939325* V_1 = NULL; List_1_t257213610 * V_2 = NULL; RuntimeObject* V_3 = NULL; { RuntimeObject* L_0 = ___source0; if (L_0) { goto IL_000e; } } { Exception_t * L_1 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral4294193667, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerable_Where_TisRuntimeObject_m3454096398_RuntimeMethod_var); } IL_000e: { Func_2_t3759279471 * L_2 = ___predicate1; if (L_2) { goto IL_001c; } } { Exception_t * L_3 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral3941128596, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerable_Where_TisRuntimeObject_m3454096398_RuntimeMethod_var); } IL_001c: { RuntimeObject* L_4 = ___source0; Iterator_1_t2034466501 * L_5 = (Iterator_1_t2034466501 *)((Iterator_1_t2034466501 *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))); V_0 = (Iterator_1_t2034466501 *)L_5; if (!L_5) { goto IL_002e; } } { Iterator_1_t2034466501 * L_6 = V_0; Func_2_t3759279471 * L_7 = ___predicate1; NullCheck((Iterator_1_t2034466501 *)L_6); RuntimeObject* L_8 = VirtFuncInvoker1< RuntimeObject*, Func_2_t3759279471 * >::Invoke(15 /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/Iterator`1<System.Object>::Where(System.Func`2<TSource,System.Boolean>) */, (Iterator_1_t2034466501 *)L_6, (Func_2_t3759279471 *)L_7); return L_8; } IL_002e: { RuntimeObject* L_9 = ___source0; ObjectU5BU5D_t2843939325* L_10 = (ObjectU5BU5D_t2843939325*)((ObjectU5BU5D_t2843939325*)IsInst((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); V_1 = (ObjectU5BU5D_t2843939325*)L_10; if (!L_10) { goto IL_004e; } } { ObjectU5BU5D_t2843939325* L_11 = V_1; NullCheck(L_11); if (!(((RuntimeArray *)L_11)->max_length)) { goto IL_0046; } } { ObjectU5BU5D_t2843939325* L_12 = V_1; Func_2_t3759279471 * L_13 = ___predicate1; WhereArrayIterator_1_t1891928581 * L_14 = (WhereArrayIterator_1_t1891928581 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (WhereArrayIterator_1_t1891928581 *, ObjectU5BU5D_t2843939325*, Func_2_t3759279471 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_14, (ObjectU5BU5D_t2843939325*)L_12, (Func_2_t3759279471 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); V_3 = (RuntimeObject*)L_14; RuntimeObject* L_15 = V_3; return L_15; } IL_0046: { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 5)); RuntimeObject* L_16 = ((EmptyPartition_1_t2713315198_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 5)))->get_Instance_0(); V_3 = (RuntimeObject*)L_16; RuntimeObject* L_17 = V_3; return L_17; } IL_004e: { RuntimeObject* L_18 = ___source0; List_1_t257213610 * L_19 = (List_1_t257213610 *)((List_1_t257213610 *)IsInst((RuntimeObject*)L_18, IL2CPP_RGCTX_DATA(method->rgctx_data, 6))); V_2 = (List_1_t257213610 *)L_19; if (!L_19) { goto IL_0060; } } { List_1_t257213610 * L_20 = V_2; Func_2_t3759279471 * L_21 = ___predicate1; WhereListIterator_1_t944815607 * L_22 = (WhereListIterator_1_t944815607 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 7)); (( void (*) (WhereListIterator_1_t944815607 *, List_1_t257213610 *, Func_2_t3759279471 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 8)->methodPointer)(L_22, (List_1_t257213610 *)L_20, (Func_2_t3759279471 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 8)); return L_22; } IL_0060: { RuntimeObject* L_23 = ___source0; Func_2_t3759279471 * L_24 = ___predicate1; WhereEnumerableIterator_1_t2185640491 * L_25 = (WhereEnumerableIterator_1_t2185640491 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 9)); (( void (*) (WhereEnumerableIterator_1_t2185640491 *, RuntimeObject*, Func_2_t3759279471 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 10)->methodPointer)(L_25, (RuntimeObject*)L_23, (Func_2_t3759279471 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 10)); return L_25; } } // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable::Where<Vuforia.TrackerData/TrackableResultData>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Where_TisTrackableResultData_t452703160_m4044286262_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___source0, Func_2_t894183899 * ___predicate1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enumerable_Where_TisTrackableResultData_t452703160_m4044286262_MetadataUsageId); s_Il2CppMethodInitialized = true; } Iterator_1_t3702030793 * V_0 = NULL; TrackableResultDataU5BU5D_t4273811049* V_1 = NULL; List_1_t1924777902 * V_2 = NULL; RuntimeObject* V_3 = NULL; { RuntimeObject* L_0 = ___source0; if (L_0) { goto IL_000e; } } { Exception_t * L_1 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral4294193667, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerable_Where_TisTrackableResultData_t452703160_m4044286262_RuntimeMethod_var); } IL_000e: { Func_2_t894183899 * L_2 = ___predicate1; if (L_2) { goto IL_001c; } } { Exception_t * L_3 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral3941128596, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerable_Where_TisTrackableResultData_t452703160_m4044286262_RuntimeMethod_var); } IL_001c: { RuntimeObject* L_4 = ___source0; Iterator_1_t3702030793 * L_5 = (Iterator_1_t3702030793 *)((Iterator_1_t3702030793 *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))); V_0 = (Iterator_1_t3702030793 *)L_5; if (!L_5) { goto IL_002e; } } { Iterator_1_t3702030793 * L_6 = V_0; Func_2_t894183899 * L_7 = ___predicate1; NullCheck((Iterator_1_t3702030793 *)L_6); RuntimeObject* L_8 = VirtFuncInvoker1< RuntimeObject*, Func_2_t894183899 * >::Invoke(15 /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/Iterator`1<Vuforia.TrackerData/TrackableResultData>::Where(System.Func`2<TSource,System.Boolean>) */, (Iterator_1_t3702030793 *)L_6, (Func_2_t894183899 *)L_7); return L_8; } IL_002e: { RuntimeObject* L_9 = ___source0; TrackableResultDataU5BU5D_t4273811049* L_10 = (TrackableResultDataU5BU5D_t4273811049*)((TrackableResultDataU5BU5D_t4273811049*)IsInst((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); V_1 = (TrackableResultDataU5BU5D_t4273811049*)L_10; if (!L_10) { goto IL_004e; } } { TrackableResultDataU5BU5D_t4273811049* L_11 = V_1; NullCheck(L_11); if (!(((RuntimeArray *)L_11)->max_length)) { goto IL_0046; } } { TrackableResultDataU5BU5D_t4273811049* L_12 = V_1; Func_2_t894183899 * L_13 = ___predicate1; WhereArrayIterator_1_t3559492873 * L_14 = (WhereArrayIterator_1_t3559492873 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (WhereArrayIterator_1_t3559492873 *, TrackableResultDataU5BU5D_t4273811049*, Func_2_t894183899 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_14, (TrackableResultDataU5BU5D_t4273811049*)L_12, (Func_2_t894183899 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); V_3 = (RuntimeObject*)L_14; RuntimeObject* L_15 = V_3; return L_15; } IL_0046: { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 5)); RuntimeObject* L_16 = ((EmptyPartition_1_t85912194_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 5)))->get_Instance_0(); V_3 = (RuntimeObject*)L_16; RuntimeObject* L_17 = V_3; return L_17; } IL_004e: { RuntimeObject* L_18 = ___source0; List_1_t1924777902 * L_19 = (List_1_t1924777902 *)((List_1_t1924777902 *)IsInst((RuntimeObject*)L_18, IL2CPP_RGCTX_DATA(method->rgctx_data, 6))); V_2 = (List_1_t1924777902 *)L_19; if (!L_19) { goto IL_0060; } } { List_1_t1924777902 * L_20 = V_2; Func_2_t894183899 * L_21 = ___predicate1; WhereListIterator_1_t2612379899 * L_22 = (WhereListIterator_1_t2612379899 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 7)); (( void (*) (WhereListIterator_1_t2612379899 *, List_1_t1924777902 *, Func_2_t894183899 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 8)->methodPointer)(L_22, (List_1_t1924777902 *)L_20, (Func_2_t894183899 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 8)); return L_22; } IL_0060: { RuntimeObject* L_23 = ___source0; Func_2_t894183899 * L_24 = ___predicate1; WhereEnumerableIterator_1_t3853204783 * L_25 = (WhereEnumerableIterator_1_t3853204783 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 9)); (( void (*) (WhereEnumerableIterator_1_t3853204783 *, RuntimeObject*, Func_2_t894183899 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 10)->methodPointer)(L_25, (RuntimeObject*)L_23, (Func_2_t894183899 *)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 10)); return L_25; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<MS.Internal.Xml.Cache.XPathNode>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisXPathNode_t2208072876_m176957129_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3850042687 * L_1 = ((EmptyInternalEnumerator_1_t3850042687_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3115136993 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1345879190((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3115136993 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<MS.Internal.Xml.Cache.XPathNodeRef>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisXPathNodeRef_t3498189018_m252657456_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t845191533 * L_1 = ((EmptyInternalEnumerator_1_t845191533_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t110285839 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m4111150908((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t110285839 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<MS.Internal.Xml.XPath.Operator/Op>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisOp_t2046805169_m1282076442_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3688774980 * L_1 = ((EmptyInternalEnumerator_1_t3688774980_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2953869286 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m737724857((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2953869286 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Mono.AppleTls.SslCipherSuite>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisSslCipherSuite_t3309122048_m1327407195_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t656124563 * L_1 = ((EmptyInternalEnumerator_1_t656124563_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t4216186165 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m860659905((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t4216186165 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Mono.AppleTls.SslStatus>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisSslStatus_t191981556_m1740845748_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1833951367 * L_1 = ((EmptyInternalEnumerator_1_t1833951367_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1099045673 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1834758219((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1099045673 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Mono.Globalization.Unicode.CodePointIndexer/TableRange>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTableRange_t3332867892_m1038225824_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t679870407 * L_1 = ((EmptyInternalEnumerator_1_t679870407_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t4239932009 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1359891754((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t4239932009 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Mono.Security.Interface.CipherSuiteCode>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisCipherSuiteCode_t732562211_m1823299131_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2374532022 * L_1 = ((EmptyInternalEnumerator_1_t2374532022_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1639626328 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1695060055((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1639626328 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Mono.Unity.UnityTls/unitytls_ciphersuite>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_Tisunitytls_ciphersuite_t1735159395_m790839896_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3377129206 * L_1 = ((EmptyInternalEnumerator_1_t3377129206_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2642223512 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m258030645((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2642223512 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.AppContext/SwitchValueState>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisSwitchValueState_t2805251467_m2074862265_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t152253982 * L_1 = ((EmptyInternalEnumerator_1_t152253982_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3712315584 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3114817124((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3712315584 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.ArraySegment`1<System.Byte>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisArraySegment_1_t283560987_m944220375_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1925530798 * L_1 = ((EmptyInternalEnumerator_1_t1925530798_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1190625104 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2515715560((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1190625104 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Boolean>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisBoolean_t97287965_m3766670500_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1739257776 * L_1 = ((EmptyInternalEnumerator_1_t1739257776_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1004352082 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3349908318((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1004352082 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Byte>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisByte_t1134296376_m1979205379_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2776266187 * L_1 = ((EmptyInternalEnumerator_1_t2776266187_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2041360493 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m4191108945((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2041360493 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Char>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisChar_t3634460470_m791157353_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t981462985 * L_1 = ((EmptyInternalEnumerator_1_t981462985_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t246557291 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2123683127((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t246557291 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.DictionaryEntry>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDictionaryEntry_t3123975638_m2887666826_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t470978153 * L_1 = ((EmptyInternalEnumerator_1_t470978153_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t4031039755 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2336656763((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t4031039755 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t2089797520_m1374595481_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3731767331 * L_1 = ((EmptyInternalEnumerator_1_t3731767331_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2996861637 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m554219161((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2996861637 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t3743988185_m534235178_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1090990700 * L_1 = ((EmptyInternalEnumerator_1_t1090990700_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t356085006 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1011028117((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t356085006 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t600865784_m1913762808_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2242835595 * L_1 = ((EmptyInternalEnumerator_1_t2242835595_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1507929901 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1624193764((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1507929901 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t4138038289_m2063658232_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1485040804 * L_1 = ((EmptyInternalEnumerator_1_t1485040804_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t750135110 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m247270570((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t750135110 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t3454523572_m2521998900_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t801526087 * L_1 = ((EmptyInternalEnumerator_1_t801526087_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t66620393 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m4214678392((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t66620393 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t4240145123_m2253633066_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1587147638 * L_1 = ((EmptyInternalEnumerator_1_t1587147638_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t852241944 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1594165202((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t852241944 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t3583683983_m1490315568_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t930686498 * L_1 = ((EmptyInternalEnumerator_1_t930686498_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t195780804 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3936567915((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t195780804 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackableBehaviour/Status>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t1604483633_m1421513297_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3246453444 * L_1 = ((EmptyInternalEnumerator_1_t3246453444_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2511547750 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3292642848((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2511547750 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t1621531567_m920253433_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3263501378 * L_1 = ((EmptyInternalEnumerator_1_t3263501378_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2528595684 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2390650517((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2528595684 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t1462643140_m673316737_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3104612951 * L_1 = ((EmptyInternalEnumerator_1_t3104612951_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2369707257 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3309996134((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2369707257 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.AppContext/SwitchValueState>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t1472554943_m1476781781_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3114524754 * L_1 = ((EmptyInternalEnumerator_1_t3114524754_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2379619060 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1003995366((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2379619060 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t3059558737_m3059799319_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t406561252 * L_1 = ((EmptyInternalEnumerator_1_t406561252_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3966622854 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1729089091((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3966622854 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t1618249229_m2550490590_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3260219040 * L_1 = ((EmptyInternalEnumerator_1_t3260219040_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2525313346 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m877399094((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2525313346 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t1747409640_m3622569101_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3389379451 * L_1 = ((EmptyInternalEnumerator_1_t3389379451_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2654473757 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2225016941((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2654473757 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t2391274283_m2511563625_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t4033244094 * L_1 = ((EmptyInternalEnumerator_1_t4033244094_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3298338400 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3909148696((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3298338400 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t845028434_m772572828_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2486998245 * L_1 = ((EmptyInternalEnumerator_1_t2486998245_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1752092551 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1041990362((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1752092551 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t2186695401_m3130730411_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3828665212 * L_1 = ((EmptyInternalEnumerator_1_t3828665212_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3093759518 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3410556405((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3093759518 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,System.Single>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t1932439066_m3294384950_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3574408877 * L_1 = ((EmptyInternalEnumerator_1_t3574408877_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2839503183 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m4125539473((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2839503183 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t2353074135_m3226020562_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3995043946 * L_1 = ((EmptyInternalEnumerator_1_t3995043946_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3260138252 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2663023359((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3260138252 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t2691401815_m3064878927_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t38404330 * L_1 = ((EmptyInternalEnumerator_1_t38404330_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3598465932 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3285751441((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3598465932 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<Vuforia.Image/PIXEL_FORMAT,System.Object>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t3285567941_m19296054_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t632570456 * L_1 = ((EmptyInternalEnumerator_1_t632570456_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t4192632058 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2093240344((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t4192632058 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<Vuforia.Image/PIXEL_FORMAT,UnityEngine.TextureFormat>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEntry_t2906627609_m3531208336_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t253630124 * L_1 = ((EmptyInternalEnumerator_1_t253630124_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3813691726 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1621788712((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3813691726 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.HashSet`1/Slot<System.Int32>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisSlot_t3916936346_m1454937863_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1263938861 * L_1 = ((EmptyInternalEnumerator_1_t1263938861_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t529033167 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3340905810((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t529033167 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.HashSet`1/Slot<System.Object>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisSlot_t4046096757_m828776435_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1393099272 * L_1 = ((EmptyInternalEnumerator_1_t1393099272_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t658193578 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3826473210((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t658193578 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t2872605199_m4271362016_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t219607714 * L_1 = ((EmptyInternalEnumerator_1_t219607714_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3779669316 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3171058229((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3779669316 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t870930286_m3173508674_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2512900097 * L_1 = ((EmptyInternalEnumerator_1_t2512900097_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1777994403 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m382441503((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1777994403 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t231828568_m2558746046_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1873798379 * L_1 = ((EmptyInternalEnumerator_1_t1873798379_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1138892685 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1693103366((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1138892685 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1383673463_m2665224490_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3025643274 * L_1 = ((EmptyInternalEnumerator_1_t3025643274_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2290737580 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1080040510((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2290737580 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t625878672_m1273387479_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2267848483 * L_1 = ((EmptyInternalEnumerator_1_t2267848483_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1532942789 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m4227797183((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1532942789 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t4237331251_m2613717194_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1584333766 * L_1 = ((EmptyInternalEnumerator_1_t1584333766_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t849428072 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1681558503((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t849428072 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t727985506_m2347448512_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2369955317 * L_1 = ((EmptyInternalEnumerator_1_t2369955317_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1635049623 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2986132672((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1635049623 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t71524366_m1888115476_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1713494177 * L_1 = ((EmptyInternalEnumerator_1_t1713494177_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t978588483 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1424655733((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t978588483 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackableBehaviour/Status>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t2387291312_m3812677703_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t4029261123 * L_1 = ((EmptyInternalEnumerator_1_t4029261123_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3294355429 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2668192572((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3294355429 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t2404339246_m3819213509_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t4046309057 * L_1 = ((EmptyInternalEnumerator_1_t4046309057_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3311403363 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2155755306((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3311403363 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t2245450819_m1056863374_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3887420630 * L_1 = ((EmptyInternalEnumerator_1_t3887420630_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3152514936 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1053022008((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3152514936 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t2255362622_m963002639_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3897332433 * L_1 = ((EmptyInternalEnumerator_1_t3897332433_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3162426739 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3127643965((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3162426739 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3842366416_m3439095741_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1189368931 * L_1 = ((EmptyInternalEnumerator_1_t1189368931_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t454463237 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m962177456((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t454463237 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t2401056908_m2903810028_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t4043026719 * L_1 = ((EmptyInternalEnumerator_1_t4043026719_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3308121025 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1341209356((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3308121025 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t2530217319_m3393797159_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t4172187130 * L_1 = ((EmptyInternalEnumerator_1_t4172187130_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3437281436 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m807987550((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3437281436 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3174081962_m3599712504_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t521084477 * L_1 = ((EmptyInternalEnumerator_1_t521084477_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t4081146079 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m95472740((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t4081146079 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1627836113_m1545480424_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3269805924 * L_1 = ((EmptyInternalEnumerator_1_t3269805924_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2534900230 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3522854155((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2534900230 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t2969503080_m392485124_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t316505595 * L_1 = ((EmptyInternalEnumerator_1_t316505595_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3876567197 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2543351022((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3876567197 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,System.Single>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t2715246745_m1310581444_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t62249260 * L_1 = ((EmptyInternalEnumerator_1_t62249260_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3622310862 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2291589723((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3622310862 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3135881814_m4290159721_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t482884329 * L_1 = ((EmptyInternalEnumerator_1_t482884329_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t4042945931 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3169694604((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t4042945931 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3474209494_m3474367915_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t821212009 * L_1 = ((EmptyInternalEnumerator_1_t821212009_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t86306315 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2451497418((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t86306315 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<Vuforia.Image/PIXEL_FORMAT,System.Object>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t4068375620_m2723245000_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1415378135 * L_1 = ((EmptyInternalEnumerator_1_t1415378135_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t680472441 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m374191417((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t680472441 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<Vuforia.Image/PIXEL_FORMAT,UnityEngine.TextureFormat>>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3689435288_m764848207_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1036437803 * L_1 = ((EmptyInternalEnumerator_1_t1036437803_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t301532109 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m188060951((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t301532109 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Hashtable/bucket>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_Tisbucket_t758131704_m2169617444_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2400101515 * L_1 = ((EmptyInternalEnumerator_1_t2400101515_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1665195821 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m580087975((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1665195821 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.ComponentModel.AttributeCollection/AttributeEntry>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisAttributeEntry_t1001010863_m1539672699_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2642980674 * L_1 = ((EmptyInternalEnumerator_1_t2642980674_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1908074980 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3061446214((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1908074980 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.DateTime>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDateTime_t3738529785_m3901310740_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1085532300 * L_1 = ((EmptyInternalEnumerator_1_t1085532300_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t350626606 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3456047704((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t350626606 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.DateTimeOffset>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDateTimeOffset_t3229287507_m1936533943_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t576290022 * L_1 = ((EmptyInternalEnumerator_1_t576290022_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t4136351624 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3103748941((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t4136351624 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.DateTimeParse/DS>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDS_t2232270370_m4197441706_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3874240181 * L_1 = ((EmptyInternalEnumerator_1_t3874240181_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3139334487 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m4250517683((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3139334487 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Decimal>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDecimal_t2948259380_m2581262331_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t295261895 * L_1 = ((EmptyInternalEnumerator_1_t295261895_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3855323497 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m143506773((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3855323497 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Double>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDouble_t594665363_m2935188121_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2236635174 * L_1 = ((EmptyInternalEnumerator_1_t2236635174_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1501729480 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1559487635((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1501729480 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Globalization.HebrewNumber/HS>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisHS_t3339773016_m1448416990_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t686775531 * L_1 = ((EmptyInternalEnumerator_1_t686775531_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t4246837133 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2396702853((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t4246837133 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Globalization.InternalCodePageDataItem>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisInternalCodePageDataItem_t2575532933_m1282442963_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t4217502744 * L_1 = ((EmptyInternalEnumerator_1_t4217502744_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3482597050 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2606318300((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3482597050 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Globalization.InternalEncodingDataItem>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisInternalEncodingDataItem_t3158859817_m2524849199_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t505862332 * L_1 = ((EmptyInternalEnumerator_1_t505862332_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t4065923934 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m821637872((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t4065923934 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Globalization.TimeSpanParse/TimeSpanToken>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTimeSpanToken_t993347374_m3397412222_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2635317185 * L_1 = ((EmptyInternalEnumerator_1_t2635317185_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1900411491 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m948006718((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1900411491 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Guid>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisGuid_t_m3485711130_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t540535402 * L_1 = ((EmptyInternalEnumerator_1_t540535402_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t4100597004 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1826814198((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t4100597004 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Int16>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisInt16_t2552820387_m310134873_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t4194790198 * L_1 = ((EmptyInternalEnumerator_1_t4194790198_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3459884504 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2910272776((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3459884504 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Int32>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisInt32_t2950945753_m3787216975_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t297948268 * L_1 = ((EmptyInternalEnumerator_1_t297948268_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3858009870 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m217498388((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3858009870 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Int64>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisInt64_t3736567304_m2919048848_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1083569819 * L_1 = ((EmptyInternalEnumerator_1_t1083569819_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t348664125 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m4055378331((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t348664125 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.IntPtr>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisIntPtr_t_m2620447453_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2482119992 * L_1 = ((EmptyInternalEnumerator_1_t2482119992_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1747214298 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1579105305((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1747214298 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Net.CookieTokenizer/RecognizedAttribute>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisRecognizedAttribute_t632074220_m1303505905_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2274044031 * L_1 = ((EmptyInternalEnumerator_1_t2274044031_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1539138337 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3901777251((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1539138337 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Net.HeaderVariantInfo>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisHeaderVariantInfo_t1935685601_m2482507038_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3577655412 * L_1 = ((EmptyInternalEnumerator_1_t3577655412_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2842749718 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m413243216((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2842749718 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m263976943_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t810528843 * L_1 = ((EmptyInternalEnumerator_1_t810528843_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t75623149 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2668617424((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t75623149 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Net.Sockets.Socket/WSABUF>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisWSABUF_t1998059390_m862504516_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3640029201 * L_1 = ((EmptyInternalEnumerator_1_t3640029201_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2905123507 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m330826784((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2905123507 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Net.WebHeaderCollection/RfcChar>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisRfcChar_t2905409930_m4010955202_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t252412445 * L_1 = ((EmptyInternalEnumerator_1_t252412445_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3812474047 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m4165841802((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3812474047 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Object>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisRuntimeObject_m3132609973_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t427108679 * L_1 = ((EmptyInternalEnumerator_1_t427108679_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3987170281 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1675719794((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3987170281 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.ParameterizedStrings/FormatParam>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisFormatParam_t4194474082_m432364146_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1541476597 * L_1 = ((EmptyInternalEnumerator_1_t1541476597_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t806570903 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3847166976((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t806570903 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.CustomAttributeNamedArgument>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisCustomAttributeNamedArgument_t287865710_m523021714_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1929835521 * L_1 = ((EmptyInternalEnumerator_1_t1929835521_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1194929827 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m643493702((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1194929827 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.CustomAttributeTypedArgument>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisCustomAttributeTypedArgument_t2723150157_m1333528454_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t70152672 * L_1 = ((EmptyInternalEnumerator_1_t70152672_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3630214274 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m748741755((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3630214274 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.Emit.ILExceptionBlock>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisILExceptionBlock_t3961874966_m3657458765_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1308877481 * L_1 = ((EmptyInternalEnumerator_1_t1308877481_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t573971787 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1771674970((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t573971787 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.Emit.ILExceptionInfo>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisILExceptionInfo_t237856010_m356635283_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1879825821 * L_1 = ((EmptyInternalEnumerator_1_t1879825821_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1144920127 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m167120088((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1144920127 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.Emit.ILGenerator/LabelData>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisLabelData_t360167391_m1698350399_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2002137202 * L_1 = ((EmptyInternalEnumerator_1_t2002137202_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1267231508 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1486034688((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1267231508 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.Emit.ILGenerator/LabelFixup>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisLabelFixup_t858502054_m4052378642_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2500471865 * L_1 = ((EmptyInternalEnumerator_1_t2500471865_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1765566171 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1594304290((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1765566171 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.Emit.ILTokenInfo>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisILTokenInfo_t2325775114_m2476337039_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3967744925 * L_1 = ((EmptyInternalEnumerator_1_t3967744925_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3232839231 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m238559784((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3232839231 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.Emit.Label>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisLabel_t2281661643_m978417687_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3923631454 * L_1 = ((EmptyInternalEnumerator_1_t3923631454_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3188725760 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m924504374((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3188725760 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.Emit.MonoResource>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisMonoResource_t4103430009_m1116056983_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1450432524 * L_1 = ((EmptyInternalEnumerator_1_t1450432524_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t715526830 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3457010038((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t715526830 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.Emit.MonoWin32Resource>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisMonoWin32Resource_t1904229483_m224391176_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3546199294 * L_1 = ((EmptyInternalEnumerator_1_t3546199294_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2811293600 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3734157836((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2811293600 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.Emit.RefEmitPermissionSet>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisRefEmitPermissionSet_t484390987_m2901461189_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2126360798 * L_1 = ((EmptyInternalEnumerator_1_t2126360798_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1391455104 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m236665673((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1391455104 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.ParameterModifier>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisParameterModifier_t1461694466_m3675077728_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3103664277 * L_1 = ((EmptyInternalEnumerator_1_t3103664277_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2368758583 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m39232262((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2368758583 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Resources.ResourceLocator>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisResourceLocator_t3723970807_m650747362_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1070973322 * L_1 = ((EmptyInternalEnumerator_1_t1070973322_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t336067628 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m4003715152((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t336067628 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Runtime.CompilerServices.Ephemeron>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisEphemeron_t1602596362_m2089434986_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3244566173 * L_1 = ((EmptyInternalEnumerator_1_t3244566173_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2509660479 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3525431854((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2509660479 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Runtime.InteropServices.GCHandle>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisGCHandle_t3351438187_m4261632562_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t698440702 * L_1 = ((EmptyInternalEnumerator_1_t698440702_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t4258502304 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m953151915((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t4258502304 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Runtime.Serialization.Formatters.Binary.BinaryTypeEnum>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisBinaryTypeEnum_t3485436454_m516353909_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t832438969 * L_1 = ((EmptyInternalEnumerator_1_t832438969_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t97533275 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1949410609((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t97533275 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Runtime.Serialization.Formatters.Binary.InternalPrimitiveTypeE>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisInternalPrimitiveTypeE_t4093048977_m4286327096_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1440051492 * L_1 = ((EmptyInternalEnumerator_1_t1440051492_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t705145798 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3752414237((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t705145798 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.SByte>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisSByte_t1669577662_m2885966134_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3311547473 * L_1 = ((EmptyInternalEnumerator_1_t3311547473_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2576641779 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3460713284((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2576641779 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Security.Cryptography.X509Certificates.X509ChainStatus>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisX509ChainStatus_t133602714_m3849168182_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1775572525 * L_1 = ((EmptyInternalEnumerator_1_t1775572525_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1040666831 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3443175323((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1040666831 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Single>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisSingle_t1397266774_m2292388044_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3039236585 * L_1 = ((EmptyInternalEnumerator_1_t3039236585_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2304330891 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m31115849((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2304330891 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.TermInfoStrings>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTermInfoStrings_t290279955_m276645167_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1932249766 * L_1 = ((EmptyInternalEnumerator_1_t1932249766_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1197344072 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m936171655((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1197344072 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisLowerCaseMapping_t2910317575_m2744114007_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t257320090 * L_1 = ((EmptyInternalEnumerator_1_t257320090_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3817381692 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3640480671((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3817381692 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Text.RegularExpressions.RegexOptions>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisRegexOptions_t92845595_m4064921293_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1734815406 * L_1 = ((EmptyInternalEnumerator_1_t1734815406_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t999909712 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m968957904((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t999909712 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Threading.CancellationTokenRegistration>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisCancellationTokenRegistration_t2813424904_m2867217370_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t160427419 * L_1 = ((EmptyInternalEnumerator_1_t160427419_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3720489021 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1225621821((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3720489021 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.TimeSpan>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTimeSpan_t881159249_m589081307_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2523129060 * L_1 = ((EmptyInternalEnumerator_1_t2523129060_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1788223366 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3261326277((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1788223366 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.TypeCode>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTypeCode_t2987224087_m2310514299_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t334226602 * L_1 = ((EmptyInternalEnumerator_1_t334226602_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3894288204 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2214530566((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3894288204 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.UInt16>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUInt16_t2177724958_m484298402_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3819694769 * L_1 = ((EmptyInternalEnumerator_1_t3819694769_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3084789075 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2202456613((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3084789075 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.UInt32>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUInt32_t2560061978_m752078502_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t4202031789 * L_1 = ((EmptyInternalEnumerator_1_t4202031789_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3467126095 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3383770493((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3467126095 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.UInt64>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUInt64_t4134040092_m1382862496_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1481042607 * L_1 = ((EmptyInternalEnumerator_1_t1481042607_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t746136913 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3215746182((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t746136913 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisMap_t1331044427_m922159557_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2973014238 * L_1 = ((EmptyInternalEnumerator_1_t2973014238_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2238108544 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m4104359421((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2238108544 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Xml.Schema.RangePositionInfo>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisRangePositionInfo_t589968936_m1780274677_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2231938747 * L_1 = ((EmptyInternalEnumerator_1_t2231938747_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1497033053 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1220131376((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1497033053 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisSequenceConstructPosContext_t2054380699_m769836309_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3696350510 * L_1 = ((EmptyInternalEnumerator_1_t3696350510_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2961444816 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2763230467((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2961444816 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisXmlSchemaObjectEntry_t3344676971_m1426519899_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t691679486 * L_1 = ((EmptyInternalEnumerator_1_t691679486_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t4251741088 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m891751904((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t4251741088 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Xml.Schema.XmlTypeCode>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisXmlTypeCode_t2623622950_m973538056_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t4265592761 * L_1 = ((EmptyInternalEnumerator_1_t4265592761_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3530687067 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m121620218((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3530687067 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Xml.Schema.XsdBuilder/State>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisState_t1890458201_m2617541945_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3532428012 * L_1 = ((EmptyInternalEnumerator_1_t3532428012_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2797522318 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1861296067((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2797522318 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Xml.XPath.XPathResultType>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisXPathResultType_t2828988488_m4074941879_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t175991003 * L_1 = ((EmptyInternalEnumerator_1_t175991003_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3736052605 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1017226609((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3736052605 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Xml.XmlNamespaceManager/NamespaceDeclaration>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisNamespaceDeclaration_t4162609575_m1583042159_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1509612090 * L_1 = ((EmptyInternalEnumerator_1_t1509612090_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t774706396 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2138776749((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t774706396 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Xml.XmlNodeReaderNavigator/VirtualAttribute>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisVirtualAttribute_t3578083907_m3200590732_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t925086422 * L_1 = ((EmptyInternalEnumerator_1_t925086422_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t190180728 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m97540807((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t190180728 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Xml.XmlTextReaderImpl/ParsingState>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisParsingState_t1780334922_m1094742269_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3422304733 * L_1 = ((EmptyInternalEnumerator_1_t3422304733_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2687399039 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m273519326((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2687399039 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Xml.XmlTextWriter/Namespace>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisNamespace_t2218256516_m3833345461_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3860226327 * L_1 = ((EmptyInternalEnumerator_1_t3860226327_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3125320633 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3404283450((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3125320633 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Xml.XmlTextWriter/State>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisState_t1792539347_m2476515799_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3434509158 * L_1 = ((EmptyInternalEnumerator_1_t3434509158_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2699603464 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3067359271((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2699603464 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Xml.XmlTextWriter/TagInfo>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTagInfo_t3526638417_m2509382454_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t873640932 * L_1 = ((EmptyInternalEnumerator_1_t873640932_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t138735238 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m954304341((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t138735238 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<TMPro.MaterialReference>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisMaterialReference_t1952344632_m3132559858_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3594314443 * L_1 = ((EmptyInternalEnumerator_1_t3594314443_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2859408749 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3114520374((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2859408749 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisSpriteData_t3048397587_m2381942286_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t395400102 * L_1 = ((EmptyInternalEnumerator_1_t395400102_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3955461704 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1968218264((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3955461704 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<TMPro.TMP_CharacterInfo>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTMP_CharacterInfo_t3185626797_m2871718332_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t532629312 * L_1 = ((EmptyInternalEnumerator_1_t532629312_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t4092690914 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3007480483((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t4092690914 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<TMPro.TMP_FontWeights>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTMP_FontWeights_t916301067_m4191143359_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2558270878 * L_1 = ((EmptyInternalEnumerator_1_t2558270878_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1823365184 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3404789360((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1823365184 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<TMPro.TMP_InputField/ContentType>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisContentType_t1128941285_m988923689_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2770911096 * L_1 = ((EmptyInternalEnumerator_1_t2770911096_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2036005402 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m324037018((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2036005402 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<TMPro.TMP_LineInfo>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTMP_LineInfo_t1079631636_m1406321289_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2721601447 * L_1 = ((EmptyInternalEnumerator_1_t2721601447_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1986695753 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1729380395((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1986695753 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<TMPro.TMP_LinkInfo>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTMP_LinkInfo_t1092083476_m995410569_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2734053287 * L_1 = ((EmptyInternalEnumerator_1_t2734053287_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1999147593 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m826178271((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1999147593 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<TMPro.TMP_MeshInfo>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTMP_MeshInfo_t2771747634_m4211009601_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t118750149 * L_1 = ((EmptyInternalEnumerator_1_t118750149_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3678811751 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3918870210((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3678811751 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<TMPro.TMP_PageInfo>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTMP_PageInfo_t2608430633_m126681460_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t4250400444 * L_1 = ((EmptyInternalEnumerator_1_t4250400444_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3515494750 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m4074665063((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3515494750 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<TMPro.TMP_WordInfo>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTMP_WordInfo_t3331066303_m1301284356_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t678068818 * L_1 = ((EmptyInternalEnumerator_1_t678068818_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t4238130420 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1515092833((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t4238130420 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<TMPro.TextAlignmentOptions>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTextAlignmentOptions_t4036791236_m4239171786_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1383793751 * L_1 = ((EmptyInternalEnumerator_1_t1383793751_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t648888057 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m837629165((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t648888057 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<TMPro.XML_TagAttribute>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisXML_TagAttribute_t1174424309_m1487121377_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2816394120 * L_1 = ((EmptyInternalEnumerator_1_t2816394120_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2081488426 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2041726643((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2081488426 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.BeforeRenderHelper/OrderBlock>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisOrderBlock_t1585977831_m2414028303_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3227947642 * L_1 = ((EmptyInternalEnumerator_1_t3227947642_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2493041948 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2616789963((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2493041948 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Camera/StereoscopicEye>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisStereoscopicEye_t2238664036_m3459880286_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3880633847 * L_1 = ((EmptyInternalEnumerator_1_t3880633847_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3145728153 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m460549984((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3145728153 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Color32>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisColor32_t2600501292_m3626793775_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t4242471103 * L_1 = ((EmptyInternalEnumerator_1_t4242471103_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3507565409 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m539509188((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3507565409 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Color>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisColor_t2555686324_m176815482_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t4197656135 * L_1 = ((EmptyInternalEnumerator_1_t4197656135_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3462750441 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2503697330((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3462750441 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.ContactPoint>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisContactPoint_t3758755253_m4089466731_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1105757768 * L_1 = ((EmptyInternalEnumerator_1_t1105757768_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t370852074 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1352157576((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t370852074 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.EventSystems.RaycastResult>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastResult_t3360306849_m3650537473_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t707309364 * L_1 = ((EmptyInternalEnumerator_1_t707309364_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t4267370966 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2311732727((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t4267370966 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisPlayerLoopSystem_t105772105_m22543539_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1747741916 * L_1 = ((EmptyInternalEnumerator_1_t1747741916_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1012836222 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m43405049((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1012836222 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Keyframe>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyframe_t4206410242_m1945907885_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1553412757 * L_1 = ((EmptyInternalEnumerator_1_t1553412757_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t818507063 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1744883412((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t818507063 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Matrix4x4>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisMatrix4x4_t1817901843_m2402040715_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3459871654 * L_1 = ((EmptyInternalEnumerator_1_t3459871654_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2724965960 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2053256681((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2724965960 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Plane>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisPlane_t1000493321_m437242467_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2642463132 * L_1 = ((EmptyInternalEnumerator_1_t2642463132_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1907557438 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1207351728((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1907557438 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Playables.PlayableBinding>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisPlayableBinding_t354260709_m1924544205_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1996230520 * L_1 = ((EmptyInternalEnumerator_1_t1996230520_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1261324826 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m4124630986((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1261324826 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.RaycastHit2D>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastHit2D_t2279581989_m3819340195_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3921551800 * L_1 = ((EmptyInternalEnumerator_1_t3921551800_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3186646106 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2635640285((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3186646106 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.RaycastHit>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastHit_t1056001966_m486057882_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2697971777 * L_1 = ((EmptyInternalEnumerator_1_t2697971777_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1963066083 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m615777089((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1963066083 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.SendMouseEvents/HitInfo>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisHitInfo_t3229609740_m3104201156_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t576612255 * L_1 = ((EmptyInternalEnumerator_1_t576612255_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t4136673857 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3913006324((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t4136673857 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisGcAchievementData_t675222246_m2880010899_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2317192057 * L_1 = ((EmptyInternalEnumerator_1_t2317192057_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1582286363 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3535695642((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1582286363 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisGcScoreData_t2125309831_m2753119919_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3767279642 * L_1 = ((EmptyInternalEnumerator_1_t3767279642_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3032373948 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m258868363((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3032373948 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.TextureFormat>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTextureFormat_t2701165832_m3905284240_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t48168347 * L_1 = ((EmptyInternalEnumerator_1_t48168347_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3608229949 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m477874849((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3608229949 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Touch>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTouch_t1921856868_m3194429440_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3563826679 * L_1 = ((EmptyInternalEnumerator_1_t3563826679_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2828920985 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m63033851((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2828920985 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.TouchScreenKeyboardType>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTouchScreenKeyboardType_t1530597702_m828754035_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3172567513 * L_1 = ((EmptyInternalEnumerator_1_t3172567513_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2437661819 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m52250161((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2437661819 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UI.AspectRatioFitter/AspectMode>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisAspectMode_t3417192999_m1883660754_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t764195514 * L_1 = ((EmptyInternalEnumerator_1_t764195514_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t29289820 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m996383508((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t29289820 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UI.ColorBlock>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisColorBlock_t2139031574_m2855904618_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3781001385 * L_1 = ((EmptyInternalEnumerator_1_t3781001385_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3046095691 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3137754353((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3046095691 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UI.ContentSizeFitter/FitMode>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisFitMode_t3267881214_m3746374598_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t614883729 * L_1 = ((EmptyInternalEnumerator_1_t614883729_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t4174945331 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3367481798((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t4174945331 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UI.Image/FillMethod>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisFillMethod_t1167457570_m3863483247_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2809427381 * L_1 = ((EmptyInternalEnumerator_1_t2809427381_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2074521687 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3618853567((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2074521687 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UI.Image/Type>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisType_t1152881528_m710307035_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t2794851339 * L_1 = ((EmptyInternalEnumerator_1_t2794851339_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2059945645 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2011873122((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2059945645 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UI.InputField/CharacterValidation>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisCharacterValidation_t4051914437_m1511563850_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1398916952 * L_1 = ((EmptyInternalEnumerator_1_t1398916952_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t664011258 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m4070871439((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t664011258 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UI.InputField/ContentType>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisContentType_t1787303396_m1150850974_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3429273207 * L_1 = ((EmptyInternalEnumerator_1_t3429273207_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2694367513 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1739091604((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2694367513 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UI.InputField/InputType>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisInputType_t1770400679_m3230254444_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3412370490 * L_1 = ((EmptyInternalEnumerator_1_t3412370490_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2677464796 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2411182570((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2677464796 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UI.InputField/LineType>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisLineType_t4214648469_m2101742436_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1561650984 * L_1 = ((EmptyInternalEnumerator_1_t1561650984_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t826745290 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1942763320((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t826745290 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UI.Navigation>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisNavigation_t3049316579_m1754136786_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t396319094 * L_1 = ((EmptyInternalEnumerator_1_t396319094_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t3956380696 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3899380602((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t3956380696 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UI.Scrollbar/Direction>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDirection_t3470714353_m367764008_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t817716868 * L_1 = ((EmptyInternalEnumerator_1_t817716868_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t82811174 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m1938896550((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t82811174 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UI.Selectable/Transition>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTransition_t1769908631_m2951939848_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t3411878442 * L_1 = ((EmptyInternalEnumerator_1_t3411878442_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t2676972748 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m2542707126((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t2676972748 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UI.Slider/Direction>() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDirection_t337909235_m4187318862_gshared (RuntimeArray * __this, const RuntimeMethod* method) { { NullCheck((RuntimeArray *)__this); int32_t L_0 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); EmptyInternalEnumerator_1_t1979879046 * L_1 = ((EmptyInternalEnumerator_1_t1979879046_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return L_1; } IL_000e: { InternalEnumerator_1_t1244973352 L_2; memset(&L_2, 0, sizeof(L_2)); InternalEnumerator_1__ctor_m3730855632((&L_2), (RuntimeArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); InternalEnumerator_1_t1244973352 L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_3); return (RuntimeObject*)L_4; } }
[ "60197763+karima931212@users.noreply.github.com" ]
60197763+karima931212@users.noreply.github.com
e64615221579240efff25afe78cd64059377397c
ebdf66a3714986fb0afa6f41fe8f6cfd699f463b
/app/src/mainwindow.cpp
db48d30eb775b76c2bc472df1292fb5178dd69f1
[]
no_license
rogalick/Utag
5ebb77454bceef792ccef71e2be8fa76b8096e9a
055ac07829adb36831f5bad01227e3ec9ffe7846
refs/heads/main
2023-01-02T03:41:08.913041
2020-10-20T11:55:17
2020-10-20T11:55:17
305,688,264
0
0
null
null
null
null
UTF-8
C++
false
false
1,636
cpp
#include "mainwindow.h" #include "./ui_mainwindow.h" MainWindow::MainWindow(std::string path, QWidget *parent) : QMainWindow(parent), m_ui(new Ui::MainWindow) { setFixedSize(800, 415); setWindowFlags(Qt::WindowCloseButtonHint | Qt::WindowMinimizeButtonHint | Qt::CustomizeWindowHint); m_ui->setupUi(this); setPathAndGetFiles(path); } MainWindow::~MainWindow() { delete m_ui; } void MainWindow::setPathAndGetFiles(std::string path) { m_cur_dir = QString::fromStdString(path); QDir dir(m_cur_dir); if (!dir.exists() || !dir.isReadable()) { QMessageBox::warning(this, "Error dir", "Can't read or access directory!"); on_m_dir_button_clicked(); return ; } m_ui->m_dir_l->setText(dir.absolutePath()); m_files_from_dir = getDirFiles(dir); printFiles(); } void MainWindow::setMyLabels() { TagLib::FileRef ref(m_file_path.toStdString().c_str()); auto year = QString::number(ref.tag()->year()); auto track = QString::number(ref.tag()->track()); m_ui->m_line_title->setText( QString::fromStdString(ref.tag()->title().toCString())); m_ui->m_line_artist->setText( QString::fromStdString(ref.tag()->artist().toCString())); m_ui->m_line_album->setText( QString::fromStdString(ref.tag()->album().toCString())); m_ui->m_line_genre->setText( QString::fromStdString(ref.tag()->genre().toCString())); m_ui->m_line_year->setText(year == "0" ? "" : year); m_ui->m_line_comment->setText( QString::fromStdString(ref.tag()->comment().toCString())); }
[ "noreply@github.com" ]
noreply@github.com
4d16fe649692097661396f31714a496f43e28f7b
1a2934cbef29fbec0baf4f37ae5934f0358867b5
/Synchronizacja/Synchronizacja/wezly.h
a63266fc66616f21589cfa7db77ba438a4962270
[]
no_license
KerCpp/MPKSyncWorks
14738a62e89ee09c6fa6afd0b3a11fddb17717fe
18b4dd2b1afa187822b3cd690be0b93d96ce6e67
HEAD
2016-09-05T11:04:49.438904
2015-11-28T16:45:09
2015-11-28T16:45:09
42,082,419
0
1
null
null
null
null
UTF-8
C++
false
false
60
h
#pragma once class wezly { public: wezly(); ~wezly(); };
[ "mort.mb@gmail.com" ]
mort.mb@gmail.com
ae999cc98d44af5ca29c957e54af0b1116a9d199
4b419746c9425e15ccb67da26bced4eb6e83c09a
/Practise/Inheritance/Derived.h
14d237afe4d53c41554fa516e214057faf6abf33
[ "CC-BY-4.0" ]
permissive
Himanshu40/Learn-Cpp
09502dd3668d33a1063c11dd0273c52ab8c09044
f0854f7c88bf31857c0c6216af80245666ca9b54
refs/heads/main
2023-09-02T02:29:40.116663
2021-11-04T01:43:29
2021-11-04T01:43:29
375,667,381
2
0
null
null
null
null
UTF-8
C++
false
false
451
h
#ifndef _DERIVED_H_ #define _DERIVED_H_ #include "Base.h" class Derived : public Base { private: int num1; int *size1; public: Derived(); Derived(int num1, int size1); Derived(const Derived &src); Derived(Derived &&src) noexcept; ~Derived(); Derived &operator=(const Derived &rhs); Derived &operator=(Derived &&rhs) noexcept; void display() const; }; #endif
[ "himanshuwindows8.1@gmail.com" ]
himanshuwindows8.1@gmail.com
dd89bfa4121fbc4eb98ab5b03d4ab287ff8ed41d
91015480741ec59dda36712d71e7e6f0704bc516
/mindspore/ccsrc/minddata/dataset/kernels/ir/vision/gaussian_blur_ir.cc
65006e1daa4b5fc0047120fe72d1fb1e27cb2e2d
[ "Apache-2.0", "Libpng", "LGPL-3.0-only", "AGPL-3.0-only", "MPL-1.1", "BSD-3-Clause-Open-MPI", "LicenseRef-scancode-mit-nagy", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-proprietary-license", "LicenseRef-scancode-python-cwi", "LGPL-2.1-only", "OpenSSL", "LicenseRef-scanco...
permissive
Ming-blue/mindspore
b5dfa6af7876b00163ccfa2e18512678026c232b
9ec8bc233c76c9903a2f7be5dfc134992e4bf757
refs/heads/master
2023-06-23T23:35:38.143983
2021-07-14T07:36:40
2021-07-14T07:36:40
286,421,966
1
0
Apache-2.0
2020-08-10T08:41:45
2020-08-10T08:41:45
null
UTF-8
C++
false
false
2,342
cc
/** * Copyright 2021 Huawei Technologies Co., Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "minddata/dataset/kernels/ir/vision/gaussian_blur_ir.h" #include "minddata/dataset/kernels/image/gaussian_blur_op.h" #include "minddata/dataset/kernels/ir/validators.h" namespace mindspore { namespace dataset { namespace vision { GaussianBlurOperation::GaussianBlurOperation(const std::vector<int32_t> kernel_size, const std::vector<float> sigma) : kernel_size_(kernel_size), sigma_(sigma) {} GaussianBlurOperation::~GaussianBlurOperation() = default; std::string GaussianBlurOperation::Name() const { return kGaussianBlurOperation; } Status GaussianBlurOperation::ValidateParams() { RETURN_IF_NOT_OK(ValidateVectorSize("GaussianBlur", kernel_size_)); RETURN_IF_NOT_OK(ValidateVectorOdd("GaussianBlur", "kernel_size", kernel_size_)); RETURN_IF_NOT_OK(ValidateVectorSigma("GaussianBlur", sigma_)); return Status::OK(); } std::shared_ptr<TensorOp> GaussianBlurOperation::Build() { int32_t kernel_x = kernel_size_[0]; int32_t kernel_y = kernel_size_[0]; // User has specified kernel_y. if (kernel_size_.size() == 2) { kernel_y = kernel_size_[1]; } float sigma_x = sigma_[0] <= 0 ? kernel_x * 0.15 + 0.35 : sigma_[0]; float sigma_y = sigma_x; // User has specified sigma_y. if (sigma_.size() == 2) { sigma_y = sigma_[1] <= 0 ? kernel_y * 0.15 + 0.35 : sigma_[1]; } std::shared_ptr<GaussianBlurOp> tensor_op = std::make_shared<GaussianBlurOp>(kernel_x, kernel_y, sigma_x, sigma_y); return tensor_op; } Status GaussianBlurOperation::to_json(nlohmann::json *out_json) { nlohmann::json args; args["kernel_size"] = kernel_size_; args["sigma"] = sigma_; *out_json = args; return Status::OK(); } } // namespace vision } // namespace dataset } // namespace mindspore
[ "xiaotianci1@huawei.com" ]
xiaotianci1@huawei.com
82f6448b3faab67ac1af89cbca49e4352f3b33d9
56190da1176dc09b9e84e345e6995b260f317745
/Common/avformat/flv.cpp
a4df775cefe06dc931683a7a759592435636e346
[]
no_license
inrg/RelayLive
925419c8b072d883a4f540c76b0918465583cfd2
4446e61de50eba4839df09ac1de157c3e8883420
refs/heads/master
2020-05-30T03:28:54.740800
2019-05-28T02:58:28
2019-05-28T02:58:28
null
0
0
null
null
null
null
GB18030
C++
false
false
12,624
cpp
#include "stdafx.h" #include "flv.h" #include "h264.h" /* offsets for packed values */ #define FLV_AUDIO_SAMPLESSIZE_OFFSET 1 #define FLV_AUDIO_SAMPLERATE_OFFSET 2 #define FLV_AUDIO_CODECID_OFFSET 4 #define FLV_VIDEO_FRAMETYPE_OFFSET 4 /* bitmasks to isolate specific values */ #define FLV_AUDIO_CHANNEL_MASK 0x01 #define FLV_AUDIO_SAMPLESIZE_MASK 0x02 #define FLV_AUDIO_SAMPLERATE_MASK 0x0c #define FLV_AUDIO_CODECID_MASK 0xf0 #define FLV_VIDEO_CODECID_MASK 0x0f #define FLV_VIDEO_FRAMETYPE_MASK 0xf0 #define AMF_END_OF_OBJECT 0x09 enum { FLV_HEADER_FLAG_HASVIDEO = 1, FLV_HEADER_FLAG_HASAUDIO = 4, }; enum { FLV_TAG_TYPE_AUDIO = 0x08, FLV_TAG_TYPE_VIDEO = 0x09, FLV_TAG_TYPE_META = 0x12, }; enum { FLV_MONO = 0, FLV_STEREO = 1, }; enum { FLV_SAMPLESSIZE_8BIT = 0, FLV_SAMPLESSIZE_16BIT = 1 << FLV_AUDIO_SAMPLESSIZE_OFFSET, }; enum { FLV_SAMPLERATE_SPECIAL = 0, /**< signifies 5512Hz and 8000Hz in the case of NELLYMOSER */ FLV_SAMPLERATE_11025HZ = 1 << FLV_AUDIO_SAMPLERATE_OFFSET, FLV_SAMPLERATE_22050HZ = 2 << FLV_AUDIO_SAMPLERATE_OFFSET, FLV_SAMPLERATE_44100HZ = 3 << FLV_AUDIO_SAMPLERATE_OFFSET, }; enum { FLV_CODECID_MP3 = 2 << FLV_AUDIO_CODECID_OFFSET, FLV_CODECID_AAC = 10<< FLV_AUDIO_CODECID_OFFSET, }; enum { FLV_CODECID_H264 = 7, }; enum { FLV_FRAME_KEY = 1 << FLV_VIDEO_FRAMETYPE_OFFSET | 7, FLV_FRAME_INTER = 2 << FLV_VIDEO_FRAMETYPE_OFFSET | 7, }; typedef enum { AMF_DATA_TYPE_NUMBER = 0x00, AMF_DATA_TYPE_BOOL = 0x01, AMF_DATA_TYPE_STRING = 0x02, AMF_DATA_TYPE_OBJECT = 0x03, AMF_DATA_TYPE_NULL = 0x05, AMF_DATA_TYPE_UNDEFINED = 0x06, AMF_DATA_TYPE_REFERENCE = 0x07, AMF_DATA_TYPE_MIXEDARRAY = 0x08, AMF_DATA_TYPE_OBJECT_END = 0x09, AMF_DATA_TYPE_ARRAY = 0x0a, AMF_DATA_TYPE_DATE = 0x0b, AMF_DATA_TYPE_LONG_STRING = 0x0c, AMF_DATA_TYPE_UNSUPPORTED = 0x0d, } AMFDataType; /* Put functions */ void CFlvStreamMaker::append_amf_string(const char *str) { uint16_t len = (uint16_t)strlen( str ); append_be16( len ); append_data( (char*)str, len ); } void CFlvStreamMaker::append_amf_double(double d) { append_byte( AMF_DATA_TYPE_NUMBER ); append_double(d); } CFlv::CFlv(AV_CALLBACK cb, void* handle) : m_pSPS(nullptr) , m_pPPS(nullptr) , m_pData(nullptr) , m_timestamp(0) , m_tick_gap(0) , m_nWidth(0) , m_nHeight(0) , m_nfps(25) , m_bMakeScript(false) , m_bFirstKey(false) , m_bGotSPS(false) , m_bGotPPS(false) , m_hUser(handle) , m_fCB(cb) { m_pSPS = new CFlvStreamMaker(); m_pPPS = new CFlvStreamMaker(); m_pKeyFrame = new CFlvStreamMaker(); m_pHeader = new CFlvStreamMaker(); m_pData = new CFlvStreamMaker(); m_bRun = true; } CFlv::~CFlv(void) { m_bRun = false; SAFE_DELETE(m_pSPS); SAFE_DELETE(m_pPPS); SAFE_DELETE(m_pKeyFrame); SAFE_DELETE(m_pHeader); SAFE_DELETE(m_pData); } int CFlv::Code(NalType eType, char* pBuf, uint32_t nLen) { if(!m_bRun) { Log::error("already stop"); return false; } // MutexLock lock(&m_cs); //由于能保证是单线程调用,因此不需要该锁 switch (eType) { case b_Nal: // 非关键帧 { if(!m_bFirstKey) break; //如果存在关键帧没有处理,需要先发送关键帧。pps可能在关键帧后面接收到。 //sps或pps丢失,可以使用上一次的。 MakeKeyVideo(); //Log::debug("send frame"); MakeVideo(pBuf,nLen,0); m_timestamp += m_tick_gap; } break; case idr_Nal: // 关键帧 { m_pKeyFrame->clear(); m_pKeyFrame->append_data(pBuf, nLen); //一般sps或pps都在关键帧前面,但有时会在关键帧后面。 if(m_bGotPPS && m_bGotSPS) MakeKeyVideo(); } break; case sei_Nal: break; case sps_Nal: { //Log::debug("save sps size:%d",nLen); CHECK_POINT_INT(m_pSPS,-1); m_pSPS->clear(); m_pSPS->append_data(pBuf, nLen); m_bGotSPS = true; } break; case pps_Nal: { //Log::debug("save pps size:%d",nLen); CHECK_POINT_INT(m_pPPS,-1); m_pPPS->clear(); m_pPPS->append_data(pBuf, nLen); m_bGotPPS = true; } break; case other: case unknow: default: Log::warning("h264 nal type: %d", eType); break; } return true; } void CFlv::SetSps(uint32_t nWidth, uint32_t nHeight, double fFps) { m_nWidth = nWidth; m_nHeight = nHeight; m_nfps = fFps; m_tick_gap = 1000/(m_nfps>0?m_nfps:25); Log::debug("width = %d,height = %d, fps= %lf, tickgap= %d",m_nWidth,m_nHeight,m_nfps,m_tick_gap); } bool CFlv::MakeHeader() { CHECK_POINT(m_pHeader); CHECK_POINT(m_pSPS); CHECK_POINT(m_pPPS); uint16_t nSpsLen = (uint16_t)m_pSPS->size(); char* pSpsData = m_pSPS->get(); uint16_t nPpsLen = (uint16_t)m_pPPS->size(); char* pPpsData = m_pPPS->get(); /** FLV header */ m_pHeader->append_string("FLV"); // Signature m_pHeader->append_byte(1); // Version m_pHeader->append_byte(1); // Video Only m_pHeader->append_be32(9); // DataOffset m_pHeader->append_be32(0); // PreviousTagSize0 /** Script tag */ m_pHeader->append_byte( FLV_TAG_TYPE_META ); // Tag Type "script data" int nDataLenPos = m_pHeader->size(); m_pHeader->append_be24( 0 ); // data length m_pHeader->append_be24( 0 ); // timestamp 对于脚本型的tag总是0 m_pHeader->append_be32( 0 ); // reserved (timestampextended streamID) int nDataLenBegin = m_pHeader->size(); m_pHeader->append_byte( AMF_DATA_TYPE_STRING ); m_pHeader->append_amf_string( "onMetaData" ); m_pHeader->append_byte( AMF_DATA_TYPE_MIXEDARRAY ); //meta元素个数,下面填写几个,这里就是几 m_pHeader->append_be32( 8 ); m_pHeader->append_amf_string( "duration" ); m_pHeader->append_amf_double( 0 ); // 时长 m_pHeader->append_amf_string( "width" ); m_pHeader->append_amf_double( m_nWidth ); m_pHeader->append_amf_string( "height" ); m_pHeader->append_amf_double( m_nHeight ); m_pHeader->append_amf_string( "videodatarate" ); m_pHeader->append_amf_double( 0 ); // 码率 m_pHeader->append_amf_string( "framerate" ); m_pHeader->append_amf_double( m_nfps ); m_pHeader->append_amf_string( "videocodecid" ); m_pHeader->append_amf_double( FLV_CODECID_H264 ); m_pHeader->append_amf_string( "encoder" ); m_pHeader->append_byte( AMF_DATA_TYPE_STRING ); m_pHeader->append_amf_string( "Lavf55.37.102" ); m_pHeader->append_amf_string( "filesize" ); m_pHeader->append_amf_double( 0 ); // 文件大小 m_pHeader->append_amf_string( "" ); m_pHeader->append_byte( AMF_END_OF_OBJECT ); unsigned nDataLen = m_pHeader->size() - nDataLenBegin; m_pHeader->rewrite_be24( nDataLenPos, nDataLen ); // 重写 data length m_pHeader->append_be32( nDataLen + 11 ); // PreviousTagSize /** AVCDecoderConfigurationRecord, this is the first video tag */ m_pHeader->append_byte( FLV_TAG_TYPE_VIDEO );// Tag Type nDataLenPos = m_pHeader->size(); m_pHeader->append_be24( 0 ); // body size rewrite later m_pHeader->append_be24( m_timestamp ); // timestamp m_pHeader->append_byte( m_timestamp >> 24 ); // timestamp extended m_pHeader->append_be24( 0 ); // StreamID - Always 0 nDataLenBegin = m_pHeader->size(); // needed for overwriting length m_pHeader->append_byte( 7 | FLV_FRAME_KEY ); // Frametype and CodecID:0x17 m_pHeader->append_byte( 0 ); // AV packet type: AVC sequence header m_pHeader->append_be24( 0 ); // composition time m_pHeader->append_byte( 1 ); // version m_pHeader->append_byte( pSpsData[1] ); // profile m_pHeader->append_byte( pSpsData[2] ); // profile m_pHeader->append_byte( pSpsData[3] ); // level m_pHeader->append_byte( 0xff ); // 6 bits reserved (111111) + 2 bits nal size length - 1 (11) // SPS m_pHeader->append_byte( 0xe1 ); // 3 bits reserved (111) + 5 bits number of sps (00001) m_pHeader->append_be16( nSpsLen ); m_pHeader->append_data( pSpsData, nSpsLen ); // PPS m_pHeader->append_byte( 1 ); // number of pps m_pHeader->append_be16( nPpsLen ); m_pHeader->append_data( pPpsData, nPpsLen ); // rewrite data length info unsigned length = m_pHeader->size() - nDataLenBegin; m_pHeader->rewrite_be24( nDataLenPos, length ); m_pHeader->append_be32( length + 11 ); // PreviousTagSize /** call back */ if(m_fCB != nullptr){ AV_BUFF buff = {FLV_HEAD, m_pHeader->get(), m_pHeader->size()}; m_fCB(buff, m_hUser); } return true; } bool CFlv::MakeVideo(char *data,int size,int bIsKeyFrame) { CHECK_POINT(m_pData); if(bIsKeyFrame && m_pData->size() > 0) { if(m_fCB != nullptr){ AV_BUFF buff = {FLV_FRAG_KEY, m_pData->get(), m_pData->size()}; m_fCB(buff, m_hUser); } m_pData->clear(); } m_pData->append_byte( FLV_TAG_TYPE_VIDEO ); // Tag Type int nDataLenPos = m_pData->size(); m_pData->append_be24( 0 ); // body size rewrite later m_pData->append_be24( m_timestamp ); // timestamp m_pData->append_byte( m_timestamp >> 24 ); // timestamp extended m_pData->append_be24( 0 ); // StreamID - Always 0 int nDataLenBegin = m_pData->size(); // needed for overwriting length if(bIsKeyFrame) m_pData->append_byte( FLV_FRAME_KEY); // Frametype and CodecID:0x17 else m_pData->append_byte( FLV_FRAME_INTER); // Frametype and CodecID:0x27 m_pData->append_byte( 1 ); // AV packet type: AVC NALU m_pData->append_be24( m_tick_gap ); // composition time if(bIsKeyFrame) { if (m_pSPS != nullptr && m_pSPS->size() > 0 && m_pPPS != nullptr && m_pPPS->size() > 0) { //写入sps NALU m_pData->append_be32( m_pSPS->size() ); // SPS NALU Length m_pData->append_data( m_pSPS->get(), m_pSPS->size()); // NALU Data //写入pps Nalu m_pData->append_be32( m_pPPS->size() ); // PPS NALU Length m_pData->append_data( m_pPPS->get(), m_pPPS->size()); // NALU Data } } //写入Nalu m_pData->append_be32( size); // NALU Length m_pData->append_data( data, size); // NALU Data // rewrite data length info unsigned length = m_pData->size() - nDataLenBegin; m_pData->rewrite_be24( nDataLenPos, length ); m_pData->append_be32( 11 + length ); // PreviousTagSize //if(m_pData->size() > 0) { // if(m_fCB != nullptr){ // AV_BUFF buff = {bIsKeyFrame?FLV_FRAG_KEY:FLV_FRAG, m_pData->get(), m_pData->size()}; // m_fCB(buff, m_hUser); // } // m_pData->clear(); //} //// h264写文件 //fwrite(data, size, 1, fp); //fflush(fp); //// flv写文件 //fwrite(c->data, c->d_cur, 1, fpflv); //fflush(fpflv); return true; } bool CFlv::MakeKeyVideo() { if(m_pSPS->size() && m_pPPS->size() && m_pKeyFrame->size()) { // 第一个tag是scriptTag //Log::debug("send scriptTag"); if(!m_bMakeScript) { if(!MakeHeader()) return false; m_bMakeScript = true; } // 发送关键帧 static uint64_t num = 0; Log::debug("send key frame %lld", num++); MakeVideo(m_pKeyFrame->get(),m_pKeyFrame->size(),1); m_pKeyFrame->clear(); m_bGotSPS = false; m_bGotPPS = false; m_timestamp += m_tick_gap; m_bFirstKey = true; return true; } return false; }
[ "wlla@jiangsuits.com" ]
wlla@jiangsuits.com
3b176ffa27bef20b514e839334efa9c81654da3a
948f4e13af6b3014582909cc6d762606f2a43365
/testcases/juliet_test_suite/testcases/CWE36_Absolute_Path_Traversal/s04/CWE36_Absolute_Path_Traversal__wchar_t_file_fopen_83.h
02f5a39252ad5e4988e9b09e33cb16276b16d1f1
[]
no_license
junxzm1990/ASAN--
0056a341b8537142e10373c8417f27d7825ad89b
ca96e46422407a55bed4aa551a6ad28ec1eeef4e
refs/heads/master
2022-08-02T15:38:56.286555
2022-06-16T22:19:54
2022-06-16T22:19:54
408,238,453
74
13
null
2022-06-16T22:19:55
2021-09-19T21:14:59
null
UTF-8
C++
false
false
1,337
h
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE36_Absolute_Path_Traversal__wchar_t_file_fopen_83.h Label Definition File: CWE36_Absolute_Path_Traversal.label.xml Template File: sources-sink-83.tmpl.h */ /* * @description * CWE: 36 Absolute Path Traversal * BadSource: file Read input from a file * GoodSource: Full path and file name * Sinks: fopen * BadSink : Open the file named in data using fopen() * Flow Variant: 83 Data flow: data passed to class constructor and destructor by declaring the class object on the stack * * */ #include "std_testcase.h" #ifndef _WIN32 #include <wchar.h> #endif namespace CWE36_Absolute_Path_Traversal__wchar_t_file_fopen_83 { #ifndef OMITBAD class CWE36_Absolute_Path_Traversal__wchar_t_file_fopen_83_bad { public: CWE36_Absolute_Path_Traversal__wchar_t_file_fopen_83_bad(wchar_t * dataCopy); ~CWE36_Absolute_Path_Traversal__wchar_t_file_fopen_83_bad(); private: wchar_t * data; }; #endif /* OMITBAD */ #ifndef OMITGOOD class CWE36_Absolute_Path_Traversal__wchar_t_file_fopen_83_goodG2B { public: CWE36_Absolute_Path_Traversal__wchar_t_file_fopen_83_goodG2B(wchar_t * dataCopy); ~CWE36_Absolute_Path_Traversal__wchar_t_file_fopen_83_goodG2B(); private: wchar_t * data; }; #endif /* OMITGOOD */ }
[ "yzhang0701@gmail.com" ]
yzhang0701@gmail.com
f8429aab756e12dc9a3d4b67a3e17bdf815d2f8f
3801e85d75bf8a10174f4a1f785b66aa41dae511
/0355.Design_Twitter/solution.cpp
511b622b172dd048af6a762f48c8409125e179e3
[]
no_license
evshary/leetcode
3ed62ccea55adf682cead6bdcc4d06b1aecea8ac
a37455352e34080ebee7132a5d2dc2e979747cee
refs/heads/main
2022-08-29T16:40:34.002990
2022-07-20T22:33:10
2022-07-20T22:33:10
125,591,269
0
0
null
null
null
null
UTF-8
C++
false
false
4,940
cpp
#include <iostream> #include <vector> #include <unordered_map> #include <stack> using namespace std; class Post { public: Post(int ID, int tweetID) { postId = ID; content = tweetID; } int getPostID() { return postId; } int getContent() { return content; } private: int postId; int content; }; class User { public: User() {myID = -1;} // invalid user User(int userId) { following.push_back(userId); myID = userId; } vector<int> getFollowingList() { return following; } void follow(int userid) { for (auto id : following) { if (id == userid) return; } following.push_back(userid); } void unfollow(int userid) { if (userid == myID) return; // we can't unfollow ourselves for (int i = 0; i < following.size(); i++) { if (following[i] == userid) { following.erase(following.begin()+i); } } } void postTweet(Post tweet) { posts.push_back(tweet); } Post *getLatestPost(int postID) { for (int i = posts.size()-1; i >= 0; i--) { if (posts[i].getPostID() < postID) { return &posts[i]; } } return NULL; } private: vector<int> following; vector<Post> posts; int myID; }; class Twitter { public: /** Initialize your data structure here. */ Twitter() { post_num = 0; } /** Compose a new tweet. */ void postTweet(int userId, int tweetId) { post_num++; if (users.find(userId) == users.end()) { users[userId] = User(userId); } users[userId].postTweet(Post(post_num, tweetId)); //cout << "postTweet userId:" << userId << ", tweetId:" << tweetId << endl; } /** Retrieve the 10 most recent tweet ids in the user's news feed. Each item in the news feed must be posted by users who the user followed or by the user herself. Tweets must be ordered from most recent to least recent. */ vector<int> getNewsFeed(int userId) { if (users.find(userId) == users.end()) return {}; //cout << "Get " << userId << " news feed." << endl; vector<int> result; vector<int> following = users[userId].getFollowingList(); int cur_postid = INT_MAX; Post *latest_post, *tmp_post; for (int i = 0; i < 10; i++) { latest_post = NULL; for (auto u : following) { tmp_post = users[u].getLatestPost(cur_postid); if (tmp_post == NULL) continue; if (latest_post == NULL) { latest_post = tmp_post; continue; } if (tmp_post->getPostID() > latest_post->getPostID()) { latest_post = tmp_post; } } if (latest_post == NULL) break; // No latest post. cur_postid = latest_post->getPostID(); result.push_back(latest_post->getContent()); } return result; } /** Follower follows a followee. If the operation is invalid, it should be a no-op. */ void follow(int followerId, int followeeId) { if (users.find(followerId) == users.end()) users[followerId] = User(followerId); if (users.find(followeeId) == users.end()) users[followeeId] = User(followeeId); users[followerId].follow(followeeId); //cout << followerId << " follows " << followeeId << endl; } /** Follower unfollows a followee. If the operation is invalid, it should be a no-op. */ void unfollow(int followerId, int followeeId) { if (users.find(followerId) == users.end()) users[followerId] = User(followerId); if (users.find(followeeId) == users.end()) users[followeeId] = User(followeeId); users[followerId].unfollow(followeeId); //cout << followerId << " unfollows " << followeeId << endl; } private: unordered_map<int,User> users; unsigned int post_num; }; void printFeeds(int user, vector<int> feeds) { cout << "News Feed from User " << user << ":"; for (auto num : feeds) cout << num << " "; cout << endl; } /** * Your Twitter object will be instantiated and called as such: * Twitter* obj = new Twitter(); * obj->postTweet(userId,tweetId); * vector<int> param_2 = obj->getNewsFeed(userId); * obj->follow(followerId,followeeId); * obj->unfollow(followerId,followeeId); */ int main() { vector<int> result; Twitter *t = new Twitter(); t->postTweet(1, 100); result = t->getNewsFeed(1); printFeeds(1, result); t->follow(1, 2); t->postTweet(2, 200); result = t->getNewsFeed(1); printFeeds(1, result); t->unfollow(1, 2); result = t->getNewsFeed(1); printFeeds(1, result); free(t); return 0; }
[ "evshary@gmail.com" ]
evshary@gmail.com
609aab45c2e999388449d7bb6aa56b87ee2064d3
829b3f2d0ae685d01fe097c03bf5c1976cbc4723
/deps/boost/include/boost/geometry/srs/shared_grids.hpp
8cc78505939153cbe89c0f748463ed48ce805ce6
[ "Apache-2.0" ]
permissive
liyoung1992/mediasoup-sfu-cpp
f0f0321f8974beb1f4263c9e658402620d82385f
b76564e068626b0d675f5486e56da3d69151e287
refs/heads/main
2023-08-21T21:40:51.710022
2021-10-14T06:29:18
2021-10-14T06:29:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
721
hpp
// Boost.Geometry // Copyright (c) 2018-2019, Oracle and/or its affiliates. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle // Use, modification and distribution is subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_GEOMETRY_SRS_SHARED_GRIDS_HPP #define BOOST_GEOMETRY_SRS_SHARED_GRIDS_HPP #include <boost/geometry/srs/shared_grids_boost.hpp> namespace boost { namespace geometry { namespace srs { typedef shared_grids_boost shared_grids; } // namespace srs }} // namespace boost::geometry #endif // BOOST_GEOMETRY_SRS_SHARED_GRIDS_HPP
[ "yanhua133@126.com" ]
yanhua133@126.com
0f73726672a8e506be18ee712f5db10c66fa8887
62ad8c0156af39c5c2b56c5155241d774d3146c3
/Product/DuckEgg.cpp
372f8d49f88b5f4da10252533bbf72e08293fcff
[]
no_license
kelompok-oop-sekar/reimagined-octo-funicular
f8cfb42cadb90f57a8f26b22ebf98fdc7b3cd805
77d974bde7bb58433ec4bde9c98cc723dbc0a453
refs/heads/master
2020-04-29T16:20:25.399497
2019-04-11T13:23:37
2019-04-11T13:23:37
176,256,061
0
0
null
null
null
null
UTF-8
C++
false
false
197
cpp
#include "DuckEgg.h" string DuckEgg::className = "DuckEgg"; string DuckEgg::getClassName() { return className; } int DuckEgg::price = 50; int DuckEgg::getPrice() { return price; }
[ "noreply@github.com" ]
noreply@github.com
ea337b44d3644247f59060eb099bcc1cf67852ea
9c59855278be13d7069315cd195df67e3a77f3eb
/Engine/GLSL.hpp
95e58650ba2a9b91e5c256683f04867aaf13b5bf
[]
no_license
woogi-kang/Campic
8dc50389bbe8c16939dbece55f100caa65580bbb
bcb4c17fba31343805e1ceff1b3892a3b7929a5c
refs/heads/main
2023-04-15T04:45:14.802392
2021-04-11T15:43:15
2021-04-11T15:43:15
356,908,617
0
0
null
null
null
null
UTF-8
C++
false
false
858
hpp
/* Start Header --------------------------------------------------------------- Copyright (C) 2018 DigiPen Institute of Technology. Reproduction or disclosure of this file or its contents without the prior written consent of DigiPen Institute of Technology is prohibited. File Name : GLSL.hpp Language : C++ Platform : Visual Studio 2017 Project : CamPic Primary : JinHyun Choi Secondary : - End Header ----------------------------------------------------------------*/ #pragma once #include <string> namespace GLSL { extern const std::string shapes_vertex; extern const std::string shapes_fragment; extern const std::string vertex; extern const std::string fragment; extern const std::string particle_vertex; extern const std::string particle_fragment; extern const std::string font_vertex; extern const std::string font_fragment; }
[ "hotsunny.kang@gmail.com" ]
hotsunny.kang@gmail.com